/*
  Дистанційна школа Акцент — Static Site
  Styles v1.0
*/

/* ===== VARIABLES ===== */
:root {
  --bg:          #f0ead6;
  --white:       #ffffff;
  --navy:        #1a237e;
  --orange:      #f7941d;
  --orange-dk:   #d97b00;
  --text:        #333333;
  --gray:        #666666;
  --border:      #ddd4b0;
  --radius:      4px;
  --shadow:      0 2px 10px rgba(0,0,0,.12);
  --max-w:       1100px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dk); }

h1, h2, h3, h4 { color: var(--navy); font-weight: 700; line-height: 1.3; }
h1 { font-size: 2rem;   margin-bottom: 1rem; }
h2 { font-size: 1.6rem; margin-bottom: .8rem; }
h3 { font-size: 1.2rem; margin-bottom: .5rem; }
p  { margin-bottom: .9rem; }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: .35rem; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 52px 0; }
.section-white { background: #fff9e3; }
.section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--navy);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--orange);
  color: var(--white) !important;
  border: none;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .2s;
}
.btn:hover { background: var(--orange-dk); }

/* ===== HEADER ===== */
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 8px 0;
  transition: background .3s, box-shadow .3s, border-color .3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img { height: 52px; width: auto; }

header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0,0,0,.1);
  border-bottom-color: transparent;
  transition: background .3s, box-shadow .3s;
}

/* ===== NAVIGATION ===== */
nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  padding: 0;
  margin: 0;
}

nav > ul > li > a {
  display: block;
  padding: 8px 13px;
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color .15s;
  white-space: nowrap;
}
nav > ul > li > a:hover,
nav > ul > li > a.active { color: var(--orange); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: .7rem; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 240px;
  box-shadow: var(--shadow);
  z-index: 200;
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 9px 16px;
  color: var(--text);
  font-size: .88rem;
  border-bottom: 1px solid #f0ead6;
  transition: background .15s, color .15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown a:hover { background: var(--bg); color: var(--orange); }
.has-dropdown:hover .dropdown { display: block; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

/* ===== HERO ===== */
.hero { width: 100%; overflow: hidden; }
.hero img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center top;
}

/* ===== PAGE BANNER ===== */
.page-banner { width: 100%; overflow: hidden; max-height: 340px; }
.page-banner img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
}

/* ===== FEATURES STRIP ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-box {
  text-align: center;
  padding: 36px 24px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: box-shadow .2s, transform .2s;
}
.feature-box:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.feature-box img {
  width: 90px; height: 90px;
  object-fit: contain;
  margin: 0 auto 20px;
}
.feature-box h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); }
.feature-box p { font-size: .88rem; color: var(--gray); margin: 0; line-height: 1.6; }

/* ===== TWO-COLUMN BLOCK ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col img { border-radius: 6px; width: 100%; }

/* ===== CHECKLIST ===== */
.checklist { list-style: none; padding: 0; }
.checklist li {
  padding-left: 36px;
  margin-bottom: 14px;
  position: relative;
  line-height: 1.5;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  background: url('../uploads/shared/\u0413\u0430\u043b\u043e\u0447\u043a\u0430_1.png') center/contain no-repeat;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.pricing-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.pricing-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  border: 2px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured { border-color: var(--orange); }
.pricing-header {
  padding: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  background: #f8f4e8;
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-header {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.pricing-img { width: 100%; height: 150px; object-fit: cover; }
.pricing-price {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--orange);
  padding: 12px 8px 4px;
}
.pricing-body {
  padding: 8px 16px 16px;
  flex: 1;
}
.pricing-body li { font-size: .85rem; }

/* ===== TEAM GRID ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  row-gap: 32px;
}
.team-member { text-align: center; }
.team-member img {
  width: 140px; height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 10px;
  border: 3px solid var(--border);
}
.team-member .name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 4px;
}
.team-member .role {
  font-size: .78rem;
  color: var(--gray);
}

/* ===== PRICING DETAILS ===== */
.price-main { font-size:1.5rem; font-weight:700; color:var(--orange); text-align:center; padding:10px 8px 2px; }
.price-old  { font-size:.85rem; text-align:center; color:#999; text-decoration:line-through; padding-bottom:6px; }
.price-note { font-size:.78rem; text-align:center; color:var(--gray); padding:0 8px 10px; }
.badge-new  { display:inline-block; background:var(--orange); color:#fff; font-size:.7rem;
              font-weight:700; padding:1px 6px; border-radius:10px; margin-left:4px; vertical-align:middle; }

/* ===== FEAT LIST (shared pricing/subject style) ===== */
.feat-list { list-style: none; padding: 0 16px 16px; margin: 0; }
.feat-list li { font-size: .84rem; padding: 4px 0; border-bottom: 1px solid #f5f0e0; }
.feat-list li:last-child { border: none; }

/* ===== SUBJECT TABLES ===== */
.subjects-grid {
  display: grid;
  gap: 16px;
}
.subjects-grid-4 { grid-template-columns: repeat(4, 1fr); }
.subjects-grid-5 { grid-template-columns: repeat(5, 1fr); }
.subjects-grid-2 { grid-template-columns: repeat(2, 1fr); }

.subject-card {
  border: 2px solid var(--orange);
  border-radius: 6px;
  padding: 16px 18px;
}
.subject-card h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}
.subject-card ol { padding-left: 1.2rem; }
.subject-card li { font-size: .85rem; margin-bottom: 3px; }

/* ===== VIDEO GRID ===== */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.video-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.video-thumb {
  flex-shrink: 0;
  width: 200px;
  background: #eee;
}
.video-thumb img { width: 100%; height: 130px; object-fit: cover; }
.video-info { padding: 14px 14px 14px 0; }
.video-info strong {
  display: block;
  color: var(--navy);
  font-size: .9rem;
  margin-bottom: 6px;
}
.video-info p { font-size: .83rem; color: var(--gray); margin: 0; }

/* ===== DISCOUNT BOX ===== */
.discount-box {
  display: flex;
  border: 2px solid var(--orange);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  max-width: 800px;
  margin: 0 auto;
}
.discount-img { width: 45%; flex-shrink: 0; }
.discount-img img { width: 100%; height: 100%; object-fit: cover; }
.discount-text { padding: 30px 32px; }
.discount-text li { margin-bottom: 10px; }
.discount-text strong { color: var(--orange); }

/* ===== CONTACT LAYOUT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .88rem;
  color: var(--gray);
  margin-bottom: 5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color .15s;
}
.form-group textarea { height: 120px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--orange); }

.btn-dark {
  background: var(--navy);
  color: var(--white) !important;
  padding: 12px 30px;
  border: none;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .4px;
  transition: background .2s;
  display: inline-block;
}
.btn-dark:hover { background: #0d1860; }

.contact-info-block { margin-bottom: 22px; }
.contact-info-block h3 {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.contact-info-block p { margin-bottom: 4px; }
.contact-info-block p a { color: var(--text); }
.contact-info-block p a:hover { color: var(--orange); }

.social-links { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.social-links a img { width: 38px; height: 38px; object-fit: contain; }

.map-wrap { margin-top: 32px; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 300px; border: none; display: block; }
.contact-layout .map-wrap { margin-top: 0; height: 100%; }
.contact-layout .map-wrap iframe { height: 100%; min-height: 350px; }
.map-wide { margin-top: 48px; }
.map-wide iframe { height: 420px; }

/* ===== CONTACT FORM ===== */
.contact-form {
  display: block;
  padding: 28px;
  background: #ffffff;
  border-top: 4px solid #f7941d;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(23, 32, 42, 0.08);
  box-sizing: border-box;
  max-width: 100%;
}
.contact-form-title {
  color: #1a237e;
  margin: 0 0 6px;
  font-size: 1.4rem;
}
.contact-form-lead {
  margin: 0 0 18px;
  color: #666;
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
  color: #1a237e;
  font-size: 0.95rem;
}
.contact-form label > span {
  display: block;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 1px solid #d7dde6;
  border-radius: 4px;
  padding: 11px 13px;
  font: inherit;
  font-weight: 400;
  color: #333;
  background: #ffffff;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(247, 148, 29, 0.25);
  border-color: #f7941d;
}
.contact-form .form-hp {
  display: none !important;
}
.contact-form .cf-turnstile {
  display: block;
  margin: 4px 0 16px;
  max-width: 100%;
  overflow: hidden;
}
.contact-form .form-status {
  display: block;
  min-height: 22px;
  margin: 0 0 14px;
  font-weight: 600;
  color: #2d6a3f;
}
.contact-form .form-status.error { color: #c03030; }
.contact-form .form-submit {
  display: inline-block;
  background: #f7941d;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 12px 28px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form .form-submit:hover { background: #d97b00; }
.contact-form .form-submit:disabled { opacity: 0.6; cursor: wait; }

/* ===== DOCUMENT PAGE ===== */
.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.doc-img { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.doc-img img { width: 100%; }

/* ===== MISSION PAGE ===== */
.mission-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.mission-block img { border-radius: 6px; width: 100%; }
.values-list { list-style: none; padding: 0; margin-top: 16px; }
.values-list li {
  padding: 6px 0;
  font-size: .95rem;
  border-bottom: 1px solid var(--border);
}
.values-list li:last-child { border-bottom: none; }
.values-list .letter {
  font-weight: 900;
  color: var(--orange);
  font-size: 1.1rem;
  margin-right: 4px;
}

/* ===== PAKETI (LEARNING PACKAGES) PAGE ===== */
.paketi-intro {
  max-width: 820px;
  margin: 1.5rem auto 2.5rem;
  text-align: center;
}
.paketi-intro p { margin-bottom: .8rem; }
.paketi-intro a { color: var(--orange); }

.paketi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 2.5rem;
}
.paket-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.paket-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.paket-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 14px;
  position: relative;
}
.paket-header h2 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 0;
}
.paket-price {
  margin-top: 8px;
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}
.paket-price span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray);
  margin-left: 4px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.paket-price-secondary {
  font-size: 1.2rem;
  margin-top: 4px;
}
.paket-features {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  flex-grow: 1;
}
.paket-features li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
}
.paket-features li:last-child { border-bottom: none; }
.paket-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--orange);
  font-weight: 900;
}

.paket-featured {
  border-color: var(--orange);
  background: #fffaf0;
  position: relative;
  box-shadow: 0 4px 16px rgba(247, 148, 29, .15);
}
.paket-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
}
.paket-recommend {
  background: rgba(247, 148, 29, .1);
  border-left: 3px solid var(--orange);
  padding: 10px 14px;
  border-radius: 4px;
  margin-top: 14px;
  font-size: .9rem;
}

.paketi-cta {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
}
.paketi-cta p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: var(--text);
}

/* ===== MEDIA / ZMI PAGE ===== */
.media-intro {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.media-intro p { margin-bottom: .8rem; }

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.media-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.media-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.media-card-title {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.media-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.media-source {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.media-date::before { content: "•"; margin-right: 10px; color: var(--border); }
.media-card-desc {
  font-size: .95rem;
  color: var(--text);
  margin-bottom: 18px;
  flex-grow: 1;
}
.media-card-btn {
  align-self: flex-start;
  padding: 10px 22px;
  font-size: .85rem;
}

/* ===== PSYCHOLOGY PAGE ===== */
.psykh-article {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.psykh-article-banner img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
}
.psykh-article-body { padding: 22px 24px 8px; }
.psykh-article-body h3 { margin-bottom: 10px; }
.psykh-article-body p { font-size: .9rem; color: var(--gray); }

/* ===== FOOTER ===== */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .9rem;
  color: var(--gray);
  flex-wrap: wrap;
}
.footer-inner a { color: var(--orange); }

/* ===== FLOATING PHONE BUTTON ===== */
.phone-fab {
  position: fixed;
  bottom: 28px;
  right: 20px;
  width: 52px; height: 52px;
  background: #5c6bc0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
  z-index: 999;
  transition: background .2s, transform .2s;
}
.phone-fab:hover { background: #3949ab; transform: scale(1.1); }
.phone-fab svg { width: 26px; height: 26px; fill: white; }

/* ===== UTILITIES ===== */
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid     { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-5   { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid-2   { grid-template-columns: repeat(2, 1fr); }
  .team-grid        { grid-template-columns: repeat(3, 1fr); }
  .subjects-grid-5  { grid-template-columns: repeat(3, 1fr); }
  .subjects-grid-4  { grid-template-columns: repeat(2, 1fr); }
  .two-col          { grid-template-columns: 1fr; gap: 24px; }
  .contact-layout   { grid-template-columns: 1fr; }
  .mission-block    { grid-template-columns: 1fr; }
  .doc-grid         { grid-template-columns: 1fr; }
  .media-grid       { grid-template-columns: 1fr; }
  .paketi-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .paketi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .photo-grid { grid-template-columns: 1fr !important; }

  /* Mobile nav */
  nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    background: var(--white);
    padding: 8px 0 16px;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--border);
  }
  nav.open { display: block; }
  nav ul   { flex-direction: column; gap: 0; }
  nav > ul > li > a { padding: 11px 20px; border-radius: 0; }
  .has-dropdown > a::after { float: right; }
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--orange);
    margin-left: 20px;
    display: block;
  }
  .menu-toggle { display: flex; }

  /* Layout */
  .team-grid       { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid    { grid-template-columns: 1fr; }
  .pricing-grid-5  { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-2  { grid-template-columns: 1fr; max-width: 100%; }
  .features-grid   { grid-template-columns: 1fr; }
  .video-grid      { grid-template-columns: 1fr; }
  .subjects-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .subjects-grid-4 { grid-template-columns: 1fr; }
  .psykh-article-inner { grid-template-columns: 1fr; }
  .discount-box    { flex-direction: column; }
  .discount-img    { width: 100%; height: 200px; }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }

  .hero img { max-height: 240px; }
  .page-banner img { height: 200px; }
}
