:root {
    --primary: #1357d8;
    --primary-dark: #0b3fae;
    --primary-soft: #eaf1ff;
    --navy: #09254a;
    --navy-2: #0b3265;
    --accent: #f27a24;
    --accent-dark: #d85d0b;
    --success: #16835f;
    --danger: #b42318;
    --danger-soft: #fff1f0;
    --background: #f7f9fc;
    --surface: #ffffff;
    --surface-blue: #f0f5ff;
    --text: #14243a;
    --text-muted: #5b687a;
    --border: #dce4ef;
    --border-strong: #b8c8dc;
    --shadow-sm: 0 4px 16px rgba(9, 37, 74, 0.07);
    --shadow-md: 0 18px 50px rgba(9, 37, 74, 0.13);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --container: 1180px;
    --transition: 180ms ease;
}

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

[hidden] {
    display: none !important;
}

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

body {
    margin: 0;
    color: var(--text);
    background: var(--surface);
    font-family: "Manrope", "Segoe UI", Arial, 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: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
}

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

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

:focus-visible {
    outline: 3px solid rgba(242, 122, 36, 0.42);
    outline-offset: 3px;
}

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

h1,
h2,
h3 {
    color: var(--navy);
    line-height: 1.18;
    letter-spacing: -0.035em;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 5vw, 3.75rem);
    font-weight: 800;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(1.9rem, 3.8vw, 2.65rem);
    font-weight: 750;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
}

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

.section {
    padding: 88px 0;
}

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

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

.section--navy {
    color: #dce9fa;
    background: var(--navy);
}

.section--navy h2,
.section--navy h3 {
    color: #fff;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

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

.section-heading--left {
    margin-inline: 0;
    text-align: left;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.eyebrow--light {
    color: #bcd4ff;
}

.lead {
    color: var(--text-muted);
    font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.muted {
    color: var(--text-muted);
}

.spacing-top {
    margin-top: 20px;
}

.spacing-top-small {
    margin-top: 15px;
}

.spacing-bottom {
    margin-bottom: 22px;
}

.form-section-heading {
    margin-top: 44px;
}

.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;
}

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

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

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: 76px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(220, 228, 239, 0.85);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.brand:hover {
    color: var(--navy);
}

.brand > span > span {
    color: var(--primary);
}

.brand b {
    color: var(--accent);
    font-weight: 800;
}

.brand-icon {
    display: grid;
    width: 38px;
    height: 38px;
    color: #fff;
    background: var(--primary);
    border-radius: 11px;
    place-items: center;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(15px, 1.8vw, 28px);
}

.main-nav > a:not(.button) {
    position: relative;
    color: #314258;
    font-size: 0.91rem;
    font-weight: 650;
    white-space: nowrap;
}

.main-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--primary);
    content: "";
    transform: scaleX(0);
    transition: transform var(--transition);
}

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

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    color: var(--navy);
    background: var(--surface-blue);
    border: 0;
    border-radius: 12px;
    cursor: pointer;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 21px;
    color: var(--text);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

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

.button--primary {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 9px 24px rgba(19, 87, 216, 0.23);
}

.button--primary:hover {
    color: #fff;
    background: var(--primary-dark);
    box-shadow: 0 13px 28px rgba(19, 87, 216, 0.28);
}

.button--accent {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 9px 24px rgba(242, 122, 36, 0.24);
}

.button--accent:hover {
    color: #fff;
    background: var(--accent-dark);
}

.button--outline {
    color: var(--primary);
    background: #fff;
    border-color: var(--border-strong);
}

.button--outline:hover {
    color: var(--primary-dark);
    border-color: var(--primary);
}

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

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

.button--ghost-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.38);
}

.button--ghost-light:hover {
    color: #fff;
    border-color: #fff;
}

.button--block {
    width: 100%;
}

.button[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.nav-cta {
    min-height: 44px;
    padding: 10px 17px;
    font-size: 0.9rem;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 78px;
    background:
        radial-gradient(circle at 8% 15%, rgba(75, 139, 255, 0.24), transparent 29%),
        radial-gradient(circle at 93% 12%, rgba(242, 122, 36, 0.16), transparent 24%),
        linear-gradient(125deg, #061a34 0%, #0a2a55 56%, #0b3265 100%);
}

.hero::before {
    position: absolute;
    top: 70px;
    left: 50%;
    width: 920px;
    height: 420px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.17) 1px, transparent 1px);
    background-size: 22px 22px;
    content: "";
    mask-image: linear-gradient(to right, transparent, #000, transparent);
    opacity: 0.42;
    transform: translateX(-50%);
}

.hero-grid {
    position: relative;
    display: grid;
    align-items: center;
    gap: 68px;
    grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
}

.hero-copy {
    max-width: 690px;
}

.hero-copy h1 {
    color: #fff;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 12px;
    color: #dceaff;
    background: rgba(75, 139, 255, 0.14);
    border: 1px solid rgba(174, 203, 255, 0.28);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 750;
}

.hero-copy h1 span {
    color: #82adff;
}

.hero-copy .lead {
    max-width: 650px;
    margin-bottom: 28px;
    color: #c8d8ed;
}

.email-example {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 11px 15px;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-weight: 700;
}

.email-example i {
    color: var(--accent);
}

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

.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin: 0;
    color: #d9e6f6;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.hero-note i {
    color: #6ee0b7;
}

.mail-visual {
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(184, 200, 220, 0.75);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    transform: rotate(1deg);
}

.mail-window {
    overflow: hidden;
    background: #fff;
    border-radius: 19px;
}

.mail-toolbar {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 46px;
    padding: 0 16px;
    background: #f3f6fb;
    border-bottom: 1px solid var(--border);
}

.mail-toolbar span {
    width: 9px;
    height: 9px;
    background: #b9c5d4;
    border-radius: 50%;
}

.mail-toolbar span:first-child {
    background: #ff8b55;
}

.mail-toolbar span:nth-child(2) {
    background: #ffc45d;
}

.mail-toolbar span:nth-child(3) {
    background: #62c795;
}

.mail-body {
    display: grid;
    min-height: 340px;
    grid-template-columns: 82px 1fr;
}

.mail-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 21px;
    padding: 25px 12px;
    color: #7990ad;
    background: #f7f9fd;
    border-right: 1px solid var(--border);
}

.mail-sidebar i:first-child {
    display: grid;
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--primary);
    border-radius: 12px;
    place-items: center;
}

.mail-content {
    padding: 27px 28px;
}

.mail-content__label {
    margin-bottom: 9px;
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mail-address {
    margin-bottom: 22px;
    color: var(--navy);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 800;
    word-break: break-word;
}

.mail-content h3 {
    margin-bottom: 7px;
    font-size: 1.07rem;
}

.mail-content p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.mail-feature-grid {
    display: grid;
    gap: 10px;
    margin-top: 23px;
    grid-template-columns: repeat(2, 1fr);
}

.mail-feature-grid span {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px;
    color: #314258;
    background: var(--background);
    border-radius: 9px;
    font-size: 0.78rem;
    font-weight: 700;
}

.mail-feature-grid i {
    color: var(--primary);
}

.floating-badge {
    position: absolute;
    right: -17px;
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 13px;
    box-shadow: var(--shadow-md);
    font-size: 0.83rem;
    font-weight: 750;
}

.floating-badge i {
    color: var(--success);
}

.trust-strip {
    background: var(--navy);
}

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

.trust-grid > div {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #eaf2ff;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    font-weight: 650;
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid i {
    color: #6aa0ff;
    font-size: 1.05rem;
}

.feature-grid,
.value-grid,
.steps-grid,
.audience-grid,
.domain-grid {
    display: grid;
    gap: 22px;
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

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

.steps-grid {
    grid-template-columns: repeat(3, 1fr);
}

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

.domain-grid {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.value-card,
.step-card,
.audience-card,
.domain-card {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.feature-card p,
.value-card p,
.step-card p,
.audience-card p,
.domain-card p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.icon-box {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 13px;
    font-size: 1.15rem;
    place-items: center;
}

.step-number {
    display: inline-grid;
    width: 38px;
    height: 38px;
    margin-bottom: 19px;
    color: #fff;
    background: var(--primary);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
    place-items: center;
}

.comparison {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    grid-template-columns: 1fr 1fr;
}

.comparison > article {
    padding: 38px;
    background: #fff;
}

.comparison > article:last-child {
    background: var(--surface-blue);
}

.comparison-address {
    display: block;
    margin: 16px 0 24px;
    padding: 13px 16px;
    color: var(--navy);
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-weight: 800;
    word-break: break-word;
}

.comparison > article:last-child .comparison-address {
    color: var(--primary-dark);
    background: #fff;
    border-color: #bfd3fb;
}

.check-list,
.feature-list,
.footer-grid ul,
.summary-list,
.legal-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li,
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.check-list i,
.feature-list i {
    margin-top: 5px;
    color: var(--success);
    font-size: 0.85rem;
}

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

.plan-card {
    position: relative;
    display: flex;
    padding: 34px;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.plan-card.is-featured {
    border-color: #9ab9f5;
    box-shadow: 0 20px 55px rgba(19, 87, 216, 0.14);
}

.plan-card h3 {
    margin-bottom: 23px;
    font-size: 1.55rem;
}

.plan-price {
    display: flex;
    margin-bottom: 9px;
    flex-direction: column;
    color: var(--text-muted);
    font-size: 0.83rem;
}

.plan-price strong {
    margin: 2px 0;
    color: var(--navy);
    font-size: 2.15rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.tax-note {
    color: var(--success);
    font-size: 0.88rem;
    font-weight: 700;
}

.plan-card .feature-list {
    padding: 24px 0;
    margin: 20px 0 26px;
    flex: 1;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.plan-card .feature-list li {
    font-size: 0.94rem;
}

.pricing-disclaimer {
    max-width: 780px;
    margin: 22px auto 0;
    color: var(--text-muted);
    font-size: 0.84rem;
    text-align: center;
}

.split-grid {
    display: grid;
    align-items: center;
    gap: 70px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-panel {
    padding: 35px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.service-panel__row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
}

.service-panel__row:last-child {
    border-bottom: 0;
}

.service-panel__row .icon-box {
    width: 43px;
    height: 43px;
    margin: 0;
    flex: 0 0 auto;
}

.service-panel__row strong,
.service-panel__row span {
    display: block;
}

.service-panel__row span {
    color: var(--text-muted);
    font-size: 0.86rem;
}

.cta-band {
    padding: 70px 0;
    color: #dbe8fb;
    background:
        radial-gradient(circle at 85% 10%, rgba(67, 130, 246, 0.32), transparent 25%),
        linear-gradient(120deg, var(--navy), var(--navy-2));
}

.cta-band h2 {
    max-width: 720px;
    margin-bottom: 12px;
    color: #fff;
}

.cta-band p {
    max-width: 720px;
    margin-bottom: 0;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-band__actions {
    display: flex;
    min-width: 250px;
    flex-direction: column;
    gap: 10px;
}

.page-hero {
    padding: 68px 0 58px;
    background:
        radial-gradient(circle at 82% 12%, rgba(75, 139, 255, 0.24), transparent 28%),
        radial-gradient(circle at 10% 90%, rgba(242, 122, 36, 0.12), transparent 24%),
        linear-gradient(125deg, #061a34 0%, #0a2a55 58%, #0b3265 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero__inner {
    max-width: 820px;
}

.page-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 5vw, 3.35rem);
    color: #fff;
}

.page-hero p {
    max-width: 760px;
    margin-bottom: 26px;
    color: #c8d8ed;
    font-size: 1.12rem;
}

.page-hero .eyebrow {
    color: #8db5ff;
}

.breadcrumbs {
    padding-top: 24px;
}

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

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.83rem;
}

.breadcrumbs i {
    color: #9aa8ba;
    font-size: 0.65rem;
}

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

.faq-item {
    margin-bottom: 13px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 13px;
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    position: relative;
    padding: 21px 54px 21px 22px;
    color: var(--navy);
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary::after {
    position: absolute;
    top: 19px;
    right: 21px;
    width: 28px;
    height: 28px;
    color: var(--primary);
    font-family: "Font Awesome 6 Free";
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 28px;
    text-align: center;
    content: "\2b";
}

.faq-item[open] summary::after {
    content: "\f068";
}

.faq-answer {
    padding: 0 22px 22px;
    color: var(--text-muted);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    align-items: start;
    gap: 38px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
}

.form-card,
.contact-card,
.quote-shell,
.order-shell,
.success-card {
    padding: clamp(24px, 4vw, 40px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

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

.field label,
.field-label {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 750;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field textarea {
    min-height: 135px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(19, 87, 216, 0.1);
    outline: 0;
}

.field small {
    color: var(--text-muted);
    font-size: 0.78rem;
}

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

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

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 17px;
    margin-bottom: 24px;
    border: 1px solid;
    border-radius: 11px;
    font-size: 0.9rem;
}

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

.alert--error {
    color: #7a2019;
    background: var(--danger-soft);
    border-color: #ffc8c3;
}

.alert--success {
    color: #0b6246;
    background: #eaf9f3;
    border-color: #a8e4ce;
}

.contact-options {
    display: grid;
    gap: 13px;
}

.contact-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    color: var(--text);
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.contact-option i {
    width: 22px;
    margin-top: 4px;
    color: var(--primary);
    text-align: center;
}

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

.contact-option span {
    color: var(--text-muted);
    font-size: 0.84rem;
}

.quote-page {
    min-height: calc(100vh - 76px);
    padding: 54px 0 80px;
    background: var(--background);
}

.quote-layout {
    display: grid;
    align-items: start;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) 330px;
}

.quote-header {
    margin-bottom: 30px;
    padding: clamp(25px, 4vw, 38px);
    color: #dce9fa;
    background:
        radial-gradient(circle at 88% 15%, rgba(75, 139, 255, 0.22), transparent 27%),
        linear-gradient(125deg, #061a34, #0b3265);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.quote-header h1 {
    margin-bottom: 9px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.quote-header p {
    margin-bottom: 0;
    color: #c8d8ed;
}

.quote-header .eyebrow {
    color: #8db5ff;
}

.progress-wrap {
    margin-bottom: 34px;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 9px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.progress-track {
    overflow: hidden;
    height: 8px;
    background: #e4eaf2;
    border-radius: 999px;
}

.progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: inherit;
}

.progress-bar::-webkit-progress-bar {
    background: #e4eaf2;
    border-radius: 999px;
}

.progress-bar::-webkit-progress-value {
    background: linear-gradient(90deg, var(--primary), #4b8bff);
    border-radius: 999px;
    transition: width 260ms ease;
}

.progress-bar::-moz-progress-bar {
    background: linear-gradient(90deg, var(--primary), #4b8bff);
    border-radius: 999px;
}

.quote-step h2 {
    margin-bottom: 9px;
    font-size: 1.65rem;
}

.step-intro {
    margin-bottom: 25px;
    color: var(--text-muted);
}

.quantity-control {
    display: flex;
    max-width: 340px;
    align-items: stretch;
    margin: 30px 0;
}

.quantity-control button {
    width: 54px;
    color: var(--primary);
    background: var(--primary-soft);
    border: 1px solid #bed0f3;
    font-size: 1.1rem;
    cursor: pointer;
}

.quantity-control button:first-child {
    border-radius: 12px 0 0 12px;
}

.quantity-control button:last-child {
    border-radius: 0 12px 12px 0;
}

.quantity-control input {
    width: 130px;
    min-height: 58px;
    color: var(--navy);
    background: #fff;
    border: solid var(--border-strong);
    border-width: 1px 0;
    font-size: 1.3rem;
    font-weight: 800;
    text-align: center;
}

.option-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-grid--hosting {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tld-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tld-option .option-card__body {
    min-height: 78px;
    padding: 13px 14px;
}

.tld-option .option-card__title {
    margin-bottom: 3px;
}

.tld-option .option-card__description {
    font-size: 0.72rem;
    line-height: 1.35;
}

.tld-option .option-card__price {
    font-size: 0.84rem;
}

.home-quote .quote-layout {
    text-align: left;
}

.option-card {
    position: relative;
    display: block;
    min-height: 100%;
    cursor: pointer;
}

.option-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.option-card__body {
    display: flex;
    height: 100%;
    min-height: 122px;
    padding: 21px;
    flex-direction: column;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 14px;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.option-card input:checked + .option-card__body {
    background: #f4f8ff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(19, 87, 216, 0.08);
}

.option-card input:focus-visible + .option-card__body {
    outline: 3px solid rgba(242, 122, 36, 0.42);
    outline-offset: 3px;
}

.option-card__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 7px;
    color: var(--navy);
    font-weight: 800;
}

.option-card__price {
    color: var(--primary);
    font-weight: 800;
}

.option-card__description {
    color: var(--text-muted);
    font-size: 0.84rem;
}

.quote-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 30px;
    margin-top: 32px;
    border-top: 1px solid var(--border);
}

.live-summary {
    position: sticky;
    top: 102px;
    padding: 26px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.live-summary h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.25rem;
}

.live-summary dl,
.summary-totals {
    margin: 0;
}

.live-summary dl > div,
.summary-totals > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
}

.live-summary dt,
.live-summary dd,
.summary-totals dt,
.summary-totals dd {
    margin: 0;
}

.live-summary dt {
    color: #aebfd7;
    font-size: 0.83rem;
}

.live-summary dd {
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    text-align: right;
}

.live-summary .live-total {
    padding-top: 19px;
    margin-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.live-summary .live-total dt,
.live-summary .live-total dd {
    color: #fff;
    font-size: 1.12rem;
    font-weight: 800;
}

.live-summary__note {
    padding-top: 15px;
    margin: 12px 0 0;
    color: #aebfd7;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
}

.summary-card {
    padding: 28px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 15px;
}

.summary-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.summary-code span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.summary-code strong {
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
}

.summary-list li span:first-child {
    color: var(--text-muted);
}

.summary-list li span:last-child {
    font-weight: 700;
    text-align: right;
}

.summary-totals {
    padding-top: 14px;
}

.summary-totals > div {
    border-bottom: 1px solid var(--border);
}

.summary-totals dd {
    font-weight: 750;
}

.summary-totals .summary-total {
    padding: 17px 0;
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 800;
}

.conversion-actions {
    display: grid;
    gap: 12px;
    margin-top: 25px;
    grid-template-columns: repeat(3, 1fr);
}

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

.action-card {
    display: flex;
    min-height: 142px;
    padding: 20px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.action-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.action-card i {
    color: var(--primary);
    font-size: 1.45rem;
}

.action-card--buy {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.action-card--buy i {
    color: #fff;
}

.action-card--whatsapp i {
    color: #158a5c;
}

.action-card small {
    color: inherit;
    font-size: 0.74rem;
    font-weight: 500;
    opacity: 0.82;
}

.order-summary {
    margin-bottom: 28px;
}

.account-fields {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.account-row {
    display: grid;
    align-items: end;
    gap: 12px;
    grid-template-columns: 85px 1fr minmax(180px, 0.8fr);
}

.account-number {
    padding-bottom: 14px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.account-preview {
    min-height: 50px;
    padding: 12px 14px;
    overflow: hidden;
    color: var(--primary-dark);
    background: var(--primary-soft);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-overflow: ellipsis;
}

.payment-options {
    display: grid;
    gap: 13px;
    margin-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.success-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    display: grid;
    width: 76px;
    height: 76px;
    margin: 0 auto 23px;
    color: #fff;
    background: var(--success);
    border-radius: 50%;
    font-size: 1.8rem;
    place-items: center;
}

.success-code {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px 0 25px;
    color: var(--primary-dark);
    background: var(--primary-soft);
    border-radius: 10px;
    font-weight: 800;
}

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

.legal-content {
    max-width: 860px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 38px;
    font-size: 1.55rem;
}

.legal-content h3 {
    margin-top: 25px;
    font-size: 1.15rem;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
}

.legal-content li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 9px;
}

.legal-content li::before {
    position: absolute;
    top: 10px;
    left: 3px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    content: "";
}

.site-footer {
    padding: 68px 0 24px;
    color: #aebfd3;
    background: #071d38;
}

.footer-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: 1.55fr 0.8fr 0.8fr 1.1fr;
}

.brand--footer {
    margin-bottom: 18px;
    color: #fff;
}

.brand--footer:hover {
    color: #fff;
}

.footer-brand p {
    max-width: 390px;
    font-size: 0.9rem;
}

.footer-trust {
    color: #dbe8f8;
    font-weight: 650;
}

.footer-trust i {
    margin-right: 7px;
    color: #6aa0ff;
}

.site-footer h2 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.footer-grid li {
    margin-bottom: 10px;
}

.footer-grid a {
    color: #aebfd3;
    font-size: 0.88rem;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    width: 18px;
    margin-top: 5px;
    color: #6aa0ff;
    text-align: center;
}

.footer-contact span {
    font-size: 0.88rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    margin-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.78rem;
}

@media (max-width: 1120px) {
    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .main-nav {
        position: fixed;
        top: 76px;
        right: 0;
        bottom: 0;
        left: 0;
        display: none;
        overflow-y: auto;
        padding: 25px 20px 40px;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        background: #fff;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav > a:not(.button) {
        padding: 14px 10px;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
    }

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

    .main-nav .nav-cta {
        margin-top: 15px;
    }

    .hero-grid {
        gap: 42px;
        grid-template-columns: 1fr 0.85fr;
    }

    .value-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .hero {
        padding-top: 62px;
    }

    .hero-grid,
    .split-grid,
    .contact-grid,
    .quote-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 760px;
    }

    .mail-visual {
        max-width: 590px;
        margin: 0 auto;
    }

    .feature-grid,
    .steps-grid,
    .domain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-grid,
    .option-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .live-summary {
        position: static;
        grid-row: 1;
    }

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

    .cta-band__actions {
        width: 100%;
        max-width: 430px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

    .site-header {
        height: 68px;
    }

    .main-nav {
        top: 68px;
    }

    .brand {
        font-size: 1.04rem;
    }

    .brand-icon {
        width: 36px;
        height: 36px;
    }

    .hero {
        padding: 48px 0 55px;
    }

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

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

    .hero-note {
        flex-direction: column;
        gap: 8px;
    }

    .mail-body {
        min-height: 300px;
        grid-template-columns: 48px 1fr;
    }

    .mail-sidebar {
        gap: 18px;
        padding: 20px 8px;
    }

    .mail-sidebar i:first-child {
        width: 34px;
        height: 34px;
    }

    .mail-content {
        padding: 23px 17px;
    }

    .mail-feature-grid {
        grid-template-columns: 1fr;
    }

    .mail-feature-grid span:nth-child(n+4) {
        display: none;
    }

    .floating-badge {
        right: 8px;
        bottom: 18px;
    }

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

    .trust-grid > div {
        min-height: 72px;
        padding: 10px;
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        font-size: 0.82rem;
    }

    .feature-grid,
    .value-grid,
    .steps-grid,
    .audience-grid,
    .domain-grid,
    .plans-grid,
    .comparison,
    .option-grid,
    .conversion-actions,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .tld-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card,
    .value-card,
    .step-card,
    .audience-card,
    .domain-card,
    .plan-card {
        padding: 24px;
    }

    .comparison > article {
        padding: 27px 23px;
    }

    .page-hero {
        padding: 47px 0 43px;
    }

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

    .quote-page {
        padding-top: 36px;
    }

    .quote-shell,
    .order-shell,
    .summary-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .quote-actions {
        flex-direction: column-reverse;
    }

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

    .conversion-actions {
        grid-template-columns: 1fr;
    }

    .action-card {
        min-height: 98px;
    }

    .account-row {
        grid-template-columns: 1fr;
    }

    .account-number {
        padding: 7px 0 0;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-brand {
        grid-column: auto;
    }

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
