/* ==========================================================================
   Nani Media House — Shared Styles
   ========================================================================== */

/* Reset & Variables */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #FAF6F0;
    --bg-raised: #F2EBE1;
    --bg-card: #FFFFFF;
    --bg-hover: #F7F1E8;
    --primary: #7A5E3A;
    --primary-glow: rgba(122, 94, 58, 0.10);
    --accent: #B8622D;
    --accent-hover: #A35526;
    --accent-glow: rgba(184, 98, 45, 0.18);
    --ink: #2A1E10;
    --text: #2A1E10;
    --text-secondary: #63523E;
    --text-muted: #96876F;
    --border: #E4D9CA;
    --border-hover: #C9B99E;
    --display: 'Playfair Display', Georgia, serif;
    --body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}


/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
    background: rgba(250, 246, 240, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-mark {
    width: 38px;
    height: 38px;
    background: var(--ink);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--bg);
    letter-spacing: -0.03em;
    line-height: 1;
}

.nav-logo-text {
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.25s;
    letter-spacing: 0.02em;
}

.nav-link:hover { color: var(--text); }

.nav-link.active {
    color: var(--text);
}

.nav-cta {
    padding: 0.55rem 1.2rem;
    background: var(--accent);
    color: #FFF;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--body);
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--accent-glow);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 246, 240, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem clamp(1.5rem, 5vw, 4rem) 2rem;
    flex-direction: column;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(42, 30, 16, 0.06);
}

.nav-mobile.open { display: flex; }

.nav-mobile .nav-link {
    font-size: 1rem;
    padding: 0.25rem 0;
}

.nav-mobile .nav-cta {
    align-self: flex-start;
    margin-top: 0.5rem;
}


/* ==========================================================================
   Typography / Section Utilities
   ========================================================================== */

.section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section {
    padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 5vw, 4rem);
    max-width: 1200px;
    margin: 0 auto;
}


/* ==========================================================================
   Page Hero (inner pages — shorter than homepage hero)
   ========================================================================== */

.page-hero {
    padding: clamp(7rem, 14vh, 10rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vh, 5rem);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-overline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 2rem;
}

.page-hero-overline::before,
.page-hero-overline::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--border-hover);
}

.page-hero-title {
    font-family: var(--display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1.25rem;
}

.page-hero-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--primary);
}

.page-hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
}

.page-hero-rule {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 2rem auto 0;
    border: none;
}


/* ==========================================================================
   Section Split (2-column)
   ========================================================================== */

.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}


/* ==========================================================================
   Stat Bar (full-width dark strip)
   ========================================================================== */

.stat-bar {
    background: var(--ink);
    padding: clamp(3rem, 6vh, 4.5rem) clamp(1.5rem, 5vw, 4rem);
}

.stat-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: clamp(2.5rem, 6vw, 5rem);
    flex-wrap: wrap;
}

.stat-bar-item { text-align: center; }

.stat-bar-num {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--bg);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-bar-label {
    font-size: 0.78rem;
    color: rgba(250, 246, 240, 0.45);
    font-weight: 500;
    letter-spacing: 0.04em;
}


/* ==========================================================================
   Stat Row (inline, used in split sections)
   ========================================================================== */

.stat-row {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.stat-num {
    font-family: var(--display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}


/* ==========================================================================
   Card Grid
   ========================================================================== */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    box-shadow: 0 8px 32px rgba(42, 30, 16, 0.06);
}

.card-title {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ==========================================================================
   Numbered List (capability list)
   ========================================================================== */

.numbered-list { border-top: 1px solid var(--border); }

.numbered-item {
    display: grid;
    grid-template-columns: 2.5rem 1fr 1.5fr;
    gap: 2rem;
    align-items: baseline;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.25s;
}

.numbered-item:hover {
    background: var(--bg-hover);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 8px;
}

.numbered-item-num {
    font-family: var(--display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.numbered-item-name {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.numbered-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}


/* ==========================================================================
   Brand Pills
   ========================================================================== */

.brand-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.brand-pill {
    font-family: var(--display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    white-space: nowrap;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    text-decoration: none;
}

.brand-pill:hover {
    border-color: var(--border-hover);
    background: var(--bg-card);
    transform: translateY(-2px);
}

.brand-pill.flagship {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

.brand-pill.flagship:hover {
    background: #3A2E1E;
    border-color: #3A2E1E;
}


/* ==========================================================================
   CTA Block (dark card)
   ========================================================================== */

.cta { padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 5vw, 4rem); max-width: 1200px; margin: 0 auto; }

.cta-card {
    background: var(--ink);
    border-radius: 20px;
    padding: clamp(3.5rem, 7vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(184, 98, 45, 0.06);
    pointer-events: none;
}

.cta-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 246, 240, 0.35);
    margin-bottom: 1.25rem;
}

.cta-title {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--bg);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.cta-sub {
    font-size: 0.95rem;
    color: rgba(250, 246, 240, 0.5);
    margin-bottom: 2.25rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 0.8rem 2rem;
    background: var(--accent);
    color: #FFF;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--body);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(184, 98, 45, 0.3);
}

.btn-ghost {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--bg);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--body);
    border: 1.5px solid rgba(250, 246, 240, 0.18);
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
}

.btn-ghost:hover {
    border-color: rgba(250, 246, 240, 0.35);
    background: rgba(250, 246, 240, 0.04);
}

/* Button variants for light backgrounds */
.btn-primary-light {
    padding: 0.8rem 2rem;
    background: var(--accent);
    color: #FFF;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--body);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    display: inline-block;
}

.btn-primary-light:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--accent-glow);
}


/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: 2.5rem clamp(1.5rem, 5vw, 4rem) 3rem;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-logo-mark {
    width: 28px;
    height: 28px;
    background: var(--ink);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--bg);
    line-height: 1;
}

.footer-logo-text {
    font-family: var(--display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-nav a {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s;
}

.footer-nav a:hover { color: var(--accent); }

.footer-info {
    font-size: 0.78rem;
    color: var(--text-muted);
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.footer-info a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.25s;
}

.footer-info a:hover { color: var(--accent); }


/* ==========================================================================
   Animations
   ========================================================================== */

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   Homepage-specific (hero, intro, brands, capabilities)
   ========================================================================== */

.hero {
    padding: clamp(8rem, 16vh, 12rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vh, 6rem);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-overline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 2.5rem;
}

.hero-overline::before,
.hero-overline::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--border-hover);
}

.hero-title {
    font-family: var(--display);
    font-size: clamp(3.25rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1.75rem;
}

.hero-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--primary);
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}

.hero-rule {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 2.5rem;
    border: none;
}

.hero-brands {
    position: relative;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.hero-brands-track {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    width: max-content;
    animation: scroll-brands 30s linear infinite;
}

.hero-brands-track:hover { animation-play-state: paused; }

.hero-brand-pill {
    font-family: var(--display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    white-space: nowrap;
    cursor: default;
    flex-shrink: 0;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.hero-brand-pill:hover {
    border-color: var(--border-hover);
    background: var(--bg-card);
    transform: translateY(-2px);
}

.hero-brand-pill.flagship {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

.hero-brand-pill.flagship:hover {
    background: #3A2E1E;
    border-color: #3A2E1E;
}

.hero-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border-hover);
    flex-shrink: 0;
}

@keyframes scroll-brands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Homepage intro */
.intro { padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 5vw, 4rem); max-width: 1200px; margin: 0 auto; }
.intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
.intro-heading { font-family: var(--display); font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; color: var(--text); letter-spacing: -0.02em; line-height: 1.15; }
.intro-right { padding-top: 0.5rem; }
.intro-text { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.5rem; }
.intro-stat-row { display: flex; gap: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.intro-stat-num { font-family: var(--display); font-size: 1.75rem; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 0.25rem; }
.intro-stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

/* Homepage brands grid */
.brands { padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 5vw, 4rem); max-width: 1200px; margin: 0 auto; }
.brands-header { margin-bottom: 2.5rem; }
.brands-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

.brand-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: default;
}

.brand-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
    box-shadow: 0 8px 32px rgba(42, 30, 16, 0.06);
}

.brand-card:hover::after { transform: scaleX(1); }

.brand-card.flagship {
    grid-column: span 2;
    background: var(--ink);
    border-color: transparent;
    min-height: 200px;
}

.brand-card.flagship .brand-tag { color: rgba(250,246,240,0.45); border-color: rgba(250,246,240,0.12); }
.brand-card.flagship .brand-name { color: var(--bg); }
.brand-card.flagship .brand-desc { color: rgba(250,246,240,0.55); }
.brand-card.flagship .brand-num { color: rgba(250,246,240,0.3); }
.brand-top { display: flex; justify-content: space-between; align-items: flex-start; }
.brand-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); border: 1px solid var(--border); border-radius: 100px; padding: 0.25rem 0.7rem; }
.brand-num { font-family: var(--display); font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.brand-bottom { margin-top: auto; }
.brand-name { font-family: var(--display); font-size: 1.6rem; font-weight: 700; color: var(--text); letter-spacing: -0.015em; margin-bottom: 0.3rem; line-height: 1.2; }
.brand-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }

/* Homepage capabilities */
.capabilities { padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 5vw, 4rem); max-width: 1200px; margin: 0 auto; }
.cap-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; gap: 2rem; }
.cap-header-text { max-width: 500px; }
.cap-header-note { font-size: 0.85rem; color: var(--text-muted); max-width: 280px; text-align: right; line-height: 1.5; }
.cap-list { border-top: 1px solid var(--border); }
.cap-item { display: grid; grid-template-columns: 2.5rem 1fr 1.5fr; gap: 2rem; align-items: baseline; padding: 1.5rem 0; border-bottom: 1px solid var(--border); transition: background 0.25s; }
.cap-item:hover { background: var(--bg-hover); margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; border-radius: 8px; }
.cap-num { font-family: var(--display); font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.cap-name { font-family: var(--display); font-size: 1.2rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.cap-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
    .intro-inner,
    .section-split { grid-template-columns: 1fr; gap: 2rem; }

    .brands-grid { grid-template-columns: 1fr; }
    .brand-card.flagship { grid-column: span 1; }

    .cap-item,
    .numbered-item { grid-template-columns: 2rem 1fr; gap: 1rem; }
    .cap-desc,
    .numbered-item-desc { grid-column: 1 / -1; padding-left: calc(2rem + 1rem); padding-top: 0.25rem; }

    .cap-header { flex-direction: column; align-items: flex-start; }
    .cap-header-note { text-align: left; max-width: 100%; }

    .hero-brands { gap: 0.75rem; }
    .hero-dot { display: none; }

    .stat-bar-inner { gap: 2rem; }
}

@media (max-width: 640px) {
    .nav-link:not(.nav-mobile .nav-link) { display: none; }
    .nav-cta:not(.nav-mobile .nav-cta) { display: none; }
    .nav-toggle { display: flex; }

    .hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
    .hero-brand-pill { font-size: 0.82rem; padding: 0.5rem 1rem; }
    .page-hero-title { font-size: clamp(2rem, 8vw, 2.75rem); }

    .cta-actions { flex-direction: column; align-items: center; }

    .stat-bar-inner { flex-direction: column; gap: 1.5rem; }

    .card-grid { grid-template-columns: 1fr; }

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-nav { justify-content: center; }
}
