/* ============================================================
   Amanah AI — adaptive.css  v3.0
   Global media queries for ALL public pages:
   index, for-companies, for-institutions,
   assessment-approach, how-it-works, contact

   Breakpoints : 1200 / 1024 / 900 / 768 / 600 / 480 / 360 px
   Container   : max-width 1140px
   Burger menu : active ≤ 900px
   ============================================================ */

/* ─── 0. CSS VARIABLE REINFORCEMENT ─────────────────────────
   Ensure all colour aliases are available on every page,
   even those that rely on --color-* legacy names            */
:root {
  --teal:        #0E7C66;
  --teal-d:      #0A5C4E;
  --teal-l:      #16A085;
  --teal-pale:   #E8F5F2;
  --gold:        #C9A84C;
  --gold-d:      #92650A;
  --gold-pale:   #FDF8EC;
  --bg:          #FFFFFF;
  --bg-alt:      #F7F9FC;
  --white:       #FFFFFF;
  --border:      #E2E8F0;
  --txt:         #1A202C;
  --txt-m:       #4A5568;
  --txt-s:       #718096;

  /* Legacy aliases */
  --color-teal:       #0E7C66;
  --color-teal-light: #16A085;
  --color-teal-pale:  #E8F5F2;
  --color-teal-dark:  #0A5C4E;
  --color-gold:       #C9A84C;
  --color-gold-light: #E8C96A;
  --color-gold-pale:  #FDF8EC;
  --color-red:        #DC3545;
  --color-red-pale:   #FFF2F3;
  --color-bg:         #FFFFFF;
  --color-bg-alt:     #F7F9FC;
  --color-border:     #E2E8F0;
  --color-text:       #1A202C;
  --color-text-muted: #718096;
  --color-text-light: #A0AEC0;
  --color-purple:     #8E44AD;
  --color-purple-pale:#F5EEF8;

  /* Layout defaults */
  --max-width:     1140px;
  --section-pad:   72px;
  --container-pad: 24px;
}

/* ─── 1. BASE GLOBAL RULES ───────────────────────────────────*/
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }

/* Overflow protection */
.hero, section, .cta-banner,
.contact-hero, .steps-section { overflow-x: hidden; }

/* ─── 2. CONTAINER ───────────────────────────────────────────*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── 3. HEADER — unified for all pages ─────────────────────*/
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E2E8F0;
  transition: box-shadow .2s;
}
.header.scrolled,
.header--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

/* Logo — unified 48px height */
.logo img,
.logo__img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Desktop nav */
.nav__list {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav__link {
  font-size: 13px;
  font-weight: 600;
  color: #4A5568;
  padding: 7px 13px;
  border-radius: 8px;
  transition: .18s;
  white-space: nowrap;
  text-decoration: none;
}
.nav__link:hover,
.nav__link--active,
.nav__link.active {
  color: #0E7C66;
  background: rgba(14,124,102,.08);
}

/* Nav actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ─── 4. BURGER — hidden by default, shown ≤ 900px ──────────*/
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1A202C;
  border-radius: 2px;
  transition: .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── 5. NAV DRAWER ──────────────────────────────────────────*/
.nav-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.99);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  padding: 20px 20px 32px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer.open { display: flex; animation: drawerIn .22s ease; }

@keyframes drawerIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-drawer__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #4A5568;
  transition: .18s;
  text-decoration: none;
}
.nav-drawer__link:hover,
.nav-drawer__link.active {
  color: #0E7C66;
  background: rgba(14,124,102,.07);
}
.nav-drawer__link i {
  width: 20px;
  text-align: center;
  color: #0E7C66;
}
.nav-drawer__divider {
  height: 1px;
  background: #E2E8F0;
  margin: 8px 0;
}
.nav-drawer__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.nav-drawer__btns .btn {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 14px;
}

/* ─── 6. SECTION BASE ────────────────────────────────────────*/
section { padding: 72px 0; }

.section-header  { margin-bottom: 48px; }
.section-tag     { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #0E7C66; background: rgba(14,124,102,.08); padding: 4px 14px; border-radius: 100px; margin-bottom: 16px; }
.section-title   { font-size: clamp(22px, 3.5vw, 36px); font-weight: 800; line-height: 1.2; color: #1A202C; }
.section-sub,
.section-desc    { font-size: 15px; line-height: 1.65; color: #718096; max-width: 640px; }

/* ─── 7. HERO — universal ────────────────────────────────────*/
.hero { padding: 80px 0 72px; position: relative; overflow: hidden; }
.hero__inner  { position: relative; z-index: 1; }
.hero__title  { font-size: clamp(26px, 4.5vw, 48px); line-height: 1.15; }
.hero__sub,
.hero__subtitle { font-size: clamp(14px, 2vw, 17px); line-height: 1.65; }
.hero__cta    { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats  { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 4px; }

/* ─── 8. CTA BANNER ─────────────────────────────────────────*/
.cta-banner {
  border-radius: 16px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ─── 9. FOOTER ─────────────────────────────────────────────*/
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0 48px;
}

/* ─── 10. DISCLAIMER STRIP ───────────────────────────────────*/
.disclaimer-strip { padding: 14px 0; text-align: center; }
.disclaimer-strip p { font-size: 12px; line-height: 1.6; color: #718096; }

/* ─── 11. LINK COLOUR CONSISTENCY ON DARK SECTIONS ──────────*/
.hero a, .contact-hero a, .cta-banner a { color: inherit; }

/* ─── 12. SCROLLABLE TABLES ──────────────────────────────────*/
.table-scroll-wrap,
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
}

/* ─── 13. COMPARISON TABLE MOBILE ───────────────────────────*/
@media (max-width: 700px) {
  .comparison-table { font-size: 11px; }
  .comparison-table td, .comparison-table th { padding: 10px 12px; }
}


/* ═══════════════════════════════════════════════════════════
   BREAKPOINT ≤ 1200px — wide container
═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .container { padding: 0 28px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }

  /* Index hero */
  .hero-v2__inner { grid-template-columns: 1fr 380px; gap: 48px; }
}


/* ═══════════════════════════════════════════════════════════
   BREAKPOINT ≤ 1024px — wide tablet
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 60px; }

  .container { padding: 0 24px; }
  section    { padding: 60px 0; }

  /* Header */
  .header__inner { height: 64px; }
  .logo img, .logo__img { height: 44px; }

  /* Hero */
  .hero    { padding: 64px 0 56px; }
  .hero-v2 { padding: 80px 0 64px; }
  .hero__title { font-size: clamp(26px, 4vw, 40px); }
  .hero-v2__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-v2__visual { display: none; }

  /* Two-column grids → single column */
  .problem-grid   { grid-template-columns: 1fr; gap: 36px; }
  .products-grid  { grid-template-columns: 1fr; }
  .process-paths  { grid-template-columns: 1fr; gap: 28px; }
  .process-grid   { grid-template-columns: 1fr; gap: 28px; }
  .approach-inner { grid-template-columns: 1fr; gap: 36px; }
  .trust-v2-inner { grid-template-columns: 1fr; gap: 36px; }
  .workflow-grid  { grid-template-columns: 1fr; gap: 32px; }

  /* Three-column → two-column */
  .engagement-grid  { grid-template-columns: repeat(2, 1fr); }
  .for-whom__grid   { grid-template-columns: repeat(2, 1fr); }
  .blocks-grid      { grid-template-columns: repeat(2, 1fr); }
  .plans-grid       { grid-template-columns: repeat(2, 1fr); }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .principles-grid  { grid-template-columns: repeat(2, 1fr); }
  .diff-grid        { grid-template-columns: repeat(2, 1fr); }
  .audience-grid    { grid-template-columns: repeat(2, 1fr); }

  /* Four-column → two-column */
  .metrics-grid     { grid-template-columns: repeat(2, 1fr); }
  .scale-grid       { grid-template-columns: repeat(2, 1fr); }
  .trust-grid       { grid-template-columns: repeat(2, 1fr); }

  /* Stats */
  .hero__stats { gap: 20px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 0 40px; }

  /* CTA banner */
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 32px;
    align-items: center;
  }
  .cta-banner__actions,
  .cta-banner__btns  { justify-content: center; }
  .cta-banner__subtitle,
  .cta-banner__sub   { max-width: 100%; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr 340px; gap: 28px; }

  /* Dashboard mockup — hide on tablet */
  .dashboard-mockup { display: none; }

  /* Assessment — block row shrink */
  .block-row { grid-template-columns: 180px 1fr; }

  /* Dropdown — hide on tablet (touch device) */
  .nav__dropdown { display: none; }
}


/* ═══════════════════════════════════════════════════════════
   BREAKPOINT ≤ 900px — burger menu activates
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  section    { padding: 52px 0; }

  /* ── BURGER ACTIVATES ── */
  .header nav,
  .header .nav,
  nav#nav { display: none !important; }
  .nav__actions .btn--outline { display: none; }
  .nav__actions .lang-switcher { display: none; }
  .burger { display: flex; }

  /* Hero */
  .hero    { padding: 56px 0 48px; }
  .hero-v2 { padding: 64px 0 52px; }
  .hero__title { font-size: clamp(24px, 5vw, 36px); }
  .hero__sub, .hero__subtitle { font-size: 15px; }
  .hero__cta  { flex-wrap: wrap; }
  .hero__stats { gap: 18px; }

  /* Three-col grids → two */
  .for-whom__grid  { grid-template-columns: repeat(2, 1fr); }
  .blocks-grid     { grid-template-columns: repeat(2, 1fr); }
  .plans-grid      { grid-template-columns: repeat(2, 1fr); }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .engagement-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid   { grid-template-columns: repeat(2, 1fr); }
  .wyg-grid        { grid-template-columns: 1fr; gap: 24px; }

  /* Assessment — block-row collapses to 1 column */
  .block-row              { grid-template-columns: 1fr; }
  .block-row__left        { border-right: none; border-bottom: 1.5px solid #E2E8F0; padding: 16px 18px 12px; }
  .block-row__right       { padding: 14px 18px 18px; }

  /* Assessment — analyze cols */
  .analyze-cols   { grid-template-columns: 1fr; }
  .honest-grid    { grid-template-columns: 1fr; }

  /* Assessment — pipeline becomes vertical */
  .pipeline-flow {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .pipeline-step { min-width: auto; }
  .pipeline-step:not(:last-child)::after {
    content: '↓';
    right: 50%; top: auto; bottom: -18px;
    transform: translateX(50%);
  }

  /* Scale grid */
  .scale-grid { grid-template-columns: repeat(2, 1fr); }

  /* AI-human grid */
  .ai-human-grid  { grid-template-columns: 1fr; gap: 16px; }

  /* Diff grid */
  .diff-grid { grid-template-columns: repeat(2, 1fr); }

  /* Paths grid */
  .paths-grid { grid-template-columns: 1fr; }

  /* How-it-works — step block narrows */
  .step-block { grid-template-columns: 64px 1fr; }
  .step-block:not(:last-child)::after { left: 31px; }

  /* CTA banner */
  .cta-banner { padding: 32px 24px; flex-direction: column; text-align: center; }
  .cta-banner__actions,
  .cta-banner__btns { justify-content: center; flex-wrap: wrap; }

  /* Contact layout → single column */
  .contact-layout  { grid-template-columns: 1fr; gap: 24px; }
  .contact-sidebar { order: -1; }

  /* Type selector → 2 cols */
  .type-selector { grid-template-columns: repeat(2, 1fr); }

  /* FAQ */
  .faq-list { max-width: 100%; }

  /* Approach refs */
  .approach-refs { grid-template-columns: 1fr; }

  /* Trust grid → 2 */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════════════════════════════════════════════════════════
   BREAKPOINT ≤ 768px — mobile
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-pad:    44px;
    --container-pad:  16px;
  }

  .container { padding: 0 16px; }
  section    { padding: 44px 0; }

  /* Header */
  .header__inner { height: 60px; gap: 12px; }
  .logo img, .logo__img { height: 40px; }

  /* Hero */
  .hero    { padding: 48px 0 40px; }
  .hero-v2 { padding: 56px 0 44px; }
  .hero__title { font-size: clamp(22px, 6vw, 32px); }
  .hero__sub, .hero__subtitle { font-size: 14px; }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__stats { flex-direction: column; gap: 14px; }
  .hero__stat-val { font-size: 22px; }

  /* Hero v2 specifics */
  .hero-v2 { padding: 56px 0 44px; }
  .hero-v2__title    { font-size: clamp(24px, 6vw, 36px); }
  .hero-v2__subtitle { font-size: 15px; }
  .hero-v2__cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-v2__cta .btn { width: 100%; justify-content: center; }
  .hero-v2__trust    { justify-content: center; }

  /* Hero timeline */
  .hero__timeline {
    flex-direction: column;
    gap: 8px !important;
  }
  .hero__tl-sep { display: none; }

  /* All grids → 1 column */
  .for-whom__grid  { grid-template-columns: 1fr; }
  .blocks-grid     { grid-template-columns: 1fr; }
  .plans-grid      { grid-template-columns: 1fr; }
  .features-grid   { grid-template-columns: 1fr; }
  .wyg-grid        { grid-template-columns: 1fr; }
  .scale-grid      { grid-template-columns: 1fr !important; }
  .engagement-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .audience-grid   { grid-template-columns: 1fr; }
  .diff-grid       { grid-template-columns: repeat(2, 1fr); }
  .trust-cards     { grid-template-columns: 1fr 1fr; }
  .trust-grid      { grid-template-columns: repeat(2, 1fr); }

  /* Process steps */
  .process-steps { max-width: 100%; }
  .process-paths { grid-template-columns: 1fr; gap: 20px; }
  .process-grid  { grid-template-columns: 1fr; gap: 20px; }

  /* Section header */
  .section-header { margin-bottom: 32px; }
  .section-title  { font-size: clamp(20px, 5.5vw, 28px); }
  .section-sub, .section-desc { font-size: 14px; }

  /* CTA banner */
  .cta-banner {
    padding: 28px 20px;
    border-radius: 12px;
  }
  .cta-banner__title { font-size: 20px; }
  .cta-banner__actions,
  .cta-banner__btns {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-banner__actions .btn,
  .cta-banner__btns .btn {
    width: 100%;
    justify-content: center;
  }

  /* Final CTA */
  .final-cta__btns { flex-direction: column; align-items: center; }
  .final-cta__btns .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* Contact */
  .contact-main   { padding: 40px 0 60px; }
  .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .contact-sidebar { order: -1; }
  .form-row       { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 24px; padding: 40px 0 32px; }
  .footer__bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Plan card — featured: no scale effect */
  .plan-card--featured,
  .pricing-card--featured { transform: none !important; }

  /* How it works — step block */
  .step-block { grid-template-columns: 56px 1fr; }
  .step-block__num { width: 44px; height: 44px; font-size: 17px; }
  .step-block:not(:last-child)::after { left: 27px !important; }

  /* Timeline bar → vertical */
  .timeline-bar { flex-direction: column; }
  .tl-item { border-right: none; border-bottom: 1px solid #E2E8F0; }
  .tl-item:last-child { border-bottom: none; }

  /* Disclaimer */
  .disclaimer-strip p { font-size: 11px; }

  /* Paths */
  .paths-grid { grid-template-columns: 1fr; }

  /* Sub-page footer (simplified) */
  .footer__inner.footer--simple {
    flex-direction: column;
    gap: 20px;
  }
}


/* ═══════════════════════════════════════════════════════════
   BREAKPOINT ≤ 600px — small mobile
═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --section-pad: 36px; }

  .container { padding: 0 14px; }
  section    { padding: 36px 0; }

  /* Header */
  .header__inner { height: 56px; }
  .logo img, .logo__img { height: 36px; }

  /* Hero */
  .hero    { padding: 40px 0 32px; }
  .hero-v2 { padding: 48px 0 36px; }
  .hero-v2__title { font-size: 22px; }
  .hero__title  { font-size: clamp(20px, 7vw, 28px); }
  .hero__sub, .hero__subtitle { font-size: 13px; }
  .hero__tag, .hero__badge    { font-size: 11px; padding: 5px 13px; }

  /* Section */
  .section-title { font-size: clamp(18px, 6vw, 24px); }
  .section-sub, .section-desc { font-size: 13px; }
  .section-header { margin-bottom: 24px; }

  /* Cards padding */
  .for-whom-card,
  .block-card,
  .audience-card,
  .plan-card,
  .principle-card { padding: 18px 16px; }

  /* Buttons */
  .btn--lg { padding: 12px 22px; font-size: 14px; }
  .hero__cta .btn { font-size: 14px; padding: 12px 18px; }

  /* Plans */
  .plan-card__name { font-size: 16px; }

  /* Scale cards */
  .scale-card { padding: 14px 16px; }
  .scale-card__range { font-size: 18px; }

  /* Step block */
  .step-block { grid-template-columns: 48px 1fr; gap: 0 10px; }
  .step-block__num { width: 40px !important; height: 40px !important; font-size: 15px !important; }
  .step-block:not(:last-child)::after { left: 19px !important; }

  /* Step features → 1 col */
  .step-features-grid { grid-template-columns: 1fr; }

  /* Assessment */
  .block-row { border-radius: 10px; }
  .block-row__left, .block-row__right { padding: 14px; }
  .block-row__name { font-size: 13px; }

  /* Pipeline step */
  .pipeline-step { padding: 16px 14px; }

  /* FAQ */
  .faq-q { font-size: 13px; padding: 14px 16px; }
  .faq-a  { font-size: 12px; padding: 0 16px 14px; }

  /* Contact */
  .type-option  { padding: 14px 16px; }
  .type-option__title { font-size: 14px; }
  .type-selector { grid-template-columns: 1fr; }
  .type-options  { grid-template-columns: 1fr; }

  /* CTA */
  .cta-banner { padding: 22px 16px; }
  .cta-banner__title { font-size: 18px; }
  .cta-banner__subtitle,
  .cta-banner__sub { font-size: 13px; }

  /* CTA (for-institutions inline cta-banner) */
  .cta-banner__btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Trust cards */
  .trust-cards { grid-template-columns: 1fr; }
  .trust-grid  { grid-template-columns: 1fr; }
  .approach-refs { grid-template-columns: 1fr; }

  /* Diff grid */
  .diff-grid { grid-template-columns: 1fr; }

  /* System card outputs */
  .system-card__outputs { grid-template-columns: 1fr; }

  /* Product card */
  .product-card   { padding: 28px 20px; }

  /* Engagement */
  .engagement-grid  { grid-template-columns: 1fr; }
  .engagement-card  { padding: 24px 20px; }
  .process-path     { padding: 24px 20px; }
}


/* ═══════════════════════════════════════════════════════════
   BREAKPOINT ≤ 480px — very small screens
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  section    { padding: 28px 0; }

  /* Typography */
  .hero__title   { font-size: 22px; line-height: 1.2; }
  .section-title { font-size: 18px; }

  /* Nav buttons */
  .nav__actions .btn--primary { padding: 8px 14px; font-size: 12px; }
  .btn--cabinet { display: none; }
  .nav__actions  { gap: 4px; }

  /* Hero stats */
  .hero__stat-val { font-size: 20px; }
  .hero__stat-lbl { font-size: 10px; }

  /* Hero badge */
  .hero-v2__badge { font-size: 10px; padding: 5px 12px; }
  .hero-v2__cta .btn { font-size: 14px; padding: 12px 18px; }

  /* Plan cards */
  .plan-card       { padding: 18px 14px; }
  .plan-card__name { font-size: 15px; }
  .plan-card__cta  { padding: 11px; font-size: 13px; }

  /* Contact */
  .contact-form-card { padding: 24px 16px; }
  .contact-info-card { padding: 18px 14px; }

  /* WYG */
  .wyg-item { flex-direction: column; gap: 8px; }
  .wyg-item__icon { font-size: 22px; }

  /* Step tags */
  .step-content__tags { flex-wrap: wrap; gap: 4px; }
  .step-tag { font-size: 10px; padding: 2px 8px; }

  /* Block-row */
  .block-row { border-radius: 8px; }

  /* Scale grid */
  .scale-grid { grid-template-columns: 1fr; }

  /* Metrics */
  .metrics-grid { grid-template-columns: 1fr; }

  /* Problem card */
  .problem-card { padding: 18px 16px; }

  /* Full-width buttons utility */
  .btn--block-sm { width: 100%; justify-content: center; }

  /* Step block */
  .step-block { grid-template-columns: 48px 1fr; }
  .step-block__num  { width: 40px !important; height: 40px !important; font-size: 15px !important; }
  .step-block:not(:last-child)::after { left: 23px !important; }
}


/* ═══════════════════════════════════════════════════════════
   BREAKPOINT ≤ 360px — mini phones
═══════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .container { padding: 0 10px; }
  section    { padding: 22px 0; }

  .hero__title   { font-size: 19px; }
  .section-title { font-size: 16px; }
  .btn, .btn--lg { font-size: 13px; }
  .hero__tag, .hero__badge { font-size: 10px; padding: 4px 11px; }
  .nav__actions .btn--primary { font-size: 11px; padding: 7px 11px; }

  /* Ensure no horizontal overflow */
  .for-whom__grid,
  .blocks-grid,
  .plans-grid,
  .features-grid,
  .audience-grid,
  .principles-grid,
  .diff-grid,
  .trust-grid,
  .engagement-grid { grid-template-columns: 1fr !important; }
}


/* ═══════════════════════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hide-mobile        { display: none !important; }
  .text-center-mobile { text-align: center !important; }
  .mx-auto-mobile     { margin-left: auto !important; margin-right: auto !important; }
}
.show-mobile { display: none; }
@media (max-width: 768px) {
  .show-mobile { display: block; }
}
