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

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--page);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden
}

body>main {
    flex: 1 0 auto
}

body>footer {
    flex-shrink: 0
}

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

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

ul {
    list-style: none
}

svg {
    width: 1em;
    height: 1em
}

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

:root {
    --page: #ffffff;
    --surface: color-mix(in srgb, var(--primary) 4%, #fff);
    --surface-strong: color-mix(in srgb, var(--primary) 10%, #fff);
    --ink: #0f172a;
    --ink-soft: #334155;
    --muted: #64748b;
    --faint: #94a3b8;
    --line: color-mix(in srgb, var(--primary) 16%, #e2e8f0);
    --line-strong: color-mix(in srgb, var(--primary) 36%, #e2e8f0);
    --primary: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-soft: color-mix(in srgb, var(--primary) 10%, #fff);
    --secondary: #2563eb;
    --secondary-soft: #eff6ff;
    --accent: #f59e0b;
    --accent-soft: #fffbeb;
    --success: #059669;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
}

/* ─── Progress bar ─── */

.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 9999;
    width: 0%;
    transition: width .15s linear
}

/* ─── Header ─── */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid color-mix(in srgb, var(--primary) 8%, transparent);
    transition: background .3s, border-color .3s
}

.header.scrolled {
    background: rgba(255, 255, 255, .97);
    border-bottom-color: var(--line)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 24px
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: var(--primary);
    min-width: 0
}

.logo:not(.logo-image-only) {
    justify-content: center;
    min-width: 190px;
    text-align: center
}

.logo-img,
.logo-box {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    flex: 0 0 auto
}

.logo-img {
    object-fit: contain;
    padding: 4px
}

.logo.logo-image-only .logo-img {
    width: auto;
    height: 54px;
    max-width: 230px;
    border: 0;
    background: transparent;
    padding: 0;
    border-radius: 0
}

.logo-box {
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    font-size: .68rem;
    line-height: 1.05;
    text-align: center
}

.logo-copy {
    display: grid;
    line-height: 1.08
}

.logo-name {
    font-size: 1.24rem;
    max-width: 240px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.05;
    color: var(--primary)
}

.logo-meta {
    font-size: .72rem;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex: 1
}

.nav {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--ink-soft)
}

.nav a {
    padding: 10px 14px;
    border-radius: var(--radius);
    transition: background .2s, color .2s;
    white-space: nowrap
}

.nav a:hover {
    color: var(--primary);
    background: var(--primary-soft)
}

.nav-acts {
    display: flex;
    align-items: center;
    gap: 10px
}

/* ─── Buttons ─── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 12px 24px;
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    font-family: inherit;
    font-weight: 800;
    font-size: .9rem;
    line-height: 1;
    cursor: pointer;
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    white-space: nowrap;
    text-align: center;
    position: relative;
    overflow: hidden
}

.btn:hover {
    transform: translateY(-2px)
}

.btn:active {
    transform: translateY(0)
}

.btn svg {
    width: 17px;
    height: 17px
}

.btn-o {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary)
}

.btn-o:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark)
}

.btn-outline {
    color: var(--ink-soft);
    background: #fff;
    border-color: var(--line)
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft)
}

.btn-light {
    color: var(--primary-dark);
    background: #fff;
    border-color: var(--primary)
}

.btn-light:hover {
    background: var(--primary);
    color: #fff
}

.btn-white {
    color: var(--primary-dark);
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .35)
}

.btn-white:hover {
    background: rgba(255, 255, 255, .25);
    border-color: rgba(255, 255, 255, .6);
    color: #fff
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .5)
}

.btn-lg {
    min-height: 52px;
    padding: 15px 28px;
    font-size: .95rem
}

.btn-block {
    width: 100%
}

.btn-register {
    color: #fff;
    background: var(--success);
    border-color: var(--success)
}

.btn-register:hover {
    background: #047857;
    border-color: #047857
}

/* ─── Hamburger ─── */

.hamburger {
    display: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 8px;
    width: 42px;
    height: 42px;
    z-index: 110
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    margin: 4px auto;
    transition: transform .25s, opacity .25s
}

.header.open .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px)
}

.header.open .hamburger span:nth-child(2) {
    opacity: 0
}

.header.open .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* ─── Hero ─── */

.hero {
    position: relative;
    min-height: 700px;
    padding: 110px 0 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, color-mix(in srgb, var(--primary) 6%, #fff) 0%, color-mix(in srgb, var(--primary) 3%, #fff) 40%, color-mix(in srgb, var(--secondary) 4%, #fff) 70%, #fff 100%);
    color: var(--ink)
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, color-mix(in srgb, var(--primary) 12%, transparent), transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, color-mix(in srgb, var(--secondary) 10%, transparent), transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate-reverse
}

@keyframes heroGlow {
    from {
        opacity: .7;
        transform: scale(1)
    }
    to {
        opacity: 1;
        transform: scale(1.1)
    }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .75fr);
    gap: 56px;
    align-items: center
}

.hero-copy {
    max-width: 640px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--primary) 18%, transparent);
    color: var(--primary-dark);
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 24px
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.04;
    letter-spacing: -.03em;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 20px;
    max-width: 620px
}

.hero h1 span {
    color: var(--primary);
    position: relative
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--ink-soft);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 32px
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.hero-btns .btn-o {
    min-width: 210px
}

.hero-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px
}

.hero-assurance span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid color-mix(in srgb, var(--primary) 14%, transparent);
    border-radius: 999px;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(8px);
    color: var(--primary);
    font-size: .82rem;
    font-weight: 700;
    height: auto
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 560px
}

.hero-stat {
    padding: 18px 16px;
    border-radius: var(--radius-lg);
    border: 1px solid color-mix(in srgb, var(--primary) 12%, #e2e8f0);
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(12px);
    line-height: 1.2
}

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.02em
}

.hero-stat span {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 700
}

/* ─── Trust strip ─── */

.trust-strip {
    padding: 36px 0;
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--primary) 2%, #fff)
}

.trust-label {
    text-align: center;
    color: var(--faint);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap
}

.trust-logos span {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--line-strong);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color .3s
}

.trust-logos span:hover {
    color: var(--primary)
}

/* ─── Hero form preview ─── */

.hero-form {
    justify-self: end;
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid color-mix(in srgb, var(--primary) 10%, #e2e8f0);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    padding: 22px;
    color: var(--ink)
}

.hf-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px
}

.hf-eyebrow {
    display: block;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 3px
}

.hf-title {
    font-size: 1.02rem;
    font-weight: 900;
    color: var(--ink)
}

.hf-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--success) 12%, #fff);
    color: var(--success);
    font-size: .76rem;
    font-weight: 800
}

.hf-status svg {
    width: 14px;
    height: 14px
}

.hf-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 14px
}

.hf-timeline span {
    height: 5px;
    border-radius: 999px;
    background: var(--line)
}

.hf-timeline span.active {
    background: linear-gradient(90deg, var(--primary), var(--secondary))
}

.hf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px
}

.hf-field {
    padding: 10px 12px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line)
}

.hf-field.full {
    grid-column: span 2
}

.hf-field label {
    display: block;
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--muted);
    margin-bottom: 2px
}

.hf-field span {
    font-size: .82rem;
    color: var(--ink-soft);
    font-weight: 700
}

.hf-upload {
    padding: 14px;
    border: 1.5px dashed var(--line-strong);
    border-radius: var(--radius);
    text-align: center;
    color: var(--muted);
    font-size: .8rem;
    font-weight: 700;
    background: #fff
}

.hf-upload span {
    color: var(--primary);
    font-weight: 800;
    cursor: pointer
}

.hf-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line)
}

.hf-action-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: .8rem;
    font-weight: 700
}

.hf-action-row a {
    color: var(--primary);
    font-size: .88rem;
    font-weight: 800
}

/* ─── Sections ─── */

.section {
    padding: 80px 0
}

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

.sec-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px
}

.sec-tag {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--primary-soft);
    border: 1px solid color-mix(in srgb, var(--primary) 24%, #e2e8f0);
    color: var(--primary-dark);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 18px
}

.sec-head h2 {
    font-size: 2.6rem;
    line-height: 1.1;
    letter-spacing: -.02em;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 14px
}

.sec-head p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto
}

/* ─── Services ─── */

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

.svc {
    padding: 32px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: #fff;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden
}

.svc::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity .3s
}

.svc:hover::before {
    opacity: 1
}

.svc:nth-child(1)::before {
    background: linear-gradient(90deg, #7c3aed, #a78bfa)
}

.svc:nth-child(2)::before {
    background: linear-gradient(90deg, #2563eb, #60a5fa)
}

.svc:nth-child(3)::before {
    background: linear-gradient(90deg, #059669, #34d399)
}

.svc:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong)
}

.svc-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    margin-bottom: 20px;
    transition: all .3s
}

.svc:nth-child(1) .svc-icon {
    background: linear-gradient(135deg, #ede9fe, #c4b5fd);
    color: #7c3aed
}

.svc:nth-child(2) .svc-icon {
    background: linear-gradient(135deg, #dbeafe, #93c5fd);
    color: #2563eb
}

.svc:nth-child(3) .svc-icon {
    background: linear-gradient(135deg, #d1fae5, #6ee7b7);
    color: #059669
}

.svc:hover .svc-icon {
    background: var(--ink);
    color: #fff
}

.svc-icon svg {
    width: 24px;
    height: 24px
}

.svc h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px
}

.svc p {
    color: var(--muted);
    line-height: 1.75;
    font-size: .92rem
}

/* ─── Why choose ─── */

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px
}

.why {
    padding: 28px 20px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: #fff;
    text-align: center;
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.why:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong)
}

.why-icon {
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    margin-bottom: 16px;
    transition: all .3s
}

.why:nth-child(1) .why-icon {
    background: var(--primary-soft);
    color: var(--primary)
}

.why:nth-child(2) .why-icon {
    background: color-mix(in srgb, var(--secondary) 12%, #fff);
    color: var(--secondary)
}

.why:nth-child(3) .why-icon {
    background: color-mix(in srgb, var(--accent) 15%, #fff);
    color: #b45309
}

.why:nth-child(4) .why-icon {
    background: color-mix(in srgb, var(--success) 12%, #fff);
    color: var(--success)
}

.why:nth-child(5) .why-icon {
    background: #fce7f3;
    color: #db2777
}

.why:hover .why-icon {
    background: var(--ink);
    color: #fff
}

.why-icon svg {
    width: 24px;
    height: 24px
}

.why h4 {
    font-size: .92rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px
}

.why p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.6
}

/* ─── Process steps ─── */

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    max-width: 960px;
    margin: 0 auto
}

.process::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 14%;
    right: 14%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--line-strong), var(--primary), var(--line-strong), transparent);
    z-index: 0
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 12px 8px
}

.step-num {
    width: 64px;
    height: 64px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 20px;
    border: 4px solid var(--page);
    transition: transform .3s
}

.step:hover .step-num {
    transform: scale(1.1)
}

.step h4 {
    font-size: .98rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px
}

.step p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.6
}

/* ─── Pricing ─── */

.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto
}

.price-card {
    position: relative;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 30px 24px;
    text-align: left;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden
}

.price-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: .8;
    transition: opacity .3s
}

.price-card:hover::before {
    opacity: 1
}

.price-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--primary), var(--secondary))
}

.price-card:nth-child(2)::before {
    background: linear-gradient(90deg, #f59e0b, #ef4444)
}

.price-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--success), #10b981)
}

.price-card:nth-child(4)::before {
    background: linear-gradient(90deg, #8b5cf6, #ec4899)
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong)
}

.price-card h3 {
    font-size: 1.05rem;
    color: var(--ink);
    font-weight: 900;
    margin-bottom: 16px
}

.price-amount {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1
}

.price-period {
    font-size: .82rem;
    color: var(--muted);
    font-weight: 700;
    margin: 4px 0 20px
}

.price-extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 10px;
    gap: 8px
}

.price-extra-label {
    font-size: .7rem;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.price-extra-value {
    font-size: .95rem;
    font-weight: 900;
    color: var(--ink);
    white-space: nowrap
}

.price-list {
    list-style: none;
    text-align: left;
    margin: 20px 0 26px
}

.price-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: .88rem;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line)
}

.price-list li:last-child {
    border-bottom: none
}

.price-check {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex: 0 0 auto
}

/* ─── FAQ ─── */

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

.faq {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
    overflow: hidden;
    transition: all .3s;
    background: #fff
}

.faq summary {
    padding: 20px 24px;
    font-weight: 800;
    font-size: .96rem;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
    transition: color .2s
}

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

.faq summary:hover {
    color: var(--primary)
}

.faq-ch {
    width: 22px;
    height: 22px;
    color: var(--muted);
    transition: transform .3s;
    flex-shrink: 0
}

.faq[open] {
    border-color: color-mix(in srgb, var(--primary) 24%, #e2e8f0)
}

.faq[open] .faq-ch {
    transform: rotate(180deg);
    color: var(--primary)
}

.faq p {
    padding: 0 24px 20px;
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.8
}

/* ─── CTA ─── */

.cta {
    padding: 0;
    background: linear-gradient(135deg, var(--primary-dark), color-mix(in srgb, var(--primary) 80%, #1e1b4b), var(--primary-dark));
    color: #fff;
    position: relative;
    overflow: hidden
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, .06), transparent 50%), radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .04), transparent 40%);
    pointer-events: none
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 64px 0;
    color: #fff;
    position: relative;
    z-index: 1
}

.cta-box h2 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.15;
    max-width: 620px;
    letter-spacing: -.02em
}

.cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

/* ─── Contact ─── */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto
}

.contact-grid .why {
    padding: 32px 24px
}

/* ─── Footer ─── */

.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--line);
    background: color-mix(in srgb, var(--primary) 2%, #fff);
    width: 100%
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 36px
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-weight: 900;
    color: var(--primary);
    font-size: 1.1rem
}

.footer-logo-img,
.footer-logo-box {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    object-fit: contain;
    padding: 3px
}

.footer-brand.logo-image-only .footer-logo-img {
    width: auto;
    height: 48px;
    max-width: 220px;
    border: 0;
    background: transparent;
    padding: 0;
    border-radius: 0
}

.footer-logo-box {
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    font-size: .6rem;
    line-height: 1.05;
    text-align: center
}

.footer-desc {
    max-width: 340px;
    color: var(--muted);
    line-height: 1.8;
    font-size: .92rem
}

.footer h4 {
    font-size: .9rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px
}

.footer a,
.footer-grid>div>span {
    display: block;
    color: var(--muted);
    margin: 9px 0;
    font-size: .9rem;
    transition: color .2s
}

.footer a:hover {
    color: var(--primary)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--line)
}

.footer-bottom span {
    color: var(--faint);
    font-size: .85rem
}

.footer-grid>* {
    min-width: 0
}

/* ─── Reveal animation ─── */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s cubic-bezier(.4, 0, .2, 1), transform .6s cubic-bezier(.4, 0, .2, 1)
}

.reveal.vis {
    opacity: 1;
    transform: translateY(0)
}

.reveal:nth-child(2) {
    transition-delay: .06s
}

.reveal:nth-child(3) {
    transition-delay: .12s
}

.reveal:nth-child(4) {
    transition-delay: .18s
}

.reveal:nth-child(5) {
    transition-delay: .24s
}

.reveal:nth-child(6) {
    transition-delay: .3s
}

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

/* ─── Page hero (inner pages) ─── */

.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark), color-mix(in srgb, var(--primary) 80%, #1e1b4b));
    padding: 100px 0 58px;
    text-align: center;
    color: #fff;
    overflow: hidden
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, .08), transparent 50%), radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .06), transparent 40%)
}

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

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -.02em
}

.page-hero h1 span {
    color: color-mix(in srgb, #fff 70%, var(--primary))
}

.page-hero p {
    font-size: 1.08rem;
    color: color-mix(in srgb, #fff 70%, var(--primary))
}

.page-content {
    padding: 42px 0 80px;
    background: var(--surface)
}

.content-card {
    max-width: 840px;
    margin: 28px auto 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 44px 40px
}

.content-card h2:first-child {
    margin-top: 0
}

.content-card h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
    margin: 24px 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line)
}

.content-card p {
    color: var(--ink-soft);
    margin-bottom: 14px;
    line-height: 1.8
}

.content-card ul,
.content-card ol {
    margin: 0 0 14px 20px;
    color: var(--ink-soft);
    line-height: 1.8
}

.content-card ul {
    list-style: disc
}

.content-card ol {
    list-style: decimal
}

.content-card li {
    margin-bottom: 8px
}

.content-card li strong {
    color: var(--ink)
}

.content-card a {
    color: var(--primary);
    font-weight: 800
}

.content-card a:hover {
    color: var(--primary-dark)
}

.last-updated {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line)
}

/* ─── Charges table (inner pages) ─── */

.charges-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color .3s
}

.charges-card:hover {
    border-color: var(--line-strong)
}

.charges-header {
    align-items: center;
    justify-content: space-between;
    padding: 24px 26px;
    border-bottom: 1px solid var(--line);
    gap: 16px
}

.charges-header h3 {
    font-size: 1.15rem;
    color: var(--ink);
    font-weight: 900
}

.charges-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.charges-role {
    font-size: .72rem;
    font-weight: 900;
    color: #fff;
    background: var(--primary);
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.charges-gst {
    font-size: .78rem;
    color: var(--muted);
    background: var(--surface);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 800
}

.charges-table {
    padding: 0 26px
}

.charges-row {
    display: grid;
    grid-template-columns: 1.2fr .6fr 2fr;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line)
}

.charges-row:last-child {
    border-bottom: none
}

.charges-row-head {
    padding-top: 18px;
    font-size: .72rem;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid var(--line-strong)
}

.charges-name {
    font-weight: 800;
    color: var(--ink);
    font-size: .94rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.charges-badge {
    font-size: .64rem;
    background: var(--accent-soft);
    color: #92400e;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap
}

.charges-price {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--primary);
    text-align: center
}

.charges-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.5
}

.charges-row-featured {
    background: var(--primary-soft);
    border-radius: var(--radius);
    margin: 0 -10px;
    padding: 16px 10px;
    border-bottom-color: color-mix(in srgb, var(--primary) 30%, #e2e8f0)
}

.charges-action {
    padding: 22px 26px;
    text-align: center;
    border-top: 1px solid var(--line)
}

/* ─── Responsive: Tablet ─── */

@media(max-width:1120px) {
    .hamburger {
        display: block
    }
    .header-menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, .98);
        backdrop-filter: blur(24px);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        padding: 14px;
        z-index: 105
    }
    .header.open .header-menu {
        display: grid;
        gap: 12px
    }
    .nav {
        display: grid;
        gap: 2px;
        width: 100%
    }
    .nav a {
        padding: 12px
    }
    .nav-acts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }
    .hero {
        padding: 110px 0 50px
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }
    .hero-form {
        justify-self: start;
        max-width: 520px
    }
    .services {
        grid-template-columns: repeat(2, 1fr)
    }
    .why-grid {
        grid-template-columns: repeat(3, 1fr)
    }
    .process,
    .pricing {
        grid-template-columns: repeat(2, 1fr)
    }
    .process::before {
        display: none
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
    .footer-grid>* {
        min-width: 0
    }
    .cta-box {
        align-items: flex-start;
        flex-direction: column
    }
}

/* ─── Responsive: Mobile ─── */

@media(max-width:760px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden
    }
    .container {
        width: min(100% - 28px, 1200px)
    }
    .header-inner {
        min-height: 64px
    }
    .logo-img,
    .logo-box {
        width: 38px;
        height: 38px
    }
    .logo.logo-image-only .logo-img {
        width: auto;
        height: 44px;
        max-width: 178px
    }
    .logo:not(.logo-image-only) {
        min-width: 150px
    }
    .logo-name {
        max-width: 170px;
        font-size: 1.1rem
    }
    .logo-meta {
        font-size: .68rem
    }
    .hero {
        min-height: auto;
        padding: 100px 0 50px
    }
    .hero h1 {
        font-size: 2.6rem;
        line-height: 1.06
    }
    .hero-sub {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 24px
    }
    .hero-btns {
        width: 100%
    }
    .hero-btns .btn {
        flex: 1 1 150px
    }
    .hero-assurance {
        gap: 8px
    }
    .hero-assurance span {
        font-size: .78rem
    }
    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px
    }
    .hero-stat {
        padding: 14px 10px
    }
    .hero-stat strong {
        font-size: 1.2rem
    }
    .hero-stat span {
        font-size: .7rem
    }
    .hero-form {
        display: none
    }
    .section {
        padding: 64px 0
    }
    .sec-head {
        margin-bottom: 32px
    }
    .sec-head h2 {
        font-size: 2rem
    }
    .services,
    .why-grid,
    .process,
    .pricing {
        grid-template-columns: 1fr
    }
    .svc,
    .why,
    .price-card {
        padding: 24px
    }
    .cta-box {
        padding: 48px 0
    }
    .cta-box h2 {
        font-size: 1.8rem
    }
    .footer {
        padding: 44px 0 26px
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px
    }
    .page-hero {
        padding: 80px 0 44px
    }
    .page-hero h1 {
        font-size: 1.95rem
    }
    .page-content {
        padding: 30px 0 54px
    }
    .content-card {
        padding: 32px 24px
    }
    .charges-row {
        grid-template-columns: 1fr;
        gap: 6px
    }
    .charges-row-head {
        display: none
    }
    .charges-price {
        text-align: left
    }
    .charges-header {
        align-items: flex-start;
        flex-direction: column
    }
}

/* ─── Responsive: Small mobile ─── */

@media(max-width:520px) {
    .nav-acts {
        grid-template-columns: 1fr
    }
    .hero h1 {
        font-size: 2.2rem
    }
    .hero-badge {
        font-size: .7rem
    }
    .hero-assurance {
        display: none
    }
    .hero-stats {
        grid-template-columns: 1fr 1fr
    }
    .hero-stat:last-child {
        grid-column: 1 / -1
    }
    .btn {
        width: 100%
    }
    .footer {
        padding: 36px 0 20px
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }
    .footer-bottom span {
        font-size: .8rem
    }
}

/* ─── Theme 2 ─── */

.home-layout-theme2 .hero {
    min-height: 700px;
    background: linear-gradient(160deg, var(--primary-soft) 0%, color-mix(in srgb, var(--primary) 6%, #fff) 30%, color-mix(in srgb, var(--primary) 2%, #fff) 60%, #fff 100%)
}

.home-layout-theme2 .hero::before {
    background: radial-gradient(circle at 15% 20%, color-mix(in srgb, var(--primary) 14%, transparent), transparent 45%)
}

.home-layout-theme2 .hero::after {
    background: radial-gradient(circle at 85% 70%, color-mix(in srgb, var(--secondary) 10%, transparent), transparent 45%)
}

.home-layout-theme2 .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(340px, .88fr);
    gap: 54px
}

.home-layout-theme2 .hero-copy {
    padding: 34px 0
}

.home-layout-theme2 .hero-badge {
    background: rgba(255, 255, 255, .8);
    border-color: var(--line)
}

.home-layout-theme2 .hero h1 {
    font-size: 2.8rem
}

/* Homepage refresh */

body[class*="home-layout-"] {
    background: #fff
}

body[class*="home-layout-"] .container {
    width: min(1240px, calc(100% - 48px))
}

body[class*="home-layout-"] .header {
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(148, 163, 184, .18);
    box-shadow: 0 1px 0 rgba(15, 23, 42, .02)
}

body[class*="home-layout-"] .header.scrolled {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06)
}

body[class*="home-layout-"] .header-inner {
    min-height: 78px
}

body[class*="home-layout-"] .logo:not(.logo-image-only) {
    justify-content: flex-start !important;
    min-width: 210px;
    text-align: left
}

body[class*="home-layout-"] .header .logo:not(.logo-image-only) .logo-name {
    color: var(--ink) !important;
    font-size: 1.12rem !important;
    letter-spacing: -.02em
}

body[class*="home-layout-"] .logo-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 9px 22px color-mix(in srgb, var(--primary) 25%, transparent);
    color: #fff !important;
    font-size: 1rem;
    font-weight: 900
}

body[class*="home-layout-"] .logo-copy {
    gap: 3px
}

body[class*="home-layout-"] .logo-meta {
    font-size: .61rem;
    letter-spacing: .12em;
    color: var(--muted);
    font-weight: 800
}

body[class*="home-layout-"] .header-menu {
    gap: 26px
}

body[class*="home-layout-"] .nav {
    gap: 4px;
    font-size: .84rem
}

body[class*="home-layout-"] .nav a {
    padding: 9px 11px
}

body[class*="home-layout-"] .nav-acts .btn {
    min-height: 42px;
    padding: 11px 21px;
    border-radius: 13px
}

body[class*="home-layout-"] .hero,
body.home-layout-theme2 .hero {
    min-height: 760px;
    padding: 132px 0 72px;
    background: linear-gradient(rgba(255, 255, 255, .76), rgba(255, 255, 255, .88)), linear-gradient(90deg, color-mix(in srgb, var(--primary) 10%, transparent) 1px, transparent 1px), linear-gradient(color-mix(in srgb, var(--primary) 10%, transparent) 1px, transparent 1px), linear-gradient(145deg, color-mix(in srgb, var(--primary) 12%, #fff), #fff 55%, color-mix(in srgb, var(--secondary) 8%, #fff));
    background-size: auto, 40px 40px, 40px 40px, auto
}

body[class*="home-layout-"] .hero::before {
    top: -300px;
    right: -210px;
    width: 760px;
    height: 760px;
    background: radial-gradient(circle, color-mix(in srgb, var(--primary) 15%, transparent), transparent 66%);
    filter: blur(2px)
}

body[class*="home-layout-"] .hero::after {
    bottom: -360px;
    left: -240px;
    width: 740px;
    height: 740px;
    background: radial-gradient(circle, color-mix(in srgb, var(--secondary) 11%, transparent), transparent 68%)
}

body[class*="home-layout-"] .hero-grid,
body.home-layout-theme2 .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .78fr);
    gap: 72px
}

body[class*="home-layout-"] .hero-copy,
body.home-layout-theme2 .hero-copy {
    max-width: 680px;
    padding: 0
}

body[class*="home-layout-"] .hero-badge {
    margin-bottom: 25px;
    padding: 8px 14px;
    background: #fff;
    border-color: color-mix(in srgb, var(--primary) 24%, #e2e8f0);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    color: var(--primary-dark)
}

body[class*="home-layout-"] .hero h1,
body.home-layout-theme2 .hero h1 {
    max-width: 690px;
    margin-bottom: 22px;
    font-size: clamp(3.4rem, 5vw, 4.7rem);
    line-height: .98;
    letter-spacing: -.055em
}

body[class*="home-layout-"] .hero h1 span {
    background: linear-gradient(125deg, var(--primary-dark), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

body[class*="home-layout-"] .hero-sub {
    max-width: 620px;
    margin-bottom: 28px;
    font-size: 1.06rem;
    line-height: 1.75;
    color: var(--ink-soft)
}

body[class*="home-layout-"] .hero-btns {
    margin-bottom: 18px
}

body[class*="home-layout-"] .hero-btns .btn {
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06)
}

body[class*="home-layout-"] .hero-btns .btn-o {
    box-shadow: 0 12px 28px color-mix(in srgb, var(--primary) 26%, transparent)
}

body[class*="home-layout-"] .hero-assurance {
    margin-bottom: 24px
}

body[class*="home-layout-"] .hero-assurance span {
    padding: 6px 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    color: var(--muted);
    font-size: .76rem
}

body[class*="home-layout-"] .hero-assurance svg {
    width: 15px;
    height: 15px;
    color: var(--primary)
}

body[class*="home-layout-"] .hero-stats {
    gap: 10px;
    max-width: 590px
}

body[class*="home-layout-"] .hero-stat {
    position: relative;
    padding: 15px 17px;
    border-color: rgba(148, 163, 184, .22);
    border-radius: 16px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .045)
}

body[class*="home-layout-"] .hero-stat strong {
    font-size: 1.36rem
}

body[class*="home-layout-"] .hero-stat span {
    display: block;
    margin-top: 4px;
    font-size: .69rem;
    letter-spacing: .02em
}

.hero-service-panel {
    position: relative;
    width: 100%;
    max-width: 490px;
    justify-self: end;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 28px;
    background: linear-gradient(155deg, #0f172a 0%, color-mix(in srgb, var(--primary-dark) 38%, #0f172a) 100%);
    box-shadow: 0 32px 80px rgba(15, 23, 42, .22);
    color: #fff;
    overflow: hidden
}

.hero-service-panel::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondary) 22%, transparent);
    filter: blur(4px);
    pointer-events: none
}

.hsp-top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px
}

.hsp-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: color-mix(in srgb, #fff 62%, var(--primary-light, #7dd3fc));
    font-size: .66rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em
}

.hsp-top h2 {
    max-width: 290px;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.15;
    letter-spacing: -.025em
}

.hsp-secure {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #d1fae5;
    font-size: .68rem;
    font-weight: 800
}

.hsp-secure svg {
    width: 14px;
    height: 14px
}

.hsp-services {
    position: relative;
    display: grid;
    gap: 10px
}

.hsp-service {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 17px;
    background: rgba(255, 255, 255, .07);
    transition: transform .25s, background .25s, border-color .25s
}

.hsp-service:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .2)
}

.hsp-service.hsp-primary {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .16)
}

.hsp-service.hsp-primary:hover {
    background: color-mix(in srgb, var(--primary) 5%, #fff)
}

.hsp-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .11);
    color: #fff
}

.hsp-primary .hsp-icon {
    background: var(--primary-soft);
    color: var(--primary)
}

.hsp-icon svg {
    width: 20px;
    height: 20px
}

.hsp-copy {
    display: grid;
    min-width: 0;
    line-height: 1.25
}

.hsp-copy strong {
    color: #fff;
    font-size: .88rem;
    font-weight: 850
}

.hsp-primary .hsp-copy strong {
    color: var(--ink)
}

.hsp-copy small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .58);
    font-size: .7rem;
    font-weight: 650
}

.hsp-primary .hsp-copy small {
    color: var(--muted)
}

.hsp-arrow {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .58)
}

.hsp-primary .hsp-arrow {
    color: var(--primary)
}

.hsp-arrow svg {
    width: 18px;
    height: 18px
}

.hsp-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.hsp-footer>span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 235px;
    color: rgba(255, 255, 255, .6);
    font-size: .68rem;
    font-weight: 650;
    line-height: 1.45
}

.hsp-footer>span svg {
    flex: 0 0 auto
}

.hsp-footer a {
    color: #fff;
    font-size: .72rem;
    font-weight: 850;
    white-space: nowrap
}

body[class*="home-layout-"] .trust-strip {
    padding: 0;
    border: 0;
    background: #fff
}

.trust-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 36px;
    margin-top: -1px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(148, 163, 184, .2)
}

body[class*="home-layout-"] .trust-label {
    margin: 0;
    color: var(--faint);
    font-size: .68rem;
    text-align: left;
    white-space: nowrap
}

.trust-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.trust-links a {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 11px 14px;
    border: 1px solid rgba(148, 163, 184, .2);
    border-radius: 14px;
    background: #fff;
    color: var(--ink-soft);
    transition: border-color .2s, background .2s, transform .2s
}

.trust-links a:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--primary) 36%, #e2e8f0);
    background: var(--surface)
}

.trust-links>a>svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    color: var(--primary)
}

.trust-links span {
    display: grid;
    min-width: 0;
    line-height: 1.2
}

.trust-links strong {
    font-size: .77rem;
    color: var(--ink)
}

.trust-links small {
    margin-top: 3px;
    color: var(--muted);
    font-size: .63rem;
    font-weight: 650
}

body[class*="home-layout-"] .section {
    padding: 94px 0
}

body[class*="home-layout-"] .section-alt {
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 3%, #fff), color-mix(in srgb, var(--primary) 6%, #fff))
}

body[class*="home-layout-"] .sec-head {
    margin-bottom: 50px
}

body[class*="home-layout-"] .sec-tag {
    padding: 7px 13px;
    border: 0;
    background: var(--primary-soft);
    font-size: .65rem;
    letter-spacing: .13em
}

body[class*="home-layout-"] .sec-head h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    letter-spacing: -.04em
}

body[class*="home-layout-"] .sec-head p {
    font-size: .98rem
}

body[class*="home-layout-"] .services {
    gap: 22px
}

body[class*="home-layout-"] .svc {
    display: flex;
    min-height: 278px;
    flex-direction: column;
    padding: 30px;
    border-color: rgba(148, 163, 184, .22);
    box-shadow: 0 16px 45px rgba(15, 23, 42, .045)
}

body[class*="home-layout-"] .svc::before {
    height: 5px;
    opacity: 1;
    background: linear-gradient(90deg, var(--primary), var(--secondary))
}

body[class*="home-layout-"] .svc-icon {
    background: var(--primary-soft);
    color: var(--primary)
}

body[class*="home-layout-"] .svc:nth-child(3n+2)::before {
    background: linear-gradient(90deg, #2563eb, #60a5fa)
}

body[class*="home-layout-"] .svc:nth-child(3n+2) .svc-icon {
    background: #dbeafe;
    color: #2563eb
}

body[class*="home-layout-"] .svc:nth-child(3n)::before {
    background: linear-gradient(90deg, #059669, #34d399)
}

body[class*="home-layout-"] .svc:nth-child(3n) .svc-icon {
    background: #d1fae5;
    color: #059669
}

body[class*="home-layout-"] .svc:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, .1)
}

body[class*="home-layout-"] .svc h3 {
    font-size: 1.15rem
}

body[class*="home-layout-"] .svc p {
    font-size: .9rem
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 850
}

.svc-link svg {
    width: 15px;
    height: 15px;
    transition: transform .2s
}

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

body[class*="home-layout-"] .why-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px
}

body[class*="home-layout-"] .why {
    padding: 26px 18px;
    border-color: rgba(148, 163, 184, .2);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .035)
}

body[class*="home-layout-"] .process {
    max-width: 1040px;
    gap: 28px
}

body[class*="home-layout-"] .step-num {
    box-shadow: 0 12px 26px color-mix(in srgb, var(--primary) 22%, transparent)
}

body[class*="home-layout-"] .pricing {
    max-width: 1080px;
    gap: 22px
}

body[class*="home-layout-"] .price-card {
    overflow: visible;
    padding: 32px 26px;
    border-color: rgba(148, 163, 184, .24);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .05)
}

body[class*="home-layout-"] .price-card:nth-child(2) {
    border-color: var(--primary);
    box-shadow: 0 25px 60px color-mix(in srgb, var(--primary) 13%, transparent)
}

.price-badge {
    position: absolute;
    top: -14px;
    right: 22px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 8px 18px color-mix(in srgb, var(--primary) 24%, transparent);
    color: #fff;
    font-size: .62rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em
}

body[class*="home-layout-"] .faq {
    border-color: rgba(148, 163, 184, .22);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .03)
}

body[class*="home-layout-"] .cta {
    background: linear-gradient(120deg, #0f172a, color-mix(in srgb, var(--primary-dark) 45%, #0f172a))
}

body[class*="home-layout-"] .footer {
    background: #0b1220;
    border: 0;
    color: #fff
}

body[class*="home-layout-"] .footer h4 {
    color: #fff
}

body[class*="home-layout-"] .footer a,
body[class*="home-layout-"] .footer-grid>div>span,
body[class*="home-layout-"] .footer-desc {
    color: #94a3b8
}

body[class*="home-layout-"] .footer a:hover {
    color: #fff
}

body[class*="home-layout-"] .footer .footer-brand:not(.logo-image-only)>span:last-child {
    color: #fff !important
}

body[class*="home-layout-"] .footer-logo-box {
    border: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff !important
}

body[class*="home-layout-"] .footer-bottom {
    border-top-color: rgba(148, 163, 184, .18)
}

@media(max-width:1120px) {
    body[class*="home-layout-"] .container {
        width: min(100% - 40px, 1240px)
    }
    body[class*="home-layout-"] .header-menu {
        top: calc(100% + 8px);
        left: 20px;
        right: 20px;
        box-shadow: 0 24px 60px rgba(15, 23, 42, .14)
    }
    body[class*="home-layout-"] .hero-grid,
    body.home-layout-theme2 .hero-grid {
        grid-template-columns: 1fr 420px;
        gap: 36px
    }
    body[class*="home-layout-"] .hero h1,
    body.home-layout-theme2 .hero h1 {
        font-size: 3.55rem
    }
    body[class*="home-layout-"] .why-grid {
        grid-template-columns: repeat(3, 1fr)
    }
    .trust-inner {
        grid-template-columns: 1fr;
        gap: 12px
    }
}

@media(max-width:900px) {
    body[class*="home-layout-"] .hero,
    body.home-layout-theme2 .hero {
        padding: 120px 0 65px
    }
    body[class*="home-layout-"] .hero-grid,
    body.home-layout-theme2 .hero-grid {
        grid-template-columns: 1fr;
        gap: 42px
    }
    body[class*="home-layout-"] .hero-copy {
        max-width: 720px
    }
    .hero-service-panel {
        justify-self: start;
        max-width: 620px
    }
}

@media(max-width:760px) {
    body[class*="home-layout-"] .container {
        width: min(100% - 28px, 1240px)
    }
    body[class*="home-layout-"] .header-inner {
        min-height: 68px
    }
    body[class*="home-layout-"] .logo:not(.logo-image-only) {
        min-width: 0
    }
    body[class*="home-layout-"] .logo-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 12px
    }
    body[class*="home-layout-"] .header .logo:not(.logo-image-only) .logo-name {
        max-width: 150px;
        font-size: 1rem !important
    }
    body[class*="home-layout-"] .logo-meta {
        font-size: .53rem
    }
    body[class*="home-layout-"] .hero,
    body.home-layout-theme2 .hero {
        min-height: auto;
        padding: 104px 0 54px;
        background-size: auto, 32px 32px, 32px 32px, auto
    }
    body[class*="home-layout-"] .hero h1,
    body.home-layout-theme2 .hero h1 {
        font-size: clamp(2.55rem, 12vw, 3.3rem)
    }
    body[class*="home-layout-"] .hero-sub {
        font-size: .98rem
    }
    body[class*="home-layout-"] .hero-assurance {
        display: flex
    }
    .hero-service-panel {
        display: block;
        padding: 20px;
        border-radius: 23px
    }
    .hsp-top h2 {
        font-size: 1.3rem
    }
    .hsp-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px
    }
    .hsp-footer>span {
        max-width: none
    }
    .trust-links {
        grid-template-columns: 1fr
    }
    .trust-links a {
        padding: 10px 13px
    }
    body[class*="home-layout-"] .section {
        padding: 70px 0
    }
    body[class*="home-layout-"] .sec-head {
        margin-bottom: 34px
    }
    body[class*="home-layout-"] .why-grid {
        grid-template-columns: 1fr
    }
    body[class*="home-layout-"] .svc {
        min-height: 240px
    }
}

@media(max-width:520px) {
    body[class*="home-layout-"] .logo-meta {
        display: none
    }
    body[class*="home-layout-"] .hero-btns {
        display: grid;
        grid-template-columns: 1fr
    }
    body[class*="home-layout-"] .hero-btns .btn {
        width: 100%
    }
    body[class*="home-layout-"] .hero-assurance {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 12px
    }
    body[class*="home-layout-"] .hero-stats {
        grid-template-columns: 1fr 1fr
    }
    body[class*="home-layout-"] .hero-stat:last-child {
        grid-column: 1/-1
    }
    .hsp-service {
        grid-template-columns: 40px minmax(0, 1fr) 18px;
        padding: 12px;
        gap: 10px
    }
    .hsp-icon {
        width: 40px;
        height: 40px
    }
    .hsp-copy strong {
        font-size: .82rem
    }
    .hsp-copy small {
        font-size: .65rem
    }
    .hsp-secure {
        display: none
    }
}

/* Homepage redesign v2: clean professional portal */

body[class*="home-layout-"] {
    --portal-navy: #071a33;
    --portal-navy-2: #0b2748;
    --portal-slate: #42526b;
    --portal-wash: #f5f8fc;
    --portal-border: #dce5f0;
}

body[class*="home-layout-"] .header {
    background: rgba(255, 255, 255, .97);
    box-shadow: none;
    border-bottom: 1px solid #e7edf4
}

body[class*="home-layout-"] .header.scrolled {
    box-shadow: 0 8px 25px rgba(7, 26, 51, .07)
}

body[class*="home-layout-"] .header-inner {
    min-height: 74px
}

body[class*="home-layout-"] .logo-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 11px;
    box-shadow: none;
    background: var(--primary);
    font-size: .95rem
}

body[class*="home-layout-"] .header .logo:not(.logo-image-only) .logo-name {
    font-size: 1.08rem !important;
    color: var(--portal-navy) !important
}

body[class*="home-layout-"] .logo-meta {
    color: #77869a;
    font-size: .58rem;
    letter-spacing: .14em
}

body[class*="home-layout-"] .nav {
    color: #344258;
    font-size: .82rem
}

body[class*="home-layout-"] .nav a {
    border-radius: 8px;
    padding: 9px 10px
}

body[class*="home-layout-"] .nav a:hover {
    background: #f1f6fb;
    color: var(--primary-dark)
}

body[class*="home-layout-"] .nav-acts .btn {
    border-radius: 9px;
    min-height: 40px;
    padding: 10px 19px
}

body[class*="home-layout-"] .hero,
body.home-layout-theme2 .hero {
    min-height: 680px;
    padding: 124px 0 64px;
    background: radial-gradient(circle at 82% 22%, color-mix(in srgb, var(--primary) 34%, transparent), transparent 31%), radial-gradient(circle at 9% 92%, rgba(14, 165, 233, .14), transparent 27%), linear-gradient(118deg, var(--portal-navy) 0%, var(--portal-navy-2) 70%, #0b3157 100%);
    color: #fff
}

body[class*="home-layout-"] .hero::before {
    top: auto;
    right: 48%;
    bottom: -240px;
    width: 560px;
    height: 560px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .055);
    box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 140px rgba(255, 255, 255, .018);
    animation: none;
    filter: none
}

body[class*="home-layout-"] .hero::after {
    display: none
}

body[class*="home-layout-"] .hero-grid,
body.home-layout-theme2 .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, .78fr);
    gap: 64px
}

body[class*="home-layout-"] .hero-copy,
body.home-layout-theme2 .hero-copy {
    max-width: 660px
}

body[class*="home-layout-"] .hero-badge {
    margin-bottom: 22px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
    box-shadow: none;
    color: #d7eaff
}

body[class*="home-layout-"] .hero-badge-dot {
    background: #67d1ff
}

body[class*="home-layout-"] .hero h1,
body.home-layout-theme2 .hero h1 {
    max-width: 620px;
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(3rem, 4.4vw, 4rem);
    line-height: 1.01;
    letter-spacing: -.048em
}

body[class*="home-layout-"] .hero h1 span {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: #6ed3ff
}

body[class*="home-layout-"] .hero-sub {
    max-width: 600px;
    margin-bottom: 28px;
    color: #b8c8da;
    font-size: 1rem;
    line-height: 1.72
}

body[class*="home-layout-"] .hero-btns {
    margin-bottom: 20px
}

body[class*="home-layout-"] .hero-btns .btn {
    border-radius: 10px;
    box-shadow: none
}

body[class*="home-layout-"] .hero-btns .btn-o {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: none
}

body[class*="home-layout-"] .hero-btns .btn-o:hover {
    background: var(--secondary);
    border-color: var(--secondary)
}

body[class*="home-layout-"] .hero-btns .btn-light {
    background: transparent;
    border-color: rgba(255, 255, 255, .45);
    color: #fff
}

body[class*="home-layout-"] .hero-btns .btn-light:hover {
    background: #fff;
    border-color: #fff;
    color: var(--portal-navy)
}

body[class*="home-layout-"] .hero-assurance {
    gap: 20px;
    margin: 0
}

body[class*="home-layout-"] .hero-assurance span {
    padding: 0;
    color: #aebfd2;
    font-size: .72rem
}

body[class*="home-layout-"] .hero-assurance svg {
    color: #67d1ff
}

body[class*="home-layout-"] .hero-stats {
    display: none
}

.hero-service-panel {
    max-width: 475px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 25px 65px rgba(0, 0, 0, .22);
    color: var(--portal-navy)
}

.hero-service-panel::before {
    display: none
}

.hsp-top {
    margin-bottom: 18px
}

.hsp-eyebrow {
    color: var(--primary-dark);
    font-size: .63rem;
    letter-spacing: .13em
}

.hsp-top h2 {
    color: var(--portal-navy);
    font-size: 1.35rem
}

.hsp-secure {
    border-color: #d8eee6;
    background: #effaf6;
    color: #087a55
}

.hsp-services {
    gap: 9px
}

.hsp-service,
.hsp-service.hsp-primary {
    grid-template-columns: 42px minmax(0, 1fr) 22px;
    padding: 13px;
    border: 1px solid var(--portal-border);
    border-radius: 12px;
    background: #fff;
    color: var(--portal-navy);
    box-shadow: none
}

.hsp-service:hover,
.hsp-service.hsp-primary:hover {
    transform: none;
    border-color: var(--primary);
    background: #f7fbff;
    box-shadow: 0 7px 18px rgba(7, 26, 51, .06)
}

.hsp-service.hsp-primary {
    border-color: color-mix(in srgb, var(--primary) 42%, #dce5f0);
    background: color-mix(in srgb, var(--primary) 5%, #fff)
}

.hsp-icon,
.hsp-primary .hsp-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #eaf6fc;
    color: var(--primary-dark)
}

.hsp-service:nth-child(2) .hsp-icon {
    background: #eef2ff;
    color: #4f46e5
}

.hsp-service:nth-child(3) .hsp-icon {
    background: #ecfdf5;
    color: #059669
}

.hsp-copy strong,
.hsp-primary .hsp-copy strong {
    color: var(--portal-navy);
    font-size: .84rem
}

.hsp-copy small,
.hsp-primary .hsp-copy small {
    color: #6f7f92;
    font-size: .68rem
}

.hsp-arrow,
.hsp-primary .hsp-arrow {
    color: #8290a2
}

.hsp-footer {
    margin-top: 16px;
    padding-top: 15px;
    border-top-color: #e5ebf2
}

.hsp-footer>span {
    color: #708094
}

.hsp-footer a {
    color: var(--primary-dark)
}

body[class*="home-layout-"] .trust-strip {
    background: #fff
}

.trust-inner {
    padding: 20px 0;
    border-bottom: 0
}

body[class*="home-layout-"] .trust-label {
    color: #78889c
}

.trust-links {
    gap: 10px
}

.trust-links a {
    padding: 10px 13px;
    border-color: #e1e8f0;
    border-radius: 10px;
    background: #f9fbfd
}

.trust-links a:hover {
    transform: none;
    border-color: #b8ccdf;
    background: #fff
}

.trust-links strong {
    font-size: .75rem
}

body[class*="home-layout-"] .section {
    padding: 82px 0
}

body[class*="home-layout-"] #services {
    background: var(--portal-wash)
}

body[class*="home-layout-"] .section-alt {
    background: #fff
}

body[class*="home-layout-"] #process {
    background: linear-gradient(180deg, #f4f8fc, #eef5fb)
}

body[class*="home-layout-"] #charges {
    background: #fff
}

body[class*="home-layout-"] #faq {
    background: var(--portal-wash)
}

body[class*="home-layout-"] .sec-head {
    max-width: 650px;
    margin-bottom: 42px
}

body[class*="home-layout-"] .sec-tag {
    margin-bottom: 14px;
    padding: 6px 11px;
    border: 1px solid #d7e5f1;
    border-radius: 7px;
    background: #fff;
    color: var(--primary-dark);
    font-size: .62rem
}

body[class*="home-layout-"] .sec-head h2 {
    margin-bottom: 12px;
    color: var(--portal-navy);
    font-size: clamp(1.9rem, 2.8vw, 2.55rem);
    letter-spacing: -.035em
}

body[class*="home-layout-"] .sec-head p {
    color: #66768a;
    font-size: .94rem;
    line-height: 1.7
}

body[class*="home-layout-"] .services {
    gap: 16px
}

body[class*="home-layout-"] .svc {
    min-height: 245px;
    padding: 26px;
    border: 1px solid #dfe7ef;
    border-radius: 15px;
    box-shadow: none
}

body[class*="home-layout-"] .svc::before {
    display: none
}

body[class*="home-layout-"] .svc:hover {
    transform: translateY(-3px);
    border-color: #b9cadb;
    box-shadow: 0 14px 32px rgba(7, 26, 51, .08)
}

body[class*="home-layout-"] .svc-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 11px
}

body[class*="home-layout-"] .svc:hover .svc-icon {
    background: var(--portal-navy);
    color: #fff
}

body[class*="home-layout-"] .svc h3 {
    color: var(--portal-navy);
    font-size: 1.02rem
}

body[class*="home-layout-"] .svc p {
    color: #6a7a8d;
    font-size: .86rem
}

.svc-link {
    padding-top: 20px;
    color: var(--primary-dark);
    font-size: .73rem
}

body[class*="home-layout-"] .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px
}

body[class*="home-layout-"] .why {
    padding: 24px 18px;
    border: 1px solid #e0e7ef;
    border-radius: 14px;
    box-shadow: none
}

body[class*="home-layout-"] .why:hover {
    transform: translateY(-3px);
    border-color: #bdcbd9;
    box-shadow: 0 12px 28px rgba(7, 26, 51, .06)
}

body[class*="home-layout-"] .why h4 {
    color: var(--portal-navy)
}

body[class*="home-layout-"] .why p {
    color: #6f7e90
}

body[class*="home-layout-"] .process {
    max-width: 980px;
    gap: 24px
}

body[class*="home-layout-"] .process::before {
    background: #cbd8e6
}

body[class*="home-layout-"] .step-num {
    width: 58px;
    height: 58px;
    background: var(--portal-navy);
    border-color: #f1f7fb;
    box-shadow: none
}

body[class*="home-layout-"] .step h4 {
    color: var(--portal-navy)
}

body[class*="home-layout-"] .step p {
    color: #6d7d8f
}

body[class*="home-layout-"] .pricing {
    max-width: 1050px;
    gap: 18px
}

body[class*="home-layout-"] .price-card {
    padding: 29px 24px;
    border: 1px solid #dfe6ee;
    border-radius: 16px;
    box-shadow: none;
    overflow: visible
}

body[class*="home-layout-"] .price-card::before {
    height: 3px;
    border-radius: 16px 16px 0 0
}

body[class*="home-layout-"] .price-card:nth-child(2) {
    border-color: var(--primary);
    box-shadow: 0 14px 35px color-mix(in srgb, var(--primary) 10%, transparent)
}

.price-badge {
    top: -12px;
    right: 18px;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: none;
    font-size: .58rem
}

body[class*="home-layout-"] .price-amount {
    font-size: 2.15rem
}

body[class*="home-layout-"] .faq {
    border-color: #dfe7ef;
    border-radius: 12px;
    box-shadow: none
}

body[class*="home-layout-"] .faq summary {
    color: var(--portal-navy)
}

body[class*="home-layout-"] .cta {
    background: var(--portal-navy)
}

body[class*="home-layout-"] .cta-box {
    padding: 55px 0
}

body[class*="home-layout-"] .footer {
    background: #061526
}

@media(max-width:1120px) {
    body[class*="home-layout-"] .hero-grid,
    body.home-layout-theme2 .hero-grid {
        grid-template-columns: minmax(0, 1fr) 410px;
        gap: 38px
    }
    body[class*="home-layout-"] .hero h1,
    body.home-layout-theme2 .hero h1 {
        font-size: 3.2rem
    }
}

@media(max-width:900px) {
    body[class*="home-layout-"] .hero,
    body.home-layout-theme2 .hero {
        padding: 112px 0 58px
    }
    body[class*="home-layout-"] .hero-grid,
    body.home-layout-theme2 .hero-grid {
        grid-template-columns: 1fr;
        gap: 38px
    }
    .hero-service-panel {
        justify-self: start;
        max-width: 600px
    }
}

@media(max-width:760px) {
    body[class*="home-layout-"] .header-inner {
        min-height: 66px
    }
    body[class*="home-layout-"] .hero,
    body.home-layout-theme2 .hero {
        padding: 96px 0 48px;
        background: linear-gradient(145deg, var(--portal-navy), var(--portal-navy-2))
    }
    body[class*="home-layout-"] .hero h1,
    body.home-layout-theme2 .hero h1 {
        font-size: clamp(2.35rem, 11vw, 3rem)
    }
    body[class*="home-layout-"] .hero-sub {
        color: #becbda;
        font-size: .94rem
    }
    body[class*="home-layout-"] .hero-assurance {
        gap: 9px 16px
    }
    .hero-service-panel {
        padding: 18px;
        border-radius: 16px
    }
    .hsp-top h2 {
        font-size: 1.2rem
    }
    body[class*="home-layout-"] .section {
        padding: 64px 0
    }
    body[class*="home-layout-"] .svc {
        min-height: 220px
    }
}

@media(max-width:520px) {
    body[class*="home-layout-"] .hero-btns {
        gap: 10px
    }
    body[class*="home-layout-"] .hero-assurance {
        display: flex;
        gap: 9px 14px
    }
    .hsp-service,
    .hsp-service.hsp-primary {
        grid-template-columns: 40px minmax(0, 1fr) 18px;
        padding: 11px
    }
    .hsp-icon,
    .hsp-primary .hsp-icon {
        width: 40px;
        height: 40px
    }
    .trust-inner {
        padding: 17px 0
    }
}

/* Homepage redesign v3: plain modern typography and surfaces */

body[class*="home-layout-"] {
    font-family: "Manrope", "Segoe UI Variable Text", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    color: #172033;
    background: #fff;
}

body[class*="home-layout-"] .header {
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid #e6eaf0
}

body[class*="home-layout-"] .header.scrolled {
    box-shadow: 0 5px 18px rgba(15, 23, 42, .06)
}

body[class*="home-layout-"] .logo-mark {
    background: #1677c8;
    border-radius: 9px;
    font-weight: 700
}

body[class*="home-layout-"] .header .logo:not(.logo-image-only) .logo-name {
    color: var(--primary) !important;
    font-size: 1.38rem !important;
    font-weight: 700 !important;
    letter-spacing: -.025em
}

body[class*="home-layout-"] .logo-meta {
    font-weight: 600;
    letter-spacing: .1em
}

body[class*="home-layout-"] .nav {
    font-weight: 600
}

body[class*="home-layout-"] .btn {
    font-weight: 650
}

body[class*="home-layout-"] .nav-acts .btn {
    border-radius: 8px
}

body[class*="home-layout-"] .hero,
body.home-layout-theme2 .hero {
    min-height: 650px;
    padding: 120px 0 62px;
    background: #f6f8fb;
    color: #172033
}

body[class*="home-layout-"] .hero::before,
body[class*="home-layout-"] .hero::after {
    display: none
}

body[class*="home-layout-"] .hero-badge {
    background: #fff;
    border: 1px solid #d9e1ea;
    box-shadow: none;
    color: #246796;
    font-weight: 650;
    letter-spacing: .06em
}

body[class*="home-layout-"] .hero-badge-dot {
    background: #1677c8;
    animation: none
}

body[class*="home-layout-"] .hero h1,
body.home-layout-theme2 .hero h1 {
    color: #172033;
    font-size: clamp(3rem, 4.3vw, 3.85rem);
    font-weight: 720;
    line-height: 1.04;
    letter-spacing: -.045em
}

body[class*="home-layout-"] .hero h1 span {
    color: #1677c8
}

body[class*="home-layout-"] .hero-sub {
    color: #536176;
    font-size: 1rem;
    line-height: 1.7
}

body[class*="home-layout-"] .hero-btns .btn-o {
    background: #1677c8;
    border-color: #1677c8
}

body[class*="home-layout-"] .hero-btns .btn-o:hover {
    background: #0f65ad;
    border-color: #0f65ad
}

body[class*="home-layout-"] .hero-btns .btn-light {
    background: #fff;
    border-color: #b8c4d2;
    color: #25354a
}

body[class*="home-layout-"] .hero-btns .btn-light:hover {
    background: #eef3f7;
    border-color: #9babbc;
    color: #172033
}

body[class*="home-layout-"] .hero-assurance span {
    color: #627187;
    font-weight: 600
}

body[class*="home-layout-"] .hero-assurance svg {
    color: #1677c8
}

.hero-service-panel {
    border: 1px solid #dce3eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .09)
}

.hsp-eyebrow {
    color: #1677c8;
    font-weight: 700
}

.hsp-top h2 {
    color: #172033;
    font-weight: 700;
    letter-spacing: -.02em
}

.hsp-secure {
    border-color: #d6e7de;
    background: #f3faf6;
    color: #15704f;
    font-weight: 650
}

.hsp-service,
.hsp-service.hsp-primary {
    border-color: #e0e5eb;
    border-radius: 10px;
    background: #fff
}

.hsp-service.hsp-primary {
    border-color: #9fc9e8;
    background: #f5faff
}

.hsp-service:hover,
.hsp-service.hsp-primary:hover {
    border-color: #78b5df;
    background: #f8fbfd;
    box-shadow: none
}

.hsp-icon,
.hsp-primary .hsp-icon {
    border-radius: 8px;
    background: #e9f4fb;
    color: #1677c8
}

.hsp-copy strong,
.hsp-primary .hsp-copy strong {
    color: #243146;
    font-weight: 650
}

.hsp-copy small,
.hsp-primary .hsp-copy small {
    color: #718096;
    font-weight: 500
}

.hsp-footer a {
    color: #1677c8;
    font-weight: 650
}

body[class*="home-layout-"] .trust-strip {
    background: #fff;
    border-bottom: 1px solid #edf0f4
}

body[class*="home-layout-"] .trust-label {
    font-weight: 650;
    letter-spacing: .08em
}

.trust-links a {
    border-color: #e1e6ec;
    border-radius: 9px;
    background: #fff
}

.trust-links strong {
    font-weight: 650
}

body[class*="home-layout-"] .section {
    padding: 78px 0
}

body[class*="home-layout-"] #services,
body[class*="home-layout-"] #faq {
    background: #f7f9fb
}

body[class*="home-layout-"] #process {
    background: #f3f6f9
}

body[class*="home-layout-"] .sec-tag {
    border-radius: 6px;
    background: #fff;
    color: #1677c8;
    font-weight: 650;
    letter-spacing: .08em
}

body[class*="home-layout-"] .sec-head h2 {
    color: #172033;
    font-weight: 700;
    letter-spacing: -.03em
}

body[class*="home-layout-"] .sec-head p {
    color: #617086
}

body[class*="home-layout-"] .svc {
    border-color: #e0e5eb;
    border-radius: 12px;
    background: #fff
}

body[class*="home-layout-"] .svc:hover {
    transform: translateY(-2px);
    border-color: #b9c5d2;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06)
}

body[class*="home-layout-"] .svc h3 {
    color: #202d42;
    font-weight: 650
}

body[class*="home-layout-"] .svc p {
    color: #68778b
}

.svc-link {
    color: #1677c8;
    font-weight: 650
}

body[class*="home-layout-"] .why {
    border-color: #e1e6ec;
    border-radius: 12px
}

body[class*="home-layout-"] .why:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .05)
}

body[class*="home-layout-"] .why h4,
body[class*="home-layout-"] .step h4 {
    font-weight: 650
}

body[class*="home-layout-"] .step-num {
    background: #1677c8;
    font-weight: 650
}

body[class*="home-layout-"] .price-card {
    border-radius: 12px
}

body[class*="home-layout-"] .price-card h3 {
    font-weight: 650
}

body[class*="home-layout-"] .price-card:nth-child(2) {
    border-color: #1677c8;
    box-shadow: 0 10px 28px rgba(22, 119, 200, .09)
}

.price-badge {
    background: #1677c8;
    border-radius: 5px;
    font-weight: 650
}

body[class*="home-layout-"] .price-amount {
    color: #1677c8;
    font-weight: 700
}

body[class*="home-layout-"] .faq {
    border-radius: 10px
}

body[class*="home-layout-"] .faq summary {
    font-weight: 650
}

body[class*="home-layout-"] .cta {
    background: #172033
}

body[class*="home-layout-"] .cta-box h2 {
    font-weight: 700
}

body[class*="home-layout-"] .footer {
    background: #111927
}

@media(max-width:900px) {
    body[class*="home-layout-"] .hero,
    body.home-layout-theme2 .hero {
        background: #f6f8fb
    }
}

@media(max-width:760px) {
    body[class*="home-layout-"] .hero,
    body.home-layout-theme2 .hero {
        padding: 94px 0 46px;
        background: #f6f8fb
    }
    body[class*="home-layout-"] .hero-sub {
        color: #536176
    }
    body[class*="home-layout-"] .header .logo:not(.logo-image-only) .logo-name {
        font-size: 1.2rem !important
    }
}

/* Use theme-tinted surfaces instead of neutral gray */

body[class*="home-layout-"] .hero,
body.home-layout-theme2 .hero {
    background: #fff
}

body[class*="home-layout-"] #services,
body[class*="home-layout-"] #faq {
    background: #fff
}

body[class*="home-layout-"] #process {
    background: #fff
}

body[class*="home-layout-"] .hero-sub,
body[class*="home-layout-"] .sec-head p,
body[class*="home-layout-"] .svc p,
body[class*="home-layout-"] .why p,
body[class*="home-layout-"] .step p {
    color: color-mix(in srgb, var(--ink) 72%, var(--primary))
}

body[class*="home-layout-"] .hero-btns .btn-light {
    border-color: color-mix(in srgb, var(--primary) 35%, #fff);
    color: var(--primary-dark)
}

body[class*="home-layout-"] .hero-btns .btn-light:hover {
    background: var(--primary-soft);
    border-color: var(--primary);
    color: var(--primary-dark)
}

@media(max-width:900px) {
    body[class*="home-layout-"] .hero,
    body.home-layout-theme2 .hero {
        background: #fff
    }
}

@media(max-width:760px) {
    body[class*="home-layout-"] .hero,
    body.home-layout-theme2 .hero {
        background: #fff
    }
}

/* White footer */

body[class*="home-layout-"] .footer {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    color: var(--ink);
}

body[class*="home-layout-"] .footer h4 {
    color: var(--ink);
}

body[class*="home-layout-"] .footer .footer-brand:not(.logo-image-only)>span:last-child {
    color: var(--primary) !important;
}

/* Theme-matched CTA */

body[class*="home-layout-"] .cta {
    background: var(--primary-dark);
}

body[class*="home-layout-"] .cta::before {
    display: none;
}

body[class*="home-layout-"] .cta-box h2 {
    color: #fff;
}

body[class*="home-layout-"] .cta .btn-white {
    background: #fff;
    border-color: #fff;
    color: var(--primary-dark);
}

body[class*="home-layout-"] .cta .btn-white:hover {
    background: var(--primary-soft);
    border-color: var(--primary-soft);
    color: var(--primary-dark);
}

body[class*="home-layout-"] .cta .btn-ghost-light {
    background: transparent;
    border-color: rgba(255, 255, 255, .65);
    color: #fff;
}

body[class*="home-layout-"] .cta .btn-ghost-light:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    color: #fff;
}

/* Unified dynamic theme colors */

body[class*="home-layout-"] .progress {
    background: var(--primary);
}

body[class*="home-layout-"] .hero-badge {
    color: var(--primary-dark);
    border-color: color-mix(in srgb, var(--primary) 24%, #e2e8f0);
}

body[class*="home-layout-"] .hero-badge-dot,
body[class*="home-layout-"] .hero-btns .btn-o,
body[class*="home-layout-"] .step-num,
body[class*="home-layout-"] .price-badge {
    background: var(--primary);
    border-color: var(--primary);
}

body[class*="home-layout-"] .hero h1 span,
body[class*="home-layout-"] .hsp-eyebrow,
body[class*="home-layout-"] .svc-link,
body[class*="home-layout-"] .price-amount,
body[class*="home-layout-"] .price-check,
body[class*="home-layout-"] .faq-ch,
body[class*="home-layout-"] .trust-links>a>svg {
    color: var(--primary);
}

body[class*="home-layout-"] .hero-btns .btn-o:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.hsp-secure {
    color: var(--primary-dark);
    background: var(--primary-soft);
    border-color: color-mix(in srgb, var(--primary) 22%, #e2e8f0);
}

.hsp-service .hsp-icon,
.hsp-service:nth-child(2) .hsp-icon,
.hsp-service:nth-child(3) .hsp-icon,
body[class*="home-layout-"] .svc .svc-icon,
body[class*="home-layout-"] .svc:nth-child(3n+2) .svc-icon,
body[class*="home-layout-"] .svc:nth-child(3n) .svc-icon,
body[class*="home-layout-"] .why .why-icon,
body[class*="home-layout-"] .why:nth-child(1) .why-icon,
body[class*="home-layout-"] .why:nth-child(2) .why-icon,
body[class*="home-layout-"] .why:nth-child(3) .why-icon,
body[class*="home-layout-"] .why:nth-child(4) .why-icon,
body[class*="home-layout-"] .why:nth-child(5) .why-icon {
    color: var(--primary);
    background: var(--primary-soft);
}

body[class*="home-layout-"] .svc:hover .svc-icon,
body[class*="home-layout-"] .why:hover .why-icon {
    color: #fff;
    background: var(--primary);
}

body[class*="home-layout-"] .price-card:nth-child(1)::before,
body[class*="home-layout-"] .price-card:nth-child(2)::before,
body[class*="home-layout-"] .price-card:nth-child(3)::before,
body[class*="home-layout-"] .price-card:nth-child(4)::before {
    background: var(--primary);
}

body[class*="home-layout-"] .price-card:nth-child(2) {
    border-color: var(--primary);
    box-shadow: 0 10px 28px color-mix(in srgb, var(--primary) 10%, transparent);
}

body[class*="home-layout-"] .sec-tag {
    color: var(--primary-dark);
    border-color: color-mix(in srgb, var(--primary) 22%, #e2e8f0);
}

/* Solid black for normal body text */

body[class*="home-layout-"] .nav,
body[class*="home-layout-"] p,
body[class*="home-layout-"] .hero-sub,
body[class*="home-layout-"] .hero-assurance span,
body[class*="home-layout-"] .hsp-copy small,
body[class*="home-layout-"] .hsp-footer>span,
body[class*="home-layout-"] .trust-label,
body[class*="home-layout-"] .trust-links small,
body[class*="home-layout-"] .sec-head p,
body[class*="home-layout-"] .svc p,
body[class*="home-layout-"] .why p,
body[class*="home-layout-"] .step p,
body[class*="home-layout-"] .price-period,
body[class*="home-layout-"] .price-extra-label,
body[class*="home-layout-"] .price-list li,
body[class*="home-layout-"] .faq p,
body[class*="home-layout-"] .footer-desc,
body[class*="home-layout-"] .footer a,
body[class*="home-layout-"] .footer span {
    color: #000 !important;
}

/* Compact vertical spacing */

body[class*="home-layout-"] .hero,
body.home-layout-theme2 .hero {
    min-height: 600px;
    padding: 108px 0 48px;
}

body[class*="home-layout-"] .section {
    padding: 56px 0;
}

body[class*="home-layout-"] .sec-head {
    margin-bottom: 32px;
}

body[class*="home-layout-"] #faq {
    padding-bottom: 48px;
}

body[class*="home-layout-"] .cta-box {
    padding: 46px 0;
}

body[class*="home-layout-"] #contact {
    padding-top: 56px;
    padding-bottom: 56px;
}

@media(max-width:760px) {
    body[class*="home-layout-"] .hero,
    body.home-layout-theme2 .hero {
        min-height: auto;
        padding: 92px 0 42px;
    }
    body[class*="home-layout-"] .section {
        padding: 46px 0;
    }
    body[class*="home-layout-"] .sec-head {
        margin-bottom: 26px;
    }
    body[class*="home-layout-"] #faq,
    body[class*="home-layout-"] #contact {
        padding-top: 46px;
        padding-bottom: 46px;
    }
}

/* Retailer is the featured plan */

body[class*="home-layout-"] .price-card:nth-child(1) {
    border-color: var(--primary);
    box-shadow: 0 10px 28px color-mix(in srgb, var(--primary) 10%, transparent);
}

body[class*="home-layout-"] .price-card:nth-child(2) {
    border-color: #dfe6ee;
    box-shadow: none;
}

body[class*="home-layout-"] .footer a,
body[class*="home-layout-"] .footer-grid>div>span,
body[class*="home-layout-"] .footer-desc {
    color: var(--muted);
}

body[class*="home-layout-"] .footer a:hover {
    color: var(--primary);
}

body[class*="home-layout-"] .footer-bottom {
    border-top-color: #e2e8f0;
}

body[class*="home-layout-"] .footer-bottom span {
    color: var(--muted);
}

body[class*="home-layout-"] .footer,
body[class*="home-layout-"] .footer h4,
body[class*="home-layout-"] .footer a,
body[class*="home-layout-"] .footer a:hover,
body[class*="home-layout-"] .footer span,
body[class*="home-layout-"] .footer p,
body[class*="home-layout-"] .footer .footer-brand:not(.logo-image-only)>span:last-child,
body[class*="home-layout-"] .footer-bottom span {
    color: #000 !important;
}

body[class*="home-layout-"] .footer .footer-brand:not(.logo-image-only)>span:last-child {
    color: var(--primary) !important;
}