:root {
    --tp-navy: #0b1f35;
    --tp-blue: #1268e8;
    --tp-blue-dark: #0b4fb8;
    --tp-mint: #22c7a9;
    --tp-ice: #eef6ff;
    --tp-text: #17324d;
    --tp-muted: #60748a;
    --tp-border: #dce7f2;
    --tp-white: #ffffff;
    --tp-shadow: 0 24px 70px rgba(16, 52, 86, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--tp-text);
    background: var(--tp-white);
    line-height: 1.65;
}

body::selection {
    background: rgba(18, 104, 232, 0.18);
}

a {
    color: var(--tp-blue);
}

.section-padding {
    padding: 96px 0;
}

.navbar {
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(220, 231, 242, 0.8);
    backdrop-filter: blur(18px);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--tp-navy);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: linear-gradient(135deg, var(--tp-blue), var(--tp-mint));
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(18, 104, 232, 0.26);
}

.nav-link {
    color: var(--tp-text);
    font-weight: 600;
}

.btn {
    border-radius: 14px;
    font-weight: 750;
    padding: 12px 20px;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--tp-blue), #1a7af5);
    border: 0;
    box-shadow: 0 14px 30px rgba(18, 104, 232, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--tp-blue-dark), var(--tp-blue));
    box-shadow: 0 16px 34px rgba(18, 104, 232, 0.3);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    padding: 150px 0 92px;
    background:
        radial-gradient(circle at 15% 10%, rgba(34, 199, 169, 0.16), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(18, 104, 232, 0.14), transparent 32%),
        linear-gradient(180deg, #f9fcff 0%, #eef6ff 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(18, 104, 232, 0.1);
    border-radius: 50%;
}

.hero::before {
    width: 520px;
    height: 520px;
    right: -240px;
    top: 80px;
}

.hero::after {
    width: 300px;
    height: 300px;
    left: -160px;
    bottom: -60px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 13px;
    color: #0d5fb1;
    background: rgba(18, 104, 232, 0.09);
    border: 1px solid rgba(18, 104, 232, 0.14);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    color: var(--tp-navy);
    font-size: clamp(2.7rem, 6vw, 5.3rem);
    font-weight: 850;
    letter-spacing: -0.055em;
    line-height: 0.99;
}

.hero h1 span {
    color: var(--tp-blue);
}

.hero-copy {
    max-width: 690px;
    color: var(--tp-muted);
    font-size: 1.16rem;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c4963;
    font-size: 0.94rem;
    font-weight: 700;
}

.trust-list i {
    color: var(--tp-mint);
    font-size: 1.1rem;
}

.hero-note {
    max-width: 640px;
    margin-top: 18px;
    color: #6b7f92;
    font-size: 0.82rem;
}

.form-card {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 28px;
    box-shadow: var(--tp-shadow);
}

.form-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    background: linear-gradient(145deg, rgba(18, 104, 232, 0.18), transparent 38%, rgba(34, 199, 169, 0.2));
    border-radius: inherit;
}

.form-card h2 {
    color: var(--tp-navy);
    font-size: 1.65rem;
    font-weight: 820;
    letter-spacing: -0.025em;
}

.form-card .lead {
    color: var(--tp-muted);
    font-size: 0.94rem;
}

.form-label {
    margin-bottom: 7px;
    color: #27455f;
    font-size: 0.85rem;
    font-weight: 750;
}

.form-control,
.form-select {
    min-height: 50px;
    color: var(--tp-text);
    border: 1px solid var(--tp-border);
    border-radius: 12px;
    background-color: #fbfdff;
}

textarea.form-control {
    min-height: 105px;
    resize: vertical;
}

.form-control:focus,
.form-select:focus {
    background: #fff;
    border-color: rgba(18, 104, 232, 0.55);
    box-shadow: 0 0 0 4px rgba(18, 104, 232, 0.1);
}

.form-check-label {
    color: #63778a;
    font-size: 0.78rem;
    line-height: 1.45;
}

.form-footer-note {
    margin: 12px 0 0;
    color: #718397;
    font-size: 0.76rem;
    text-align: center;
}

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

.metric-strip {
    position: relative;
    z-index: 3;
    margin-top: -48px;
}

.metric-panel {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--tp-border);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(18, 65, 105, 0.1);
}

.metric-item {
    padding: 8px 22px;
}

.metric-icon,
.feature-icon,
.step-number {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    color: var(--tp-blue);
    background: var(--tp-ice);
    border-radius: 16px;
    font-size: 1.35rem;
}

.metric-item h3 {
    margin: 0;
    color: var(--tp-navy);
    font-size: 1rem;
    font-weight: 800;
}

.metric-item p {
    margin: 3px 0 0;
    color: var(--tp-muted);
    font-size: 0.84rem;
}

.section-kicker {
    margin-bottom: 12px;
    color: var(--tp-blue);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title {
    max-width: 760px;
    margin-bottom: 16px;
    color: var(--tp-navy);
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 850;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.section-copy {
    max-width: 720px;
    color: var(--tp-muted);
    font-size: 1.02rem;
}

.step-card,
.feature-card {
    height: 100%;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--tp-border);
    border-radius: 22px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 104, 232, 0.28);
    box-shadow: 0 20px 46px rgba(16, 52, 86, 0.1);
}

.step-number {
    margin-bottom: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--tp-blue), var(--tp-mint));
    font-weight: 850;
}

.step-card h3,
.feature-card h3 {
    color: var(--tp-navy);
    font-size: 1.18rem;
    font-weight: 820;
}

.step-card p,
.feature-card p {
    margin-bottom: 0;
    color: var(--tp-muted);
    font-size: 0.92rem;
}

.soft-section {
    background: #f7fbff;
}

.feature-icon {
    margin-bottom: 18px;
}

.compliance-panel {
    overflow: hidden;
    background: var(--tp-navy);
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(6, 29, 52, 0.2);
}

.compliance-copy {
    padding: 50px;
    color: rgba(255, 255, 255, 0.78);
}

.compliance-copy h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 840;
    letter-spacing: -0.04em;
}

.compliance-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.compliance-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.compliance-list i {
    color: var(--tp-mint);
}

.compliance-side {
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 42px;
    background:
        radial-gradient(circle at 80% 20%, rgba(34, 199, 169, 0.28), transparent 32%),
        linear-gradient(145deg, rgba(18, 104, 232, 0.62), rgba(8, 41, 72, 0.15));
}

.compliance-badge {
    width: min(100%, 330px);
    padding: 30px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    backdrop-filter: blur(12px);
}

.compliance-badge i {
    font-size: 2.4rem;
}

.accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--tp-border) !important;
    border-radius: 16px !important;
}

.accordion-button {
    padding: 20px 22px;
    color: var(--tp-navy);
    font-weight: 780;
}

.accordion-button:not(.collapsed) {
    color: var(--tp-blue-dark);
    background: var(--tp-ice);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.final-cta {
    padding: 52px;
    background:
        radial-gradient(circle at 15% 0%, rgba(34, 199, 169, 0.2), transparent 34%),
        linear-gradient(135deg, #0b1f35, #0e3d69);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.78);
}

.final-cta h2 {
    color: #fff;
    font-weight: 850;
    letter-spacing: -0.04em;
}

footer {
    padding: 34px 0 92px;
    color: #6c7f91;
    border-top: 1px solid var(--tp-border);
    font-size: 0.84rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 1040;
    display: none;
    padding: 10px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(220, 231, 242, 0.9);
    border-radius: 18px;
    box-shadow: 0 16px 50px rgba(16, 52, 86, 0.18);
    backdrop-filter: blur(12px);
}

@media (max-width: 991.98px) {
    .hero {
        padding-top: 125px;
    }

    .form-card {
        margin-top: 44px;
    }

    .metric-strip {
        margin-top: 24px;
    }

    .compliance-copy {
        padding: 38px 28px;
    }

    .compliance-side {
        min-height: 340px;
    }
}

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

    .hero {
        min-height: auto;
        padding: 116px 0 74px;
    }

    .hero h1 {
        font-size: 3.15rem;
    }

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

    .metric-item {
        padding: 14px 8px;
    }

    .final-cta {
        padding: 34px 24px;
    }

    .mobile-cta {
        display: block;
    }

    footer {
        padding-bottom: 112px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
