/* =========================================
   StokX — Playful Edition
   ========================================= */

:root {
    /* App brand colors (from lib/app/theme/app_theme.dart) */
    --c-blue:        #005DA9;  /* primaryBlue */
    --c-cyan:        #00AEEF;  /* primaryCyan */
    --c-orange:      #F58220;  /* accentOrange */
    --c-orange-2:    #F47920;  /* orangeGradient start */
    --c-orange-light:#F9A825;  /* accentOrangeLight */
    --c-success:     #4CAF50;
    --c-error:       #E53935;
    --c-warning:     #FFC107;

    /* Legacy tokens kept for compatibility — remapped onto brand */
    --c-coral:  var(--c-orange);
    --c-yellow: var(--c-orange-light);
    --c-teal:   var(--c-cyan);
    --c-green:  var(--c-success);
    --c-purple: #6B8FB5;
    --c-pink:   #FFE0CC;
    --c-red:    var(--c-error);

    --primary:       var(--c-blue);
    --primary-dark:  #00457E;
    --primary-light: #E1EEFA;

    --accent:        var(--c-orange);
    --accent-dark:   var(--c-orange-light);

    --bg:        #EEF2F6;   /* app backgroundColor */
    --bg-alt:    #FFFFFF;   /* app surfaceColor */
    --bg-soft:   #F6F9FC;

    --text:        #1A2E50; /* app textDark */
    --text-body:   #37474F; /* app textBody */
    --text-muted:  #7B8794; /* app textGray */
    --text-light:  #B0BEC5; /* app textLight */
    --border:      #E8ECF0; /* app dividerColor */

    --shadow-sm: 0 2px 6px rgba(26, 46, 80, .06);
    --shadow:    0 14px 34px rgba(0, 93, 169, .14);
    --shadow-lg: 0 26px 60px rgba(26, 46, 80, .18);
    --shadow-yellow: 0 12px 28px rgba(249, 168, 37, .30);
    --shadow-teal:   0 12px 28px rgba(0, 174, 239, .30);

    --radius:    20px;
    --radius-lg: 32px;
    --radius-pill: 999px;

    /* App gradients */
    --gradient-hot:  linear-gradient(135deg, #005DA9 0%, #00AEEF 100%);  /* headerGradient */
    --gradient-cool: linear-gradient(135deg, #005DA9 0%, #00AEEF 100%);
    --gradient-fun:  linear-gradient(135deg, #F47920 0%, #F9A825 100%);  /* orangeGradient */
    --gradient-soft: linear-gradient(135deg, #EEF2F6 0%, #F6F9FC 50%, #E1EEFA 100%);

    --transition: .3s cubic-bezier(.34, 1.56, .64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Trebuchet MS', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    white-space: nowrap;
    font-family: inherit;
}
.btn-primary {
    background: var(--gradient-hot);
    color: #fff;
    box-shadow: 0 12px 24px rgba(255, 107, 91, .35);
}
.btn-primary:hover {
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: 0 18px 34px rgba(255, 107, 91, .45);
    color: #fff;
}
.btn-outline {
    background: #fff;
    color: var(--text);
    border-color: var(--text);
}
.btn-outline:hover {
    background: var(--text);
    color: #fff;
    transform: translateY(-3px) rotate(1deg);
}
.btn-yellow {
    background: var(--c-yellow);
    color: var(--text);
    box-shadow: var(--shadow-yellow);
}
.btn-yellow:hover {
    transform: translateY(-3px);
    color: var(--text);
}
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ============ HEADER ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 248, 241, .9);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    transition: box-shadow .25s ease;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -.5px;
}
.brand img { width: 42px; height: 42px; border-radius: 12px; }
.brand:hover { color: var(--primary); }
.brand-text { background: var(--gradient-hot); -webkit-background-clip: text; background-clip: text; color: transparent; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-link {
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 6px 2px;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 3px;
    border-radius: 3px;
    background: var(--gradient-hot);
    transform: scaleX(0);
    transition: var(--transition);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--primary); }
.nav-cta { padding: 11px 22px; font-size: 14px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: var(--text);
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ DECORATIVE: SUNBURST / CONFETTI ============ */
.sunburst {
    position: absolute;
    width: 320px; height: 320px;
    background:
        repeating-conic-gradient(
            from 0deg,
            transparent 0deg 18deg,
            var(--c-yellow) 18deg 20deg,
            transparent 20deg 38deg,
            var(--c-coral) 38deg 40deg,
            transparent 40deg 60deg
        );
    -webkit-mask: radial-gradient(circle, transparent 32%, #000 34%, #000 49%, transparent 50%);
            mask: radial-gradient(circle, transparent 32%, #000 34%, #000 49%, transparent 50%);
    animation: spin 40s linear infinite;
    pointer-events: none;
    opacity: .25;
}
@keyframes spin { to { transform: rotate(360deg); } }

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .35;
    pointer-events: none;
}
.blob.coral  { background: var(--c-coral); }
.blob.yellow { background: var(--c-yellow); opacity: .25; }
.blob.teal   { background: var(--c-teal); }
.blob.blue   { background: var(--c-teal); }
.blob.pink   { background: var(--c-coral); opacity: .25; }

.confetti span {
    position: absolute;
    width: 14px; height: 14px;
    border-radius: 4px;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(12deg); }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 90px 0 120px;
    background: var(--gradient-soft);
    overflow: hidden;
}
.hero .blob.coral  { top: -120px; left: -80px;  width: 360px; height: 360px; }
.hero .blob.yellow { top: 30%;    right: -100px; width: 320px; height: 320px; }
.hero .blob.teal   { bottom: -100px; left: 30%; width: 260px; height: 260px; opacity: .35; }
.hero .sunburst    { top: -120px; right: -80px; }

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border-radius: var(--radius-pill);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
}
.hero-badge i { color: var(--c-yellow); }

.hero h1 {
    font-size: clamp(36px, 5.4vw, 64px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}
.hero h1 .word {
    display: inline-block;
    transform-origin: center;
}
.hero h1 .word-coral,
.hero h1 .word-yellow,
.hero h1 .word-teal,
.hero h1 .word-blue,
.hero h1 .word-green { color: var(--c-coral); }

.hero-sub {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.hero-stats .stat strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}
.hero-stats .stat:nth-child(2) strong { color: var(--c-teal); }
.hero-stats .stat:nth-child(3) strong { color: var(--c-orange); }
.hero-stats .stat span {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hero scene */
.hero-scene {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 480px;
    margin: 0 auto;
}
.hero-scene .sun {
    position: absolute;
    top: 8%; left: 50%;
    transform: translateX(-50%);
    width: 130px; height: 130px;
    background: var(--c-yellow);
    border-radius: 50%;
    box-shadow: 0 0 0 18px rgba(255, 210, 63, .25), var(--shadow-yellow);
    animation: bob 4s ease-in-out infinite;
}
.hero-scene .sun::before, .hero-scene .sun::after {
    content: ''; position: absolute; inset: 28%;
    background: var(--text);
    border-radius: 50%;
}
.hero-scene .sun::before { width: 14px; height: 14px; left: 28%; }
.hero-scene .sun::after  { width: 14px; height: 14px; left: auto; right: 28%; }
.hero-scene .smile {
    position: absolute;
    bottom: 30%; left: 50%;
    transform: translateX(-50%);
    width: 50px; height: 25px;
    border: 4px solid var(--text);
    border-top: 0;
    border-radius: 0 0 50px 50px;
    z-index: 5;
}

.hero-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    padding: 16px 18px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 14px;
    z-index: 3;
}
.hero-card .ic {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}
.hero-card.c1 { top: 4%;  left: -4%; animation: float 5s ease-in-out infinite; }
.hero-card.c1 .ic { background: var(--c-coral); }
.hero-card.c2 { top: 38%; right: -8%; animation: float 5s ease-in-out infinite .8s; }
.hero-card.c2 .ic { background: var(--c-teal); }
.hero-card.c3 { bottom: 16%; left: -10%; animation: float 5s ease-in-out infinite 1.6s; }
.hero-card.c3 .ic { background: var(--c-coral); }
.hero-card.c4 { bottom: 0%; right: 5%; animation: float 5s ease-in-out infinite 2.4s; }
.hero-card.c4 .ic { background: var(--c-teal); }
.hero-card small { display: block; color: var(--text-muted); font-weight: 500; font-size: 11px; }

@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-10px); }
}

/* Wave divider */
.wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 60px;
    background: var(--bg-alt);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60 Z' fill='%23000'/></svg>") center/cover;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60 Z' fill='%23000'/></svg>") center/cover;
}

/* ============ SECTION COMMON ============ */
section { padding: 100px 0; position: relative; }
.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border-radius: var(--radius-pill);
}
.section-head h2 {
    font-size: clamp(30px, 4.2vw, 46px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 18px;
}
.section-head h2 .hl { color: var(--primary); position: relative; display: inline-block; }
.section-head h2 .hl::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 4px;
    height: 12px;
    background: var(--c-yellow);
    z-index: -1;
    opacity: .55;
    border-radius: 8px;
}
.section-head p {
    font-size: 18px;
    color: var(--text-muted);
}

/* ============ FEATURES ============ */
.features { background: var(--bg-alt); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-6px) rotate(-.6deg);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    transform: rotate(-6deg);
    transition: var(--transition);
}
.feature-card:hover .feature-icon { transform: rotate(6deg) scale(1.05); }

.feature-card .feature-icon { background: var(--c-coral); }
.feature-card:nth-child(2n) .feature-icon { background: var(--c-teal); }

.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============ HIGHLIGHT ALTERNATING ============ */
.highlights { background: var(--bg); }
.highlight-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 90px;
}
.highlight-row:last-child { margin-bottom: 0; }
.highlight-row.reverse { direction: rtl; }
.highlight-row.reverse > * { direction: ltr; }

.highlight-visual {
    background: var(--gradient-hot);
    border-radius: var(--radius-lg);
    padding: 50px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.highlight-row:nth-child(2) .highlight-visual { background: var(--gradient-cool); box-shadow: var(--shadow-teal); }
.highlight-row:nth-child(3) .highlight-visual { background: var(--gradient-hot); }

.highlight-visual > i.bg-icon {
    font-size: 160px;
    opacity: .22;
    position: absolute;
    right: -10px; bottom: -30px;
    transform: rotate(-12deg);
}
.highlight-visual .vbox {
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 26px;
    width: 100%;
    max-width: 300px;
    z-index: 1;
    border: 1.5px solid rgba(255, 255, 255, .25);
}
.highlight-visual .vbox h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}
.highlight-visual .vbox .bar {
    display: flex; justify-content: space-between;
    background: rgba(255, 255, 255, .22);
    padding: 11px 14px;
    border-radius: 12px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}
.highlight-text .section-tag { margin-bottom: 14px; }
.highlight-text h3 {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.7px;
    margin-bottom: 18px;
}
.highlight-text p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 22px;
}
.check-list { list-style: none; }
.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    font-weight: 600;
}
.check-list li i {
    color: #fff;
    background: var(--c-green);
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* ============ SCREENSHOTS ============ */
.screenshots { background: var(--bg-alt); }
.screens-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.screen-card {
    aspect-ratio: 9 / 19;
    border-radius: 28px;
    padding: 22px 18px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.screen-card:nth-child(1) { background: var(--gradient-hot); transform: rotate(-2deg); }
.screen-card:nth-child(2) { background: var(--c-teal);     transform: rotate(2deg); }
.screen-card:nth-child(3) { background: var(--gradient-hot); transform: rotate(-2deg); }
.screen-card:nth-child(4) { background: var(--c-teal);     transform: rotate(2deg); }
.screen-card:hover { transform: rotate(0deg) translateY(-10px) scale(1.03); box-shadow: var(--shadow-lg); }
.screen-card i { font-size: 56px; margin-bottom: 16px; opacity: .9; }
.screen-card h4 { font-size: 18px; margin-bottom: 8px; font-weight: 700; }
.screen-card p { font-size: 12px; opacity: .9; padding: 0 8px; }

/* ============ STATS ============ */
.stats-band {
    background: var(--gradient-hot);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stats-band .sunburst { left: -60px; bottom: -60px; opacity: .35; }
.stats-band .sunburst.two { right: -60px; top: -60px; left: auto; bottom: auto; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.stat-item strong {
    display: block;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -1px;
}
.stat-item span { font-size: 13px; opacity: .9; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

/* ============ PRICING ============ */
.pricing { background: var(--bg); position: relative; overflow: hidden; }
.pricing .blob.pink { top: 5%; right: -120px; width: 320px; height: 320px; }
.pricing .blob.teal { bottom: 5%; left: -120px; width: 320px; height: 320px; opacity: .35; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
    z-index: 1;
}
.price-card {
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition);
    position: relative;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--c-coral); }
.price-card.featured {
    background: var(--gradient-hot);
    color: #fff;
    border: 0;
    transform: scale(1.04) rotate(-1deg);
    box-shadow: var(--shadow-lg);
}
.price-card.featured:hover { transform: scale(1.06) translateY(-4px) rotate(0); }
.price-card.featured .price-name { color: rgba(255,255,255,.9); }
.price-card.featured ul li i { color: #fff; background: rgba(255,255,255,.25); }
.price-tag {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--c-yellow);
    color: var(--text);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-yellow);
}
.price-name {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.price-amount {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 6px;
    line-height: 1;
}
.price-amount small { font-size: 16px; font-weight: 600; opacity: .8; }
.price-desc { font-size: 14px; opacity: .8; margin-bottom: 26px; }
.price-card ul { list-style: none; margin-bottom: 28px; }
.price-card ul li {
    padding: 8px 0;
    font-size: 14px;
    display: flex; align-items: center; gap: 10px;
    font-weight: 500;
}
.price-card ul li i {
    color: #fff;
    background: var(--c-green);
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}
.price-card .btn { width: 100%; justify-content: center; }
.price-card.featured .btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

/* ============ FAQ ============ */
.faq { background: var(--bg-alt); }
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--transition);
    background: #fff;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
    line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { border-color: var(--c-coral); box-shadow: var(--shadow-sm); }
.faq-item .faq-body {
    padding: 0 26px 24px;
    color: var(--text-muted);
}

/* ============ DOWNLOAD CTA ============ */
.cta-band {
    padding: 110px 0;
    background: var(--gradient-hot);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band .sunburst { top: -100px; left: -100px; opacity: .4; }
.cta-band .sunburst.two { top: auto; left: auto; bottom: -100px; right: -100px; opacity: .4; }
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 {
    font-size: clamp(32px, 4.4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.cta-band p {
    font-size: 19px;
    opacity: .95;
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.store-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--text);
    color: #fff;
    padding: 16px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.store-btn:hover { transform: translateY(-4px) rotate(-1deg); color: #fff; }
.store-btn i { font-size: 34px; }
.store-btn span { display: block; font-size: 11px; opacity: .8; text-transform: uppercase; letter-spacing: 1px; }
.store-btn strong { font-size: 17px; font-weight: 700; }

/* ============ FOOTER ============ */
.site-footer {
    background: #1f2547;
    color: #cbd1ea;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: -40px; left: 50%;
    transform: translateX(-50%);
    width: 100%; height: 60px;
    background: var(--bg-alt);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,0 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,0 Z' fill='%23000'/></svg>") center/cover;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,0 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,0 Z' fill='%23000'/></svg>") center/cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
}
.brand-footer { color: #fff; margin-bottom: 18px; }
.brand-footer .brand-text { background: var(--gradient-hot); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-footer:hover { color: var(--c-yellow); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 22px; }
.socials { display: flex; gap: 10px; }
.socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #cbd1ea;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.socials a:hover { background: var(--c-coral); color: #fff; transform: translateY(-3px) rotate(-6deg); }

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 6px 0; font-size: 14px; }
.footer-col ul li a { color: #cbd1ea; }
.footer-col ul li a:hover { color: var(--c-yellow); }
.contact-list li { display: flex; align-items: center; gap: 10px; }
.contact-list li i { color: var(--c-coral); width: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 0;
    font-size: 13px;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* ============ WHATSAPP FAB ============ */
.whatsapp-fab {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .45), 0 4px 12px rgba(37, 211, 102, .3);
    z-index: 60;
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s ease;
    text-decoration: none;
}
.whatsapp-fab:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 38px rgba(37, 211, 102, .55), 0 6px 16px rgba(37, 211, 102, .35);
}
.whatsapp-fab .wa-pulse {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: wa-pulse 2.2s ease-out infinite;
    pointer-events: none;
}
@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: .8; }
    100% { transform: scale(1.6); opacity: 0;  }
}
.whatsapp-fab .wa-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--text);
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.whatsapp-fab .wa-tooltip::after {
    content: '';
    position: absolute;
    right: -5px; top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px; height: 10px;
    background: var(--text);
}
.whatsapp-fab:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ============ SCROLL TO TOP ============ */
.scroll-top {
    position: fixed;
    bottom: 100px; right: 32px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--gradient-hot);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 59;
}
.scroll-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { color: #fff; transform: translateY(-6px) rotate(-8deg); }

/* ============ PAGE HEADER (Inner Pages) ============ */
.page-hero {
    background: var(--gradient-soft);
    padding: 90px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero .blob.coral  { top: -80px; left: -80px; width: 280px; height: 280px; }
.page-hero .blob.yellow { bottom: -80px; right: -80px; width: 260px; height: 260px; }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
}
.page-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}
.breadcrumbs {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 18px;
    background: #fff;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
}
.breadcrumbs a { color: var(--primary); font-weight: 600; }

/* ============ CONTACT ============ */
.contact-section { background: var(--bg-alt); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
}
.contact-info-card {
    background: var(--gradient-hot);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 44px;
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
}
.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -50px; left: -50px;
    width: 160px; height: 160px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}
.contact-info-card h3 { font-size: 28px; font-weight: 700; margin-bottom: 12px; position: relative; }
.contact-info-card > p { opacity: .92; margin-bottom: 36px; position: relative; }
.contact-info-card ul { list-style: none; margin-bottom: 36px; position: relative; }
.contact-info-card ul li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 15px;
}
.contact-info-card ul li i {
    width: 42px; height: 42px;
    background: rgba(255, 255, 255, .2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}
.contact-info-card .socials { position: relative; }
.contact-info-card .socials a {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}
.contact-info-card .socials a:hover { background: #fff; color: var(--primary); }

.contact-form { background: var(--bg-alt); }
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--border);
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    background: var(--bg-soft);
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--c-coral);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 91, .14);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.alert {
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.alert.alert-success {
    background: #e7faec;
    color: #126a32;
    border: 2px solid #a7e8b8;
}
.alert.alert-error {
    background: #ffeae7;
    color: #b91c1c;
    border: 2px solid #ffc6bf;
}
.alert i { font-size: 18px; margin-top: 1px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding: 60px 0 80px; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-cta, .hero-stats { justify-content: center; }
    .hero-scene { max-width: 360px; }

    .highlight-row, .highlight-row.reverse { grid-template-columns: 1fr; direction: ltr; }
    .highlight-row.reverse > * { direction: ltr; }
    .highlight-row { gap: 32px; margin-bottom: 60px; }
    .highlight-visual { aspect-ratio: 5 / 3; padding: 30px; }

    .screens-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-4px); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }

    .nav-toggle { display: flex; }
    .main-nav {
        position: absolute;
        top: 78px; left: 0; right: 0;
        background: #fff;
        border-bottom: 2px solid var(--border);
        flex-direction: column;
        gap: 0;
        padding: 12px 20px 22px;
        box-shadow: var(--shadow);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .main-nav .nav-link {
        width: 100%;
        padding: 16px 6px;
        border-bottom: 1px solid var(--border);
    }
    .main-nav .nav-link::after { display: none; }
    .nav-cta { width: 100%; justify-content: center; margin-top: 14px; }
}

@media (max-width: 768px) {
    .compare-table th, .compare-table td { padding: 12px 14px; font-size: 13px; }
    .blog-featured .body { padding: 28px 22px; }
    .blog-featured h2 { font-size: 22px; }
    .download-meta { gap: 16px 20px; font-size: 13px; }
    .legal-wrap { padding: 28px 22px; }
    .legal-wrap h2 { font-size: 19px; }
    .legal-wrap h3 { font-size: 16px; }
    .legal-wrap p, .legal-wrap li { font-size: 14px; }
    .timeline { padding-left: 30px; }
    .timeline-item::before { left: -26px; width: 14px; height: 14px; }
    .timeline::before { left: 6px; }
    .price-amount { font-size: 42px; }
    .err-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 560px) {
    section { padding: 60px 0; }
    .container { padding: 0 18px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .screens-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .screen-card { padding: 18px 14px; }
    .screen-card i { font-size: 42px; }
    .screen-card h4 { font-size: 15px; }
    .screen-card p { font-size: 11px; }
    .hero { padding: 50px 0 70px; }
    .hero-card { padding: 10px 12px; font-size: 12px; }
    .hero-card .ic { width: 36px; height: 36px; font-size: 14px; }
    .hero-card.c1 { left: 0%; }
    .hero-card.c2 { right: 0%; }
    .hero-card.c3 { left: 0%; }
    .hero-card.c4 { right: 8%; }
    .hero-scene .sun { width: 100px; height: 100px; }
    .hero-stats { gap: 24px; }
    .hero-stats .stat strong { font-size: 26px; }
    .stat-item strong { font-size: 38px; }
    .btn { padding: 12px 20px; font-size: 14px; }
    .btn-lg { padding: 14px 24px; font-size: 15px; }
    .hero-cta { gap: 10px; }
    .hero-cta .btn { flex: 1; min-width: 0; justify-content: center; }
    .page-hero { padding: 50px 0 40px; }
    .page-hero h1 { font-size: 30px; }
    .page-hero p { font-size: 15px; }
    .breadcrumbs { font-size: 12px; padding: 5px 12px; }
    .section-head { margin-bottom: 40px; }
    .section-head h2 { font-size: 26px; }
    .section-head p { font-size: 15px; }
    .pricing-toggle button { padding: 9px 16px; font-size: 13px; }
    .feature-card { padding: 26px 22px; }
    .price-card { padding: 30px 24px; }
    .price-card.featured { transform: none; }
    .highlight-visual { padding: 26px; }
    .highlight-visual .vbox { max-width: 100%; }
    .compare-table th, .compare-table td { padding: 10px 12px; font-size: 12px; }
    .blog-featured .img { font-size: 60px; min-height: 0; padding: 24px; }
    .blog-featured h2 { font-size: 20px; }
    .blog-featured .body { padding: 26px 20px; }
    .legal-wrap { padding: 22px 18px; }
    .req-card, .support-card { padding: 22px 20px; }
    .team-card .avatar { width: 84px; height: 84px; font-size: 30px; }
    .footer-desc { font-size: 13px; }
    .err-code { letter-spacing: -4px; }
    .form-group input, .form-group textarea, .form-group select { padding: 13px 15px; font-size: 14px; }
    .contact-info-card { padding: 32px 26px; }
    .whatsapp-fab {
        width: 54px; height: 54px;
        font-size: 26px;
        bottom: 18px; right: 18px;
    }
    .whatsapp-fab .wa-tooltip { display: none; }
    .scroll-top {
        bottom: 84px; right: 22px;
        width: 40px; height: 40px;
    }
}

@media (max-width: 380px) {
    section { padding: 50px 0; }
    .hero h1 { font-size: 30px; }
    .section-head h2 { font-size: 23px; }
    .hero-stats { gap: 18px; }
    .hero-stats .stat strong { font-size: 22px; }
    .price-amount { font-size: 38px; }
    .pricing-toggle { width: 100%; }
    .pricing-toggle button { flex: 1; padding: 8px 10px; font-size: 12px; }
    .pricing-toggle .save { display: none; }
    .store-btn { padding: 12px 18px; }
    .store-btn i { font-size: 26px; }
    .store-btn strong { font-size: 14px; }
}

@media (hover: none) {
    .whatsapp-fab:hover .wa-tooltip { opacity: 0; }
}

/* ============ ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   New page styles
   ========================================= */

/* ===== ABOUT ===== */
.about-story { background: var(--bg-alt); padding: 100px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-grid .visual {
    background: var(--gradient-hot);
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
    color: #fff;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}
.about-grid .visual .stat-pill {
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,.25);
    padding: 18px 22px;
    border-radius: var(--radius);
    flex: 1;
    min-width: 140px;
}
.about-grid .visual .stat-pill strong { display:block; font-size: 30px; font-weight: 700; }
.about-grid .visual .stat-pill span { font-size: 13px; opacity: .9; }
.about-grid .visual > i {
    position: absolute;
    top: 24px; right: 30px;
    font-size: 140px;
    opacity: .18;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.value-card {
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: var(--shadow); }
.value-card .ic {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
}
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: 14px; }

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 14px; top: 8px; bottom: 8px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--c-cyan));
    border-radius: 3px;
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px; top: 4px;
    width: 18px; height: 18px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--bg-alt);
    box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item .yr {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    display: block;
}
.timeline-item h4 { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.timeline-item p { color: var(--text-muted); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
}
.team-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 30px 22px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow); border-color: var(--primary); }
.team-card .avatar {
    width: 100px; height: 100px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--gradient-hot);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    font-weight: 700;
}
.team-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-card .role { color: var(--primary); font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.team-card .bio { color: var(--text-muted); font-size: 13px; }

/* ===== PRICING DETAILED ===== */
.pricing-toggle {
    display: inline-flex;
    background: var(--bg-alt);
    padding: 6px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    border: 2px solid var(--border);
}
.pricing-toggle button {
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
}
.pricing-toggle button.active { background: var(--gradient-hot); color: #fff; }
.pricing-toggle .save {
    background: var(--accent);
    color: var(--text);
    margin-left: 6px;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    font-size: 11px;
}

.compare-table-wrap { overflow-x: auto; }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-alt);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    min-width: 600px;
}
.compare-table th, .compare-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.compare-table th {
    background: var(--bg);
    font-weight: 700;
    color: var(--text);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.compare-table th.featured { background: var(--gradient-hot); color: #fff; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table td i.fa-check { color: var(--c-success); }
.compare-table td i.fa-xmark { color: var(--text-light); }
.compare-table tbody tr:hover { background: var(--bg-soft); }

/* ===== DOWNLOAD ===== */
.download-hero {
    background: var(--gradient-hot);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.download-hero > .container { position: relative; z-index: 2; }
.download-hero h1 {
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -1px;
}
.download-hero p {
    font-size: 18px;
    opacity: .95;
    max-width: 580px;
    margin: 0 auto 36px;
}
.download-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 36px;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: .92;
}
.download-meta i { color: var(--accent); }

.requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.req-card {
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
}
.req-card .ic {
    width: 48px; height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}
.req-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.req-card ul { list-style: none; }
.req-card ul li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-body);
    display: flex; align-items: center; gap: 8px;
}
.req-card ul li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

.release-list { list-style: none; }
.release-item {
    background: var(--bg-alt);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 22px 26px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
}
.release-item .ver {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 12px;
    margin-right: 10px;
}
.release-item .date { color: var(--text-muted); font-size: 13px; }
.release-item h4 { font-size: 17px; font-weight: 700; margin: 8px 0; }
.release-item ul { list-style: none; padding-left: 0; }
.release-item ul li {
    padding: 4px 0;
    color: var(--text-body);
    font-size: 14px;
    display: flex; gap: 8px; align-items: flex-start;
}
.release-item ul li i { color: var(--c-success); margin-top: 5px; }

/* ===== SUPPORT ===== */
.support-search {
    max-width: 640px;
    margin: 0 auto 50px;
    position: relative;
}
.support-search input {
    width: 100%;
    padding: 18px 22px 18px 56px;
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-size: 16px;
    background: var(--bg-alt);
    transition: var(--transition);
}
.support-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 93, 169, .12);
}
.support-search > i {
    position: absolute;
    top: 50%; left: 22px;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 18px;
}

.support-cats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.support-card {
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}
.support-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
    color: inherit;
}
.support-card .ic {
    width: 56px; height: 56px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: var(--transition);
}
.support-card:hover .ic { background: var(--gradient-hot); color: #fff; }
.support-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.support-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }
.support-card .count { color: var(--primary); font-weight: 700; font-size: 13px; }

/* ===== BLOG ===== */
.blog-featured {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    margin-bottom: 60px;
    border: 1px solid var(--border);
}
.blog-featured .img {
    background: var(--gradient-hot);
    color: #fff;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    min-height: 320px;
}
.blog-featured .body { padding: 50px; }
.blog-featured .cat {
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.blog-featured h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    margin: 14px 0;
}
.blog-featured p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.blog-featured .meta { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.blog-card {
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary); }
.blog-card .img {
    background: var(--gradient-hot);
    color: #fff;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}
.blog-card:nth-child(2n) .img { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.blog-card:nth-child(3n) .img { background: linear-gradient(135deg, #1A2E50, var(--primary)); }
.blog-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card .cat {
    color: var(--accent);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}
.blog-card p { color: var(--text-muted); font-size: 14px; flex: 1; }
.blog-card .meta {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 12px;
    display: flex; justify-content: space-between;
}

/* ===== LIVE CHAT WIDGET ===== */
.chat-widget {
    position: fixed;
    bottom: 28px; left: 28px;
    z-index: 70;
    font-family: 'Nunito', sans-serif;
}

.chat-launcher {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-hot);
    color: #fff;
    border: 0;
    padding: 12px 22px 12px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 14px 34px rgba(0, 93, 169, .35), 0 4px 12px rgba(0, 93, 169, .2);
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s ease;
    position: relative;
}
.chat-launcher:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 93, 169, .45), 0 6px 16px rgba(0, 93, 169, .28);
}
.chat-launcher .chat-icon {
    width: 38px; height: 38px;
    background: rgba(255, 255, 255, .22);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.chat-launcher .chat-label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    transition: max-width .35s ease, opacity .25s ease, padding .25s ease;
    padding-right: 0;
}
.chat-widget:not(.open) .chat-launcher:hover .chat-label,
.chat-widget.show-label .chat-launcher .chat-label {
    max-width: 180px;
    opacity: 1;
    padding-right: 4px;
}
.chat-launcher .chat-badge {
    position: absolute;
    top: 2px; right: 2px;
    width: 18px; height: 18px;
    background: var(--accent);
    color: var(--text);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
    transition: var(--transition);
}
.chat-widget.open .chat-launcher .chat-badge { display: none; }
.chat-launcher .chat-pulse {
    position: absolute;
    inset: -2px;
    border-radius: 999px;
    border: 2px solid var(--primary);
    animation: chat-pulse 2.2s ease-out infinite;
    pointer-events: none;
}
.chat-widget.open .chat-launcher .chat-pulse { animation: none; opacity: 0; }
@keyframes chat-pulse {
    0%   { transform: scale(1);    opacity: .55; }
    100% { transform: scale(1.18); opacity: 0;   }
}

.chat-panel {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 0;
    width: 360px;
    max-height: 580px;
    background: var(--bg-alt);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(26, 46, 80, .25), 0 8px 18px rgba(26, 46, 80, .12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px) scale(.96);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), opacity .25s ease;
    transform-origin: bottom left;
}
.chat-widget.open .chat-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chat-header {
    background: var(--gradient-hot);
    color: #fff;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}
.chat-header .agents {
    display: flex;
}
.chat-header .agents .ag {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
    margin-left: -10px;
}
.chat-header .agents .ag:first-child { margin-left: 0; }
.chat-header .chat-title { flex: 1; min-width: 0; }
.chat-header .chat-title strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}
.chat-header .chat-title .online {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    opacity: .92;
    margin-top: 2px;
}
.chat-header .chat-title .online .dot {
    width: 8px; height: 8px;
    background: var(--c-success);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, .35);
    animation: dot-blink 2s ease-in-out infinite;
}
@keyframes dot-blink { 50% { opacity: .55; } }

.chat-close {
    background: rgba(255, 255, 255, .2);
    border: 0;
    color: #fff;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.chat-close:hover { background: rgba(255, 255, 255, .35); transform: rotate(90deg); }

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.msg {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    max-width: 86%;
}
.msg-agent { align-self: flex-start; }
.msg-agent .avatar {
    width: 28px; height: 28px;
    background: var(--gradient-hot);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}
.msg-agent .bubble {
    background: var(--bg-alt);
    color: var(--text-body);
    padding: 12px 14px;
    border-radius: 14px 14px 14px 4px;
    font-size: 14px;
    line-height: 1.55;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.msg-agent .bubble strong { color: var(--text); }

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 4px 0;
}
.quick-actions .qa {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}
.quick-actions .qa:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    color: var(--text);
}
.quick-actions .qa i {
    width: 32px; height: 32px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}
.quick-actions .qa-wa i   { background: #25d366; }
.quick-actions .qa-call i { background: var(--primary); }
.quick-actions .qa-mail i { background: var(--accent); }
.quick-actions .qa-help i { background: var(--c-cyan); }
.quick-actions .qa strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 1px;
}
.quick-actions .qa span {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.3;
    word-break: break-word;
}

.chat-input {
    display: flex;
    align-items: center;
    padding: 10px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    gap: 8px;
}
.chat-input input {
    flex: 1;
    border: 0;
    padding: 12px 14px;
    background: var(--bg-soft);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    outline: none;
}
.chat-input input:focus { background: var(--bg); box-shadow: 0 0 0 2px rgba(0, 93, 169, .15); }
.chat-input button {
    width: 40px; height: 40px;
    border: 0;
    background: var(--gradient-hot);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.chat-input button:hover { transform: scale(1.06) rotate(-6deg); }

.chat-footer {
    padding: 10px 16px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 11px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.chat-footer i { color: var(--c-success); }

@media (max-width: 560px) {
    .chat-widget { bottom: 18px; left: 18px; }
    .chat-launcher { padding: 10px 18px 10px 10px; font-size: 13px; }
    .chat-launcher .chat-icon { width: 34px; height: 34px; font-size: 16px; }
    .chat-panel {
        width: calc(100vw - 36px);
        max-width: 360px;
        max-height: 70vh;
    }
}

@media (max-width: 380px) {
    .chat-panel {
        position: fixed;
        bottom: 80px;
        left: 12px;
        right: 12px;
        width: auto;
    }
    .quick-actions { grid-template-columns: 1fr; }
}

/* ===== NEWSLETTER BAND ===== */
.newsletter-band {
    padding: 80px 0;
    background: var(--gradient-hot);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.newsletter-band .sunburst {
    top: -80px; left: -80px;
    width: 280px; height: 280px;
    opacity: .25;
}
.newsletter-band .sunburst.two {
    top: auto; left: auto;
    bottom: -80px; right: -80px;
}
.newsletter-band > .container { position: relative; z-index: 1; }

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.newsletter-text h3 {
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 700;
    letter-spacing: -.5px;
    margin-bottom: 10px;
}
.newsletter-text p {
    font-size: 16px;
    opacity: .92;
    max-width: 460px;
}

.newsletter-form { position: relative; }

.newsletter-input {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-pill);
    padding: 6px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}
.newsletter-input > i {
    color: var(--text-muted);
    padding: 0 14px 0 18px;
    font-size: 16px;
}
.newsletter-input input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 14px 4px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    outline: none;
    min-width: 0;
}
.newsletter-input input::placeholder { color: var(--text-muted); }
.newsletter-input .btn { white-space: nowrap; }

.newsletter-note {
    margin-top: 14px;
    font-size: 13px;
    opacity: .9;
    display: flex;
    align-items: center;
    gap: 8px;
}
.newsletter-note a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.newsletter-note a:hover { color: #fff; border-bottom-color: #fff; }

.nl-status {
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, .28);
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nl-status.nl-success { background: rgba(76, 175, 80, .28); border-color: rgba(76, 175, 80, .5); }
.nl-status.nl-error   { background: rgba(229, 57, 53, .28); border-color: rgba(229, 57, 53, .5); }

@media (max-width: 760px) {
    .newsletter-band { padding: 60px 0; }
    .newsletter-grid { grid-template-columns: 1fr; gap: 26px; text-align: center; }
    .newsletter-text p { margin-left: auto; margin-right: auto; }
    .newsletter-note { justify-content: center; }
}

@media (max-width: 480px) {
    .newsletter-input { flex-wrap: wrap; padding: 10px; gap: 8px; border-radius: 18px; }
    .newsletter-input > i { display: none; }
    .newsletter-input input { width: 100%; padding: 12px 14px; border-radius: 12px; background: var(--bg-soft); }
    .newsletter-input .btn { width: 100%; justify-content: center; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.testimonials .blob.coral { top: -120px; left: -120px; width: 360px; height: 360px; }
.testimonials .blob.teal  { bottom: -120px; right: -120px; width: 360px; height: 360px; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.testimonial-card .quote-mark {
    position: absolute;
    top: 22px; right: 26px;
    font-size: 36px;
    color: var(--primary-light);
    z-index: 0;
}

.testimonial-card .stars {
    display: flex;
    gap: 3px;
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.testimonial-card .stars .fa-regular { color: var(--border); }

.testimonial-card .quote {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.testimonial-card .author .avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--gradient-hot);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.testimonial-card:nth-child(2n) .author .avatar { background: var(--c-cyan); }
.testimonial-card:nth-child(3n) .author .avatar { background: var(--accent); }
.testimonial-card .author .name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
}
.testimonial-card .author .role {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 960px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 28px 24px; }
}

/* ===== ARTICLE BODY ===== */
.article-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-body);
}
.article-body > p:first-of-type {
    font-size: 19px;
    color: var(--text);
    line-height: 1.65;
}
.article-body h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 38px 0 16px;
    color: var(--text);
    letter-spacing: -.4px;
}
.article-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--text);
}
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol {
    margin: 14px 0 20px 26px;
}
.article-body li { padding: 4px 0; line-height: 1.75; }
.article-body strong { color: var(--text); font-weight: 700; }
.article-body blockquote {
    margin: 18px 0;
    font-size: 16px;
}
.article-body a {
    color: var(--primary);
    border-bottom: 1px solid currentColor;
}
.article-body a:hover { color: var(--primary-dark); }
.article-body table { font-size: 14px; }
.article-body hr { border: 0; border-top: 1px solid var(--border); margin: 30px 0; }

@media (max-width: 560px) {
    .article-body { font-size: 16px; }
    .article-body > p:first-of-type { font-size: 17px; }
    .article-body h2 { font-size: 22px; }
    .article-body h3 { font-size: 18px; }
    .article-hero { height: 180px !important; font-size: 70px !important; }
}

/* ===== LEGAL ===== */
.legal-section { background: var(--bg); padding: 80px 0; }
.legal-wrap {
    max-width: 880px;
    margin: 0 auto;
    background: var(--bg-alt);
    padding: 50px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.legal-wrap .updated {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.legal-wrap h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 36px 0 14px;
    color: var(--text);
}
.legal-wrap h2:first-of-type { margin-top: 0; }
.legal-wrap h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 22px 0 10px;
    color: var(--text);
}
.legal-wrap p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 12px;
}
.legal-wrap ul, .legal-wrap ol {
    margin: 10px 0 16px 24px;
    color: var(--text-body);
}
.legal-wrap li { padding: 4px 0; line-height: 1.7; }
.legal-wrap strong { color: var(--text); }
.legal-toc {
    background: var(--bg);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 0 0 30px;
}
.legal-toc h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 10px; }
.legal-toc ol { margin: 0 0 0 22px; }
.legal-toc ol li { font-size: 14px; padding: 3px 0; }
.legal-toc a { color: var(--text-body); }
.legal-toc a:hover { color: var(--primary); }

/* ===== 404 ===== */
.err-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-soft);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}
.err-code {
    font-size: clamp(120px, 22vw, 220px);
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-hot);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -8px;
}
.err-section h1 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    margin: 18px 0 12px;
}
.err-section p {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 480px;
    margin: 0 auto 26px;
}
.err-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Mobile tweaks for new pages */
@media (max-width: 960px) {
    .about-grid, .blog-featured { grid-template-columns: 1fr; }
    .blog-featured .img { aspect-ratio: 16 / 9; min-height: 0; padding: 30px; font-size: 80px; }
    .blog-featured .body { padding: 32px 26px; }
    .legal-wrap { padding: 32px 24px; }
}
