/* ==========================================================================
   Chugachew — consumer marketing site
   Contemporary, modern design system. Brand color sampled from the Chugachew
   logo (coral red). Self-contained: no dependency on the HotSpot styles.
   ========================================================================== */

/* ----- Tokens ----- */
:root {
    --red: #E23B2E;
    --red-600: #C92E22;
    --red-700: #A92419;
    --orange: #FF8A3D;
    --amber: #FFB347;

    --ink: #161011;          /* warm near-black */
    --ink-2: #221719;
    --ink-soft: #3A2C2D;

    --bg: #FFFFFF;
    --bg-warm: #FFF7F3;      /* warm off-white sections */
    --bg-cream: #FDEFE8;

    --text: #1C1517;
    --text-soft: #6B5B5C;
    --text-mute: #8A7B7C;
    --line: rgba(28, 21, 23, 0.10);

    --grad-warm: linear-gradient(135deg, #FF8A3D 0%, #E23B2E 55%, #C92E22 100%);
    --grad-text: linear-gradient(120deg, #FF7A3C 0%, #E23B2E 60%);
    --grad-dark: radial-gradient(1200px 600px at 70% -10%, #3a1f1c 0%, #161011 55%);

    --shadow-sm: 0 2px 8px rgba(28, 21, 23, 0.06);
    --shadow-md: 0 12px 30px rgba(28, 21, 23, 0.10);
    --shadow-lg: 0 30px 70px rgba(196, 46, 34, 0.18);
    --shadow-red: 0 16px 40px rgba(226, 59, 46, 0.35);

    --radius: 16px;
    --radius-lg: 26px;
    --radius-pill: 999px;

    --maxw: 1160px;
    --space: clamp(64px, 9vw, 120px);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --display: 'Plus Jakarta Sans', var(--font);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }

.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.section { padding: var(--space) 0; }
.section-warm { background: var(--bg-warm); }
.section-cream { background: linear-gradient(180deg, var(--bg-warm), var(--bg-cream)); }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--red-600);
    background: rgba(226, 59, 46, 0.09);
    padding: 7px 14px; border-radius: var(--radius-pill);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(226,59,46,0.18); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); }
.section-sub { margin-top: 16px; color: var(--text-soft); font-size: 1.12rem; }

/* ----- Buttons ----- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--display); font-weight: 700; font-size: 1rem;
    padding: 14px 26px; border-radius: var(--radius-pill);
    border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--grad-warm); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(226,59,46,0.45); }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: rgba(226,59,46,0.06); border-color: rgba(226,59,46,0.4); color: var(--red-600); }
.btn-on-dark { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.22); backdrop-filter: blur(8px); }
.btn-on-dark:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.btn-xl { padding: 17px 34px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ----- Navbar ----- */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.72);
    backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 800; font-size: 1.32rem; color: var(--ink); letter-spacing: -0.02em; }
.brand img { width: 34px; height: 34px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 9px 14px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.96rem; color: var(--ink-soft); transition: color 0.18s, background 0.18s; }
.nav-link:hover { color: var(--red-600); background: rgba(226,59,46,0.07); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; inset: 72px 0 auto 0;
        flex-direction: column; align-items: stretch; gap: 2px;
        background: #fff; padding: 16px 20px 24px;
        border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
        transform: translateY(-12px); opacity: 0; pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }
    .nav.open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-link { padding: 13px 14px; font-size: 1.05rem; }
    .nav-cta { margin: 8px 0 0; }
}

/* ----- Hero ----- */
.hero { position: relative; background: var(--grad-dark); color: #fff; overflow: hidden; padding: clamp(64px, 9vw, 110px) 0 clamp(72px, 9vw, 120px); }
.hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; z-index: 0; }
.hero::before { width: 480px; height: 480px; background: radial-gradient(circle, #FF6B3D, transparent 70%); top: -140px; right: -100px; }
.hero::after { width: 420px; height: 420px; background: radial-gradient(circle, #E23B2E, transparent 70%); bottom: -180px; left: -120px; opacity: 0.4; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero .eyebrow { background: rgba(255,255,255,0.10); color: #ffd9cf; }
.hero .eyebrow .dot { background: var(--orange); box-shadow: 0 0 0 4px rgba(255,138,61,0.25); }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 5.4vw, 4.4rem); margin: 20px 0 0; }
.hero-lead { margin-top: 20px; font-size: 1.2rem; color: rgba(255,255,255,0.78); max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 30px; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.hero-trust strong { color: #fff; }
.stars { color: var(--amber); letter-spacing: 2px; }
.trust-div { width: 1px; height: 18px; background: rgba(255,255,255,0.2); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
    position: relative; width: min(300px, 78%); border-radius: 38px; padding: 10px;
    background: linear-gradient(160deg, #2a1d1b, #161011);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.06) inset;
    transform: rotate(-3deg);
}
.phone img { border-radius: 30px; width: 100%; }
.chip {
    position: absolute; display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.96); color: var(--ink);
    padding: 11px 15px; border-radius: 16px; box-shadow: var(--shadow-md);
    font-size: 0.84rem; line-height: 1.25; font-weight: 600;
    animation: floaty 5s ease-in-out infinite;
}
.chip .emoji { font-size: 1.4rem; }
.chip b { display: block; color: var(--red-600); font-family: var(--display); }
.chip-1 { top: 16%; left: -8%; }
.chip-2 { bottom: 14%; right: -6%; animation-delay: 1.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ----- Feature cards ----- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fcard {
    position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 30px 26px; box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(226,59,46,0.25); }
.fcard.featured { background: var(--grad-dark); color: #fff; border-color: transparent; }
.fcard.featured .fcard-title { color: #fff; }
.fcard.featured .fcard-desc { color: rgba(255,255,255,0.78); }
.fcard.featured .badge { position: absolute; top: 20px; right: 20px; background: var(--grad-warm); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 5px 11px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 0.04em; }
.ficon {
    width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; color: #fff;
    background: var(--grad-warm); box-shadow: var(--shadow-red); margin-bottom: 18px;
}
.fcard.featured .ficon { background: rgba(255,255,255,0.14); box-shadow: none; }
.fcard-title { font-size: 1.3rem; margin-bottom: 8px; }
.fcard-desc { color: var(--text-soft); font-size: 0.99rem; }
.fcard.featured .fcard-desc + .flist li { color: rgba(255,255,255,0.82); }
.flist { list-style: none; margin-top: 16px; display: grid; gap: 9px; }
.flist li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.93rem; color: var(--text-soft); }
.flist svg { flex-shrink: 0; color: var(--red); margin-top: 3px; }
.fcard.featured .flist svg { color: var(--orange); }
.fcard.featured .flist li { color: rgba(255,255,255,0.82); }

/* ----- Showcase rows ----- */
.showcase { display: grid; gap: clamp(48px, 8vw, 96px); }
.show-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.show-row.reverse .show-media { order: -1; }
.show-copy h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 14px 0 12px; }
.show-copy p { color: var(--text-soft); font-size: 1.06rem; }
.tag { display: inline-block; font-family: var(--display); font-weight: 700; font-size: 0.8rem; color: var(--red-600); background: rgba(226,59,46,0.09); padding: 6px 13px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 0.04em; }
.check-list { list-style: none; margin-top: 20px; display: grid; gap: 11px; }
.check-list li { display: flex; align-items: center; gap: 11px; font-weight: 500; }
.check-list li::before { content: '✓'; display: grid; place-items: center; width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: rgba(226,59,46,0.12); color: var(--red-600); font-weight: 800; font-size: 0.8rem; }
.show-media { display: flex; justify-content: center; }
.show-media .phone { transform: rotate(2deg); width: min(280px, 70%); }
.show-row.reverse .show-media .phone { transform: rotate(-2deg); }

/* ----- Stats band ----- */
.stats-band { background: var(--grad-dark); color: #fff; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat-num { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem); }
.stat-label { color: rgba(255,255,255,0.7); margin-top: 6px; font-size: 0.96rem; }

/* ----- Split / cross-sell band ----- */
.band-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.band-stats { display: grid; gap: 16px; }
.band-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.band-stat .num { font-family: var(--display); font-weight: 800; font-size: 1.9rem; color: var(--red-600); }
.band-stat .lbl { color: var(--text-soft); }

/* ----- Become a HotSpot (venue cross-link) ----- */
.venue-cta { position: relative; overflow: hidden; background: var(--grad-dark); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 64px); text-align: center; }
.venue-cta::before { content: ''; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, #FF6B3D, transparent 70%); filter: blur(70px); opacity: 0.4; top: -120px; right: -80px; }
.venue-cta h2 { position: relative; color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.venue-cta p { position: relative; color: rgba(255,255,255,0.78); max-width: 560px; margin: 14px auto 28px; font-size: 1.08rem; }

/* ----- FAQ ----- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item[open] { border-color: rgba(226,59,46,0.3); box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-family: var(--display); font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--red); transition: transform 0.2s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 22px; color: var(--text-soft); }

/* ----- Download ----- */
.store-row { display: flex; flex-wrap: wrap; gap: 14px; }
.store-btn { display: inline-flex; align-items: center; gap: 12px; background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 14px; transition: transform 0.18s, box-shadow 0.18s; }
.store-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-btn svg { width: 26px; height: 26px; }
.store-btn .s-sub { font-size: 0.7rem; opacity: 0.8; line-height: 1; }
.store-btn .s-title { font-family: var(--display); font-weight: 700; font-size: 1.05rem; line-height: 1.2; }
.dl-feats { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; color: var(--text-soft); font-size: 0.94rem; }
.dl-feats span { display: inline-flex; align-items: center; gap: 7px; }
.dl-feats svg { color: var(--red); }

/* ----- Forms ----- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field { display: block; margin-bottom: 18px; }
.field > span { display: block; font-weight: 600; margin-bottom: 7px; font-size: 0.94rem; }
.field.required > span::after { content: ' *'; color: var(--red); }
.field input, .field select, .field textarea {
    width: 100%; font: inherit; color: var(--text);
    padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(226,59,46,0.12); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.callout { background: var(--bg-warm); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; color: var(--text-soft); font-size: 0.92rem; margin: 4px 0 18px; }
.form-status { margin-top: 14px; font-weight: 600; min-height: 1.2em; }
.form-status-error { color: var(--red-600); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-success { text-align: center; padding: 16px 0; }
.success-check { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--grad-warm); color: #fff; display: grid; place-items: center; font-size: 2rem; box-shadow: var(--shadow-red); }
.success-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }

/* ----- Passport calculator ----- */
.calc { background: var(--grad-dark); color: #fff; border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); }
.calc h3 { color: #fff; }
.calc-row { margin: 22px 0; }
.calc-row label { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 10px; }
.calc-row label b { color: var(--orange); font-family: var(--display); }
.calc input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 4px; background: rgba(255,255,255,0.18); outline: none; }
.calc input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--grad-warm); cursor: pointer; box-shadow: var(--shadow-red); }
.calc input[type=range]::-moz-range-thumb { width: 24px; height: 24px; border: 0; border-radius: 50%; background: var(--red); cursor: pointer; }
.calc-out { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.calc-out .box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 18px; text-align: center; }
.calc-out .box .v { font-family: var(--display); font-weight: 800; font-size: 1.8rem; }
.calc-out .box .l { color: rgba(255,255,255,0.65); font-size: 0.86rem; margin-top: 4px; }
.payback { margin-top: 18px; text-align: center; color: var(--amber); font-weight: 600; }

/* ----- Footer ----- */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; }
.footer .brand { color: #fff; }
.footer-tag { margin-top: 14px; max-width: 300px; color: rgba(255,255,255,0.6); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.08); color: #fff; transition: background 0.18s, transform 0.18s; }
.socials a:hover { background: var(--red); transform: translateY(-2px); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-cols h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer-cols a { display: block; color: rgba(255,255,255,0.66); padding: 5px 0; font-size: 0.94rem; transition: color 0.16s; }
.footer-cols a:hover { color: #fff; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: 0.86rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom-links a:hover { color: #fff; }

/* ----- Reveal animation ----- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .chip { animation: none; }
    html { scroll-behavior: auto; }
}

/* ----- Page hero (interior pages) ----- */
.page-hero { background: var(--grad-dark); color: #fff; padding: clamp(64px, 9vw, 110px) 0 clamp(48px, 7vw, 80px); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, #FF6B3D, transparent 70%); filter: blur(80px); opacity: 0.4; top: -160px; left: 50%; transform: translateX(-50%); }
.page-hero h1 { position: relative; color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.page-hero p { position: relative; color: rgba(255,255,255,0.78); max-width: 620px; margin: 18px auto 0; font-size: 1.12rem; }
.page-hero .eyebrow { background: rgba(255,255,255,0.10); color: #ffd9cf; margin-bottom: 18px; }

/* ----- Blog ----- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.22s ease, box-shadow 0.22s ease; height: 100%; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card .thumb { height: 160px; background: var(--grad-warm); }
.post-card .pc-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card .cat { align-self: flex-start; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--red-600); background: rgba(226,59,46,0.09); padding: 5px 11px; border-radius: var(--radius-pill); margin-bottom: 12px; }
.post-card h3 { font-size: 1.18rem; line-height: 1.25; }
.post-card p { color: var(--text-soft); font-size: 0.95rem; margin-top: 10px; flex: 1; }
.post-card .meta { margin-top: 16px; color: var(--text-mute); font-size: 0.84rem; display: flex; gap: 14px; }

/* ----- Article ----- */
.article { max-width: 760px; margin: 0 auto; padding: clamp(36px, 6vw, 64px) 24px; }
.article .back { display: inline-flex; align-items: center; gap: 6px; color: var(--red-600); font-weight: 600; margin-bottom: 18px; }
.article .cat { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--red-600); background: rgba(226,59,46,0.09); padding: 5px 11px; border-radius: var(--radius-pill); }
.article h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin: 16px 0 10px; }
.article .post-meta { color: var(--text-mute); font-size: 0.92rem; margin-bottom: 8px; }
.article .lead { font-size: 1.2rem; color: var(--text-soft); margin: 22px 0; }
.article h2 { font-size: 1.5rem; margin: 32px 0 10px; }
.article p { margin-bottom: 16px; color: var(--text); }
.article .post-cta { display: inline-block; margin-top: 14px; font-weight: 700; color: var(--red-600); }

/* ----- Responsive ----- */
@media (max-width: 960px) {
    .features-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero .eyebrow { margin: 0 auto; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-cta, .hero-trust { justify-content: center; }
    .hero-visual { margin-top: 36px; }
    .show-row { grid-template-columns: 1fr; }
    .show-row.reverse .show-media { order: 0; }
    .band-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .features-grid, .blog-grid, .stats, .grid-2, .calc-out, .footer-cols { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
