/* ==========================================================================
   PPC Pilot — Light "monday.com-inspired" Design System
   Clean white canvas · vibrant blue/purple accents · friendly rounded cards
   ========================================================================== */

:root {
    --bg: #FFFFFF;
    --bg-soft: #F6F7FB;
    --bg-card: #FFFFFF;
    --ink: #323338;
    --ink-dim: #565968;
    --ink-faint: #8B8E9E;
    --line: #E4E6F0;
    --brand: #0073EA;
    --brand-2: #A25DDC;
    --brand-3: #E2445C;
    --green: #00C875;
    --grad: linear-gradient(100deg, #0073EA 0%, #A25DDC 70%);
    --grad-soft: linear-gradient(100deg, rgba(0,115,234,.08), rgba(162,93,220,.08));
    --gold: #F5A623;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 6px 24px -6px rgba(50, 51, 56, 0.12);
    --shadow-lg: 0 20px 50px -12px rgba(50, 51, 56, 0.18);
    --font-head: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --header-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 60px); }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.22rem; }

p { margin: 0 0 1.25em; }
a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: #0059B8; }
img { max-width: 100%; height: auto; }
ul, ol { padding-left: 1.3em; }
li { margin-bottom: .45em; }
s { color: var(--ink-faint); }

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

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

.skip-link {
    position: absolute; left: -9999px; top: 0; background: var(--brand);
    color: #fff; padding: 10px 18px; z-index: 999; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

::selection { background: rgba(162, 93, 220, .25); }

/* ---------- Promo banner ---------- */
.promo-banner {
    background: var(--grad); color: #fff; font-size: .92rem; font-weight: 500;
    position: relative; z-index: 101;
}
.promo-banner .container {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    padding-top: 10px; padding-bottom: 10px; text-align: center; flex-wrap: wrap;
}
.promo-banner a {
    color: #fff; font-weight: 700; white-space: nowrap;
    border-bottom: 2px solid rgba(255,255,255,.6);
}
.promo-banner a:hover { border-bottom-color: #fff; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-head); font-weight: 600; font-size: 1rem;
    padding: 13px 26px; border-radius: 10px; border: 1px solid transparent;
    cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--grad); color: #fff !important;
    box-shadow: 0 8px 22px -6px rgba(0, 115, 234, .45);
}
.btn-primary:hover { box-shadow: 0 14px 32px -6px rgba(0, 115, 234, .55); }
.btn-outline { border-color: #C5C9D8; color: var(--ink) !important; background: #fff; }
.btn-outline:hover { border-color: var(--brand); color: var(--brand) !important; }
.btn-light { background: #fff; color: var(--brand) !important; box-shadow: var(--shadow); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff !important; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }
.btn-sm { padding: 9px 18px; font-size: .9rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100; height: var(--header-h);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 6px 24px -8px rgba(50, 51, 56, .14); }
.header-inner {
    max-width: 1320px; margin: 0 auto; padding: 0 24px; height: var(--header-h);
    display: flex; align-items: center; gap: 28px;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
    font-family: var(--font-head); font-weight: 800; font-size: 1.35rem;
    color: var(--ink); letter-spacing: -0.02em;
}
.logo-text em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo-light { font-size: 1.6rem; display: inline-block; margin-bottom: 12px; color: #fff; }

.main-nav { flex: 1; }
.main-nav > ul { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.main-nav > ul > li { position: relative; margin: 0; }
.main-nav > ul > li > a {
    display: block; padding: 10px 15px; color: var(--ink-dim);
    font-weight: 500; font-size: .97rem; border-radius: 10px;
}
.main-nav > ul > li > a:hover { color: var(--ink); background: var(--bg-soft); }
.caret { font-size: .7em; }

/* Mega menu */
.mega-menu {
    position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(10px);
    width: min(980px, 92vw); background: #fff;
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 28px; opacity: 0; visibility: hidden; transition: all .25s ease;
    box-shadow: var(--shadow-lg);
}
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.mega-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.mega-col { display: flex; flex-direction: column; gap: 2px; }
.mega-title {
    font-family: var(--font-head); font-size: .76rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em; color: var(--brand);
    margin-bottom: 8px;
}
.mega-col a { color: var(--ink-dim); font-size: .88rem; padding: 3px 0; }
.mega-col a:hover { color: var(--brand); }
.mega-more { color: var(--brand-2) !important; font-weight: 600; margin-top: 6px; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
    display: flex; align-items: center; gap: 8px; color: var(--ink);
    font-weight: 600; font-size: .95rem;
}
.header-phone:hover { color: var(--brand); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none;
    border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 80px 0 0; overflow: hidden; background: var(--bg-soft); }
.hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(700px 460px at 10% 0%, rgba(0, 115, 234, .10), transparent 60%),
        radial-gradient(640px 440px at 92% 10%, rgba(162, 93, 220, .10), transparent 60%),
        radial-gradient(800px 500px at 50% 120%, rgba(0, 200, 117, .07), transparent 60%);
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(50,51,56,.045) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(50,51,56,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
}
.hero-inner {
    position: relative; display: grid; grid-template-columns: 1.15fr .85fr;
    gap: 60px; align-items: center; padding-bottom: 80px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid var(--line);
    color: var(--brand); font-size: .85rem; font-weight: 600;
    padding: 7px 16px; border-radius: 999px; margin-bottom: 26px;
    box-shadow: var(--shadow);
}
.hero-sub { font-size: 1.2rem; color: var(--ink-dim); max-width: 34em; }
.hero-sub strong { color: var(--ink); }
.was-price { font-size: .75em; color: var(--ink-faint); font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 22px; }
.hero-proof { color: var(--ink-faint); font-size: .93rem; }
.hero-proof span { color: var(--gold); letter-spacing: 2px; }

.hero-card {
    background: #fff;
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); overflow: hidden;
    animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-card-head {
    display: flex; align-items: center; gap: 7px;
    padding: 15px 20px; border-bottom: 1px solid var(--line); background: var(--bg-soft);
}
.hc-dot { width: 11px; height: 11px; border-radius: 50%; background: #D5D8E2; }
.hc-dot:first-child { background: #FF6B6B; } .hc-dot:nth-child(2) { background: #FFC95C; } .hc-dot:nth-child(3) { background: #00C875; }
.hc-title { margin-left: auto; font-size: .8rem; color: var(--ink-faint); }
.hero-card-body { padding: 26px 24px 28px; }
.hc-stat {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 10px 0; border-bottom: 1px dashed var(--line);
}
.hc-label { color: var(--ink-dim); font-size: .93rem; }
.hc-value { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hc-chart { display: flex; align-items: flex-end; gap: 7px; height: 110px; margin: 24px 0 12px; }
.hc-chart span {
    flex: 1; border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, var(--brand-2), var(--brand));
    opacity: .85;
    animation: grow 1.4s cubic-bezier(.2,.8,.3,1) backwards;
}
.hc-chart span:nth-child(2n) { animation-delay: .12s; } .hc-chart span:nth-child(3n) { animation-delay: .22s; }
@keyframes grow { from { height: 0 !important; } }
.hc-caption { text-align: center; color: var(--ink-faint); font-size: .83rem; }

/* Marquee */
.hero-marquee {
    border-top: 1px solid var(--line);
    padding: 18px 0; overflow: hidden; position: relative;
    background: #fff;
}
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span {
    font-family: var(--font-head); font-weight: 600; color: var(--ink-faint);
    font-size: 1rem; white-space: nowrap;
}
.marquee-track span::before { content: '✦'; color: var(--brand-2); margin-right: 56px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats bar ---------- */
.stats-bar { padding: 64px 0 8px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat {
    text-align: center; padding: 30px 16px; background: var(--bg-card);
    border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.stat-num { display: block; font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; }
.stat-label { color: var(--ink-dim); font-size: .95rem; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; position: relative; }
.section-dark { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--ink-dim); font-size: 1.1rem; }
.eyebrow {
    display: inline-block; font-family: var(--font-head); font-size: .8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em; color: var(--brand-2); margin-bottom: 16px;
}

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 36px 30px; transition: transform .25s, box-shadow .25s;
    box-shadow: var(--shadow);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
    width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
    background: var(--grad); color: #fff;
    font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; margin-bottom: 22px;
    box-shadow: 0 8px 18px -6px rgba(0,115,234,.4);
}
.service-card p { color: var(--ink-dim); font-size: .98rem; margin: 0; }

/* Pricing */
.pricing-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: start; }
.pricing-card {
    position: relative; background: #fff;
    border: 2px solid var(--brand); border-radius: var(--radius-lg);
    padding: 48px 44px; box-shadow: var(--shadow-lg);
}
.pricing-badge {
    position: absolute; top: -15px; left: 44px; background: linear-gradient(100deg, #E2445C, #FF642E); color: #fff;
    font-family: var(--font-head); font-size: .8rem; font-weight: 700; padding: 7px 18px; border-radius: 999px;
    box-shadow: 0 6px 16px -4px rgba(226,68,92,.5);
}
.pricing-was { color: var(--ink-faint); font-size: 1rem; margin: 10px 0 0; }
.pricing-was s { font-size: 1.15rem; }
.pricing-main { display: flex; align-items: baseline; gap: 12px; margin: 2px 0 8px; }
.pricing-amount { font-family: var(--font-head); font-size: 4.4rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pricing-term { color: var(--ink-dim); font-size: 1.15rem; font-weight: 600; }
.pricing-setup { color: var(--ink-dim); margin-bottom: 26px; }
.pricing-setup strong { color: var(--ink); } .pricing-setup em { font-size: .9rem; color: var(--ink-faint); }
.pricing-list { list-style: none; padding: 0; margin: 0 0 30px; }
.pricing-list li { padding: 9px 0 9px 34px; position: relative; border-bottom: 1px dashed var(--line); color: var(--ink-dim); }
.pricing-list li::before {
    content: '✓'; position: absolute; left: 0; top: 9px; width: 22px; height: 22px;
    background: rgba(0,200,117,.12); border: 1px solid rgba(0,200,117,.4); border-radius: 50%;
    color: var(--green); font-size: .75rem; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.pricing-note { display: block; text-align: center; color: var(--ink-faint); font-size: .85rem; margin-top: 16px; }
.pricing-compare h3 { margin-top: 10px; }
.compare-row {
    display: flex; justify-content: space-between; gap: 20px; padding: 15px 4px;
    border-bottom: 1px solid var(--line); color: var(--ink-dim); font-size: .97rem;
}
.compare-row strong { color: var(--ink); text-align: right; }
.compare-hl { background: var(--grad-soft); border-radius: 12px; padding: 15px 14px; border-bottom: 0; }
.pricing-compare p { color: var(--ink-faint); font-size: .95rem; margin-top: 18px; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.p-step {
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.p-num {
    font-family: var(--font-head); font-size: 2.6rem; font-weight: 800;
    background: linear-gradient(180deg, var(--brand), rgba(0,115,234,.12));
    -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 12px;
}
.p-step p { color: var(--ink-dim); font-size: .95rem; margin: 0; }

/* ---------- Industries: collapsible categories ---------- */
.ind-cat {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow);
}
.section-dark .ind-cat { background: #fff; }
.ind-cat-toggle {
    display: flex; align-items: center; gap: 14px; width: 100%;
    background: none; border: 0; cursor: pointer; text-align: left;
    padding: 20px 24px; font: inherit;
}
.ind-cat-toggle:hover { background: var(--bg-soft); }
.ind-cat-name { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--ink); }
.ind-cat-count {
    font-size: .82rem; font-weight: 600; color: var(--brand);
    background: rgba(0,115,234,.09); padding: 4px 12px; border-radius: 999px;
}
.ind-cat-chevron {
    margin-left: auto; width: 10px; height: 10px; flex: 0 0 auto;
    border-right: 2.5px solid var(--ink-faint); border-bottom: 2.5px solid var(--ink-faint);
    transform: rotate(45deg); transition: transform .25s ease;
}
.ind-cat.open .ind-cat-chevron { transform: rotate(-135deg); }
.ind-cat .ind-tags {
    display: none; padding: 4px 24px 24px;
    flex-wrap: wrap; gap: 10px;
    border-top: 1px dashed var(--line);
    padding-top: 20px;
}
.ind-cat.open .ind-tags { display: flex; animation: fadeSlide .3s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.ind-tag {
    background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink-dim);
    padding: 9px 18px; border-radius: 999px; font-size: .92rem; font-weight: 500;
    transition: all .2s;
}
.ind-tag:hover {
    background: var(--grad); border-color: transparent; color: #fff;
    transform: translateY(-2px); box-shadow: 0 8px 18px -6px rgba(0,115,234,.45);
}

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow);
}
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.review-text { color: var(--ink-dim); font-size: 1rem; margin: 0; flex: 1; }
.review-author strong { display: block; font-family: var(--font-head); }
.review-author span { color: var(--ink-faint); font-size: .88rem; }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-top: 34px; }
.contact-method {
    display: flex; flex-direction: column; gap: 2px; padding: 18px 22px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink);
    box-shadow: var(--shadow);
}
a.contact-method:hover { border-color: var(--brand); }
.cm-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); font-weight: 600; }
.contact-form {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-lg);
}
.contact-form h3 { margin-bottom: 22px; }
.contact-form label { display: block; font-size: .88rem; font-weight: 600; color: var(--ink-dim); margin-bottom: 16px; }
.contact-form input, .contact-form textarea {
    width: 100%; margin-top: 7px; background: var(--bg-soft); border: 1px solid var(--line);
    border-radius: 10px; color: var(--ink); padding: 13px 16px; font: inherit; font-size: .97rem;
    transition: border-color .2s, background .2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--brand); background: #fff; }
.form-note { display: block; text-align: center; margin-top: 14px; color: var(--ink-faint); font-size: .85rem; }

/* ---------- Industry pages ---------- */
.ind-hero { position: relative; padding: 70px 0 70px; overflow: hidden; background: var(--bg-soft); }
.ind-hero .hero-sub { max-width: 44em; }
.breadcrumbs { font-size: .88rem; color: var(--ink-faint); margin-bottom: 26px; }
.breadcrumbs a { color: var(--ink-dim); }
.breadcrumbs span { margin: 0 6px; }

.ind-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; padding-top: 70px; padding-bottom: 100px; align-items: start; }

.prose { max-width: 100%; }
.prose h2 {
    margin-top: 1.6em; padding-top: .4em; font-size: clamp(1.5rem, 2.6vw, 2rem);
    border-top: 1px solid var(--line);
}
.prose h2:first-child { border-top: 0; margin-top: 0; }
.prose h3 { margin-top: 1.4em; color: #3E4260; }
.prose p { color: var(--ink-dim); }
.prose p strong, .prose li strong { color: var(--ink); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.content-section { margin-bottom: 12px; }

.keyword-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 22px 0; }
.keyword-list li {
    background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px;
    padding: 8px 18px; font-size: .9rem; color: var(--ink-dim); margin: 0;
}

.price-card { margin: 28px 0; }
.price-card-inner {
    background: #fff; border: 2px solid var(--brand);
    border-radius: var(--radius-lg); padding: 40px 38px; box-shadow: var(--shadow-lg);
}
.price-was { color: var(--ink-faint); font-size: 1rem; margin-bottom: 2px; }
.price-was s { font-size: 1.2rem; }
.price-off {
    display: inline-block; background: linear-gradient(100deg, #E2445C, #FF642E); color: #fff;
    font-size: .78rem; font-weight: 700; padding: 4px 12px; border-radius: 999px;
    vertical-align: middle; margin-left: 8px;
}
.price-main { display: flex; align-items: baseline; gap: 10px; }
.price-amount { font-family: var(--font-head); font-size: 3.4rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-cad { color: var(--ink-dim); font-weight: 600; }
.price-setup { color: var(--ink-dim); margin: 6px 0 22px; }
.price-setup em { display: block; font-size: .88rem; color: var(--ink-faint); }
.price-list { list-style: none; padding: 0; margin: 0 0 26px; }
.price-list li { padding: 8px 0 8px 32px; position: relative; color: var(--ink-dim); border-bottom: 1px dashed var(--line); }
.price-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.process-list { list-style: none; padding: 0; margin: 24px 0; counter-reset: step; }
.process-list li { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); margin: 0; }
.process-num {
    flex: 0 0 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: var(--grad); color: #fff;
    font-family: var(--font-head); font-weight: 800;
    box-shadow: 0 6px 14px -4px rgba(0,115,234,.4);
}
.process-list h3 { margin: 0 0 6px; font-size: 1.1rem; }
.process-list p { margin: 0; font-size: .96rem; }

.mistake-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.mistake-item {
    display: flex; gap: 20px; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow);
}
.mistake-num {
    flex: 0 0 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    background: rgba(226, 68, 92, .1); border: 1px solid rgba(226, 68, 92, .3);
    font-family: var(--font-head); font-weight: 800; color: var(--brand-3);
}
.mistake-item h3 { margin: 0 0 6px; font-size: 1.08rem; }
.mistake-item p { margin: 0; font-size: .95rem; }

.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.faq-item {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: var(--brand); box-shadow: var(--shadow); }
.faq-item summary {
    cursor: pointer; padding: 20px 26px; font-family: var(--font-head); font-weight: 600;
    font-size: 1.02rem; list-style: none; position: relative; padding-right: 56px; color: var(--ink);
}
.faq-item summary::after {
    content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
    font-size: 1.4rem; color: var(--brand-2); transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding: 0 26px 22px; }
.faq-answer p { margin: 0; }

.cta-block {
    text-align: center; background: var(--grad);
    border-radius: var(--radius-lg);
    padding: 60px 40px; margin-top: 60px; box-shadow: var(--shadow-lg);
}
.cta-block h2 { border: 0; margin-top: 0; padding-top: 0; color: #fff; }
.cta-block p { max-width: 46em; margin-left: auto; margin-right: auto; color: rgba(255,255,255,.92); }
.cta-block .btn-outline { border-color: rgba(255,255,255,.6); color: #fff !important; background: rgba(255,255,255,.12); }
.cta-block .btn-outline:hover { background: rgba(255,255,255,.22); }
.cta-block .btn-primary { background: #fff; color: var(--brand) !important; box-shadow: var(--shadow); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 30px 0 18px; }
.cta-address { color: rgba(255,255,255,.75) !important; font-size: .9rem; margin: 0; }

/* Sidebar */
.ind-sidebar { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; gap: 22px; }
.sidebar-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow); }
.sidebar-card h3 { margin: 0 0 14px; font-size: 1.05rem; }
.sidebar-card p { color: var(--ink-dim); font-size: .92rem; }
.sidebar-cta { border: 2px solid var(--brand); }
.sidebar-cta .btn { margin-top: 10px; }
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { padding: 7px 0; font-size: .94rem; color: var(--ink-dim); border-bottom: 1px dashed var(--line); }
.sidebar-list li:last-child { border-bottom: 0; }
.sidebar-list s { font-size: .85em; }
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { margin: 0; }
.sidebar-links a { display: block; padding: 7px 0; color: var(--ink-dim); font-size: .93rem; border-bottom: 1px dashed var(--line); }
.sidebar-links a:hover { color: var(--brand); }

/* Sticky mobile CTA */
.sticky-cta {
    display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
    gap: 10px; background: rgba(255, 255, 255, .96); backdrop-filter: blur(14px);
    border: 1px solid var(--line); border-radius: 999px; padding: 10px;
    box-shadow: var(--shadow-lg);
}
.sticky-cta.sticky-hidden { display: none !important; }
.sticky-cta .btn { flex: 1; padding: 12px 10px; font-size: .9rem; }

/* Industries index */
.ind-index { padding: 70px 0 100px; }

/* Default page */
.prose-page { padding: calc(var(--header-h) + 70px) 24px 100px; max-width: 860px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); }
.footer-cta {
    background: linear-gradient(120deg, #0073EA, #5B2FA8 65%, #A25DDC);
    padding: 90px 0; text-align: center;
}
.footer-cta h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); color: #fff; }
.footer-cta p { color: rgba(255,255,255,.9); max-width: 46em; margin: 0 auto; }
.footer-cta p s { color: rgba(255,255,255,.65); }
.footer-main { padding: 70px 0 0; background: #1F2240; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 50px; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col p { color: #9BA0C0; font-size: .93rem; }
.footer-title { font-family: var(--font-head); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 8px; }
.footer-col a { color: #B8BCD8; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-addr { color: #9BA0C0; font-size: .93rem; line-height: 1.6; }
.footer-bottom {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    padding: 24px; border-top: 1px solid rgba(255,255,255,.08); color: #8B8FB0; font-size: .85rem;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.3,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .mega-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-inner { grid-template-columns: 1fr; gap: 44px; }
    .hero-card { max-width: 520px; }
    .pricing-wrap, .contact-wrap { grid-template-columns: 1fr; }
    .service-grid, .process-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
    .ind-layout { grid-template-columns: 1fr; }
    .ind-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    body { font-size: 16px; }
    .main-nav {
        position: fixed; inset: var(--header-h) 0 auto 0; background: #fff;
        border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
        max-height: 0; overflow: hidden; transition: max-height .35s ease;
    }
    .main-nav.open { max-height: 80vh; overflow-y: auto; }
    .main-nav > ul { flex-direction: column; padding: 18px 24px 30px; }
    .main-nav > ul > li > a { padding: 13px 6px; font-size: 1.05rem; }
    .mega-menu {
        position: static; transform: none; width: 100%; opacity: 1; visibility: visible;
        background: transparent; border: 0; padding: 6px 0 10px; box-shadow: none; display: none;
    }
    .has-mega.open .mega-menu { display: block; }
    .mega-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .nav-toggle { display: flex; }
    .header-phone { display: none; }
    .header-cta .btn { padding: 9px 14px; font-size: .82rem; }
    .promo-banner .container { font-size: .82rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .service-grid, .process-grid, .review-grid { grid-template-columns: 1fr; }
    .section { padding: 70px 0; }
    .pricing-card { padding: 38px 26px; }
    .pricing-amount { font-size: 3.2rem; }
    .hero { padding-top: 52px; }
    .hero-actions .btn { width: 100%; }
    .sticky-cta:not(.sticky-hidden) { display: flex; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .cta-block { padding: 44px 24px; }
    .mistake-item, .process-list li { flex-direction: column; gap: 12px; }
    .ind-hero { padding: 50px 0 46px; }
    .site-footer { padding-bottom: 70px; }
    .ind-cat-toggle { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}
