/* StockPRO Marketing — shared design system */
:root {
    --bg: #060a12;
    --surface: #0c1322;
    --surface-2: #111a2e;
    --card: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.1);
    --text: #eef3fb;
    --text-muted: #93a4bd;
    --brand: #1fd0b6;
    --brand-2: #3b82f6;
    --brand-soft: rgba(31, 208, 182, 0.12);
    --brand-2-soft: rgba(59, 130, 246, 0.12);
    --radius: 14px;
    --radius-lg: 20px;
    --max: 1120px;
    --nav-h: 88px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
    font-size: 16px;
}

body {
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    color: var(--text);
    background:
        radial-gradient(1100px 700px at 8% -8%, rgba(31, 208, 182, 0.14), transparent 55%),
        radial-gradient(900px 600px at 92% 12%, rgba(59, 130, 246, 0.12), transparent 50%),
        var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: 100%;
    max-width: var(--max) !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 768px) {
    .container { padding-left: 16px; padding-right: 16px; }
}

/* Announcement */
.announcement {
    background: linear-gradient(90deg, rgba(31, 208, 182, 0.14), rgba(59, 130, 246, 0.12));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 0.875rem;
    text-align: center;
    padding: 10px 16px;
    letter-spacing: 0.01em;
}
.announcement a { color: var(--brand); font-weight: 600; }
.announcement a:hover { text-decoration: underline; }

/* Nav */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(6, 10, 18, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--nav-h);
    gap: 16px;
    position: relative;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 750;
    letter-spacing: -0.03em;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.brand-badge {
    height: 72px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
}
.brand-fallback {
    display: none;
    align-items: center;
    color: var(--text);
}
.brand-word {
    background: linear-gradient(120deg, #fff 30%, var(--brand) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    z-index: 1002;
}
.nav-links > a,
.nav-dropdown > a {
    color: var(--text-muted);
    transition: color 0.2s ease;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 8px;
}
.nav-links > a:hover,
.nav-dropdown > a:hover { color: var(--text); }
.nav-links .btn { padding: 9px 16px; font-size: 0.875rem; margin-left: 6px; }

.nav-dropdown { position: relative; }
.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.nav-dropdown > a i {
    font-size: 0.65rem;
    transition: transform 0.25s var(--ease);
}
.nav-dropdown:hover > a i,
.nav-dropdown.active > a i { transform: rotate(180deg); }

.nav-dropdown .dropdown-menu,
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    background: #0c1322 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    padding: 8px 0;
    min-width: 260px;
    max-width: 320px;
    width: 300px;
    max-height: 420px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    transition: opacity 0.18s ease, visibility 0s linear 0.2s;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    z-index: 10000 !important;
    pointer-events: none;
}
.nav-dropdown .dropdown-menu::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 12px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition-delay: 0s !important;
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--text-muted);
    transition: background 0.15s ease, color 0.15s ease;
    font-size: 0.9rem;
}
.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}
.dropdown-menu a i {
    width: 18px;
    text-align: center;
    color: var(--brand);
    flex-shrink: 0;
}
.dropdown-label {
    display: block;
    padding: 10px 18px 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 650;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
    font-size: 1.2rem;
}
.nav-toggle[aria-expanded="true"] .fa-bars { display: none; }
.nav-toggle .fa-xmark { display: none; }
.nav-toggle[aria-expanded="true"] .fa-xmark { display: block; }

@media (max-width: 1100px) {
    .nav-toggle { display: flex; z-index: 1002; }
    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        padding: 12px 16px 28px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(6, 10, 18, 0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        max-height: calc(100vh - var(--nav-h));
        overflow-y: auto;
        display: none;
        z-index: 998;
    }
    .nav-wrap.nav-open .nav-links { display: flex; }
    .nav-links > a,
    .nav-dropdown > a {
        padding: 14px 16px;
        font-size: 1rem;
    }
    .nav-links .btn { margin: 8px 0 0; justify-content: center; }
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        width: auto;
        max-width: none;
        max-height: 260px;
        margin: 0 8px 8px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none !important;
    }
    .nav-dropdown.active .dropdown-menu { display: block !important; }
}

@media (max-width: 768px) {
    .brand-badge { height: 56px; max-width: 180px; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 650;
    font-size: 0.95rem;
    transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, #18b8a2 45%, var(--brand-2) 100%);
    color: #fff !important;
    box-shadow: 0 8px 28px rgba(31, 208, 182, 0.22);
}
.btn-primary,
.btn-primary i { color: #fff !important; }
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(31, 208, 182, 0.32);
    color: #fff !important;
}
.btn-ghost {
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
}
.btn-lg { padding: 15px 26px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* Hero — full-bleed, brand-first */
.hero {
    position: relative;
    min-height: min(88vh, 820px);
    display: flex;
    align-items: center;
    padding: 72px 0 56px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(31, 208, 182, 0.16), transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(59, 130, 246, 0.1), transparent 55%),
        linear-gradient(180deg, transparent 60%, var(--bg) 100%);
    pointer-events: none;
}
.hero-plane {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, #000 20%, transparent 75%);
    pointer-events: none;
    opacity: 0.7;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.hero-brand {
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    color: var(--text);
}
.hero-brand span {
    background: linear-gradient(120deg, var(--brand), var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto 28px;
    text-align: center;
}
.hero-logo img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 96px;
    width: auto;
    max-width: min(320px, 80vw);
    object-fit: contain;
}
@media (max-width: 768px) {
    .hero-logo img { height: 72px; }
}
.hero-title {
    font-size: clamp(2.4rem, 5.2vw, 3.75rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 18px;
}
.hero-title em {
    font-style: normal;
    background: linear-gradient(110deg, var(--brand) 0%, #7dd3fc 55%, var(--brand-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    color: var(--text-muted);
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 32px;
}
.hero-assurance {
    margin-top: 22px;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.hero-assurance i { color: var(--brand); margin-right: 6px; }

/* Metrics strip */
.metrics-strip {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.015);
}
.metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.metric-val {
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.1;
}
.metric-label {
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
@media (max-width: 768px) {
    .metrics-row { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
}

/* Sections */
.section { padding: 88px 0; position: relative; }
.section--tight { padding: 56px 0; }
.section--surface { background: rgba(255, 255, 255, 0.015); }
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
}
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .section-kicker { justify-content: center; }
.section-title {
    font-size: clamp(1.85rem, 3.2vw, 2.55rem);
    font-weight: 750;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #fff;
}
.section-sub {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.7;
}
.section-head-left { text-align: left; margin-bottom: 36px; }
.section-head-left .section-sub { margin: 0; }

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.feature {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.feature:hover {
    border-color: rgba(31, 208, 182, 0.35);
    background: rgba(31, 208, 182, 0.04);
}
.feature i {
    font-size: 1.25rem;
    color: var(--brand);
    margin-bottom: 14px;
    display: block;
}
.feature h3,
.feature h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: -0.02em;
}
.feature p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .feature-grid { grid-template-columns: 1fr; }
}

/* Split layouts */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; gap: 32px; }
}

.timeline { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.timeline-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.timeline-item > span {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--brand-soft);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 750;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.timeline-item strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}
.timeline-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Outcomes */
.outcomes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.outcome {
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
}
.outcome-num {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(120deg, var(--brand), var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    line-height: 1;
}
.outcome h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #fff;
}
.outcome p {
    color: var(--text-muted);
    font-size: 0.92rem;
}
@media (max-width: 768px) {
    .outcomes { grid-template-columns: 1fr; }
}

/* Module showcase list */
.module-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    margin-top: 24px;
}
.module-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 6px 0;
}
.module-list li i {
    color: var(--brand);
    margin-top: 4px;
    flex-shrink: 0;
}
@media (max-width: 560px) {
    .module-list { grid-template-columns: 1fr; }
}

/* Visual panels (below hero) */
.visual-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(160deg, rgba(31, 208, 182, 0.08), rgba(59, 130, 246, 0.06)),
        var(--surface);
    padding: 28px;
    min-height: 280px;
}
.visual-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.visual-row strong { color: #fff; font-size: 1rem; }
.visual-chip {
    font-size: 0.75rem;
    font-weight: 650;
    padding: 5px 10px;
    border-radius: 6px;
    background: var(--brand-soft);
    color: var(--brand);
    border: 1px solid rgba(31, 208, 182, 0.25);
}
.visual-stat {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
    color: var(--text-muted);
}
.visual-stat b { color: var(--text); font-weight: 650; }
.progress {
    height: 6px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin: 10px 0 4px;
}
.progress > span {
    display: block;
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

/* Industry chips */
.industry-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
}
.industry-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 550;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.industry-chip:hover {
    border-color: rgba(31, 208, 182, 0.4);
    color: var(--text);
    background: var(--brand-soft);
}
.industry-chip i { color: var(--brand); font-size: 0.85rem; }

/* Fiscal / compliance */
.global-strip {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.fiscal-groups { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
.fiscal-group-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 700;
}
.fiscal-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.fiscal-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 550;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}
.fiscal-tag.live {
    border-color: rgba(31, 208, 182, 0.35);
    color: var(--brand);
    background: var(--brand-soft);
}
.fiscal-tag.soon {
    border-color: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    background: var(--brand-2-soft);
}

/* Mobile features */
.mobile-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}
.mobile-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-muted);
}
.mobile-feature i { color: var(--brand); margin-top: 3px; }
@media (max-width: 560px) {
    .mobile-features { grid-template-columns: 1fr; }
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.testimonial {
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
}
.testimonial blockquote {
    font-size: 1.05rem;
    font-weight: 650;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}
.testimonial cite {
    font-style: normal;
    font-size: 0.88rem;
    color: var(--text-muted);
}
@media (max-width: 900px) {
    .testimonials { grid-template-columns: 1fr; }
}

/* Partner teaser */
.partner-teaser {
    background: linear-gradient(135deg, rgba(31, 208, 182, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(31, 208, 182, 0.2);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
@media (max-width: 768px) {
    .partner-teaser { padding: 28px 22px; }
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 36px;
    align-items: stretch;
}
.price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
}
.price-card.highlight {
    border-color: rgba(31, 208, 182, 0.45);
    background: linear-gradient(180deg, rgba(31, 208, 182, 0.1), rgba(255, 255, 255, 0.03));
    box-shadow: 0 0 0 1px rgba(31, 208, 182, 0.15);
}
.price-card h4 {
    font-size: 1.1rem;
    font-weight: 750;
    color: #fff;
    margin-bottom: 4px;
}
.price-card .price-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 12px;
}
.price-card.highlight .price-tag { color: #fbbf24; }
.price {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 6px;
}
.price small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}
.price-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 18px;
    min-height: 2.6em;
}
.price-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
    margin-bottom: 20px;
}
.price-list div {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.price-list i {
    color: var(--brand);
    margin-top: 3px;
    flex-shrink: 0;
}
@media (max-width: 1100px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 28px;
}
.addon {
    padding: 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}
.addon-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 650;
    color: #fff;
    margin-bottom: 6px;
    font-size: 0.95rem;
}
.addon-title i { color: var(--brand); }
.addon p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.5;
}
.addon-price {
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--text);
}
.addon-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}
@media (max-width: 900px) {
    .addon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .addon-grid { grid-template-columns: 1fr; }
}

.compare-table-wrap {
    margin-top: 28px;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}
.compare-table th,
.compare-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}
.compare-table th {
    color: #fff;
    font-weight: 650;
    background: rgba(255, 255, 255, 0.03);
}
.compare-table td { color: var(--text-muted); }
.compare-table td:not(:first-child),
.compare-table th:not(:first-child) { text-align: center; }
.compare-table i.fa-check { color: var(--brand); }
.compare-table i.fa-times { color: #64748b; }

.pricing-note {
    margin-top: 32px;
    padding: 16px 20px;
    background: var(--brand-soft);
    border: 1px solid rgba(31, 208, 182, 0.22);
    border-radius: 12px;
    text-align: center;
    font-size: 0.92rem;
    color: var(--text);
}
.pricing-note i { color: var(--brand); margin-right: 6px; }

/* FAQ */
.faq {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 36px;
}
.faq-item {
    padding: 18px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.faq-item:hover { border-color: rgba(31, 208, 182, 0.28); }
.faq-item.active {
    border-color: rgba(31, 208, 182, 0.4);
    background: rgba(31, 208, 182, 0.06);
}
.faq-title {
    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
}
.faq-title h3 {
    flex: 1;
    font-size: 0.98rem;
    font-weight: 650;
    margin: 0;
    color: #fff;
    line-height: 1.35;
}
.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: transform 0.25s var(--ease);
    flex-shrink: 0;
}
.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--brand);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}
.faq-item.active .faq-content { margin-top: 12px; }
.faq-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}
@media (max-width: 768px) {
    .faq { grid-template-columns: 1fr; }
}

/* Final CTA */
.cta-band {
    background: linear-gradient(135deg, rgba(31, 208, 182, 0.16), rgba(59, 130, 246, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cta-band .section-title { margin-bottom: 8px; }
.cta-band .section-sub { margin: 0; max-width: 480px; text-align: left; }
@media (max-width: 768px) {
    .cta-band {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
    }
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 56px 0 40px;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.2);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 40px;
}
.footer-brand p {
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 280px;
}
.footer-col h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.footer-col a {
    display: block;
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.85rem;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Industry page helpers (existing class names) */
.hero-content { text-align: center; max-width: 820px; margin: 0 auto; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: var(--brand-soft);
    border: 1px solid rgba(31, 208, 182, 0.28);
    border-radius: 8px;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 650;
    margin-bottom: 18px;
}
.hero-subheadline {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
.pain-points-grid,
.features-grid,
.benefits-grid,
.testimonials-grid {
    margin-top: 40px;
    display: grid;
    gap: 16px;
}
.pain-points-grid,
.features-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.benefits-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.pain-point-card,
.feature-card,
.benefit-card,
.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.pain-point-icon,
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}
.pain-point-icon {
    background: rgba(248, 113, 113, 0.12);
    color: #f87171;
}
.benefit-metric {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.benefit-label { color: var(--text-muted); }
.cta-section {
    background: linear-gradient(135deg, rgba(31, 208, 182, 0.16), rgba(59, 130, 246, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 56px 36px;
    text-align: center;
}
.cta-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 750;
    margin-bottom: 12px;
}
.cta-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
}
.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Motion */
.js [data-animate] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.js [data-animate].in {
    opacity: 1;
    transform: translateY(0);
}
.js .hero-logo,
.js .hero-title,
.js .hero-sub,
.js .hero-actions,
.js .hero-assurance {
    opacity: 0;
    transform: translateY(16px);
    animation: heroIn 0.8s var(--ease) forwards;
}
.js .hero-logo { animation-delay: 0.05s; }
.js .hero-title { animation-delay: 0.15s; }
.js .hero-sub { animation-delay: 0.28s; }
.js .hero-actions { animation-delay: 0.4s; }
.js .hero-assurance { animation-delay: 0.52s; }

@keyframes heroIn {
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .js [data-animate],
    .js .hero-logo,
    .js .hero-title,
    .js .hero-sub,
    .js .hero-actions,
    .js .hero-assurance {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
}
