/* ═══════════════════════════════════════════════════════════
   NEWS CORRIDOR — Fresh Media Booking Platform
   Clean · Modern · Forbes / ET inspired (not newspaper theme)
   ═══════════════════════════════════════════════════════════ */
:root {
    --black: #09090b;
    --gray-900: #18181b;
    --gray-800: #27272a;
    --gray-600: #52525b;
    --gray-400: #a1a1aa;
    --gray-200: #e4e4e7;
    --gray-100: #f4f4f5;
    --white: #ffffff;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-soft: #eff6ff;
    --accent-glow: rgba(37, 99, 235, 0.15);
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.08);
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-display: 'Newsreader', Georgia, serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: clip;
}
.page-bg {
    position: fixed; inset: 0; z-index: -1;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent),
        linear-gradient(180deg, var(--gray-100) 0%, var(--white) 40%);
    pointer-events: none;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
main { display: block; }
[id] { scroll-margin-top: 5.5rem; }

/* ─── Header ─── */
.site-header {
    position: sticky; top: 0; z-index: 202;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.85rem 0; gap: 1.5rem;
}
.brand {
    display: flex; align-items: center;
    text-decoration: none; color: inherit;
    flex-shrink: 0; min-width: 0;
}
.brand picture { display: flex; align-items: center; }
.brand-logo {
    height: 42px; width: auto;
    max-width: min(220px, 58vw);
    object-fit: contain; object-position: left center;
}
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a:not(.btn) { color: var(--gray-600); font-size: 0.9rem; font-weight: 500; }
.nav a:not(.btn):hover { color: var(--black); }
.nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: none; cursor: pointer;
    width: 44px; height: 44px; padding: 10px;
    flex-shrink: 0;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 1px; transition: transform 0.2s, opacity 0.2s; }
.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); }
@media (max-width: 900px) {
    .header-inner { padding: 0.65rem 0; }
    .nav {
        display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        z-index: 199; padding: 5.5rem 1.25rem 2rem;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
        flex-direction: column; align-items: stretch;
        gap: 0.25rem; overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav.open { display: flex; }
    .nav a:not(.btn) {
        padding: 0.85rem 0.5rem; font-size: 1rem;
        border-bottom: 1px solid var(--gray-100);
    }
    .nav .btn { margin-top: 0.75rem; width: 100%; padding: 1rem; }
    .nav-toggle { display: flex; z-index: 201; position: relative; }
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.9rem 1.75rem; font-size: 0.875rem; font-weight: 600;
    border-radius: var(--radius-sm); border: none; cursor: pointer;
    transition: all 0.2s var(--ease); font-family: inherit; text-decoration: none;
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px var(--accent-glow); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--gray-800); color: #fff; }
.btn-ghost {
    background: transparent; color: var(--gray-900);
    border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover { border-color: var(--gray-900); background: var(--gray-100); color: var(--black); }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.8rem; }

/* ─── Hero ─── */
.hero { padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem); }
.hero-grid {
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 0.85rem 0.35rem 0.5rem;
    background: var(--accent-soft); border: 1px solid rgba(37,99,235,0.2);
    border-radius: 100px; font-size: 0.75rem; font-weight: 600; color: var(--accent);
    margin-bottom: 1.5rem;
}
.hero-pill::before {
    content: ''; width: 8px; height: 8px; background: var(--success);
    border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.hero h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    color: var(--black); margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
    font-size: 1.1rem; color: var(--gray-600); max-width: 44ch;
    margin-bottom: 2rem; line-height: 1.7;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.stat-box {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 1.15rem 1.25rem;
    box-shadow: var(--shadow);
}
.stat-box .num {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
    color: var(--black); line-height: 1;
}
.stat-box .lbl { font-size: 0.75rem; color: var(--gray-600); margin-top: 0.35rem; font-weight: 500; }

/* Hero visual — fresh CSS mockup, not old newspaper image */
.hero-visual { position: relative; }
.hero-card-stack { position: relative; min-height: 380px; }
.hero-float-card {
    position: absolute; background: var(--white);
    border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero-float-card.main {
    inset: 0 0 0 0; padding: 1.5rem;
    background: linear-gradient(145deg, var(--white) 0%, var(--gray-100) 100%);
}
.hero-float-card.main .card-label {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.hero-float-card.main h3 {
    font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--black);
}
.hero-float-card.main p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.55; }
.hero-float-card.mini {
    bottom: -12px; right: -12px; width: 160px; padding: 1rem;
    border-left: 3px solid var(--accent);
}
.hero-float-card.mini .mini-num { font-size: 1.75rem; font-weight: 800; color: var(--black); }
.hero-float-card.mini .mini-lbl { font-size: 0.7rem; color: var(--gray-600); }
.hero-float-card.badge {
    top: -10px; left: -10px; padding: 0.5rem 1rem;
    background: var(--black); color: #fff; border: none;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}
@media (max-width: 900px) {
    .hero-card-stack { min-height: 320px; }
    .hero-float-card.mini { right: 0; bottom: -8px; }
}

/* ─── Sections ─── */
.section { padding: clamp(4rem, 9vw, 6rem) 0; }
.section-gray { background: var(--gray-100); }
.section-dark {
    background: var(--black); color: var(--white);
}
.section-dark .section-header p { color: var(--gray-400); }
.section-header { margin-bottom: 3rem; max-width: 640px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header .eyebrow {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; color: inherit; }
.section-header p { font-size: 1.05rem; color: var(--gray-600); line-height: 1.65; }

/* Why grid */
.why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 1.75rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.why-card:hover {
    border-color: var(--accent); box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.why-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--accent-soft); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: 1rem; font-weight: 700;
}
.why-card h3 { font-family: var(--font); font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.why-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.55; }

/* Coverage */
.coverage-layout {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: start;
}
@media (max-width: 900px) { .coverage-layout { grid-template-columns: 1fr; } }
.newspaper-mockup {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 1.25rem;
    box-shadow: var(--shadow); position: sticky; top: 5.5rem;
}
.mock-paper {
    background: var(--gray-100); border-radius: var(--radius-sm);
    min-height: 400px; overflow: hidden; font-size: 0.65rem;
}
.mock-masthead {
    background: var(--black); color: #fff; text-align: center;
    padding: 0.6rem; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.08em;
}
.mock-body {
    padding: 0.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem;
}
.mock-slot {
    background: var(--white); border: 2px dashed var(--gray-200);
    border-radius: 6px; padding: 0.5rem; cursor: pointer;
    transition: all 0.2s var(--ease); min-height: 56px;
}
.mock-slot:hover { border-color: var(--accent); background: var(--accent-soft); }
.mock-slot.selected { border: 2px solid var(--accent); background: var(--accent-soft); box-shadow: inset 0 0 0 1px var(--accent); }
.mock-slot .slot-label { font-size: 0.55rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.mock-slot.front-page { grid-column: 1 / -1; min-height: 120px; background: linear-gradient(180deg, #eff6ff 0%, #fff 100%); }
.mock-slot.full-page { grid-column: 1 / -1; min-height: 110px; }
.mock-slot.half-page { grid-column: 1 / -1; min-height: 72px; }
.mock-slot.quarter-page { min-height: 80px; }
.mock-slot.listing { min-height: 36px; }
.mock-placement-preview {
    margin-top: 1rem; padding: 0.75rem 1rem;
    background: var(--accent-soft); border-radius: var(--radius-sm);
    font-size: 0.8rem; color: var(--accent); font-weight: 500; display: none;
}
.mock-placement-preview.visible { display: block; }

/* Slot AI demo panel */
.slot-demo-panel {
    margin-top: 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow);
}
.slot-demo-head { margin-bottom: 1rem; }
.slot-demo-badge {
    display: inline-block;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--accent);
    background: var(--accent-soft); padding: 0.25rem 0.6rem;
    border-radius: 100px; margin-bottom: 0.5rem;
}
.slot-demo-head h4 { font-family: var(--font); font-size: 0.95rem; font-weight: 700; color: var(--black); }
.slot-demo-sample { font-size: 0.8rem; color: var(--gray-600); margin-top: 0.35rem; font-style: italic; }
.preview-auto { max-width: 520px; margin: 0 auto; text-align: center; }
.preview-tabs-center { justify-content: center; margin-bottom: 1rem; }
.preview-sample-caption { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 1rem; min-height: 1.25rem; }
.preview-canvas-centered { margin: 0 auto; }
.slot-demo-canvas-wrap {
    position: relative; background: var(--gray-100);
    border-radius: var(--radius); padding: 0.75rem;
    border: 1px solid var(--gray-200);
}
#slotDemoCanvas, .demo-image { width: 100%; height: auto; display: block; border-radius: 6px; box-shadow: var(--shadow-lg); }
.demo-image-preview { max-width: 400px; }
.slot-demo-note { font-size: 0.72rem; color: var(--gray-400); margin-top: 0.75rem; font-style: italic; }
.mock-slot.muted-slot { opacity: 0.45; pointer-events: none; }

.package-list { display: flex; flex-direction: column; gap: 0.85rem; }
.package-card {
    background: var(--white); border: 1.5px solid var(--gray-200);
    border-radius: var(--radius); padding: 1.5rem; cursor: pointer;
    transition: all 0.2s var(--ease); position: relative;
}
.package-card:hover { border-color: var(--gray-400); box-shadow: var(--shadow); }
.package-card.active { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.package-card .badge {
    position: absolute; top: 1rem; right: 1rem;
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 0.3rem 0.6rem; border-radius: 6px;
}
.badge-popular { background: var(--accent); color: #fff; }
.badge-limited { background: var(--warning); color: #fff; }
.package-card h3 { font-family: var(--font); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
.package-price {
    font-family: var(--font-display); font-size: 1.65rem; font-weight: 700;
    color: var(--black); margin-bottom: 0.75rem;
}
.package-card ul { list-style: none; font-size: 0.85rem; color: var(--gray-600); }
.package-card li { padding: 0.2rem 0; padding-left: 1.1rem; position: relative; }
.package-card li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-size: 0.75rem; font-weight: 700; }

/* Preview */
.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .preview-grid { grid-template-columns: 1fr; } }
.preview-form {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 1.75rem;
}
.preview-form label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gray-800); margin: 1rem 0 0.35rem; }
.preview-form label:first-child { margin-top: 0; }
.preview-form input, .preview-form textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.preview-form input:focus, .preview-form textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.preview-tabs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.25rem; }
.preview-tab {
    padding: 0.45rem 0.85rem; font-size: 0.7rem; font-weight: 600;
    border: 1px solid var(--gray-200); background: var(--white);
    border-radius: 100px; cursor: pointer; font-family: inherit;
    transition: all 0.2s;
}
.preview-tab.active { background: var(--black); color: #fff; border-color: var(--black); }
.preview-canvas-wrap {
    background: var(--gray-100); border-radius: var(--radius-lg);
    padding: 1.5rem; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--gray-200);
}
.preview-disclaimer { font-size: 0.75rem; color: var(--gray-400); margin-top: 1rem; font-style: italic; }

/* Magazine */
.magazine-section { border-top: 1px solid var(--gray-200); }
.magazine-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
}
@media (max-width: 900px) { .magazine-layout { grid-template-columns: 1fr; } }
.magazine-grid { display: flex; flex-direction: column; gap: 1rem; }
.magazine-card {
    background: var(--white); border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 2rem;
    position: relative; overflow: hidden; cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.magazine-card:hover { border-color: var(--gray-400); box-shadow: var(--shadow); }
.magazine-card.active {
    border-color: #7c3aed; box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
.magazine-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #7c3aed, #2563eb);
}
.magazine-card .badge { top: 1rem; right: 1rem; }
.magazine-type-badge {
    display: inline-block; font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #7c3aed; background: #f5f3ff; padding: 0.25rem 0.6rem;
    border-radius: 100px; margin-bottom: 0.75rem;
}
.magazine-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.magazine-card .price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.magazine-card ul { list-style: none; font-size: 0.9rem; color: var(--gray-600); margin-bottom: 0.5rem; }
.magazine-card li { padding: 0.3rem 0; padding-left: 1.1rem; position: relative; }
.magazine-card li::before { content: '✓'; position: absolute; left: 0; color: #7c3aed; font-weight: 700; }
.magazine-apply-btn { margin-top: 0.75rem; }

.magazine-preview-panel {
    background: var(--gray-100); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 1.25rem;
    position: sticky; top: 5.5rem;
}
.magazine-mock { display: flex; flex-direction: column; gap: 1rem; }
.mag-mock-cover, .mag-mock-spread {
    background: linear-gradient(145deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    border-radius: var(--radius); padding: 1.25rem; color: #fff;
    min-height: 200px;
}
.mag-mock-spread { background: linear-gradient(145deg, #fff 0%, #f4f4f5 100%); color: var(--gray-900); border: 1px solid var(--gray-200); }
.mag-mock-label {
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; opacity: 0.85; display: block; margin-bottom: 0.75rem;
}
.mag-mock-photo {
    height: 100px; border-radius: 8px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6); margin-bottom: 0.75rem;
}
.mag-mock-headline { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.25; margin-bottom: 0.35rem; }
.mag-mock-sub { font-size: 0.75rem; opacity: 0.8; }
.mag-mock-cols { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0.75rem; align-items: start; }
.mag-mock-col-photo {
    height: 120px; border-radius: 6px; background: linear-gradient(135deg, #e4e4e7, #d4d4d8);
}
.mag-mock-col-text h4 { font-size: 0.9rem; margin-bottom: 0.35rem; }
.mag-mock-col-text p { font-size: 0.72rem; color: var(--gray-600); line-height: 1.5; }
.magazine-preview-note { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.85rem; text-align: center; font-style: italic; }

.product-type-tabs {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
}
.product-tab {
    padding: 0.85rem 1rem; border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm); background: var(--white);
    font-family: inherit; font-size: 0.88rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s; color: var(--gray-700);
}
.product-tab:hover { border-color: var(--gray-400); }
.product-tab.active {
    border-color: var(--accent); background: var(--accent-soft);
    color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.product-tab[data-product="magazine"].active {
    border-color: #7c3aed; background: #f5f3ff; color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
.magazine-form-note .field-hint { margin: 0; color: #7c3aed; font-weight: 500; }

/* Add-ons */
.addon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.addon-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 1.5rem; text-align: center;
    transition: border-color 0.2s;
}
.addon-card:hover { border-color: var(--accent); }
.addon-card h4 { font-family: var(--font); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; }
.addon-card .price { font-size: 1.1rem; font-weight: 700; color: var(--accent); }

/* Apply form */
.apply-section { padding: clamp(4rem, 9vw, 6rem) 0; }
.apply-wrap {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: var(--shadow-lg); max-width: 820px; margin: 0 auto;
}
.apply-form label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--gray-800); }
.apply-form input, .apply-form textarea, .apply-form select {
    width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9rem;
}
.apply-form input:focus, .apply-form textarea:focus, .apply-form select:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-group.full { grid-column: 1 / -1; }
.form-check {
    display: flex; gap: 0.65rem; align-items: flex-start;
    margin: 1.5rem 0; font-size: 0.85rem; color: var(--gray-600);
}
.form-check input { margin-top: 0.2rem; accent-color: var(--accent); }
.form-msg { padding: 0.85rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; display: none; font-size: 0.9rem; }
.form-msg.error { background: #fef2f2; color: var(--danger); display: block; border: 1px solid #fecaca; }
.form-msg.success { background: #ecfdf5; color: var(--success); display: block; }

/* Success */
.success-page { padding: 5rem 0; min-height: 65vh; display: flex; align-items: center; }
.success-box {
    text-align: center; max-width: 480px; margin: 0 auto;
    padding: 3rem 2rem; background: var(--white);
    border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.success-icon {
    width: 64px; height: 64px; background: #ecfdf5; color: var(--success);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; font-weight: 700; margin: 0 auto 1.5rem;
}
.success-box h1 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.ref-code { margin: 1rem 0; font-size: 1rem; }
.muted { color: var(--gray-600); margin-bottom: 1.5rem; }

/* Footer */
.site-footer {
    background: var(--black); color: var(--gray-400);
    padding: 3rem 0 1.5rem; margin-top: 2rem;
}
.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
    padding-bottom: 2rem; border-bottom: 1px solid var(--gray-800);
    margin-bottom: 1.5rem;
}
@media (max-width: 700px) { .footer-top { grid-template-columns: 1fr; } }
.footer-desc { font-size: 0.875rem; line-height: 1.6; max-width: 36ch; }
.footer-links-block strong { display: block; color: var(--white); font-size: 0.8rem; margin-bottom: 0.75rem; }
.footer-links-block a { display: block; color: var(--gray-400); font-size: 0.875rem; margin-bottom: 0.4rem; }
.footer-links-block a:hover { color: var(--white); }
.footer-bottom {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
    font-size: 0.8rem;
}

/* Navneet Express — separate Hindi section */
.navneet-section { border-top: 1px solid var(--gray-200); }
.navneet-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
}
@media (max-width: 800px) { .navneet-split { grid-template-columns: 1fr; } }
.navneet-card {
    padding: 0.5rem 0;
}
.navneet-badge {
    display: inline-block; font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: #fff; background: #ea580c; padding: 0.3rem 0.65rem;
    border-radius: 6px; margin-bottom: 1rem;
}
.navneet-card h2 { font-size: 2rem; margin-bottom: 0.25rem; }
.navneet-tag { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 1rem; font-weight: 600; }
.navneet-desc { color: var(--gray-600); margin-bottom: 1.25rem; line-height: 1.6; }
.navneet-price {
    font-family: var(--font-display); font-size: 2rem; font-weight: 700;
    margin-bottom: 1rem; color: var(--black);
}
.navneet-price span { font-family: var(--font); font-size: 0.8rem; font-weight: 500; color: var(--gray-600); }
.navneet-card ul { list-style: none; margin-bottom: 1.5rem; font-size: 0.9rem; color: var(--gray-600); }
.navneet-card li { padding: 0.25rem 0; padding-left: 1.1rem; position: relative; }
.navneet-card li::before { content: '✓'; position: absolute; left: 0; color: #ea580c; font-weight: 700; }
.navneet-paper-demo {
    background: linear-gradient(145deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid #fed7aa; border-radius: var(--radius-lg);
    padding: 2rem; text-align: center; box-shadow: var(--shadow);
}
.navneet-masthead {
    font-size: 1.5rem; font-weight: 800; color: #9a3412;
    margin-bottom: 1rem; letter-spacing: 0.02em;
}
.navneet-headline { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; }
.navneet-sub { font-size: 0.8rem; color: var(--gray-600); }

/* Short form + language addon */
.form-grid-simple { grid-template-columns: 1fr 1fr; }
.form-grid-simple .full { grid-column: 1 / -1; }
.field-hint { font-size: 0.8rem; color: var(--gray-600); margin: 0.25rem 0 0.75rem; font-weight: 400; }
.optional { font-weight: 400; color: var(--gray-400); font-size: 0.75rem; }
.language-options { display: flex; flex-direction: column; gap: 0.6rem; }
.language-option { cursor: pointer; }
.language-option input { position: absolute; opacity: 0; pointer-events: none; }
.language-option-inner {
    display: block; padding: 1rem 1.15rem;
    border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
    transition: all 0.2s var(--ease);
}
.language-option input:checked + .language-option-inner {
    border-color: var(--accent); background: var(--accent-soft);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.language-option-inner strong { display: block; font-size: 0.95rem; color: var(--black); margin-bottom: 0.2rem; }
.language-option-inner small { display: block; font-size: 0.8rem; color: var(--gray-600); }
.language-extra {
    display: inline-block; margin-top: 0.35rem; font-size: 0.75rem;
    font-weight: 700; color: var(--accent);
}

/* Legacy btn aliases */
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-outline { background: transparent; border: 1.5px solid var(--gray-200); color: var(--gray-900); }
.btn-block { width: 100%; }

/* ═══ Mobile & touch optimizations ═══ */
body.nav-open { overflow: hidden; }
body.sticky-visible { padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px)); }
.site-header { padding-top: env(safe-area-inset-top, 0); }

.urgency-text-short { display: none; }

@media (max-width: 900px) {
    .container {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    [id] { scroll-margin-top: 6.5rem; }

    /* Header & nav */
    .header-inner { padding: 0.6rem 0; gap: 0.75rem; }
    .brand-logo { height: 34px; max-width: min(180px, 52vw); }
    .nav {
        padding: calc(4.75rem + env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-left)) 2rem max(1rem, env(safe-area-inset-right));
    }
    .nav a:not(.btn) { padding: 0.9rem 0.25rem; font-size: 1.05rem; min-height: 44px; display: flex; align-items: center; }

    /* Urgency */
    .urgency-bar { font-size: 0.72rem; padding: 0.4rem 0; }
    .urgency-inner { gap: 0.35rem; line-height: 1.35; }
    .urgency-link { font-size: 0.8rem; padding: 0.25rem 0; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

    /* Hero */
    .hero { padding: 2rem 0 2.5rem; }
    .hero h1 { font-size: clamp(1.65rem, 7.5vw, 2.25rem); line-height: 1.12; }
    .hero-sub { font-size: 0.95rem; line-height: 1.6; }
    .hero-quick-lead { padding: 1rem; margin-bottom: 1rem; }
    .hero-quick-label { font-size: 0.8rem; line-height: 1.4; }
    .hero-quick-fields { grid-template-columns: 1fr; gap: 0.55rem; }
    .hero-quick-fields .btn { width: 100%; padding: 0.95rem 1rem; min-height: 48px; }
    .hero-quick-form input { min-height: 48px; }
    .hero-cta-secondary { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.25rem; }
    .hero-cta-secondary .btn { width: 100%; min-height: 48px; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.55rem; }
    .stat-box { padding: 0.8rem 0.9rem; }
    .stat-box .num { font-size: 1.15rem; }
    .stat-box .lbl { font-size: 0.68rem; }
    .hero-card-stack { min-height: auto; margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.65rem; }
    .hero-float-card { position: relative !important; inset: auto !important; width: 100% !important; }
    .hero-float-card.badge { width: auto !important; align-self: flex-start; order: -1; }
    .hero-float-card.mini { width: auto !important; align-self: flex-start; }
    .hero-float-card.main { padding: 1.15rem; }
    .hero-float-card.main h3 { font-size: 1.15rem; }

    /* Trust strip */
    .trust-strip { padding: 0.85rem 0; }
    .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 0.65rem 0.5rem; }
    .trust-num { font-size: 1.15rem; }
    .trust-lbl { font-size: 0.65rem; }

    /* Sections */
    .section { padding: 2.75rem 0; }
    .section-header { margin-bottom: 1.75rem; }
    .section-header h2 { font-size: clamp(1.4rem, 5.5vw, 1.85rem); }
    .section-header p { font-size: 0.9rem; }

    /* Coverage — packages first on mobile for faster apply */
    .coverage-layout { display: flex; flex-direction: column; gap: 1.5rem; }
    .package-list { order: -1; }
    .newspaper-mockup { position: static; padding: 1rem; }
    .mock-paper { min-height: 240px; }
    .mock-body { gap: 0.3rem; }
    .mock-slot { min-height: 44px; padding: 0.35rem; touch-action: manipulation; }
    .mock-slot .slot-label { font-size: 0.48rem; letter-spacing: 0.04em; }
    .slot-demo-panel { padding: 0.85rem; margin-top: 1rem; }
    .slot-demo-head h4 { font-size: 0.85rem; }
    .slot-demo-sample { font-size: 0.75rem; }
    .slot-demo-canvas-wrap { padding: 0.45rem; }
    .slot-demo-note { font-size: 0.68rem; }

    .package-card { padding: 1.15rem 1rem 1.25rem; }
    .package-card h3 { font-size: 0.95rem; padding-right: 5rem; line-height: 1.3; }
    .package-card .badge { top: 0.65rem; right: 0.65rem; font-size: 0.52rem; }
    .package-price { font-size: 1.35rem; margin-bottom: 0.5rem; }
    .package-card ul { font-size: 0.8rem; }
    .package-apply-btn { margin-top: 0.85rem; min-height: 44px; }

    .section-cta-bar { margin-top: 1.75rem; padding: 1.15rem; flex-direction: column; text-align: center; }
    .section-cta-bar p { font-size: 0.88rem; }
    .section-cta-bar .btn { width: 100%; min-height: 48px; }

    /* Preview */
    .preview-auto { max-width: 100%; }
    .preview-tabs { justify-content: center; gap: 0.3rem; }
    .preview-tab {
        flex: 1 1 calc(50% - 0.3rem); min-width: calc(50% - 0.3rem);
        padding: 0.6rem 0.35rem; font-size: 0.65rem; min-height: 40px;
    }
    .preview-sample-caption { font-size: 0.78rem; padding: 0 0.25rem; }
    .preview-canvas-wrap { padding: 0.65rem; }
    .demo-image-preview { max-width: 100%; }

    /* Magazine */
    .magazine-layout { gap: 1.25rem; }
    .magazine-card { padding: 1.25rem 1rem; }
    .magazine-card h3 { font-size: 1.1rem; }
    .magazine-card .price { font-size: 1.55rem; }
    .magazine-card ul { font-size: 0.82rem; }
    .magazine-apply-btn { min-height: 44px; }
    .magazine-preview-panel { position: static; padding: 1rem; }
    .mag-mock-cover, .mag-mock-spread { min-height: 160px; padding: 1rem; }
    .mag-mock-photo { height: 80px; }
    .mag-mock-cols { grid-template-columns: 1fr; }
    .mag-mock-col-photo { height: 90px; }

    /* Navneet */
    .navneet-split { gap: 1.5rem; }
    .navneet-card h2 { font-size: 1.4rem; }
    .navneet-price { font-size: 1.5rem; }
    .navneet-paper-demo { padding: 1.25rem 1rem; }
    .navneet-masthead { font-size: 1.25rem; }

    /* Addons */
    .addon-grid { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
    .addon-card { padding: 1rem 0.65rem; }
    .addon-card h4 { font-size: 0.78rem; line-height: 1.3; }

    /* Apply form */
    .apply-section { padding: 2.75rem 0 calc(3rem + env(safe-area-inset-bottom, 0px)); }
    .apply-trust-badges { gap: 0.4rem 0.65rem; font-size: 0.72rem; }
    .apply-wrap { padding: 1.1rem; border-radius: var(--radius); }
    .form-grid-simple { grid-template-columns: 1fr; }
    .product-type-tabs { grid-template-columns: 1fr; gap: 0.45rem; }
    .product-tab { padding: 0.9rem; min-height: 48px; font-size: 0.85rem; }
    .apply-form input, .apply-form textarea, .apply-form select,
    .hero-quick-form input {
        font-size: 16px; padding: 0.85rem 1rem; min-height: 48px;
    }
    .apply-form textarea { min-height: 96px; }
    .language-option-inner { padding: 0.85rem 0.95rem; }
    .form-check { font-size: 0.8rem; gap: 0.55rem; }
    .form-check input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 0.15rem; }
    .btn-block { min-height: 50px; font-size: 0.95rem; }
    .btn-cta-pulse { animation: none; }

    /* Footer */
    .site-footer { padding: 2.25rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0px)); }
    .footer-top { gap: 1.25rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.35rem; }

    /* Sticky CTA */
    .sticky-cta-inner { max-width: 100%; border-radius: 16px; padding: 0.4rem; }
    .sticky-cta-main { padding: 0.55rem 0.75rem; min-height: 48px; }
    .sticky-cta-icon { width: 46px; height: 46px; min-width: 46px; }
}

@media (max-width: 600px) {
    .urgency-text-full { display: none; }
    .urgency-text-short { display: inline; }
    .urgency-link { width: 100%; }
}

@media (max-width: 480px) {
    .brand-logo { height: 30px; max-width: min(155px, 50vw); }
    .hero h1 { font-size: 1.6rem; }
    .hero-stats { grid-template-columns: 1fr; }
    .why-grid { gap: 0.75rem; }
    .why-card { padding: 1.15rem; }
    .why-icon { width: 36px; height: 36px; font-size: 1rem; }
    .preview-tab { flex: 1 1 100%; min-width: 100%; font-size: 0.72rem; }
    .package-card h3 { padding-right: 0; margin-top: 0.35rem; }
    .package-card .badge { position: static; display: inline-block; margin-bottom: 0.4rem; }
    .package-card { padding-top: 1rem; }
    .magazine-card .badge { position: static; display: inline-block; margin-bottom: 0.4rem; }
    .addon-grid { grid-template-columns: 1fr; }
    .trust-strip-inner { grid-template-columns: 1fr 1fr; }
    .mock-body { grid-template-columns: 1fr; }
    .mock-slot.half-page, .mock-slot.full-page,
    .mock-slot.front-page, .mock-slot.quarter-page,
    .mock-slot.listing { grid-column: 1 / -1; min-height: 40px; }
    .mock-slot.front-page { min-height: 36px; }
    .mock-slot.full-page { min-height: 72px; }
    .success-box { padding: 2rem 1.25rem; margin: 0 0.5rem; }
}

@media (max-width: 380px) {
    .container { padding-left: 0.85rem; padding-right: 0.85rem; }
    .hero-quick-note { font-size: 0.68rem; }
    .apply-trust-badges span { flex: 1 1 45%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .btn-cta-pulse, .urgency-dot { animation: none; }
    .sticky-cta { transition: none; }
}

.footer-logo-wrap {
    display: inline-flex; align-items: center;
    background: var(--white); border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem; margin-bottom: 1rem;
}
.footer-logo { height: auto; width: 160px; max-width: 100%; margin-bottom: 0; opacity: 1; }

/* ═══ Conversion & lead capture ═══ */
.urgency-bar {
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    color: #fff; font-size: 0.78rem; padding: 0.45rem 0;
    position: relative; z-index: 201;
}
.urgency-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 0.65rem; flex-wrap: wrap; text-align: center;
}
.urgency-dot {
    width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
    animation: pulse 1.5s infinite; flex-shrink: 0;
}
.urgency-link {
    color: #fff; font-weight: 700; text-decoration: underline;
    text-underline-offset: 2px; white-space: nowrap;
}
.urgency-link:hover { color: #dbeafe; }

.hero-quick-lead {
    background: var(--white); border: 2px solid var(--accent);
    border-radius: var(--radius-lg); padding: 1.25rem;
    margin-bottom: 1.25rem; box-shadow: 0 8px 32px var(--accent-glow);
}
.hero-quick-label {
    font-size: 0.85rem; font-weight: 700; color: var(--accent);
    margin-bottom: 0.85rem;
}
.hero-quick-fields {
    display: grid; grid-template-columns: 1fr 1fr auto; gap: 0.5rem;
}
.hero-quick-form input {
    padding: 0.85rem 1rem; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm); font-size: 16px; font-family: inherit;
    width: 100%;
}
.hero-quick-form input:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.hero-quick-note {
    font-size: 0.72rem; color: var(--gray-600); margin-top: 0.65rem;
}
.hero-cta-secondary { margin-bottom: 1.5rem; }
.btn-cta-pulse {
    animation: ctaPulse 2.5s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45); }
    50% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
}
.btn-whatsapp {
    background: #25d366; color: #fff; border: none;
}
.btn-whatsapp:hover { background: #1da851; color: #fff; }

.trust-strip {
    background: var(--black); color: #fff;
    padding: 1rem 0; border-bottom: 1px solid var(--gray-800);
}
.trust-strip-inner {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
    text-align: center;
}
.trust-num {
    display: block; font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 700; line-height: 1.2;
}
.trust-lbl { font-size: 0.7rem; color: var(--gray-400); }

.package-apply-btn { margin-top: 1rem; }
.section-cta-bar {
    margin-top: 2.5rem; padding: 1.5rem 1.75rem;
    background: var(--accent-soft); border: 1px solid rgba(37,99,235,0.2);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
}
.section-cta-bar p { font-size: 0.95rem; color: var(--gray-800); margin: 0; }

.apply-trust-badges {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1rem;
    margin-bottom: 1.25rem; font-size: 0.78rem; font-weight: 600; color: var(--gray-600);
}
.apply-form-footer {
    font-size: 0.75rem; color: var(--gray-500); text-align: center;
    margin-top: 0.85rem;
}

.sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
    padding: 0.5rem max(0.75rem, env(safe-area-inset-right)) calc(0.5rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
    transform: translateY(110%); transition: transform 0.3s var(--ease);
    pointer-events: none;
}
.sticky-cta.visible { transform: translateY(0); pointer-events: auto; }
.sticky-cta-inner {
    max-width: 480px; margin: 0 auto;
    display: flex; gap: 0.5rem; align-items: stretch;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 100px; padding: 0.35rem 0.35rem 0.35rem 0.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.sticky-cta-main {
    flex: 1; display: flex; flex-direction: column; justify-content: center;
    padding: 0.4rem 0.85rem; text-decoration: none; color: inherit;
    border-radius: 100px; background: var(--accent); color: #fff;
}
.sticky-cta-main:hover { background: var(--accent-hover); color: #fff; }
.sticky-cta-title { font-size: 0.85rem; font-weight: 700; line-height: 1.2; }
.sticky-cta-sub { font-size: 0.65rem; opacity: 0.9; }
.sticky-cta-icon {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; text-decoration: none;
}
.sticky-cta-wa { background: #25d366; color: #fff; }
.sticky-cta-wa:hover { background: #1da851; color: #fff; }
.sticky-cta-call { background: var(--gray-100); color: var(--black); border: 1px solid var(--gray-200); }
.sticky-cta-call:hover { background: var(--gray-200); color: var(--black); }

.success-lead { font-size: 1.05rem; margin-bottom: 0.75rem; }
.success-actions {
    display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.25rem;
}
.success-actions .btn { width: 100%; min-height: 48px; }

@media (max-width: 900px) {
    .hero-quick-fields { grid-template-columns: 1fr; }
    .hero-quick-fields .btn { width: 100%; padding: 1rem; }
    .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .section-cta-bar { flex-direction: column; text-align: center; }
    .section-cta-bar .btn { width: 100%; }
}

@media (max-width: 480px) {
    .urgency-bar { font-size: 0.7rem; padding: 0.4rem 0; }
}
