:root {
    --navy: #071b3a;
    --navy-2: #0b2b5c;
    --royal: #0e4b8f;
    --blue: #1768ac;
    --sky: #eaf6ff;
    --sky-2: #f5fbff;
    --teal: #12aeb7;
    --gold: #f7b733;
    --gold-2: #ffcf62;
    --white: #ffffff;
    --ink: #14243d;
    --muted: #5c6f89;
    --line: #d8e5f4;
    --shadow: 0 18px 45px rgba(7, 27, 58, 0.14);
    --shadow-soft: 0 12px 30px rgba(7, 27, 58, 0.09);
    --radius: 24px;
    --radius-lg: 34px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

h1, h2, h3 {
    color: var(--ink);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 0 0 1rem;
}

h1 {
    font-size: clamp(2.55rem, 5vw, 5.25rem);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.35rem);
}

h3 {
    font-size: clamp(1.18rem, 2vw, 1.45rem);
}

code {
    background: #eef6ff;
    padding: 0.18rem 0.42rem;
    border-radius: 8px;
    color: var(--royal);
    font-size: 0.92em;
}

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

.container.narrow {
    width: min(100% - 40px, 850px);
}

.section {
    padding: 96px 0;
}

.section-dark {
    background: radial-gradient(circle at 14% 16%, rgba(247, 183, 51, 0.22), transparent 28%),
                radial-gradient(circle at 82% 12%, rgba(18, 174, 183, 0.24), transparent 32%),
                linear-gradient(135deg, var(--navy), #09244e 62%, #06152f);
    color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.78);
}

.soft-bg {
    background: linear-gradient(180deg, var(--sky-2), #ffffff);
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--gold);
    color: var(--navy);
    padding: 10px 14px;
    border-radius: 999px;
    z-index: 1000;
    font-weight: 800;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(216, 229, 244, 0.85);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy), var(--royal));
    color: var(--gold);
    font-weight: 950;
    font-size: 1.35rem;
    box-shadow: 0 10px 28px rgba(7, 27, 58, 0.24);
}

.brand-text {
    display: grid;
    line-height: 1.15;
}

.brand-text strong {
    color: var(--navy);
    font-size: 1rem;
}

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

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.primary-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: #27415f;
    font-weight: 800;
    font-size: 0.94rem;
    transition: all 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
    background: var(--sky);
    color: var(--royal);
}

.nav-toggle {
    display: none;
    border: 0;
    background: var(--navy);
    border-radius: 14px;
    width: 46px;
    height: 46px;
    padding: 11px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    margin: 5px 0;
    background: var(--white);
    border-radius: 999px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    min-height: 52px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-small {
    min-height: 44px;
    padding: 11px 17px;
    font-size: 0.9rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: var(--navy);
    box-shadow: 0 14px 28px rgba(247, 183, 51, 0.3);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(7, 27, 58, 0.22);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
    border: 1px solid var(--line);
    color: var(--navy);
    background: var(--white);
}

.hero {
    padding: 112px 0 96px;
    position: relative;
    overflow: hidden;
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -35% auto;
    width: 560px;
    height: 560px;
    background: rgba(247, 183, 51, 0.14);
    border-radius: 999px;
    filter: blur(12px);
    pointer-events: none;
}

.hero-grid,
.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-dark .eyebrow {
    color: var(--gold-2);
}

.hero-lead {
    font-size: clamp(1.1rem, 2.1vw, 1.32rem);
    max-width: 670px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 22px;
}

.center-actions {
    justify-content: center;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.hero-trust span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.hero-panel {
    min-height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255,255,255,0.17), rgba(255,255,255,0.05));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
    position: relative;
    overflow: hidden;
    padding: 34px;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 10%;
    border-radius: 999px;
    background: conic-gradient(from 20deg, rgba(247,183,51,0.72), rgba(18,174,183,0.48), rgba(255,255,255,0.18), rgba(247,183,51,0.72));
    filter: blur(18px);
    opacity: 0.55;
}

.score-card,
.floating-card,
.progress-orbit {
    position: relative;
    z-index: 2;
}

.main-score {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    padding: 30px;
    max-width: 360px;
    box-shadow: var(--shadow);
}

.main-score span {
    color: var(--royal);
    font-weight: 950;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.main-score strong {
    display: block;
    color: var(--navy);
    font-size: 2rem;
    line-height: 1.05;
    margin: 10px 0;
}

.main-score p {
    color: var(--muted);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    color: var(--navy);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: var(--shadow-soft);
    max-width: 240px;
}

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

.floating-card small {
    color: var(--muted);
    font-weight: 700;
}

.card-one {
    right: 30px;
    top: 190px;
}

.card-two {
    left: 48px;
    bottom: 50px;
}

.progress-orbit {
    position: absolute;
    right: 60px;
    bottom: 68px;
    width: 160px;
    height: 160px;
    border: 2px dashed rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    animation: rotate 18s linear infinite;
}

.progress-orbit span {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 999px;
    box-shadow: 0 0 28px rgba(247, 183, 51, 0.75);
}

.progress-orbit span:nth-child(1) { top: -10px; left: 70px; }
.progress-orbit span:nth-child(2) { bottom: 12px; left: 10px; background: var(--teal); }
.progress-orbit span:nth-child(3) { right: 8px; bottom: 22px; background: var(--white); }

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.stats-strip {
    padding: 34px 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stats-grid div {
    border-radius: 20px;
    background: var(--sky-2);
    padding: 20px;
    border: 1px solid var(--line);
}

.stats-grid strong {
    display: block;
    color: var(--royal);
    font-size: 1.75rem;
    line-height: 1;
}

.stats-grid span {
    color: var(--muted);
    font-weight: 750;
}

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

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

.card-grid {
    display: grid;
    gap: 24px;
}

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

.service-card,
.expect-card,
.pricing-card,
.review-card,
.stacked-cards article,
.contact-panel,
.contact-form,
.confirmation-card,
.policy-content,
.mini-dashboard,
.price-panel,
.bundle-card,
.membership-list {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.service-card,
.expect-card {
    padding: 30px;
    min-height: 320px;
}

.service-card p,
.expect-card p {
    margin-bottom: 1.2rem;
}

.icon-circle {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, var(--navy), var(--royal));
    color: var(--gold);
    font-weight: 950;
}

.text-link {
    color: var(--royal);
    font-weight: 950;
}

.text-link::after {
    content: " →";
}

.cta-band {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--gold), #ffdb7e);
}

.cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
}

.cta-grid .eyebrow,
.cta-grid p {
    color: rgba(7, 27, 58, 0.72);
}

.cta-grid h2 {
    color: var(--navy);
    margin-bottom: 0.7rem;
}

.expect-card {
    position: relative;
    overflow: hidden;
}

.expect-card::after {
    content: "";
    position: absolute;
    inset: auto -60px -80px auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: var(--sky);
}

.expect-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 950;
    margin-bottom: 22px;
}

.pricing-grid,
.review-grid {
    display: grid;
    gap: 24px;
}

.pricing-card {
    padding: 34px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.pricing-card.featured {
    background: linear-gradient(180deg, #ffffff, #f8fcff);
    border-color: rgba(247, 183, 51, 0.8);
    box-shadow: 0 24px 60px rgba(247, 183, 51, 0.22);
    transform: translateY(-10px);
}

.popular-badge {
    display: inline-flex;
    width: max-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 950;
    font-size: 0.78rem;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin: 18px 0;
}

.price strong {
    color: var(--navy);
    font-size: 3.2rem;
    line-height: 0.92;
    letter-spacing: -0.06em;
}

.price span {
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 4px;
}

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

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--muted);
    font-weight: 700;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(18, 174, 183, 0.12);
    color: var(--teal);
    font-weight: 950;
    font-size: 0.78rem;
}

.check-list.light li {
    color: rgba(255, 255, 255, 0.82);
}

.check-list.light li::before {
    background: rgba(255, 255, 255, 0.14);
    color: var(--gold);
}

.pricing-card .btn {
    margin-top: auto;
}

.reviews-section {
    position: relative;
    overflow: hidden;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    padding: 30px;
    min-height: 280px;
}

.review-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.03rem;
}

.review-card strong {
    color: var(--white);
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.final-cta,
.final-cta-wrap .final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    padding: 42px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--navy), var(--royal));
    box-shadow: var(--shadow);
}

.final-cta h2,
.final-cta p {
    color: var(--white);
}

.final-cta p {
    color: rgba(255, 255, 255, 0.76);
}

.page-hero {
    position: relative;
    overflow: hidden;
}

.compact-hero {
    padding: 86px 0;
}

.policy-hero {
    padding: 70px 0;
}

.page-hero h1 {
    font-size: clamp(2.35rem, 4.6vw, 4.45rem);
}

.mini-dashboard,
.price-panel,
.bundle-card {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.2);
    padding: 32px;
    color: var(--white);
    box-shadow: 0 24px 70px rgba(0,0,0,0.2);
}

.mini-dashboard h2,
.price-panel strong,
.bundle-card strong {
    color: var(--white);
}

.mini-dashboard a {
    color: var(--gold-2);
    font-weight: 850;
}

.price-panel span,
.bundle-card span {
    display: block;
    color: var(--gold-2);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
}

.price-panel strong,
.bundle-card strong {
    display: block;
    font-size: clamp(4rem, 8vw, 6.5rem);
    line-height: 0.95;
    margin: 16px 0;
    letter-spacing: -0.08em;
}

.price-panel small {
    color: rgba(255, 255, 255, 0.68);
}

.two-col,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: start;
}

.stacked-cards {
    display: grid;
    gap: 18px;
}

.stacked-cards article,
.membership-list {
    padding: 26px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
}

.timeline-item {
    position: relative;
    padding: 28px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.timeline-item span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--navy);
    color: var(--gold);
    font-weight: 950;
    margin-bottom: 18px;
}

.topic-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.topic-grid span {
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--sky-2);
    color: var(--navy);
    font-weight: 850;
}

.faq-wrap {
    max-width: 920px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    padding: 20px 24px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 950;
    color: var(--navy);
}

.faq-list p {
    margin-top: 12px;
}

.contact-panel,
.contact-form {
    padding: 34px;
}

.policy-mini {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 8px;
}

.policy-mini a {
    color: var(--royal);
    font-weight: 850;
}

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

.form-row.two-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--navy);
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(18, 174, 183, 0.12);
}

textarea {
    resize: vertical;
}

.hidden-field {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
}

.consent-row {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    font-weight: 750;
    color: var(--muted);
}

.consent-row input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
}

.confirmation-section {
    background: var(--sky-2);
    min-height: 58vh;
}

.confirmation-card {
    text-align: center;
    padding: 46px;
}

.success-mark,
.error-mark {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    margin: 0 auto 22px;
    background: rgba(18, 174, 183, 0.14);
    color: var(--teal);
    font-size: 2.2rem;
    font-weight: 950;
}

.error-mark {
    background: rgba(191, 47, 47, 0.12);
    color: #bf2f2f;
}

.alert-note {
    background: #fff8e3;
    color: #7a5700;
    border: 1px solid #ffe39a;
    padding: 14px 16px;
    border-radius: 16px;
}

.error-list {
    text-align: left;
    max-width: 500px;
    margin: 20px auto 26px;
}

.error-list li::before {
    content: "!";
    background: rgba(191, 47, 47, 0.12);
    color: #bf2f2f;
}

.policy-section {
    background: var(--sky-2);
}

.policy-content {
    padding: 42px;
}

.policy-content h2 {
    font-size: 1.42rem;
    margin-top: 28px;
    letter-spacing: -0.02em;
}

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

.policy-content a {
    color: var(--royal);
    font-weight: 850;
}

.site-footer {
    background: #06152f;
    color: var(--white);
    padding: 64px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.75fr 0.85fr 1fr;
    gap: 36px;
}

.footer-brand .brand-mark {
    background: rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-text strong,
.site-footer h3 {
    color: var(--white);
}

.footer-brand .brand-text small,
.footer-note,
.site-footer p {
    color: rgba(255, 255, 255, 0.68);
}

.site-footer h3 {
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 0;
}

.site-footer a:not(.brand) {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 750;
    margin-bottom: 10px;
}

.site-footer a:hover {
    color: var(--gold);
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.26s; }

@media (max-width: 1080px) {
    .header-cta {
        display: none;
    }

    .hero-grid,
    .page-hero-grid,
    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 680px;
        width: 100%;
    }

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

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

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        top: 84px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

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

    .primary-nav a {
        border-radius: 14px;
        padding: 14px 16px;
    }

    .card-grid.three,
    .pricing-grid,
    .review-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .cta-grid,
    .final-cta {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .section {
        padding: 72px 0;
    }

    .hero,
    .compact-hero {
        padding: 72px 0;
    }
}

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

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

    .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .brand-text strong {
        font-size: 0.88rem;
    }

    .brand-text small {
        font-size: 0.7rem;
    }

    .primary-nav {
        top: 76px;
        left: 14px;
        right: 14px;
    }

    .hero-actions,
    .hero-trust {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-panel {
        min-height: 460px;
        padding: 22px;
    }

    .main-score {
        padding: 24px;
    }

    .floating-card {
        position: relative;
        inset: auto;
        margin-top: 16px;
        max-width: none;
    }

    .progress-orbit {
        display: none;
    }

    .form-row.two-fields,
    .timeline,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .expect-card,
    .pricing-card,
    .contact-panel,
    .contact-form,
    .policy-content,
    .confirmation-card,
    .final-cta {
        padding: 24px;
    }

    .price strong {
        font-size: 2.55rem;
    }

    .footer-bottom {
        display: grid;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
