:root {
    --navy-950: #0a0934;
    --navy-900: #17124a;
    --navy-800: #332a7c;
    --navy-700: #473b97;
    --teal-700: #473b97;
    --teal-600: #5b4cc4;
    --teal-500: #7679ee;
    --teal-100: #ecebff;
    --teal-50: #f5f3ff;
    --coral-600: #d95815;
    --coral-500: #f26b21;
    --coral-100: #fff0e5;
    --gold-100: #fff5c2;
    --ink: #0a0934;
    --muted: #625e78;
    --line: #ddd8ca;
    --surface: #fdf7e7;
    --white: #ffffff;
    --shadow-sm: 0 8px 24px rgba(7, 24, 46, .07);
    --shadow-md: 0 18px 55px rgba(7, 24, 46, .12);
    --shadow-lg: 0 28px 80px rgba(7, 24, 46, .16);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-pill: 999px;
    --container: 1180px;
    --transition: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 118px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--navy-900);
    line-height: 1.15;
    letter-spacing: -.025em;
}

h1 {
    font-size: clamp(2.75rem, 6vw, 5.25rem);
}

h2 {
    font-size: clamp(2.05rem, 4vw, 3.55rem);
}

h3 {
    font-size: 1.25rem;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 104px 0;
}

.section-sm {
    padding: 72px 0;
}

.section-surface {
    background: var(--surface);
}

.section-teal-soft {
    background: var(--teal-50);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.08rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--teal-700);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 22px;
    height: 3px;
    border-radius: 3px;
    background: var(--coral-500);
    content: "";
}

.eyebrow-light {
    color: #91e8d8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--teal-700);
    font-weight: 750;
}

.text-link svg {
    width: 18px;
    transition: transform var(--transition);
}

.text-link:hover svg {
    transform: translateX(4px);
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 25px;
    border: 1px solid var(--navy-900);
    border-radius: var(--radius-pill);
    background: var(--navy-900);
    color: var(--white);
    font-weight: 750;
    line-height: 1;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.button svg {
    width: 19px;
    flex: 0 0 auto;
}

.button:hover {
    border-color: var(--teal-600);
    background: var(--teal-600);
    box-shadow: 0 12px 28px rgba(13, 146, 127, .22);
    transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(255, 141, 85, .45);
    outline-offset: 3px;
}

.button-sm {
    min-height: 44px;
    padding-inline: 18px;
    font-size: .92rem;
}

.button-outline {
    border-color: var(--line);
    background: var(--white);
    color: var(--navy-900);
}

.button-outline:hover {
    color: var(--white);
}

.button-white {
    border-color: var(--white);
    background: var(--white);
    color: var(--navy-900);
}

.button-white:hover {
    border-color: var(--white);
    background: #e9fffa;
    color: var(--navy-900);
}

.button-ghost-light {
    border-color: rgba(255, 255, 255, .35);
    background: transparent;
    color: var(--white);
}

.button-ghost-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .1);
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--navy-900);
    color: var(--white);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.topbar {
    position: relative;
    z-index: 20;
    background: var(--navy-950);
    color: #d5e0e7;
    font-size: .82rem;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6fe1cb;
    box-shadow: 0 0 0 4px rgba(111, 225, 203, .12);
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color var(--transition);
}

.topbar-links a:hover {
    color: var(--white);
}

.topbar-links svg {
    width: 15px;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(220, 229, 234, .72);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-shell {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: 196px;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: .92rem;
    font-weight: 650;
}

.primary-nav > a:not(.button) {
    position: relative;
    padding: 27px 0;
    color: #354459;
    transition: color var(--transition);
}

.primary-nav > a:not(.button)::after {
    position: absolute;
    bottom: 19px;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--teal-500);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.primary-nav > a:not(.button):hover,
.primary-nav > a.active:not(.button) {
    color: var(--navy-900);
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a.active:not(.button)::after {
    transform: scaleX(1);
}

.nav-cta svg {
    width: 17px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--navy-900);
    cursor: pointer;
}

.menu-toggle svg {
    width: 22px;
}

.menu-close {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 11% 13%, rgba(19, 168, 146, .08), transparent 22%),
        linear-gradient(180deg, #fff 0%, #f8fcfb 100%);
}

.hero::before {
    position: absolute;
    top: 80px;
    left: -90px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(19, 168, 146, .22);
    border-radius: 50%;
    content: "";
}

.hero-inner {
    min-height: 690px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, .95fr);
    align-items: center;
    gap: 36px;
    padding: 58px 0 66px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 660px;
}

.hero h1 {
    max-width: 680px;
    margin-bottom: 24px;
    font-size: clamp(3.25rem, 6vw, 5.4rem);
    line-height: 1.02;
}

.hero h1 span {
    position: relative;
    color: var(--teal-600);
    white-space: nowrap;
}

.hero h1 span::after {
    position: absolute;
    right: 0;
    bottom: -6px;
    width: 78%;
    height: 7px;
    border-radius: 6px;
    background: var(--coral-500);
    content: "";
    opacity: .7;
}

.hero-lead {
    max-width: 610px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 1.18rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #4e5d70;
    font-size: .88rem;
}

.hero-assurance span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-assurance svg {
    width: 17px;
    color: var(--teal-600);
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-visual img {
    width: 100%;
    max-height: 610px;
    object-fit: contain;
}

.trust-strip {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    min-height: 112px;
    align-items: center;
    gap: 15px;
    padding: 24px;
    border-right: 1px solid var(--line);
}

.trust-item:first-child {
    border-left: 1px solid var(--line);
}

.trust-icon {
    width: 46px;
    height: 46px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 15px;
    background: var(--teal-100);
    color: var(--teal-700);
}

.trust-icon svg {
    width: 23px;
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    color: var(--navy-900);
    font-size: .98rem;
}

.trust-item span {
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.4;
}

.problem-grid,
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.problem-card,
.service-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.problem-card::after,
.service-card::after {
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--teal-100);
    content: "";
    opacity: .6;
    transition: transform var(--transition);
}

.problem-card:hover,
.service-card:hover {
    border-color: #b8ddd6;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.problem-card:hover::after,
.service-card:hover::after {
    transform: scale(1.2);
}

.card-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 23px;
    border-radius: 17px;
    background: var(--teal-100);
    color: var(--teal-700);
}

.card-icon.coral {
    background: var(--coral-100);
    color: var(--coral-600);
}

.card-icon.gold {
    background: var(--gold-100);
    color: #a77000;
}

.card-icon svg {
    width: 26px;
}

.problem-card h3,
.service-card h3 {
    margin-bottom: 11px;
}

.problem-card p,
.service-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 19px;
    color: var(--muted);
    font-size: .94rem;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(48px, 7vw, 100px);
}

.split-layout.reverse .split-visual {
    order: 2;
}

.split-layout.reverse .split-copy {
    order: 1;
}

.split-visual img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
}

.split-copy h2 {
    margin-bottom: 22px;
}

.split-copy > p {
    margin-bottom: 26px;
    color: var(--muted);
    font-size: 1.05rem;
}

.check-list {
    display: grid;
    gap: 15px;
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #3e4d60;
}

.check-list .check {
    width: 25px;
    height: 25px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--teal-100);
    color: var(--teal-700);
}

.check-list .check svg {
    width: 15px;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.process-card {
    position: relative;
    min-height: 248px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.process-number span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--white);
    font-size: .9rem;
    font-weight: 800;
}

.process-number svg {
    width: 26px;
    color: var(--teal-600);
}

.process-card h3 {
    margin-bottom: 12px;
}

.process-card p {
    color: var(--muted);
    font-size: .93rem;
}

.process-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 840px;
    padding: 18px 22px;
    margin: 32px auto 0;
    border: 1px solid #c7e6df;
    border-radius: 15px;
    background: var(--teal-50);
    color: #425365;
    font-size: .9rem;
}

.process-note svg {
    width: 20px;
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--teal-700);
}

.outcome-panel {
    position: relative;
    overflow: hidden;
    padding: 68px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
    color: #d8e3e9;
}

.outcome-panel::before,
.outcome-panel::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.outcome-panel::before {
    top: -150px;
    right: -110px;
    width: 400px;
    height: 400px;
    background: rgba(19, 168, 146, .16);
}

.outcome-panel::after {
    right: 190px;
    bottom: -130px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, .12);
}

.outcome-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
}

.outcome-copy h2 {
    max-width: 600px;
    margin-bottom: 20px;
    color: var(--white);
}

.outcome-copy > p {
    margin-bottom: 26px;
    color: #bfd0da;
}

.outcome-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.outcome-stat {
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(5px);
}

.outcome-stat strong {
    display: block;
    margin-bottom: 5px;
    color: #7ce0cd;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    line-height: 1;
}

.outcome-stat span {
    display: block;
    color: var(--white);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.4;
}

.outcome-caveat {
    grid-column: 1 / -1;
    margin-top: 2px;
    color: #9fb2be;
    font-size: .75rem;
    line-height: 1.5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.pricing-card {
    position: relative;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.pricing-card.featured {
    border-color: var(--teal-600);
    background: var(--navy-900);
    color: #d6e2e9;
    box-shadow: var(--shadow-md);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
    color: var(--white);
}

.pricing-tag {
    display: inline-flex;
    padding: 6px 11px;
    margin-bottom: 22px;
    border-radius: var(--radius-pill);
    background: var(--teal-100);
    color: var(--teal-700);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.featured .pricing-tag {
    background: rgba(124, 224, 205, .13);
    color: #91e8d8;
}

.pricing-card h3 {
    margin-bottom: 10px;
}

.pricing-card p {
    color: var(--muted);
    font-size: .9rem;
}

.pricing-card.featured p {
    color: #b9cbd5;
}

.price {
    display: block;
    margin: 24px 0 12px;
    color: var(--navy-900);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.price small {
    font-size: .82rem;
    font-weight: 650;
}

.pricing-footnote {
    max-width: 880px;
    margin: 28px auto 0;
    color: var(--muted);
    font-size: .82rem;
    text-align: center;
}

.faq-list {
    max-width: 920px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
    border-top: 1px solid var(--line);
}

.faq-item summary {
    position: relative;
    padding: 25px 52px 25px 0;
    color: var(--navy-900);
    font-size: 1.05rem;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before,
.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 4px;
    width: 18px;
    height: 2px;
    background: var(--teal-600);
    content: "";
    transform: translateY(-50%);
    transition: transform var(--transition);
}

.faq-item summary::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(0);
}

.faq-answer {
    max-width: 800px;
    padding: 0 50px 25px 0;
    color: var(--muted);
}

.faq-answer a {
    color: var(--teal-700);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 90px;
    background: linear-gradient(145deg, #f5fbfa 0%, #fff 62%);
}

.page-hero::after {
    position: absolute;
    top: -80px;
    right: -70px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(19, 168, 146, .17);
    border-radius: 50%;
    content: "";
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 44px;
}

.page-hero h1 {
    max-width: 820px;
    margin-bottom: 18px;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.page-hero p:not(.eyebrow) {
    max-width: 690px;
    color: var(--muted);
    font-size: 1.1rem;
}

.page-hero-badge {
    min-width: 240px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.page-hero-badge strong,
.page-hero-badge span {
    display: block;
}

.page-hero-badge strong {
    margin-bottom: 4px;
    color: var(--navy-900);
    font-size: 1.05rem;
}

.page-hero-badge span {
    color: var(--muted);
    font-size: .86rem;
}

.page-hero-badge svg {
    width: 25px;
    margin-bottom: 15px;
    color: var(--teal-600);
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.insurance-card {
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.insurance-card .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
}

.insurance-card h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
}

.insurance-card p {
    color: var(--muted);
    font-size: .88rem;
}

.detail-stack {
    display: grid;
    gap: 20px;
}

.detail-card {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 22px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    scroll-margin-top: 130px;
}

.detail-card .card-icon {
    margin: 0;
}

.detail-card h3 {
    margin-bottom: 9px;
}

.detail-card p {
    margin-bottom: 12px;
    color: var(--muted);
}

.mini-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mini-list li {
    padding: 7px 11px;
    border-radius: var(--radius-pill);
    background: var(--surface);
    color: #4c5b6e;
    font-size: .78rem;
    font-weight: 650;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.value-card {
    padding: 31px;
    border-top: 4px solid var(--teal-500);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.value-card:nth-child(2) {
    border-color: var(--coral-500);
}

.value-card:nth-child(3) {
    border-color: #d6a22d;
}

.value-card h3 {
    margin-bottom: 10px;
}

.value-card p {
    color: var(--muted);
    font-size: .92rem;
}

.purpose-band {
    padding: 48px;
    border: 1px solid #cce9e3;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #effbf8, #fff7f2);
}

.purpose-band h2 {
    max-width: 760px;
    margin-bottom: 17px;
}

.purpose-band p {
    max-width: 860px;
    color: var(--muted);
    font-size: 1.02rem;
}

.partner-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.benefit-card .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
}

.benefit-card h3 {
    margin-bottom: 9px;
}

.benefit-card p {
    color: var(--muted);
    font-size: .9rem;
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(310px, .65fr);
    align-items: start;
    gap: 42px;
}

.form-card {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.form-intro {
    margin-bottom: 30px;
}

.form-intro h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.form-intro p {
    color: var(--muted);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy-900);
    font-size: .88rem;
    font-weight: 700;
}

.field label span {
    color: var(--coral-600);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #cfd9df;
    border-radius: 12px;
    background: var(--white);
    color: var(--ink);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field input,
.field select {
    height: 52px;
    padding: 0 14px;
}

.field textarea {
    min-height: 132px;
    padding: 13px 14px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--teal-600);
    box-shadow: 0 0 0 4px rgba(13, 146, 127, .1);
    outline: 0;
}

.field-help {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: .76rem;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 3px;
    accent-color: var(--teal-600);
}

.checkbox-field label {
    color: #4b5a6d;
    font-size: .83rem;
}

.checkbox-field a {
    color: var(--teal-700);
    text-decoration: underline;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
}

.form-security {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: .76rem;
}

.form-security svg {
    width: 16px;
    color: var(--teal-700);
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.alert {
    padding: 15px 18px;
    margin-bottom: 24px;
    border-radius: 12px;
    font-size: .9rem;
}

.alert-error {
    border: 1px solid #f0baa3;
    background: #fff4ef;
    color: #8a3f21;
}

.alert ul {
    padding-left: 20px;
    margin: 0;
}

.contact-sidebar {
    display: grid;
    gap: 18px;
}

.sidebar-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.sidebar-card.accent {
    border: 0;
    background: var(--navy-900);
    color: #d7e2e8;
}

.sidebar-card h3 {
    margin-bottom: 12px;
}

.sidebar-card.accent h3 {
    color: var(--white);
}

.sidebar-card p {
    color: var(--muted);
    font-size: .88rem;
}

.sidebar-card.accent p {
    color: #b9cbd5;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.contact-method:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-method svg {
    width: 21px;
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--teal-600);
}

.contact-method strong,
.contact-method span {
    display: block;
}

.contact-method strong {
    color: var(--navy-900);
    font-size: .88rem;
}

.contact-method span {
    color: var(--muted);
    font-size: .82rem;
}

.success-shell {
    min-height: 620px;
    display: grid;
    place-items: center;
    padding: 80px 0;
    background: var(--teal-50);
}

.success-card {
    max-width: 670px;
    padding: 54px;
    border: 1px solid #cde8e2;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.success-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: var(--teal-100);
    color: var(--teal-700);
}

.success-icon svg {
    width: 42px;
}

.success-card h1 {
    margin-bottom: 15px;
    font-size: 2.65rem;
}

.success-card p {
    color: var(--muted);
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 27px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: start;
    gap: 54px;
}

.legal-nav {
    position: sticky;
    top: 120px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.legal-nav strong {
    display: block;
    margin-bottom: 12px;
    color: var(--navy-900);
}

.legal-nav a {
    display: block;
    padding: 7px 0;
    color: var(--muted);
    font-size: .88rem;
}

.legal-nav a:hover {
    color: var(--teal-700);
}

.legal-copy {
    max-width: 820px;
}

.legal-copy section {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 130px;
}

.legal-copy h2 {
    margin-bottom: 14px;
    font-size: 1.6rem;
}

.legal-copy h3 {
    margin: 22px 0 10px;
    font-size: 1.05rem;
}

.legal-copy p,
.legal-copy li {
    color: #506074;
}

.legal-copy ul,
.legal-copy ol {
    padding-left: 22px;
}

.footer-cta {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background: var(--teal-600);
    color: #e6fffa;
}

.footer-cta::before {
    position: absolute;
    top: -170px;
    right: 6%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    content: "";
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.footer-cta h2 {
    max-width: 720px;
    margin-bottom: 10px;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.15rem);
}

.footer-cta p:not(.eyebrow) {
    color: #d8fff7;
}

.footer-cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 10px;
}

.site-footer {
    background: var(--navy-950);
    color: #aebfca;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr .75fr .9fr 1.1fr;
    gap: 55px;
    padding: 72px 0 48px;
}

.footer-brand img {
    width: 206px;
    margin-bottom: 20px;
}

.footer-brand > p {
    max-width: 350px;
    font-size: .89rem;
}

.site-footer h3 {
    margin: 9px 0 20px;
    color: var(--white);
    font-size: .91rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.footer-contact-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.footer-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #cfdae0;
    font-size: .88rem;
}

.footer-contact-list svg {
    width: 17px;
    color: #6fe1cb;
}

.footer-links {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: .87rem;
}

.footer-links a,
.footer-contact-list a {
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact-list a:hover {
    color: var(--white);
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #c4d1d8;
    font-size: .87rem;
    font-style: normal;
}

.footer-address svg {
    width: 20px;
    flex: 0 0 auto;
    margin-top: 3px;
    color: #6fe1cb;
}

.operations-note {
    margin-top: 16px;
    color: #8da1ae;
    font-size: .78rem;
}

.footer-disclaimer {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-disclaimer p {
    color: #8297a4;
    font-size: .72rem;
    line-height: 1.65;
}

.footer-disclaimer strong {
    color: #b8c7d0;
}

.footer-bottom {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #8195a1;
    font-size: .78rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a:hover {
    color: var(--white);
}

.floating-whatsapp {
    position: fixed;
    z-index: 45;
    right: 22px;
    bottom: 22px;
    display: flex;
    height: 52px;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    border: 2px solid var(--white);
    border-radius: var(--radius-pill);
    background: #0b9b7e;
    color: var(--white);
    box-shadow: 0 14px 34px rgba(7, 24, 46, .22);
    font-size: .83rem;
    font-weight: 750;
    transition: transform var(--transition), background var(--transition);
}

.floating-whatsapp:hover {
    background: #087e68;
    transform: translateY(-3px);
}

.floating-whatsapp svg {
    width: 21px;
}

@media (max-width: 1080px) {
    .primary-nav {
        gap: 18px;
        font-size: .86rem;
    }

    .nav-cta {
        padding-inline: 15px;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
    }

    .hero h1 {
        font-size: clamp(3rem, 6vw, 4.4rem);
    }

    .trust-item {
        padding: 20px 15px;
    }

    .footer-grid {
        grid-template-columns: 1.25fr .8fr .9fr;
    }

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 82px 0;
    }

    .topbar p {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle[aria-expanded="true"] .menu-open {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-close {
        display: block;
    }

    .primary-nav {
        position: fixed;
        top: 120px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 100;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 18px 28px 35px;
        overflow-y: auto;
        background: var(--white);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-14px);
        transition: opacity var(--transition), transform var(--transition);
    }

    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav > a:not(.button) {
        padding: 17px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 1.05rem;
    }

    .primary-nav > a:not(.button)::after {
        display: none;
    }

    .primary-nav .nav-cta {
        margin-top: 22px;
    }

    .hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 75px 0 45px;
    }

    .hero-copy {
        max-width: 720px;
        text-align: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-assurance {
        justify-content: center;
    }

    .hero-visual {
        max-width: 650px;
        margin-inline: auto;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(n+3) {
        border-top: 1px solid var(--line);
    }

    .problem-grid,
    .service-grid,
    .process-grid,
    .pricing-grid,
    .insurance-grid,
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .split-layout,
    .outcome-grid,
    .form-layout {
        grid-template-columns: 1fr;
    }

    .split-layout.reverse .split-visual,
    .split-layout.reverse .split-copy {
        order: initial;
    }

    .split-visual {
        max-width: 640px;
        margin-inline: auto;
    }

    .outcome-panel {
        padding: 48px;
    }

    .outcome-grid {
        gap: 35px;
    }

    .page-hero-inner {
        grid-template-columns: 1fr;
    }

    .page-hero-badge {
        max-width: 340px;
    }

    .footer-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-cta-actions {
        flex-direction: row;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        position: static;
        display: none;
    }
}

@media (max-width: 620px) {
    body {
        font-size: 15px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 66px 0;
    }

    .section-sm {
        padding: 52px 0;
    }

    .topbar-links {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .topbar-links a:first-child {
        display: none;
    }

    .topbar-inner {
        min-height: 34px;
        justify-content: flex-end;
    }

    .nav-shell {
        min-height: 72px;
    }

    .brand img {
        width: 168px;
    }

    .primary-nav {
        top: 106px;
    }

    .hero-inner {
        padding-top: 58px;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 13vw, 3.8rem);
    }

    .hero h1 span {
        white-space: normal;
    }

    .hero-lead {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-assurance {
        align-items: center;
        flex-direction: column;
        gap: 8px;
    }

    .hero-visual {
        margin: -15px -8px 0;
    }

    .trust-grid,
    .problem-grid,
    .service-grid,
    .process-grid,
    .pricing-grid,
    .insurance-grid,
    .values-grid,
    .partner-benefits,
    .form-grid,
    .outcome-stats {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:first-child {
        min-height: 96px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        border-left: 1px solid var(--line);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .problem-card,
    .service-card,
    .process-card,
    .pricing-card {
        padding: 25px;
    }

    .split-layout {
        gap: 34px;
    }

    .outcome-panel {
        padding: 34px 23px;
        border-radius: 23px;
    }

    .outcome-caveat {
        grid-column: auto;
    }

    .page-hero {
        padding: 68px 0;
    }

    .page-hero h1 {
        font-size: clamp(2.55rem, 12vw, 3.8rem);
    }

    .detail-card {
        grid-template-columns: 1fr;
        gap: 17px;
        padding: 24px;
    }

    .purpose-band {
        padding: 29px 23px;
    }

    .form-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .field.full {
        grid-column: auto;
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .form-actions .button {
        width: 100%;
    }

    .success-card {
        padding: 42px 23px;
    }

    .success-card h1 {
        font-size: 2.1rem;
    }

    .footer-cta {
        padding: 58px 0;
    }

    .footer-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .footer-cta-actions .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-top: 58px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        justify-content: center;
        padding: 0;
    }

    .floating-whatsapp span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ClaimEasy 2026 visual refresh: conversational, high-contrast and India-first. */
body {
    background: #fff;
    font-family: "Avenir Next", Avenir, "Segoe UI", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4 {
    font-weight: 760;
    letter-spacing: -.035em;
}

.site-header {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: rgba(71, 59, 151, .97);
    backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
    box-shadow: 0 11px 30px rgba(10, 9, 52, .2);
}

.nav-shell {
    min-height: 76px;
}

.brand img {
    width: 184px;
}

.primary-nav > a:not(.button) {
    padding-block: 24px;
    color: rgba(253, 247, 231, .82);
}

.primary-nav > a:not(.button):hover,
.primary-nav > a.active:not(.button) {
    color: #fff;
}

.primary-nav > a:not(.button)::after {
    bottom: 16px;
    height: 3px;
    background: #ffd83d;
}

.button {
    min-height: 54px;
    border-color: var(--navy-900);
    border-radius: 13px;
    background: var(--navy-900);
    font-weight: 760;
}

.button:hover {
    border-color: var(--navy-800);
    background: var(--navy-800);
    box-shadow: 0 14px 28px rgba(51, 42, 124, .22);
}

.nav-cta {
    min-height: 42px;
    border-color: #ffd83d;
    border-radius: 7px;
    background: #ffd83d;
    color: var(--navy-950);
}

.nav-cta:hover {
    border-color: #ffe66c;
    background: #ffe66c;
    color: var(--navy-950);
}

.menu-toggle {
    border-color: rgba(255, 255, 255, .25);
    background: transparent;
    color: #fff;
}

.hero {
    min-height: 610px;
    background: linear-gradient(104deg, #7477ed 0%, #898cf2 48%, #fdf7e7 100%);
}

.hero::before {
    top: auto;
    bottom: -200px;
    left: -130px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .22);
}

.hero::after {
    position: absolute;
    top: -100px;
    left: 39%;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 216, 61, .24);
    border-radius: 50%;
    content: "";
}

.hero-inner {
    min-height: 610px;
    grid-template-columns: minmax(0, .88fr) minmax(470px, 1.12fr);
    gap: 15px;
    padding: 54px 0 0;
}

.hero-copy {
    align-self: center;
    max-width: 560px;
    padding-bottom: 52px;
}

.hero-kicker {
    display: inline-block;
    padding: 7px 13px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 999px;
    background: rgba(23, 18, 74, .18);
    color: #fff;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 580px;
    margin-bottom: 20px;
    color: #fdf7e7;
    font-size: clamp(3rem, 5.2vw, 4.85rem);
    line-height: 1.04;
}

.hero h1 span {
    color: #ffd83d;
    white-space: normal;
}

.hero h1 span::after {
    display: none;
}

.hero-lead {
    max-width: 530px;
    margin-bottom: 20px;
    color: rgba(253, 247, 231, .92);
    font-size: 1.06rem;
    line-height: 1.58;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 21px;
    color: rgba(253, 247, 231, .9);
    font-size: .82rem;
    font-weight: 650;
}

.proof-stars {
    padding: 4px 7px;
    border-radius: 3px;
    background: rgba(23, 18, 74, .78);
    color: #ffd83d;
    font-size: .66rem;
    letter-spacing: .12em;
}

.hero-actions {
    align-items: center;
    gap: 17px;
    margin-bottom: 20px;
}

.hero-start-card {
    width: min(100%, 390px);
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 15px 16px 15px 23px;
    border-radius: 14px;
    background: #ffd83d;
    color: var(--navy-950);
    box-shadow: 0 14px 32px rgba(23, 18, 74, .17);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.hero-start-card:hover {
    background: #ffe66c;
    box-shadow: 0 18px 38px rgba(23, 18, 74, .23);
    transform: translateY(-3px);
}

.hero-start-card strong,
.hero-start-card small {
    display: block;
}

.hero-start-card strong {
    margin-bottom: 5px;
    font-size: 1.28rem;
    line-height: 1.1;
}

.hero-start-card small {
    font-size: .79rem;
}

.hero-start-arrow {
    width: 50px;
    height: 50px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--navy-900);
    color: #fff;
}

.hero-start-arrow svg {
    width: 22px;
}

.hero-call-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fdf7e7;
    font-size: .87rem;
    font-weight: 750;
}

.hero-call-link svg {
    width: 19px;
}

.hero-assurance {
    gap: 15px;
    color: rgba(253, 247, 231, .88);
    font-size: .76rem;
}

.hero-assurance svg {
    color: #ffd83d;
}

.hero-visual {
    align-self: end;
    margin-right: -28px;
}

.hero-visual img {
    max-height: 590px;
}

.trust-strip {
    border: 0;
    background: #473b97;
}

.trust-grid {
    gap: 0;
}

.trust-item,
.trust-item:first-child {
    min-height: 100px;
    border-color: rgba(255, 255, 255, .15);
}

.trust-icon {
    border-radius: 13px;
    background: #ffd83d;
    color: var(--navy-950);
}

.trust-item strong {
    color: #fff;
    font-size: 1.04rem;
}

.trust-item span {
    color: rgba(253, 247, 231, .72);
}

.clarity-section {
    overflow: hidden;
    background: #fdf7e7;
}

.clarity-section .split-layout {
    gap: clamp(45px, 6vw, 90px);
}

.clarity-visual img {
    max-height: 620px;
}

.clarity-copy h2 {
    color: var(--navy-950);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: 1.08;
}

.guided-steps {
    display: grid;
    gap: 0;
    margin: 30px 0;
    border-top: 1px solid var(--line);
}

.guided-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.guided-step > span {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border-radius: 10px;
    background: #ecebff;
    color: #473b97;
    font-size: .72rem;
    font-weight: 850;
}

.guided-step strong,
.guided-step small {
    display: block;
}

.guided-step strong {
    color: var(--navy-950);
    font-size: .92rem;
}

.guided-step small {
    color: var(--muted);
    font-size: .78rem;
}

.problem-card,
.service-card,
.insurance-card,
.detail-card,
.benefit-card {
    border-color: transparent;
    border-radius: 22px;
    background: #fdf7e7;
}

.problem-card:hover,
.service-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(51, 42, 124, .13);
}

.problem-card::after,
.service-card::after {
    background: #ecebff;
}

.card-icon,
.trust-icon {
    background: #ecebff;
    color: #473b97;
}

.card-icon.coral {
    background: #fff0e5;
    color: #d95815;
}

.card-icon.gold {
    background: #ffd83d;
    color: #473b97;
}

.section-teal-soft {
    background: #f2f0ff;
}

.check-list .check {
    background: #ffd83d;
    color: var(--navy-950);
}

.journey-section {
    position: relative;
    overflow: hidden;
    background: #7679ee;
}

.journey-section::after {
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    content: "";
}

.journey-section .container {
    position: relative;
    z-index: 1;
}

.journey-section .section-heading h2,
.journey-section .section-heading p {
    color: #fdf7e7;
}

.journey-section .eyebrow {
    color: #fff5c2;
}

.journey-section .eyebrow::before {
    background: #ffd83d;
}

.journey-section .process-card {
    border: 0;
    border-radius: 21px;
    background: #fdf7e7;
    box-shadow: 0 14px 35px rgba(23, 18, 74, .12);
}

.journey-section .process-number span {
    background: #473b97;
}

.journey-section .process-number svg {
    color: #7679ee;
}

.journey-section .process-note {
    border: 0;
    background: #ffd83d;
    color: var(--navy-950);
}

.journey-section .process-note svg {
    color: var(--navy-950);
}

.outcome-panel {
    background: linear-gradient(135deg, #0a0934, #332a7c);
}

.outcome-panel::before {
    background: rgba(118, 121, 238, .22);
}

.outcome-stat strong {
    color: #ffd83d;
}

.pricing-card {
    border-radius: 22px;
}

.pricing-card.featured {
    border-color: #7679ee;
    background: #473b97;
}

.pricing-tag {
    background: #ecebff;
    color: #473b97;
}

.featured .pricing-tag {
    background: #ffd83d;
    color: var(--navy-950);
}

.section-surface {
    background: #fdf7e7;
}

.section-surface .insurance-card,
.section-surface .problem-card,
.section-surface .benefit-card {
    background: #fff;
}

.page-hero {
    padding: 88px 0 82px;
    background: linear-gradient(105deg, #ecebff 0%, #fdf7e7 72%);
}

.page-hero::after {
    border-color: rgba(118, 121, 238, .24);
}

.page-hero h1 {
    color: var(--navy-950);
}

.page-hero-badge {
    border: 0;
    border-radius: 20px;
    background: #ffd83d;
    box-shadow: 0 16px 40px rgba(51, 42, 124, .13);
}

.page-hero-badge svg {
    color: #473b97;
}

.form-card,
.sidebar-card {
    border-color: transparent;
    background: #fff;
}

.sidebar-card.accent {
    background: #473b97;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #7679ee;
    box-shadow: 0 0 0 4px rgba(118, 121, 238, .12);
}

.footer-cta {
    background: #ffd83d;
    color: var(--navy-950);
}

.footer-cta::before {
    border-color: rgba(71, 59, 151, .18);
}

.footer-cta .eyebrow,
.footer-cta h2,
.footer-cta p:not(.eyebrow) {
    color: var(--navy-950);
}

.footer-cta .eyebrow::before {
    background: #f26b21;
}

.footer-cta .button-white {
    border-color: var(--navy-950);
    background: var(--navy-950);
    color: #fff;
}

.footer-cta .button-ghost-light {
    border-color: rgba(10, 9, 52, .3);
    color: var(--navy-950);
}

.footer-cta .button-ghost-light:hover {
    border-color: var(--navy-950);
    background: rgba(10, 9, 52, .07);
}

.site-footer {
    background: #0a0934;
}

.footer-contact-list svg,
.footer-address svg {
    color: #ffd83d;
}

.floating-whatsapp {
    border-color: #fff;
    background: #17124a;
}

.floating-whatsapp:hover {
    background: #473b97;
}

@media (max-width: 1080px) {
    .hero-inner {
        grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    }

    .hero h1 {
        font-size: clamp(2.85rem, 5vw, 4rem);
    }
}

@media (max-width: 900px) {
    .primary-nav {
        top: 76px;
        background: #473b97;
    }

    .primary-nav > a:not(.button) {
        border-color: rgba(255, 255, 255, .14);
        color: #fdf7e7;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 68px 0 0;
    }

    .hero-copy {
        max-width: 700px;
        padding-bottom: 10px;
    }

    .hero-visual {
        max-width: 650px;
        margin: -15px auto 0;
    }

    .hero {
        background: linear-gradient(165deg, #7477ed 0%, #898cf2 63%, #fdf7e7 100%);
    }
}

@media (max-width: 620px) {
    .nav-shell {
        min-height: 68px;
    }

    .brand img {
        width: 165px;
    }

    .primary-nav {
        top: 68px;
    }

    .hero-inner {
        padding-top: 50px;
    }

    .hero-copy {
        text-align: left;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 12.5vw, 3.55rem);
    }

    .hero-lead {
        margin-inline: 0;
    }

    .hero-proof,
    .hero-actions,
    .hero-assurance {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-proof {
        flex-direction: column;
        gap: 7px;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-start-card {
        width: 100%;
    }

    .hero-call-link {
        padding: 5px 2px;
    }

    .hero-assurance {
        align-items: flex-start;
    }

    .hero-visual {
        margin: -5px -22px 0;
    }

    .trust-item,
    .trust-item:first-child {
        border-color: rgba(255, 255, 255, .14);
    }

    .clarity-copy h2 {
        font-size: 2.3rem;
    }

    .page-hero {
        padding: 62px 0;
    }
}

/* Photographic refresh and clearer icon treatment. */
.site-photo {
    width: 100%;
    height: clamp(360px, 39vw, 500px);
    border: 6px solid rgba(255, 255, 255, .92);
    border-radius: 30px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 24px 55px rgba(23, 18, 74, .17);
}

.hero-visual {
    isolation: isolate;
    padding: 26px 0 48px;
}

.hero-visual::before {
    position: absolute;
    z-index: -1;
    inset: 48px -14px 30px 38px;
    border-radius: 38px 38px 9px 38px;
    background: #ffd83d;
    content: "";
    transform: rotate(2.2deg);
}

.hero-visual .hero-photo {
    height: 500px;
    max-height: none;
    border: 7px solid rgba(253, 247, 231, .9);
    border-radius: 38px 38px 9px 38px;
    object-fit: cover;
    object-position: 62% center;
    box-shadow: 0 28px 65px rgba(23, 18, 74, .28);
}

.clarity-visual .site-photo {
    object-position: 50% center;
}

.card-icon,
.trust-icon {
    width: 58px;
    height: 58px;
    border: 1px solid #d8d6fb;
    border-radius: 18px;
    background: #fff;
    color: #332a7c;
    box-shadow: 0 9px 22px rgba(51, 42, 124, .11);
}

.trust-icon {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
}

.card-icon.coral {
    border-color: #ffd8c4;
    background: #fff;
    color: #d95815;
}

.card-icon.gold {
    border-color: #f0c900;
    background: #fff9db;
    color: #332a7c;
}

.card-icon svg,
.trust-icon svg {
    width: 29px;
    height: 29px;
}

.insurance-card .card-icon,
.benefit-card .card-icon {
    width: 54px;
    height: 54px;
}

.process-number svg {
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 1px solid #d8d6fb;
    border-radius: 14px;
    background: #fff;
    color: #332a7c;
    box-shadow: 0 8px 18px rgba(51, 42, 124, .1);
}

.journey-section .process-number svg {
    color: #332a7c;
}

.page-hero-badge svg {
    width: 46px;
    height: 46px;
    padding: 10px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: #17124a;
    color: #ffd83d;
}

.contact-method svg {
    width: 40px;
    height: 40px;
    padding: 9px;
    margin-top: 0;
    border-radius: 12px;
    background: #ecebff;
    color: #332a7c;
}

.check-list .check svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 900px) {
    .hero-visual {
        padding: 18px 0 42px;
    }

    .hero-visual .hero-photo {
        height: 410px;
    }

    .site-photo {
        height: min(62vw, 470px);
    }
}

@media (max-width: 620px) {
    .hero-visual::before {
        inset: 30px -6px 22px 18px;
        border-radius: 27px 27px 7px 27px;
    }

    .hero-visual .hero-photo {
        height: 310px;
        border-width: 5px;
        border-radius: 27px 27px 7px 27px;
        object-position: 62% center;
    }

    .site-photo {
        height: 320px;
        border-width: 4px;
        border-radius: 23px;
    }

    .card-icon {
        width: 54px;
        height: 54px;
    }
}
