:root {
    --bg: #f6f7f4;
    --surface: #ffffff;
    --surface-strong: #ffffff;
    --surface-tint: #eff5f8;
    --line: rgba(16, 33, 51, 0.09);
    --line-strong: rgba(16, 33, 51, 0.16);
    --text: #102133;
    --muted: #5a6877;
    --muted-strong: #314252;
    --navy: #14385f;
    --navy-deep: #0f2842;
    --teal: #218e94;
    --sky: #8db9dd;
    --amber: #d89a37;
    --shadow-lg: 0 22px 52px rgba(14, 30, 45, 0.08);
    --shadow-md: 0 14px 32px rgba(14, 30, 45, 0.07);
    --shadow-sm: 0 8px 18px rgba(14, 30, 45, 0.05);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(141, 185, 221, 0.12), transparent 24rem),
        linear-gradient(180deg, #fbfcfa 0%, var(--bg) 48%, #f3f5f1 100%);
    color: var(--text);
    font: 400 1rem/1.68 "Public Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

ul {
    margin-bottom: 0;
    padding-left: 1.15rem;
}

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

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.section-shell {
    padding: 4.5rem 0;
}

.section-kicker,
.module-label,
.plan-name,
.panel-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 44rem;
    margin-bottom: 2.25rem;
}

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

.section-heading h2,
.module-copy h3,
.faq-item h3,
.benefit-card h3,
.snapshot-card h3,
.surface-card h3,
.pricing-card h3,
.contact-card h2,
.hero-copy h1 {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.04em;
}

.section-heading h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.85rem, 3.5vw, 2.95rem);
    line-height: 1.08;
}

.trust-grid h2,
.contact-card h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    line-height: 1.1;
}

.section-heading p,
.module-copy p,
.benefit-card p,
.surface-card p,
.faq-item p,
.pricing-card p,
.hero-copy p,
.footer-copy,
.footer-meta p {
    color: var(--muted);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.8rem 1.3rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    color: #fff;
    box-shadow: 0 12px 26px rgba(18, 52, 91, 0.17);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(18, 52, 91, 0.16);
    color: var(--navy);
}

.button-tertiary {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(18, 52, 91, 0.12);
    color: var(--navy);
}

.button-large {
    min-height: 3.1rem;
    padding: 0.82rem 1.38rem;
}

.announcement-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
}

.announcement-inner {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
}

.announcement-inner p {
    margin-bottom: 0;
    color: inherit;
}

.announcement-inner a {
    font-weight: 700;
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
}

.main-nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy-deep);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 0.8rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(18, 52, 91, 0.18);
}

.nav-links,
.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links {
    justify-content: center;
    color: var(--muted-strong);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(18, 52, 91, 0.12);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.75);
}

.nav-toggle span {
    display: block;
    width: 1.2rem;
    height: 2px;
    margin: 0.24rem auto;
    background: var(--navy);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-scrolled::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(250, 252, 249, 0.9);
    box-shadow: 0 10px 24px rgba(14, 30, 45, 0.06);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 1.2rem 0 3.2rem;
    background:
        radial-gradient(circle at 78% 20%, rgba(58, 110, 184, 0.22), transparent 24rem),
        radial-gradient(circle at 18% 22%, rgba(33, 142, 148, 0.12), transparent 22rem),
        linear-gradient(135deg, #08172d 0%, #0b2240 54%, #0d2340 100%);
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    background: rgba(7, 20, 38, 0.28);
    box-shadow: 0 28px 64px rgba(5, 14, 28, 0.24);
}

.hero-carousel-track {
    position: relative;
    min-height: clamp(22rem, 48vw, 46rem);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    z-index: 2;
    display: flex;
    gap: 0.55rem;
    transform: translateX(-50%);
}

.hero-carousel-dot {
    width: 0.72rem;
    height: 0.72rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-carousel-dot.is-active {
    background: #2fd36b;
    transform: scale(1.12);
}

.site-footer h2 {
    margin-bottom: 0.25rem;
    font-size: 0.98rem;
    font-weight: 800;
}

.trust-band {
    padding: 0.5rem 0 0;
}

.trust-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr);
    align-items: center;
}

.industry-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.industry-chips span {
    padding: 0.72rem 0.95rem;
    border: 1px solid rgba(18, 52, 91, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--muted-strong);
    font-weight: 600;
    font-size: 0.95rem;
}

.overview-grid,
.benefits-grid,
.faq-grid {
    display: grid;
    gap: 1rem;
}

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

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

.surface-card,
.benefit-card,
.faq-item,
.snapshot-card,
.pricing-card,
.contact-card {
    border: 1px solid rgba(18, 52, 91, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.surface-card,
.benefit-card,
.faq-item,
.snapshot-card {
    padding: 1.4rem;
}

.surface-card h3,
.benefit-card h3,
.snapshot-card h3,
.faq-item h3 {
    margin-bottom: 0.65rem;
    font-size: 1.15rem;
    line-height: 1.2;
}

.module-list {
    display: grid;
    gap: 1.25rem;
}

.module-block {
    display: grid;
    gap: 1.75rem;
    align-items: center;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.module-block-reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.module-block-reverse .module-visual {
    order: 2;
}

.module-block-reverse .module-copy {
    order: 1;
}

.module-visual {
    padding: clamp(1rem, 2vw, 1.5rem);
    border: 1px solid rgba(18, 52, 91, 0.12);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 248, 0.94)),
        linear-gradient(135deg, rgba(141, 185, 221, 0.08), rgba(33, 142, 148, 0.04));
    box-shadow: var(--shadow-md);
}

.module-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.module-copy {
    padding: 0.4rem 0;
}

.module-copy h3 {
    max-width: 16ch;
    margin-bottom: 0.9rem;
    font-size: clamp(1.7rem, 2.8vw, 2.35rem);
    line-height: 1.08;
}

.feature-list {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 1.2rem;
}

.feature-list li {
    color: var(--muted-strong);
}

.module-note {
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(18, 52, 91, 0.05);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.55;
}

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

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 1.55rem;
}

.pricing-card-featured {
    background: linear-gradient(180deg, rgba(18, 52, 91, 0.98), rgba(20, 74, 101, 0.98));
    color: #fff;
    transform: translateY(-0.15rem);
    box-shadow: 0 22px 44px rgba(18, 52, 91, 0.18);
}

.pricing-card-featured .plan-name,
.pricing-card-featured h3,
.pricing-card-featured p,
.pricing-card-featured li {
    color: rgba(255, 255, 255, 0.92);
}

.plan-audience {
    min-height: 4.4rem;
    margin-bottom: 0.9rem;
}

.plan-price {
    margin: -0.15rem 0 0.75rem;
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.plan-period {
    margin-left: 0.25rem;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0;
}

.pricing-list {
    display: grid;
    gap: 0.8rem;
    flex: 1 1 auto;
    margin: 0 0 1.25rem;
}

.pricing-list li {
    color: var(--muted-strong);
}

.pricing-card-featured .button-primary {
    background: #fff;
    color: var(--navy);
}

.pricing-card-featured .plan-price,
.pricing-card-featured .plan-period {
    color: #fff;
}

.contact-section {
    padding: 0.5rem 0 5rem;
}

.contact-card {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    padding: 1.6rem;
    background:
        radial-gradient(circle at top right, rgba(141, 185, 221, 0.14), transparent 18rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 248, 0.98));
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    justify-content: center;
}

.site-footer {
    padding: 3.5rem 0 2rem;
    background: linear-gradient(180deg, var(--navy-deep), #0b2038);
    color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.3fr 0.7fr 0.7fr 0.8fr;
}

.footer-brand {
    color: #fff;
}

.footer-copy {
    max-width: 28rem;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
    margin-bottom: 1rem;
    color: #fff;
}

.site-footer ul {
    display: grid;
    gap: 0.75rem;
    padding-left: 0;
    list-style: none;
}

.site-footer li a {
    color: rgba(255, 255, 255, 0.72);
}

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

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-meta p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.92rem;
}

.legal-body {
    min-height: 100vh;
}

.legal-shell {
    padding: 4.5rem 0 5rem;
}

.legal-card {
    max-width: 54rem;
    margin: 0 auto;
    padding: clamp(1.6rem, 4vw, 3rem);
    border: 1px solid rgba(18, 52, 91, 0.12);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-md);
}

.legal-card h1 {
    margin-bottom: 0.8rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
}

.legal-card h2 {
    margin: 2rem 0 0.8rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
}

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

@media (max-width: 1080px) {
    .module-block,
    .module-block-reverse,
    .contact-card,
    .trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .module-block-reverse .module-visual,
    .module-block-reverse .module-copy {
        order: initial;
    }

    .pricing-grid,
    .overview-grid,
    .benefits-grid,
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }

    .main-nav {
        grid-template-columns: auto auto;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: inline-block;
        justify-self: end;
    }

    .site-header.menu-open .nav-links,
    .site-header.menu-open .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        grid-column: 1 / -1;
        padding: 1rem;
        border: 1px solid rgba(18, 52, 91, 0.12);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.9);
        box-shadow: var(--shadow-sm);
    }

    .site-header.menu-open .nav-links {
        gap: 0.75rem;
    }

    .site-header.menu-open .nav-actions {
        gap: 0.75rem;
        padding-top: 0;
        border-top: 0;
    }
}

@media (max-width: 720px) {
    .announcement-inner,
    .hero-actions,
    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-grid,
    .overview-grid,
    .benefits-grid,
    .faq-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding-bottom: 2.6rem;
    }

    .section-shell {
        padding: 3.5rem 0;
    }

    .hero-carousel {
        border-radius: 20px;
    }

    .module-copy h3,
    .section-heading h2,
    .contact-card h2 {
        font-size: clamp(1.55rem, 7vw, 2.1rem);
    }

    .contact-card,
    .pricing-card {
        padding: 1.35rem;
    }

    .section-heading p,
    .module-copy p,
    .benefit-card p,
    .surface-card p,
    .faq-item p,
    .pricing-card p {
        font-size: 0.98rem;
    }

    .industry-chips span {
        width: 100%;
        text-align: center;
    }
}
