/* ============================================================
   SMART WORLD PLAY SCHOOL & DAYCARE — STYLESHEET
   ============================================================ */

:root{
  --deep-blue: #163A6B;
  --deep-blue-dark: #0F2A4E;
  --gold: #F5B324;
  --gold-dark: #DE9A0E;
  --turquoise: #2AB8C4;
  --turquoise-dark: #1E93A0;
  --leaf: #3FA65B;
  --white: #FFFFFF;
  --bg-pastel: #F5F8FC;
  --bg-pastel-warm: #FFF9EE;
  --ink: #12233F;
  --ink-soft: #4C5C74;
  --border-soft: #E4EAF3;

  --font-display: "Baloo 2", "Trebuchet MS", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 12px 30px rgba(22, 58, 107, 0.10);
  --shadow-card: 0 8px 24px rgba(22, 58, 107, 0.08);

  --container-w: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--deep-blue);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
}
h1{ font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2{ font-size: clamp(1.8rem, 4vw, 2.5rem); text-align:center; }
h3{ font-size: clamp(1.25rem, 2.6vw, 1.6rem); }
h4{ font-size: 1.05rem; }
p{ margin: 0 0 1em; color: var(--ink-soft); max-width: 68ch; }
.light{ color: var(--white) !important; }

button, input, select{ font-family: inherit; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============ LAYOUT HELPERS ============ */
.section{ padding: 84px 24px; }
.section-inner{ max-width: var(--container-w); margin: 0 auto; }
.section-tint{ background: var(--bg-pastel); }
.section-navy{ background: var(--deep-blue); }
.section-navy h3, .section-navy p{ color: var(--white); }
.section-lead{
  text-align:center; max-width: 640px; margin: 0 auto 3rem;
  font-size: 1.1rem;
}
.section-lead.light{ color: rgba(255,255,255,0.85); }
.section-subheading{
  text-align:center; color: var(--turquoise-dark); font-weight:600;
  font-size: 1.1rem; margin: -0.5em auto 1.5em; max-width: 640px;
}
.section-body{ max-width: 720px; margin: 0 auto 1.5em; text-align:center; }
.section-closing{ text-align:center; font-weight:600; color: var(--deep-blue); font-size: 1.15rem; }
.sub-heading{ text-align:center; margin-top: 3rem; }

/* ============ REVEAL ANIMATION ============ */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor:pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:focus-visible{ outline: 3px solid var(--turquoise); outline-offset: 2px; }
.btn-primary{ background: var(--gold); color: var(--deep-blue-dark); box-shadow: var(--shadow-soft); }
.btn-primary:hover{ background: var(--gold-dark); }
.btn-ghost{ background: transparent; border-color: var(--deep-blue); color: var(--deep-blue); }
.btn-ghost:hover{ background: var(--deep-blue); color: var(--white); }
.btn-whatsapp{ background: #25D366; color: var(--white); }
.btn-whatsapp:hover{ background: #1DAE54; }
.btn-small{ padding: 10px 18px; font-size: 0.88rem; }
.btn-wide{ width:100%; }
.text-link{ color: var(--turquoise-dark); font-weight:600; }
.text-link:hover{ color: var(--deep-blue); }

/* ============ HEADER ============ */
.site-header{
  position: sticky; top:0; z-index: 500;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner{
  max-width: var(--container-w); margin:0 auto;
  display:flex; align-items:center; gap: 20px;
  padding: 10px 24px;
}
.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand-logo{ height: 52px; width:auto; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-line-1{ font-family: var(--font-display); font-weight:700; color: var(--deep-blue); font-size:1.15rem; }
.brand-line-2{ font-family: var(--font-display); font-weight:600; color: var(--turquoise-dark); font-size:0.72rem; letter-spacing: 0.02em; }

.main-nav{ flex:1; display:flex; justify-content:center; }
.main-nav ul{ display:flex; gap: 22px; flex-wrap:wrap; }
.main-nav a{ font-weight:600; font-size:0.92rem; color: var(--ink); padding: 6px 2px; border-bottom: 2px solid transparent; }
.main-nav a:hover{ color: var(--turquoise-dark); border-color: var(--turquoise); }

.header-cta{ display:flex; gap:10px; flex-shrink:0; }

.hamburger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width: 40px; height: 40px; background:none; border:none; cursor:pointer; padding:0;
}
.hamburger span{ display:block; height:3px; width:100%; background: var(--deep-blue); border-radius:2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.hamburger.active span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

.mobile-nav{
  display:none;
  max-height:0; overflow:hidden;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  transition: max-height 0.35s ease;
}
.mobile-nav.open{ max-height: 640px; }
.mobile-nav ul{ display:flex; flex-direction:column; padding: 10px 24px; }
.mobile-nav a{ display:block; padding: 12px 0; font-weight:600; border-bottom:1px solid var(--border-soft); }
.mobile-nav-cta{ display:flex; gap:10px; padding: 16px 24px 20px; }
.mobile-nav-cta .btn{ flex:1; }

/* ============ HERO ============ */
.hero{ background: linear-gradient(160deg, var(--bg-pastel-warm) 0%, var(--white) 55%); padding: 60px 24px 0; }
.hero-inner{
  max-width: var(--container-w); margin:0 auto;
  display:grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items:center;
  padding-bottom: 50px;
}
.hero-kicker{ color: var(--turquoise-dark); font-weight:700; margin-bottom: 0.6em; }
.hero-sub{ font-size: 1.1rem; max-width: 46ch; }
.hero-actions{ display:flex; flex-wrap:wrap; gap: 14px; margin-top: 1.6em; }
.hero-visual{ position:relative; }
.hero-blob{
  position:absolute; inset: -8% -8% -8% -8%;
  background: radial-gradient(circle at 30% 30%, var(--turquoise) 0%, transparent 60%),
              radial-gradient(circle at 75% 70%, var(--gold) 0%, transparent 55%);
  opacity: 0.35; border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  filter: blur(6px);
}
.hero-img{ position:relative; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width:100%; height: 380px; object-fit: cover; }

.hero-highlights{
  max-width: var(--container-w); margin: 0 auto;
  display:grid; grid-template-columns: repeat(4, 1fr);
  background: var(--deep-blue); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 28px 20px;
}
.highlight-item{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:4px; border-left: 1px solid rgba(255,255,255,0.15); }
.highlight-item:first-child{ border-left:none; }
.highlight-num{ font-family: var(--font-display); font-size: 1.5rem; font-weight:700; color: var(--gold); }
.highlight-label{ color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight:600; }

/* ============ CARD GRIDS ============ */
.card-grid{ display:grid; gap: 24px; margin-top: 2.5rem; }
.card-grid-6{ grid-template-columns: repeat(3, 1fr); }
.card-grid-4{ grid-template-columns: repeat(4, 1fr); }
.card-grid-3{ grid-template-columns: repeat(3, 1fr); }

.feature-card, .topic-card{
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover, .topic-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.feature-icon{
  width: 52px; height:52px; border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 16px;
}
.feature-icon svg{ width: 28px; height:28px; }
.icon-blue{ background: rgba(22,58,107,0.1); color: var(--deep-blue); }
.icon-gold{ background: rgba(245,179,36,0.18); color: var(--gold-dark); }
.icon-cyan{ background: rgba(42,184,196,0.15); color: var(--turquoise-dark); }

.mini-card{
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align:center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.section-navy .mini-card{ background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); }
.section-navy .mini-card h4{ color: var(--white); }
.mini-card h4{ margin-bottom: 0.3em; }
.mini-card p{ margin:0; font-size:0.92rem; }
.section-navy .mini-card p{ color: rgba(255,255,255,0.75); }

/* ============ PROGRAMS ============ */
.program-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 2.5rem; }
.program-card{
  background: var(--white); border-radius: var(--radius-md); overflow:hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--border-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.program-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.program-card img{ height: 190px; width:100%; object-fit:cover; }
.program-body{ padding: 20px; }
.program-age{ display:inline-block; background: rgba(42,184,196,0.15); color: var(--turquoise-dark); font-weight:700; font-size: 0.8rem; padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 10px; }

/* ============ JOURNEY ROW ============ */
.journey-row{ display:flex; flex-wrap:wrap; justify-content:center; gap: 10px 6px; margin: 2rem 0; }
.journey-row span:not(.arrow){
  background: rgba(255,255,255,0.1); color: var(--white);
  padding: 10px 18px; border-radius: var(--radius-pill); font-weight:600; font-size:0.92rem;
}
.journey-row .arrow{ color: var(--gold); font-weight:700; align-self:center; }
.journey-row.vertical{ flex-direction:column; align-items:center; }
.journey-row.vertical span:not(.arrow){ background: var(--bg-pastel); color: var(--deep-blue); }

.flow-row{ display:flex; flex-wrap:wrap; gap: 8px 6px; align-items:center; margin-top: 1.2em; }
.flow-row span:not(.arrow){ background: var(--bg-pastel); padding: 8px 14px; border-radius: var(--radius-pill); font-weight:600; font-size:0.85rem; color: var(--deep-blue); }
.flow-row .arrow{ color: var(--turquoise-dark); font-weight:700; }

/* ============ SPLIT BLOCKS ============ */
.split-block{
  display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:center;
  margin: 3.5rem 0;
}
.split-block.reverse .split-media{ order: 2; }
.split-block.reverse .split-text{ order: 1; }
.split-media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-card); width:100%; height: 320px; object-fit:cover; }
.tag-list{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 1.2em; }
.tag-list li{ background: rgba(245,179,36,0.16); color: var(--gold-dark); padding: 7px 14px; border-radius: var(--radius-pill); font-weight:600; font-size:0.85rem; }

.highlight-banner{
  background: linear-gradient(120deg, var(--turquoise) 0%, var(--turquoise-dark) 100%);
  color: var(--white); border-radius: var(--radius-lg);
  padding: 42px; text-align:center; margin: 3.5rem 0;
  box-shadow: var(--shadow-soft);
}
.highlight-banner h3{ color: var(--white); }
.highlight-banner p{ color: rgba(255,255,255,0.92); max-width: 640px; margin: 0 auto; }

/* ============ AR SHOWCASE ============ */
.ar-showcase{
  display:grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items:center;
  background: var(--deep-blue); border-radius: var(--radius-lg);
  padding: 48px; margin-top: 3.5rem;
  box-shadow: var(--shadow-soft);
}
.ar-text h3, .ar-text p{ color: var(--white); }
.pill{
  display:inline-block; background: var(--gold); color: var(--deep-blue-dark);
  font-weight:700; font-size:0.8rem; padding: 6px 16px; border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.ar-visual{ display:flex; justify-content:center; }
.ar-svg{ width: 100%; max-width: 320px; height:auto; }

/* ============ VALUE / STAT BANNERS ============ */
.value-banner{
  background: var(--bg-pastel-warm); border: 2px dashed var(--gold);
  border-radius: var(--radius-lg); padding: 32px; text-align:center; margin: 3rem 0;
}
.value-banner h3{ margin-bottom: 0.4em; }
.value-amount{ font-weight:700; font-size: 1.2rem; color: var(--deep-blue); }

.stat-banner{
  text-align:center; background: var(--bg-pastel);
  border-radius: var(--radius-lg); padding: 44px; margin: 3rem 0;
}
.stat-number{ font-family: var(--font-display); font-size: clamp(3rem, 8vw, 4.5rem); font-weight:800; color: var(--turquoise-dark); display:block; }
.stat-text{ font-weight:700; color: var(--deep-blue); font-size: 1.15rem; max-width: 520px; margin: 0.4em auto; }
.stat-support{ max-width: 560px; margin: 0.4em auto 0; }

.check-list{ display:flex; flex-wrap:wrap; justify-content:center; gap: 12px; margin: 1.5rem 0; }
.check-list li{
  background: var(--white); border: 1px solid var(--border-soft);
  padding: 10px 18px; border-radius: var(--radius-pill); font-weight:600; font-size:0.9rem;
  box-shadow: var(--shadow-card);
}
.check-list li::before{ content: "✓ "; color: var(--leaf); font-weight:700; }
.check-list.horizontal li{ background: var(--white); }

/* ============ SPEECH CARDS ============ */
.speech-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 3rem; }
.speech-bubble{
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius-md); padding: 20px;
  font-weight:600; color: var(--deep-blue);
  box-shadow: var(--shadow-card);
  position:relative;
}

/* ============ GALLERY ============ */
.gallery-grid{ display:grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin: 2.5rem 0; }
.gallery-grid figure{ margin:0; border-radius: var(--radius-sm); overflow:hidden; position:relative; box-shadow: var(--shadow-card); }
.gallery-grid img{ height: 150px; width:100%; object-fit:cover; transition: transform 0.3s ease; }
.gallery-grid figure:hover img{ transform: scale(1.06); }
.gallery-grid figcaption{
  position:absolute; bottom:0; left:0; right:0;
  background: linear-gradient(to top, rgba(22,58,107,0.85), transparent);
  color: var(--white); font-weight:600; font-size:0.82rem; padding: 20px 10px 8px; text-align:center;
}

/* ============ TWO COLUMN ============ */
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 2.5rem; }
.two-col-block{
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-card); border: 1px solid var(--border-soft);
}

/* ============ DIFFERENTIATOR STATS ============ */
.stat-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 2.5rem; }
.stat-block{ text-align:center; padding: 24px; }
.stat-block-num{ display:block; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight:800; color: var(--gold); }
.stat-block-label{ color: rgba(255,255,255,0.85); font-weight:600; font-size:0.95rem; }

/* ============ ENQUIRY FORM ============ */
.cta-buttons{ display:flex; flex-wrap:wrap; justify-content:center; gap: 14px; margin-bottom: 3rem; }
.enquiry-form{
  max-width: 780px; margin: 0 auto; background: var(--bg-pastel);
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-card);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 18px; }
.form-field{ display:flex; flex-direction:column; }
.form-field label{ font-weight:600; margin-bottom: 6px; font-size:0.92rem; color: var(--deep-blue); }
.form-field input, .form-field select{
  padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border-soft);
  font-size: 0.95rem; background: var(--white);
}
.form-field input:focus, .form-field select:focus{ outline: none; border-color: var(--turquoise); box-shadow: 0 0 0 3px rgba(42,184,196,0.2); }
.form-field.invalid input, .form-field.invalid select{ border-color:#E25858; }
.field-error{ color:#E25858; font-size: 0.8rem; min-height: 1.1em; margin-top:4px; }
.form-success{ text-align:center; font-weight:700; color: var(--leaf); margin-top: 16px; min-height:1.2em; }

/* ============ PROCESS LIST ============ */
.process-list{ display:flex; flex-wrap:wrap; justify-content:center; gap: 20px; margin: 2rem 0 3rem; }
.process-list li{ display:flex; flex-direction:column; align-items:center; gap: 10px; text-align:center; width: 140px; }
.process-num{
  width: 44px; height:44px; border-radius:50%; background: var(--deep-blue); color: var(--white);
  display:flex; align-items:center; justify-content:center; font-weight:700; font-family: var(--font-display);
}

/* ============ CONTACT ============ */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 2rem; }
.contact-details p{ margin-bottom: 0.7em; color: var(--ink); }
.contact-details a{ color: var(--turquoise-dark); font-weight:600; }
.map-placeholder{
  background: var(--bg-pastel); border: 2px dashed var(--border-soft);
  border-radius: var(--radius-lg); height: 100%; min-height: 260px;
  display:flex; align-items:center; justify-content:center; text-align:center; padding: 20px;
  color: var(--ink-soft); font-weight:600;
}

/* ============ FOOTER ============ */
.site-footer{ background: var(--deep-blue-dark); color: rgba(255,255,255,0.85); padding: 60px 24px 20px; }
.footer-inner{ max-width: var(--container-w); margin: 0 auto; display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
.footer-logo{ height: 64px; width:auto; margin-bottom: 14px; background: var(--white); border-radius: 12px; padding: 6px; }
.footer-title{ font-family: var(--font-display); font-weight:700; color: var(--white); font-size:1.2rem; margin: 0 0 6px; }
.footer-tagline{ font-style: italic; color: var(--gold); margin: 0 0 6px; }
.footer-parent{ font-weight:600; color: rgba(255,255,255,0.7); }
.footer-links h4, .footer-contact h4{ color: var(--white); font-family: var(--font-display); margin-bottom: 14px; }
.footer-links ul li, .footer-contact p{ margin-bottom: 10px; }
.footer-links a, .footer-contact a{ color: rgba(255,255,255,0.8); }
.footer-links a:hover, .footer-contact a:hover{ color: var(--gold); }
.social-icons{ display:flex; gap: 10px; margin-top: 12px; }
.social-icons a{
  width: 38px; height: 38px; border-radius:50%; background: rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center; font-size:0.75rem; font-weight:700;
}
.social-icons a:hover{ background: var(--gold); color: var(--deep-blue-dark); }
.footer-bottom{ text-align:center; margin: 40px 0 0; font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ============ MOBILE STICKY BAR ============ */
.sticky-bar{
  position: fixed; bottom:0; left:0; right:0; z-index: 600;
  display:none; grid-template-columns: repeat(3, 1fr);
  background: var(--white); box-shadow: 0 -4px 18px rgba(0,0,0,0.12);
  border-top: 1px solid var(--border-soft);
}
.sticky-bar a{
  display:flex; flex-direction:column; align-items:center; gap: 2px;
  padding: 10px 4px 8px; font-size: 0.72rem; font-weight:700; color: var(--deep-blue);
}
.sticky-bar a svg{ width: 22px; height:22px; }
.sticky-bar a:nth-child(2){ color: #1DAE54; }
.sticky-bar a:nth-child(3){ color: var(--gold-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px){
  .header-cta{ display:none; }
  .main-nav{ display:none; }
  .hamburger{ display:flex; }
  .mobile-nav{ display:block; }

  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; }
  .hero-img{ height: 280px; }

  .card-grid-6{ grid-template-columns: repeat(2, 1fr); }
  .card-grid-4{ grid-template-columns: repeat(2, 1fr); }
  .card-grid-3{ grid-template-columns: repeat(2, 1fr); }
  .program-grid{ grid-template-columns: repeat(2, 1fr); }
  .speech-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
  .stat-grid{ grid-template-columns: repeat(2, 1fr); }

  .split-block, .split-block.reverse{ grid-template-columns: 1fr; }
  .split-block.reverse .split-media, .split-block.reverse .split-text{ order:initial; }
  .split-media img{ height: 240px; }

  .ar-showcase{ grid-template-columns: 1fr; padding: 32px; }
  .two-col{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }

  body{ padding-bottom: 64px; }
  .sticky-bar{ display:grid; }
}

@media (max-width: 640px){
  .section{ padding: 56px 18px; }
  .card-grid-6, .card-grid-4, .card-grid-3, .program-grid, .speech-grid, .stat-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .hero-highlights{ grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .highlight-item{ border-left:none; border-top: 1px solid rgba(255,255,255,0.15); padding-top:10px; }
  .highlight-item:nth-child(1), .highlight-item:nth-child(2){ border-top:none; padding-top:0; }
  .footer-inner{ grid-template-columns: 1fr; }
  .journey-row span:not(.arrow){ font-size: 0.82rem; padding: 8px 14px; }
  .process-list li{ width: 100px; }
  .brand-logo{ height: 42px; }
  .brand-line-1{ font-size: 1rem; }
  .brand-line-2{ font-size: 0.62rem; }
}

@media (max-width: 400px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .header-inner{ padding: 8px 14px; }
  .hero{ padding-top: 40px; }
}
