:root {
    --navy: #06131e;
    --navy-2: #0D1B2A;
    --charcoal: #1A2535;
    --text: #2D3748;
    --muted: #677084;
    --teal: #00B4D8;
    --purple: #7A76FF;
    --magenta: #A855F7;
    --orange: #00B4D8;
    --line: rgba(122, 118, 255, 0.22);
    --gradient: linear-gradient(90deg, #7A76FF 0%, #A855F7 68%, #00B4D8 100%);
    --health-gradient: linear-gradient(135deg, #7A76FF 0%, #A855F7 60%, #00B4D8 100%);
}


/* EmpireOneCX-aligned font aliases */
@font-face {
    font-family: "helveticalight";
    src: local("Plus Jakarta Sans Light");
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: "helveticanormal";
    src: local("Plus Jakarta Sans");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "helveticaregular";
    src: local("Plus Jakarta Sans Medium");
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "helveticasemibold";
    src: local("Plus Jakarta Sans Bold");
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "reckless";
    src: local("Cormorant Garamond");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "recklessregular";
    src: local("Cormorant Garamond");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "RecklessRegularItalic";
    src: local("Cormorant Garamond Italic");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "RecklessMediumItalic";
    src: local("Cormorant Garamond Medium Italic");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "RecklessSemiBoldItalic";
    src: local("Cormorant Garamond SemiBold Italic");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: #f7f8fb;
    font-family: "Plus Jakarta Sans", "helveticanormal", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1288px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(880px, calc(100% - 32px)); text-align: center; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 25px 10px;
    background: transparent;
    transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
    padding: 18px 10px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.10);
}
.nav-shell { min-height: 46px; display: flex; align-items: center; justify-content: flex-start; gap: 0; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; line-height: 1; }
.brand img { display: block; width: 147px; max-width: none; height: auto; object-fit: contain; border-radius: 5px; }
.brand--footer img { width: 210px; }
.main-nav { display: flex; align-items: center; gap: 18px; margin-left: 32px; color: #fff; font-family: "Plus Jakarta Sans", "helveticanormal", Arial, sans-serif; font-size: 16px; font-weight: 400; }
.main-nav a { position: relative; padding: 8px 0; transition: color .25s ease; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 0;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    cursor: pointer;
    transition: color .25s ease;
}
.nav-dropdown-toggle i { font-size: 10px; transition: transform .25s ease; }
.main-nav a::after, .nav-dropdown-toggle::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 3px; border-radius: 2px; background: var(--gradient); transition: width .35s ease; }
.main-nav a:hover::after, .main-nav a.is-active::after, .nav-dropdown:hover .nav-dropdown-toggle::after, .nav-dropdown.is-active .nav-dropdown-toggle::after, .nav-dropdown.is-open .nav-dropdown-toggle::after { width: 100%; }
.nav-dropdown:hover .nav-dropdown-toggle i, .nav-dropdown.is-open .nav-dropdown-toggle i { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    min-width: 210px;
    padding: 10px;
    border: 1px solid rgba(122, 118, 255, 0.18);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,.16);
    color: #2d3748;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -8px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 12px;
    border-radius: 8px;
}
.nav-dropdown-menu a:hover, .nav-dropdown-menu a.is-active { color: #00B4D8; background: #f7f8fb; }
.nav-dropdown-menu a::after { display: none; }
.site-header.is-scrolled .main-nav { color: #000; }
.header-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; margin-left: auto; }
.header-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-clip: padding-box;
    clip-path: inset(0 round 7px);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 18px;
    border-radius: 7px;
    color: #fff;
    font-family: "Cormorant Garamond", "reckless", Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    transition: color .3s ease, border-color .3s ease, transform .3s ease;
    box-shadow: none;
}
.header-btn--outline {
    border: 1px solid #fff;
    background: transparent;
}
.site-header.is-scrolled .header-btn--outline {
    color: #000;
    border-color: #000;
}
.header-btn::before { display: none; }
.header-btn:hover { color: #fff; border-color: transparent; transform: translateY(-2px); }
.header-btn--gradient {
    border: 1px solid transparent;
    background: var(--gradient);
}
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; border-radius: 8px; color: #fff; background: transparent; font-size: 22px; }
.site-header.is-scrolled .nav-toggle { color: #000; }

.hero, .page-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #02070d;
}
.hero { min-height: 760px; display: flex; align-items: center; padding: 120px 0 104px; text-align: center; }
.page-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 150px 0 95px;
    text-align: center;
}
.hero-bg, .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 12%, rgba(122,118,255,.28), transparent 28%),
        radial-gradient(circle at 16% 78%, rgba(0,180,216,.18), transparent 30%),
        linear-gradient(110deg, rgba(2,7,13,.78), rgba(13,27,42,.84));
    opacity: .98;
    z-index: 1;
}
.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .82fr; gap: 70px; align-items: center; }
.hero-grid--centered {
    display: block;
    max-width: 1120px;
}
.hero-grid--centered .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-copy, .page-hero .narrow {
    animation: heroReveal .85s ease both;
}
@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 16px; color: #d950ff; font-weight: 800; }
.eyebrow span, .section-kicker span { display: inline-block; width: 28px; height: 4px; border-radius: 99px; background: var(--gradient); }
.centered { justify-content: center; width: 100%; text-align: center; }
h1, h2, h3, p { margin-top: 0; }
h1 { color: #fff; font-family: "Cormorant Garamond", "reckless", Georgia, serif; font-size: clamp(46px, 6vw, 84px); font-weight: 500; line-height: .98; letter-spacing: 0; margin-bottom: 24px; }
h1 em, h2 em { font-family: "Cormorant Garamond", "RecklessMediumItalic", Georgia, serif; font-style: italic; background: var(--gradient); -webkit-background-clip: text; color: transparent; }
.hero h1, .page-hero h1 { max-width: 1120px; font-family: "Cormorant Garamond", "reckless", Georgia, serif; font-size: clamp(34px, 4.1vw, 56px); font-weight: 500; line-height: 1.16; letter-spacing: 0; }
.page-hero .narrow {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-copy > p:not(.eyebrow), .page-hero p:not(.eyebrow) { max-width: 820px; color: rgba(255,255,255,.86); font-size: 19px; line-height: 1.75; }
.hero-actions, .section .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 34px; }
.centered-actions { justify-content: center; }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 0 24px; border-radius: 8px; font-weight: 900; border: 1px solid transparent; overflow: hidden; isolation: isolate; background-clip: padding-box; clip-path: inset(0 round 8px); transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--gradient); box-shadow: none; }
.btn-outline { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.05); }
.btn-outline.dark { color: var(--navy); border-color: rgba(6,19,30,.18); background: #fff; }
.trust-line { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; align-items: center; margin-top: 28px; }
.trust-line span { color: rgba(255,255,255,.78); font-size: 13px; font-weight: 700; }
.trust-line span + span::before { content: '|'; margin-right: 12px; color: rgba(255,255,255,.42); font-weight: 500; }

.hero-visual { position: relative; min-height: 470px; }
.dashboard-card { position: relative; max-width: 520px; margin-left: auto; padding: 26px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; background: rgba(10,18,28,.78); box-shadow: 0 36px 90px rgba(0,0,0,.36); backdrop-filter: blur(20px); }
.dash-head { display: flex; gap: 8px; margin-bottom: 26px; }
.dash-head span { width: 12px; height: 12px; border-radius: 50%; background: var(--gradient); }
.dash-title { color: #fff; font-size: 24px; font-weight: 900; margin-bottom: 20px; }
.metric-row { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.75); }
.metric-row strong { color: #fff; }
.metric-row .down, .metric-row .up { color: #33e7ff; font-weight: 900; }
.chart-bars { display: grid; grid-template-columns: repeat(5, 1fr); align-items: end; gap: 12px; height: 110px; margin-top: 22px; }
.chart-bars i { border-radius: 8px 8px 0 0; background: var(--health-gradient); }
.chart-bars i:nth-child(1){height:42%}.chart-bars i:nth-child(2){height:70%}.chart-bars i:nth-child(3){height:56%}.chart-bars i:nth-child(4){height:88%}.chart-bars i:nth-child(5){height:64%}
.floating-proof { position: absolute; right: 0; bottom: 10px; width: 260px; display: flex; gap: 12px; align-items: center; padding: 18px; border-radius: 8px; color: #fff; background: var(--gradient); box-shadow: 0 22px 42px rgba(0,0,0,.26); font-weight: 800; }
.floating-proof i { font-size: 24px; }

.trust-strip, .section { padding: 86px 0; }
.trust-strip { padding: 0 0 18px; background: #fff; }
.certificate-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 46px;
    margin-top: -80px;
    padding: 34px 44px;
    border: 1px solid rgba(6,19,30,.10);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 22px 50px rgba(14,15,27,.08);
    position: relative;
    z-index: 3;
}
.certificate-strip .section-kicker { margin: 0; color: var(--navy); font-size: 24px; font-weight: 500; white-space: nowrap; }
.certificate-strip .section-kicker span { flex: 0 0 auto; }
.certificate-logos { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.certificate-logos img { display: block; width: auto; height: 74px; object-fit: contain; }
.certificate-logos img[alt="BBB Accredited Business"] { height: 82px; }
.badge-row, .ehr-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.badge-row div, .ehr-row span { min-width: 145px; padding: 15px 18px; border: 1px solid var(--line); border-radius: 8px; text-align: center; font-weight: 900; background: #fff; box-shadow: 0 16px 34px rgba(14,15,27,.06); }
.split-path, .card-grid, .result-grid, .stats-grid { display: grid; gap: 20px; }
.split-path { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dark-card, .service-card, .result-grid div, .calc-card, .result-card, .calendar-placeholder, .contact-form {
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 46px rgba(14,15,27,.07);
}
.path-card { min-height: 300px; padding: 34px; color: #fff; background: linear-gradient(145deg, #07121f, #111827); }
.path-card > i, .service-card > i { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 22px; border-radius: 8px; color: #fff; background: var(--gradient); }
.path-card h2, .service-card h2, .service-card h3 { font-size: 24px; margin-bottom: 12px; }
.path-card p { color: rgba(255,255,255,.76); line-height: 1.7; }
.path-card a, .service-card a { display: inline-flex; gap: 10px; align-items: center; justify-content: center; min-height: 48px; margin-top: 18px; padding: 0 18px; border-radius: 8px; color: #fff; font-weight: 900; overflow: hidden; isolation: isolate; background: var(--gradient); background-clip: padding-box; clip-path: inset(0 round 8px); box-shadow: none; transition: transform .22s ease, box-shadow .22s ease; }
.path-card a:hover, .service-card a:hover { transform: translateY(-3px); box-shadow: none; }
.path-card a i, .service-card a i { margin-left: 2px; transition: transform .22s ease; }
.path-card a:hover i, .service-card a:hover i { transform: translateX(4px); }
.stats-band { padding: 42px 0; color: #fff; background: #050d15; }
.stats-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.stats-grid div { padding: 18px; border-left: 1px solid rgba(255,255,255,.14); }
.stats-grid strong { display: block; font-size: 30px; color: #fff; }
.stats-grid span { color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.45; }
.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head.centered, .section-head.light { color: #fff; }
.section-head h2, .cta-inner h2, .two-col h2, .about-grid h2 { font-family: "Cormorant Garamond", "reckless", Georgia, serif; font-size: clamp(32px, 4vw, 54px); font-weight: 500; line-height: 1.08; letter-spacing: 0; margin-bottom: 14px; }
.section-head p, .service-card p, .two-col p, .about-grid p { color: var(--muted); line-height: 1.72; }
.service-card { padding: 28px; min-height: 310px; }
.service-card span { display: block; color: #0f9bb9; font-weight: 900; line-height: 1.5; }
.service-card ul { padding-left: 18px; color: var(--muted); line-height: 1.8; }
.dark-section { color: #fff; background: #050d15; position: relative; overflow: hidden; }
.dark-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 10%, rgba(203,70,250,.18), transparent 28%); }
.dark-section .container { position: relative; z-index: 1; }
.dark-section p, .dark-section .section-head p { color: rgba(255,255,255,.7); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps div { padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: rgba(255,255,255,.05); }
.steps b { color: #43dfff; }
.pill-row { display: flex; flex-wrap: wrap; gap: 14px; }
.pill-row a { display: inline-flex; align-items: center; gap: 10px; padding: 16px 18px; border-radius: 8px; border: 1px solid var(--line); background: #fff; font-weight: 900; }
.proof-section, .alt-section { background: #f0f3f7; }
.result-grid { grid-template-columns: repeat(3, 1fr); }
.result-grid div { padding: 30px; }
.result-grid strong { display: block; font-size: 44px; color: var(--navy); letter-spacing: -0.05em; }
.result-grid span { color: var(--muted); line-height: 1.65; }
.disclaimer { max-width: 860px; margin: 18px auto 0; text-align: center; color: var(--muted); font-size: 13px; }
.cta-band { padding: 76px 0; color: #fff; background: linear-gradient(135deg, #06131e, #111827); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: url("../images/cta-bg-image.webp") center / cover no-repeat; opacity: .18; }
.cta-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.cta-inner p { color: rgba(255,255,255,.72); max-width: 720px; line-height: 1.7; }
.about-grid, .two-col, .calculator-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.contact-grid--single { grid-template-columns: minmax(0, 720px); justify-content: center; }
.about-grid img { border-radius: 8px; box-shadow: 0 20px 60px rgba(14,15,27,.15); }
.page-hero h1 {
    margin-right: auto;
    margin-left: auto;
    color: #fff;
    text-shadow: 0 18px 46px rgba(0,0,0,.32);
}
.panel-list { padding: 28px; color: #fff; background: #07121f; }
.panel-list div { display: flex; gap: 10px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.76); }
.panel-list i { color: #43dfff; }
.timeline { display: grid; gap: 16px; }
.timeline div { display: grid; grid-template-columns: 80px 1fr 1.2fr; gap: 24px; align-items: center; padding: 24px; border-radius: 8px; border: 1px solid var(--line); background: #fff; }
.timeline b { color: #0faecf; font-size: 28px; }
.calc-card, .result-card, .contact-form, .calendar-placeholder { padding: 28px; }
.form-notice { margin-bottom: 18px; padding: 14px 16px; border-radius: 8px; font-weight: 800; line-height: 1.5; }
.form-notice p { margin: 0; }
.form-notice p + p { margin-top: 6px; }
.form-notice--success { color: #075b45; border: 1px solid rgba(7,91,69,.18); background: #e9fbf3; }
.form-notice--error { color: #8b1e2d; border: 1px solid rgba(139,30,45,.18); background: #fff0f2; }
.contact-direct { margin: 0 0 18px; color: var(--muted); font-weight: 700; line-height: 1.55; }
.contact-direct a { color: #0f9bb9; font-weight: 900; }
label { display: grid; gap: 8px; margin-bottom: 16px; font-weight: 800; }
input, select, textarea { width: 100%; min-height: 48px; border: 1px solid #d8deea; border-radius: 8px; padding: 12px 14px; font: inherit; color: var(--text); }
textarea { resize: vertical; }
.result-card div { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid #e2e7ef; }
.result-card strong { font-size: 24px; color: var(--navy); }
.calendar-placeholder { min-height: 430px; display: grid; place-items: center; text-align: center; background: #07121f; color: #fff; }
.calendar-placeholder i { font-size: 52px; color: #43dfff; }
.site-footer { position: relative; overflow: hidden; padding: 80px 0 26px; color: #fff; background: #06131e; }
.footer-glow { position: absolute; right: -150px; top: -220px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(203,70,250,.18), transparent 65%); }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 36px; }
.footer-company { grid-column: 4; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.72); line-height: 1.7; }
.site-footer a { display: block; margin: 10px 0; }
.site-footer h3 { color: #fff; }
.sister { color: #43dfff !important; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.58); font-size: 14px; }

@media (max-width: 1100px) {
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .header-actions { display: none; }
    .main-nav { position: fixed; top: 70px; right: 20px; left: auto; width: 300px; max-height: calc(100vh - 90px); overflow-y: auto; display: flex; flex-direction: column; align-items: stretch; gap: 4px; padding: 20px; border-radius: 12px; color: #2d3748; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.15); opacity: 0; visibility: hidden; transform: translateY(-10px) scale(.95); transition: all .28s cubic-bezier(.4,0,.2,1); }
    .main-nav.is-open { display: flex; }
    .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
    .main-nav a, .nav-dropdown-toggle { display: flex; align-items: center; min-height: 38px; color: #2d3748; font-size: 16px; }
    .main-nav a::after, .nav-dropdown-toggle::after { display: none; }
    .main-nav a:hover, .main-nav a.is-active, .nav-dropdown-toggle:hover, .nav-dropdown.is-active .nav-dropdown-toggle { color: #00B4D8; }
    .nav-dropdown { width: 100%; }
    .nav-dropdown-toggle { justify-content: space-between; width: 100%; }
    .nav-dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        margin: 2px 0 8px;
        padding: 4px 0 4px 14px;
        border: 0;
        border-left: 2px solid rgba(0,180,216,.22);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }
    .nav-dropdown:hover .nav-dropdown-menu { transform: none; }
    .nav-dropdown.is-open .nav-dropdown-menu { display: block; }
    .nav-dropdown-menu a { min-height: 36px; padding: 8px 10px; font-size: 15px; }
    .nav-dropdown-menu a:hover, .nav-dropdown-menu a.is-active { background: transparent; }
    .hero-grid, .about-grid, .two-col, .calculator-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; }
    .hero-visual { min-height: 420px; }
    .certificate-strip { flex-direction: column; align-items: center; gap: 22px; margin-top: -44px; padding: 28px 22px; }
    .certificate-strip .section-kicker { justify-content: center; white-space: normal; text-align: center; font-size: 20px; }
    .certificate-logos { gap: 18px; }
    .certificate-logos img { height: 58px; }
    .certificate-logos img[alt="BBB Accredited Business"] { height: 64px; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .card-grid, .split-path, .steps, .result-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-company { grid-column: auto; }
    .timeline div { grid-template-columns: 60px 1fr; }
    .timeline p { grid-column: 2; }
}
@media (max-width: 700px) {
    .container { width: min(100% - 24px, 1288px); }
    .hero, .page-hero { min-height: auto; padding: 112px 0 64px; }
    h1 { font-size: 42px; }
    .page-hero h1 { font-size: 34px; letter-spacing: 0; }
    .hero-copy > p:not(.eyebrow), .page-hero p:not(.eyebrow) { font-size: 16px; }
    .hero-actions, .cta-inner { flex-direction: column; align-items: stretch; }
    .trust-strip { padding-bottom: 18px; }
    .certificate-strip { margin-top: -32px; }
    .dashboard-card { padding: 20px; }
    .floating-proof { position: relative; width: auto; margin-top: 18px; }
    .stats-grid, .card-grid, .split-path, .steps, .result-grid, .footer-grid { grid-template-columns: 1fr; }
    .stats-grid div { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
    .timeline div { grid-template-columns: 1fr; }
    .timeline p { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
}

.contact-showcase {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    padding: 140px 0 170px;
    color: #fff;
    text-align: center;
    background: #07121f;
    overflow: hidden;
}
.contact-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2,7,13,.72), rgba(6,19,30,.56)), radial-gradient(circle at 55% 40%, rgba(122,118,255,.18), transparent 30%);
}
.contact-showcase .hero-video { opacity: .74; }
.contact-showcase__intro { position: relative; z-index: 2; }
.contact-showcase h1 {
    margin-bottom: 18px;
    color: #fff;
    font-family: "Cormorant Garamond", "reckless", Georgia, serif;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0;
}
.contact-showcase p:not(.eyebrow) { max-width: 820px; margin-right: auto; margin-left: auto; color: rgba(255,255,255,.88); line-height: 1.7; }
.contact-panel-section { padding: 0 0 86px; background: #f7f8fb; }
.contact-panel {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: .75fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: -118px;
    padding: 58px 42px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(6,19,30,.18);
    overflow: hidden;
}
.contact-panel::before {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -160px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122,118,255,.20), transparent 66%);
    pointer-events: none;
}
.contact-panel__copy { position: relative; z-index: 1; padding-top: 10px; }
.contact-panel__copy h2 {
    color: var(--navy);
    font-family: "Cormorant Garamond", "reckless", Georgia, serif;
    font-size: clamp(30px, 3.2vw, 46px);
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: 0;
    margin-bottom: 24px;
}
.contact-panel__copy p { color: var(--text); line-height: 1.75; }
.contact-panel__copy strong { display: block; margin: 24px 0; color: var(--navy); font-size: 17px; }
.contact-form--panel { position: relative; z-index: 1; padding: 0; border: 0; box-shadow: none; background: transparent; }
.contact-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form--panel label { color: #111827; font-family: "Cormorant Garamond", "reckless", Georgia, serif; font-size: 17px; font-weight: 500; }
.contact-form--panel input, .contact-form--panel select, .contact-form--panel textarea { border: 0; background: #e9e9e9; color: var(--text); }
.contact-form--panel input::placeholder, .contact-form--panel textarea::placeholder { color: #8b95a5; }
.contact-form--panel .service-interest-select { border: 2px solid rgba(0,180,216,.55); background: #fff; box-shadow: 0 0 0 4px rgba(0,180,216,.08); color: var(--navy); font-weight: 800; cursor: pointer; }
.contact-form--panel .service-interest-select:hover, .contact-form--panel .service-interest-select:focus { border-color: #00B4D8; background: #fff; outline: none; box-shadow: 0 0 0 5px rgba(0,180,216,.14); }
.contact-form--panel .btn { margin-top: 10px; min-width: 280px; }

@media (max-width: 1100px) {
    .contact-panel { grid-template-columns: 1fr; gap: 28px; padding: 38px 28px; }
}
@media (max-width: 700px) {
    .contact-showcase { min-height: auto; padding: 112px 0 124px; }
    .contact-panel { margin-top: -82px; padding: 30px 20px; border-radius: 14px; }
    .contact-form__grid { grid-template-columns: 1fr; gap: 0; }
    .contact-form--panel .btn { width: 100%; min-width: 0; }
}
.cx-about-section {
    position: relative;
    padding: 34px 0 76px;
    background: #fff;
    overflow: hidden;
}
.cx-about-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
    gap: 72px;
    align-items: center;
}
.cx-about-copy { max-width: 720px; }
.cx-about-copy h2 {
    color: #050d15;
    font-family: "Cormorant Garamond", "reckless", Georgia, serif;
    font-size: clamp(38px, 4.2vw, 62px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0;
    margin: 0 0 26px;
}
.cx-about-copy p {
    color: #202938;
    font-family: "Cormorant Garamond", "reckless", Georgia, serif;
    font-size: 18px;
    line-height: 1.58;
    margin: 0 0 20px;
}
.cx-about-copy h3 {
    color: #07121f;
    font-family: "Plus Jakarta Sans", "helveticanormal", Arial, sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin: 34px 0 22px;
}
.cx-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 34px;
}
.cx-feature-grid span {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #202938;
    font-family: "Cormorant Garamond", "reckless", Georgia, serif;
    font-size: 17px;
    line-height: 1.35;
}
.cx-feature-grid i {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: var(--gradient);
    transform: rotate(45deg);
    box-shadow: 0 8px 18px rgba(168,85,247,.24);
}
.cx-about-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 480px;
}
.cx-about-visual img {
    width: min(100%, 520px);
    max-height: 560px;
    object-fit: contain;
    filter: drop-shadow(0 28px 55px rgba(13,27,42,.15));
}
.cx-metrics-panel {
    position: relative;
    margin-top: 52px;
    padding: 48px 48px 44px;
    border: 2px solid transparent;
    border-radius: 14px;
    background: linear-gradient(#fff, #fff) padding-box, var(--gradient) border-box;
    box-shadow: 0 24px 70px rgba(122,118,255,.08);
}
.cx-metrics-panel h2 {
    color: #050d15;
    font-family: "Cormorant Garamond", "reckless", Georgia, serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 500;
    line-height: 1.12;
    text-align: center;
    margin: 0 0 34px;
}
.cx-metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    text-align: center;
}
.cx-metrics-grid strong {
    display: block;
    margin-bottom: 12px;
    background: var(--gradient);
    -webkit-background-clip: text;
    color: transparent;
    font-family: "Cormorant Garamond", "reckless", Georgia, serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 500;
    line-height: 1;
}
.cx-metrics-grid span {
    display: block;
    color: #202938;
    font-family: "Cormorant Garamond", "reckless", Georgia, serif;
    font-size: 16px;
    line-height: 1.45;
}
@media (max-width: 980px) {
    .cx-about-grid { grid-template-columns: 1fr; gap: 36px; }
    .cx-about-visual { min-height: auto; }
    .cx-about-visual img { max-height: 440px; }
    .cx-metrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .cx-about-section { padding: 32px 0 54px; }
    .cx-feature-grid, .cx-metrics-grid { grid-template-columns: 1fr; }
    .cx-metrics-panel { padding: 34px 24px; }
}
.compact-proof-section {
    padding: 58px 0;
    background: #f5f7fb;
}
.compact-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, .84fr) minmax(560px, 1.12fr);
    gap: 28px 48px;
    align-items: center;
}
.compact-proof-copy h2 {
    max-width: 680px;
    color: var(--charcoal);
    font-family: "Cormorant Garamond", "reckless", Georgia, serif;
    font-size: clamp(32px, 3.4vw, 48px);
    font-weight: 500;
    line-height: 1.08;
    margin: 0 0 24px;
}
.compact-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.compact-pill-row a,
.compact-system-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(14,15,27,.04);
}
.compact-outcomes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-self: center;
}
.compact-outcomes div {
    min-height: 154px;
    padding: 28px 24px;
    border: 1px solid rgba(122,118,255,.24);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #fbfcff);
    box-shadow: 0 20px 42px rgba(14,15,27,.08);
}
.compact-outcomes strong {
    display: block;
    color: var(--navy);
    font-size: clamp(24px, 2.2vw, 30px);
    line-height: 1.05;
    margin-bottom: 13px;
    white-space: nowrap;
}
.compact-outcomes span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}
.compact-systems {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    align-items: center;
    padding-top: 4px;
}
.compact-systems .section-kicker {
    margin: 0;
    flex: 0 0 auto;
}
.compact-system-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.compact-systems .disclaimer {
    flex-basis: 100%;
    margin: 0;
    text-align: left;
    font-size: 12px;
}
@media (max-width: 980px) {
    .compact-proof-grid { grid-template-columns: 1fr; }
    .compact-outcomes { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .compact-proof-section { padding: 42px 0; }
    .compact-outcomes { grid-template-columns: 1fr; }
}
.footer-cx {
    padding: 86px 0 52px;
    background: #06131e;
}
.footer-cx__top,
.footer-cx__main {
    position: relative;
    z-index: 1;
}
.footer-cx__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr);
    gap: 54px;
    align-items: center;
    padding-bottom: 58px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-cx__kicker {
    display: inline-block;
    margin: 0 0 18px;
    background: var(--gradient);
    -webkit-background-clip: text;
    color: transparent !important;
    font-family: "Cormorant Garamond", "reckless", Georgia, serif;
    font-size: 23px;
    line-height: 1.2;
}
.footer-cx__copy h2 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-family: "Cormorant Garamond", "reckless", Georgia, serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.08;
}
.footer-cx__trust {
    display: grid;
    justify-items: center;
    gap: 24px;
}
.footer-cx__cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 360px;
    min-height: 56px;
    margin: 0 !important;
    padding: 0 30px;
    border-radius: 8px;
    color: #fff !important;
    background: var(--gradient);
    background-clip: padding-box;
    overflow: hidden;
    isolation: isolate;
    clip-path: inset(0 round 8px);
    font-family: "Cormorant Garamond", "reckless", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    box-shadow: none;
    transition: transform .22s ease, box-shadow .22s ease;
}
.footer-cx__cta:hover { transform: translateY(-3px); box-shadow: none; }
.footer-cx__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
}
.footer-cx__badges img {
    width: auto;
    height: 64px;
    object-fit: contain;
}
.footer-cx__badges img[alt="BBB Accredited Business"] { height: 70px; }
.footer-cx__main {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .7fr);
    gap: 56px;
    align-items: start;
    padding-top: 54px;
}
.footer-cx__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 22px 68px;
    max-width: 560px;
}
.footer-cx__links a,
.footer-cx__legal a {
    margin: 0 !important;
    color: #fff !important;
    font-family: "Cormorant Garamond", "reckless", Georgia, serif;
    font-size: 24px;
    line-height: 1.2;
    transition: color .2s ease;
}
.footer-cx__links a:hover,
.footer-cx__legal a:hover { color: #d950ff !important; }
.footer-cx__meta {
    display: grid;
    justify-items: center;
    gap: 26px;
    color: rgba(255,255,255,.46);
}
.footer-cx__social {
    display: flex;
    gap: 22px;
    align-items: center;
}
.footer-cx__social a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 !important;
    color: #fff !important;
    font-size: 25px;
}
.footer-cx__legal {
    display: flex;
    gap: 22px;
    align-items: center;
}
.footer-cx__legal a { font-size: 16px; }
.footer-cx__legal span {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,.22);
}
.footer-cx__meta p {
    margin: 0;
    color: rgba(255,255,255,.36);
    font-size: 14px;
}
.footer-decor {
    position: absolute;
    right: -10px;
    top: 60px;
    width: 86px;
    height: 88px;
    opacity: .55;
}
.footer-decor::before,
.footer-decor::after,
.footer-decor span {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.16);
}
.footer-decor::before { right: 0; top: 0; width: 38px; height: 38px; }
.footer-decor::after { right: 20px; top: 40px; width: 38px; height: 38px; }
.footer-decor span:nth-child(1) { right: 17px; top: 16px; width: 10px; height: 10px; border: 0; background: #f3d6ff; transform: rotate(45deg); }
.footer-decor span:nth-child(2) { right: 61px; top: 58px; width: 11px; height: 11px; border: 0; background: #c847ff; transform: rotate(45deg); }
.footer-decor span:nth-child(3) { right: 19px; top: 76px; width: 11px; height: 11px; border: 0; background: #fff; transform: rotate(45deg); }
@media (max-width: 980px) {
    .footer-cx__top,
    .footer-cx__main { grid-template-columns: 1fr; }
    .footer-cx__trust,
    .footer-cx__meta { justify-items: start; }
}
@media (max-width: 640px) {
    .footer-cx { padding: 64px 0 40px; }
    .footer-cx__top { padding-bottom: 38px; }
    .footer-cx__cta { min-width: 0; width: 100%; }
    .footer-cx__links { grid-template-columns: 1fr; gap: 16px; }
    .footer-cx__links a { font-size: 22px; }
    .footer-cx__badges { justify-content: flex-start; }
    .footer-cx__badges img { height: 52px; }
    .footer-cx__badges img[alt="BBB Accredited Business"] { height: 58px; }
    .footer-cx__legal { align-items: flex-start; flex-direction: column; gap: 10px; }
    .footer-cx__legal span { display: none; }
}