:root {
    --bg: #eef7ff;
    --bg-soft: #f8fbff;
    --panel: rgba(255, 255, 255, 0.94);
    --panel-strong: #ffffff;
    --line: rgba(18, 49, 93, 0.1);
    --line-strong: rgba(18, 49, 93, 0.16);
    --text: #11325a;
    --muted: #5a749a;
    --primary: #2563ff;
    --primary-strong: #1649c8;
    --teal: #11c2b0;
    --teal-soft: #c8faf3;
    --accent: #ffb42f;
    --accent-soft: #ffe19b;
    --danger: #d85858;
    --success: #0d7f63;
    --shadow: 0 24px 60px rgba(36, 93, 207, 0.12);
    --shadow-soft: 0 18px 36px rgba(36, 93, 207, 0.09);
    --r-xl: 34px;
    --r-lg: 26px;
    --r-md: 20px;
    --r-sm: 16px;
    --wrap: 1160px;
    --head: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --body: "Trebuchet MS", Verdana, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    font-family: var(--body);
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 195, 64, 0.28), transparent 20%),
        radial-gradient(circle at 100% 10%, rgba(37, 99, 255, 0.18), transparent 18%),
        radial-gradient(circle at 60% 100%, rgba(17, 194, 176, 0.16), transparent 24%),
        linear-gradient(180deg, #fbfdff 0%, #f2f8ff 50%, #eef7ff 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(17, 50, 90, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 50, 90, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 96%);
}

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

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

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

[id] {
    scroll-margin-top: 120px;
}

.wrap {
    width: min(var(--wrap), calc(100% - 28px));
    margin: 0 auto;
}

.top {
    position: sticky;
    top: 10px;
    z-index: 20;
    width: min(calc(var(--wrap) + 36px), calc(100% - 20px));
    margin: 0 auto;
    border: 1px solid rgba(37, 99, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 40px rgba(37, 99, 255, 0.12);
    backdrop-filter: blur(18px);
}

.top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.mark {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    position: relative;
    border: 1px solid rgba(37, 99, 255, 0.18);
    background:
        radial-gradient(circle at 30% 30%, rgba(17, 194, 176, 0.88), transparent 24%),
        radial-gradient(circle at 65% 40%, rgba(37, 99, 255, 0.65), transparent 18%),
        linear-gradient(145deg, rgba(37, 99, 255, 0.14), rgba(255, 180, 47, 0.16));
}

.mark::before,
.mark::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.mark::before {
    inset: 8px;
    border: 1px solid rgba(17, 50, 90, 0.16);
}

.mark::after {
    inset: 16px 8px;
    border: 1px solid rgba(255, 180, 47, 0.38);
    transform: rotate(24deg);
}

.brand-copy {
    display: grid;
    gap: 3px;
}

.brand-copy strong {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

.brand-copy span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.3;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
    background: rgba(37, 99, 255, 0.1);
    color: var(--text);
    outline: none;
}

.section {
    padding: 34px 0;
}

.section-tight {
    padding-top: 16px;
}

.hero {
    padding: 92px 0 38px;
}

.hero-grid,
.cta-grid,
.feature-grid,
.quiz-shell {
    display: grid;
    gap: 24px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    align-items: start;
}

.cta-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
    align-items: stretch;
}

.feature-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
}

.quiz-shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
    align-items: start;
}

.split-grid,
.cases-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    gap: 20px;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--head);
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

h1 {
    max-width: 11ch;
    font-size: clamp(3.05rem, 6.2vw, 5.15rem);
    color: #0f315d;
}

h2.title,
.form-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    max-width: 16ch;
}

.hero-eyebrow,
.kicker {
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
    color: #cf8b00;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero-eyebrow::after,
.kicker::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffbf2f, #ffe093);
}

.hero-accent {
    color: var(--primary);
}

.hero-divider {
    display: block;
    width: 46px;
    height: 8px;
    margin: 18px 0 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #ffd97b);
}

.lead,
.intro,
.feature-lead,
.panel p,
.card p,
.case-item span,
.metric span,
.team-copy p,
.feature-item p,
.list-item span,
.travel-chip span,
.status-card span,
.note-text,
.faq-answer p,
.final-copy p,
.promo-copy p,
.feature-photo-copy span,
.quiz-copy .intro {
    color: var(--muted);
    line-height: 1.72;
}

.lead {
    margin: 0;
    max-width: 56ch;
    font-size: 1.08rem;
}

.intro,
.feature-lead {
    margin-top: 16px;
}

.hero-points {
    display: grid;
    gap: 14px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    max-width: 42rem;
}

.hero-points li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: #223451;
    font-size: 1.06rem;
    line-height: 1.56;
}

.hero-points strong {
    color: var(--primary);
}

.hero-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    margin-top: 1px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), #3ce7d7);
    box-shadow: 0 12px 24px rgba(17, 194, 176, 0.22);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-note-text {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible,
.promo-cta:hover,
.promo-cta:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.btn-main {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), #3f86ff);
    box-shadow: 0 16px 34px rgba(37, 99, 255, 0.24);
}

.btn-main:hover,
.btn-main:focus-visible {
    background: linear-gradient(135deg, #346fff, #5294ff);
}

.btn-ghost {
    color: var(--text);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(37, 99, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.visual,
.panel,
.card,
.metric,
.team-card,
.travel-card,
.experience-card,
.form-wrap,
.quiz-card,
.faq-stack,
.list-panel,
.selection-box {
    position: relative;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.95));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.visual::before,
.panel::before,
.card::before,
.metric::before,
.team-card::before,
.travel-card::before,
.experience-card::before,
.form-wrap::before,
.quiz-card::before,
.list-panel::before,
.selection-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(171, 211, 255, 0.56));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.visual {
    min-height: 660px;
    background:
        radial-gradient(circle at 76% 16%, rgba(37, 99, 255, 0.18), transparent 18%),
        radial-gradient(circle at 18% 76%, rgba(17, 194, 176, 0.18), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
    box-shadow: 0 28px 64px rgba(37, 99, 255, 0.14);
}

.hero-visual {
    min-height: 568px;
    overflow: visible;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.visual::after {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 30px;
    border: 1px solid rgba(18, 49, 93, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
    z-index: 0;
    pointer-events: none;
}

.hero-visual::before {
    display: none;
}

.hero-visual::after {
    content: "";
    position: absolute;
    right: 42px;
    top: 116px;
    width: 432px;
    height: 224px;
    border-radius: 44px;
    border: none;
    background: linear-gradient(135deg, #ffd12e, #ffb400);
    transform: rotate(-20deg);
    box-shadow: 0 22px 48px rgba(255, 187, 0, 0.22);
    z-index: 1;
}

.visual-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.glow-one {
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(17, 194, 176, 0.18), transparent 64%);
}

.glow-two {
    width: 260px;
    height: 260px;
    right: -40px;
    top: -60px;
    background: radial-gradient(circle, rgba(255, 180, 47, 0.16), transparent 64%);
}

.hero-visual .glow-one {
    left: -36px;
    bottom: -24px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(17, 194, 176, 0.16), transparent 62%);
}

.hero-visual .glow-two {
    right: 34px;
    top: 22px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(37, 99, 255, 0.14), transparent 68%);
}

.visual-figure {
    position: absolute;
    inset: 28px -12px 86px 168px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 2;
}

.hero-visual .visual-figure {
    inset: 24px 0 112px 98px;
    justify-content: center;
}

.visual-figure::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 6%;
    bottom: 8%;
    height: 30px;
    border-radius: 50%;
    background: rgba(56, 84, 117, 0.12);
    filter: blur(24px);
}

.hero-visual .visual-figure::before {
    display: none;
}

.visual-figure img {
    position: relative;
    z-index: 1;
    width: auto;
    height: 100%;
    max-width: none;
    max-height: none;
    flex: 0 0 auto;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 18px 28px rgba(56, 70, 94, 0.14));
    transform: translateX(10px);
}

.hero-visual .visual-figure img {
    width: auto;
    height: auto;
    max-width: min(100%, 452px);
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transform: translateX(0);
}

.hero-facts {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 14px;
}

.hero-visual .hero-facts {
    left: 26px;
    right: 26px;
    bottom: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.hero-fact {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(18, 49, 93, 0.08);
    box-shadow: 0 16px 30px rgba(31, 49, 85, 0.08);
    backdrop-filter: blur(12px);
}

.hero-visual .hero-fact {
    padding: 16px 18px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 32px rgba(31, 49, 85, 0.08);
}

.hero-fact-primary {
    background: rgba(255, 255, 255, 0.95);
}

.hero-fact-secondary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 255, 0.96));
}

.hero-fact strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.02rem;
    line-height: 1.26;
    color: #17355f;
}

.hero-fact span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.54;
}

.metrics,
.grid-4,
.experience-grid,
.team-grid {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.metrics,
.grid-4,
.experience-grid,
.team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric,
.card,
.experience-card {
    padding: 24px;
}

.metric strong,
.experience-card strong {
    display: block;
    font-family: var(--head);
    font-size: 2rem;
    line-height: 1;
    color: #17355f;
}

.metric span,
.experience-card p {
    display: block;
    margin-top: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 14px;
    color: #674100;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), #ffe49d);
    box-shadow: 0 10px 22px rgba(255, 180, 47, 0.22);
}

.grid-4 .card:nth-child(2n) .tag {
    color: #0a574f;
    background: linear-gradient(135deg, #83ead9, #cafcf5);
    box-shadow: 0 10px 22px rgba(17, 194, 176, 0.18);
}

.card h3,
.list-item strong,
.case-item strong,
.team-copy h3,
.feature-item h3 {
    font-size: 1.32rem;
    line-height: 1.18;
    color: #17355f;
}

.service-card,
.step-card {
    display: flex;
    flex-direction: column;
}

.service-card p,
.step-card p {
    flex: 1 1 auto;
    margin: 14px 0 0;
}

.pick {
    width: 100%;
    margin-top: 18px;
}

.promo-banner,
.final-banner,
.soft-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 30px;
}

.promo-banner {
    position: relative;
    overflow: hidden;
    padding: 38px 42px;
    align-items: stretch;
    background:
        radial-gradient(circle at right top, rgba(255, 255, 255, 0.28), transparent 26%),
        linear-gradient(135deg, #ffbb35 0%, #ffcb5a 42%, #ffe5a4 100%);
    border: 1px solid rgba(184, 122, 17, 0.18);
    box-shadow: 0 22px 48px rgba(255, 180, 47, 0.16);
}

.promo-banner::before,
.promo-banner::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.promo-banner::before {
    width: 240px;
    height: 240px;
    right: -80px;
    top: -90px;
    border-radius: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 226, 146, 0.06));
    transform: rotate(26deg);
}

.promo-banner::after {
    left: 34px;
    right: 34px;
    top: 18px;
    bottom: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.promo-copy {
    position: relative;
    z-index: 1;
    max-width: min(100%, 760px);
}

.promo-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    border: 1px solid rgba(183, 120, 15, 0.18);
    color: #8f5f10;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.promo-copy strong {
    display: block;
    max-width: 25ch;
    margin-top: 18px;
    font-size: clamp(1.85rem, 3.2vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fffdfa;
    font-family: var(--head);
    text-wrap: pretty;
}

.promo-copy p {
    margin: 16px 0 0;
    max-width: 48ch;
    color: rgba(110, 66, 6, 0.9);
    font-size: 1.02rem;
    line-height: 1.68;
}

.promo-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.promo-point {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(183, 120, 15, 0.14);
    color: #7a530d;
    font-size: 0.92rem;
    font-weight: 700;
}

.promo-aside {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    justify-items: stretch;
    align-content: start;
    min-width: 380px;
    max-width: 468px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.promo-media {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(183, 120, 15, 0.08);
    background: linear-gradient(180deg, rgba(255, 251, 238, 0.94), rgba(255, 240, 203, 0.92));
    box-shadow: 0 14px 28px rgba(191, 132, 31, 0.1);
}

.promo-media::before,
.promo-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.promo-media::before {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(255, 233, 178, 0.02), rgba(255, 245, 221, 0.34)),
        radial-gradient(circle at right top, rgba(255, 255, 255, 0.26), transparent 28%);
}

.promo-media::after {
    inset: 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.promo-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center 58%;
    filter: saturate(0.72) sepia(0.04) brightness(1.16) contrast(0.88);
}

.promo-badge {
    display: grid;
    gap: 8px;
    width: calc(100% - 56px);
    margin: 10px auto 0;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 251, 241, 0.94);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(183, 120, 15, 0.12);
    box-shadow: 0 14px 26px rgba(191, 132, 31, 0.11);
}

.promo-badge strong {
    display: block;
    color: #21408b;
    font-size: 1.55rem;
    line-height: 1;
    font-family: var(--head);
}

.promo-badge span {
    display: block;
    color: #79540f;
    font-size: 0.94rem;
    line-height: 1.55;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    width: auto;
    min-width: 286px;
    max-width: calc(100% - 96px);
    margin: 0 auto;
    padding: 0 34px;
    border-radius: 18px;
    background: #315dff;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 16px 30px rgba(49, 93, 255, 0.24);
}

.panel,
.list-panel,
.quiz-copy,
.form-wrap {
    padding: 28px;
}

.list-stack,
.case-list,
.feature-list,
.bullet-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.list-item,
.case-item,
.bullet,
.feature-chip {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 49, 93, 0.08);
}

.list-item strong,
.case-item strong {
    display: block;
    margin-bottom: 8px;
}

.feature-list {
    margin-top: 26px;
    gap: 18px;
}

.feature-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: var(--primary);
    border: 1.5px solid rgba(37, 99, 255, 0.34);
    background: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    font-weight: 700;
}

.feature-item p {
    margin: 8px 0 0;
}

.feature-visual {
    display: grid;
    gap: 0;
}

.feature-summary-card {
    position: relative;
    overflow: hidden;
    padding: 24px 24px 22px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
    border: 1px solid rgba(18, 49, 93, 0.08);
    box-shadow: 0 12px 24px rgba(37, 99, 255, 0.05);
}

.feature-summary-card::before {
    display: none;
}

.feature-summary-head,
.feature-summary-list {
    position: relative;
    z-index: 1;
}

.feature-summary-kicker {
    display: inline-block;
    padding: 0 0 10px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.feature-summary-kicker::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #ffd98c);
}

.feature-summary-head strong {
    display: block;
    max-width: 22ch;
    margin-top: 14px;
    font-size: clamp(1.38rem, 2.25vw, 1.82rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #17355f;
    font-family: var(--head);
}

.feature-summary-head p {
    margin: 12px 0 0;
    max-width: 40ch;
    color: var(--muted);
    line-height: 1.58;
}

.feature-summary-list {
    display: grid;
    gap: 0;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.feature-summary-line {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    border: 0;
    background: transparent;
}

.feature-summary-line + .feature-summary-line {
    border-top: 1px solid rgba(18, 49, 93, 0.08);
}

.feature-summary-line span {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.35;
}

.feature-summary-line strong {
    display: block;
    color: #17355f;
    font-size: 0.94rem;
    line-height: 1.4;
}

.feature-photo-card {
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.feature-photo-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.feature-photo-copy {
    padding: 22px;
}

.feature-photo-copy strong {
    display: block;
    font-size: 1.24rem;
    line-height: 1.18;
    color: #17355f;
}

.feature-photo-copy span {
    margin-top: 10px;
}

.feature-fit {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(18, 49, 93, 0.08);
}

.feature-fit > strong {
    display: block;
    color: #17355f;
    font-size: 1rem;
    line-height: 1.32;
}

.feature-fit-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.feature-fit-item {
    display: grid;
    gap: 4px;
}

.feature-fit-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-fit-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

#approach .feature-grid {
    align-items: start;
}

.feature-copy .feature-item h3 {
    font-size: 1.22rem;
    line-height: 1.18;
}

.travel-card {
    min-height: 100%;
    padding: 0;
}

.travel-card img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.travel-card-person {
    background:
        radial-gradient(circle at 76% 18%, rgba(255, 180, 47, 0.18), transparent 20%),
        radial-gradient(circle at 16% 78%, rgba(17, 194, 176, 0.12), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.travel-card-person img {
    object-fit: contain;
    object-position: center bottom;
    padding: 82px 18px 0;
}

.travel-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 24px;
    display: grid;
    gap: 12px;
}

.travel-chip {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(18, 49, 93, 0.08);
    box-shadow: 0 14px 26px rgba(37, 99, 255, 0.08);
    backdrop-filter: blur(10px);
}

.travel-chip strong {
    display: block;
    margin-bottom: 6px;
}

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

.team-card {
    padding: 0;
}

.team-art {
    min-height: 250px;
    padding: 22px;
    background: radial-gradient(circle at top, rgba(255, 180, 47, 0.14), transparent 42%), linear-gradient(180deg, rgba(37, 99, 255, 0.05), rgba(17, 194, 176, 0.08));
}

.team-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.team-copy {
    padding: 22px;
}

.team-copy p {
    margin: 12px 0 0;
}

.soft-banner {
    margin-top: 28px;
    padding: 28px 30px;
    background: linear-gradient(135deg, rgba(255, 224, 95, 0.32), rgba(255, 255, 255, 0.96) 38%, rgba(120, 224, 198, 0.2));
    border: 1px solid rgba(18, 49, 93, 0.08);
    box-shadow: 0 18px 42px rgba(37, 99, 255, 0.08);
}

.soft-banner strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.soft-banner p {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
}

.quiz-card {
    padding: 28px;
}

.quiz-progress {
    margin-bottom: 22px;
}

.quiz-progress-bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(37, 99, 255, 0.08);
    overflow: hidden;
}

.quiz-progress-bar span {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--teal), var(--primary));
    transition: width 0.25s ease;
}

.quiz-progress-text {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.96rem;
}

.quiz-step h3 {
    font-size: 1.7rem;
    color: #17355f;
}

.quiz-step p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.quiz-options {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.quiz-option {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(18, 49, 93, 0.1);
    border-radius: 18px;
    color: var(--text);
    text-align: left;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(37, 99, 255, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.quiz-option:hover,
.quiz-option:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 255, 0.28);
    outline: none;
}

.quiz-option.is-selected {
    border-color: rgba(17, 194, 176, 0.42);
    background: linear-gradient(135deg, rgba(17, 194, 176, 0.12), rgba(37, 99, 255, 0.08));
    box-shadow: 0 14px 26px rgba(17, 194, 176, 0.12);
}

.quiz-controls {
    margin-top: 24px;
}

.quiz-back {
    min-width: 136px;
}

.quiz-back[disabled] {
    cursor: default;
    opacity: 0.45;
    transform: none;
}

.quiz-summary-box {
    margin-top: 24px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(37, 99, 255, 0.08), rgba(17, 194, 176, 0.08));
    border: 1px solid rgba(18, 49, 93, 0.08);
}

.quiz-summary-box strong {
    display: block;
    font-size: 1.02rem;
}

.quiz-summary-list {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.quiz-summary-list li {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--muted);
    line-height: 1.55;
}

.quiz-summary-list span {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-weight: 700;
}

.selection-box {
    margin-bottom: 18px;
    padding: 18px;
}

.selection-box strong {
    display: block;
    margin-bottom: 12px;
}

.selection-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.selection-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 255, 0.08);
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.4;
}

.selection-chip.empty {
    background: rgba(90, 116, 154, 0.08);
    color: var(--muted);
}

.status-message {
    display: none;
    margin-bottom: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    line-height: 1.6;
}

.status-message.show {
    display: block;
}

.status-success {
    color: #0b5e49;
    background: linear-gradient(135deg, #c6ffeb, #ebfff8);
}

.status-error {
    color: #6b1d1d;
    background: linear-gradient(135deg, #ffd7d7, #fff1f1);
}

.status-info {
    color: #124f74;
    background: linear-gradient(135deg, #d9efff, #f2f9ff);
}

.form {
    display: grid;
    gap: 14px;
}

.form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.96rem;
}

.form input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(18, 49, 93, 0.12);
    color: var(--text);
    background: #fffdfa;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.form input::placeholder {
    color: rgba(18, 49, 93, 0.42);
}

.form input:focus {
    outline: none;
    border-color: rgba(37, 99, 255, 0.38);
    box-shadow: 0 0 0 4px rgba(37, 99, 255, 0.1);
}

.note-text {
    margin: 4px 0 0;
    font-size: 0.92rem;
}

.bullet-list {
    margin-top: 24px;
    gap: 12px;
}

.bullet {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(37, 99, 255, 0.08), rgba(37, 99, 255, 0.04));
}

.bullet strong {
    color: var(--primary);
}

.faq-stack {
    margin-top: 28px;
    background: #fff;
}

.faq-item + .faq-item {
    border-top: 1px solid rgba(18, 49, 93, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    padding: 24px 28px;
    cursor: pointer;
    list-style: none;
    color: #202735;
    font-size: 1.16rem;
    font-weight: 700;
    line-height: 1.34;
}

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

.faq-toggle {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 999px;
    background: #202735;
    transform: translate(-50%, -50%);
}

.faq-toggle::before {
    width: 18px;
    height: 3px;
}

.faq-toggle::after {
    width: 3px;
    height: 18px;
    transition: opacity 0.2s ease;
}

.faq-item[open] .faq-toggle::after {
    opacity: 0;
}

.faq-question-text {
    position: relative;
    display: block;
    padding-bottom: 14px;
}

.faq-question-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #ffd98c);
}

.faq-answer {
    padding: 0 28px 24px 74px;
}

.faq-answer p {
    margin: 0;
    max-width: 74ch;
    font-size: 1rem;
}

.final-section {
    padding-bottom: 46px;
}

.final-banner {
    padding: 34px 38px;
    background: linear-gradient(135deg, rgba(17, 194, 176, 0.14), rgba(255, 255, 255, 0.98) 36%, rgba(37, 99, 255, 0.12));
    border: 1px solid rgba(18, 49, 93, 0.08);
    box-shadow: 0 20px 44px rgba(37, 99, 255, 0.1);
}

.final-copy p {
    margin: 16px 0 0;
    max-width: 50ch;
}

.final-cta {
    flex: 0 0 auto;
}

.footer {
    padding: 0 0 56px;
}

.foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(18, 49, 93, 0.08);
    box-shadow: 0 18px 40px rgba(37, 99, 255, 0.08);
}

.foot strong {
    display: block;
    margin-bottom: 6px;
}

.foot p {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
}

.legal-copy {
    display: grid;
    gap: 6px;
    text-align: right;
}

.legal-copy p {
    white-space: nowrap;
}

.thanks-page .hero {
    padding-top: 110px;
}

.thanks-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
    gap: 24px;
    align-items: stretch;
}

.thanks-card {
    padding: 30px;
}

.thanks-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.18rem;
    color: #17355f;
}

.thanks-list {
    display: grid;
    gap: 14px;
    margin: 22px 0 0;
}

.thanks-item {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 49, 93, 0.08);
}

.thanks-item strong {
    margin-bottom: 8px;
    font-size: 1.06rem;
}

.thanks-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.js-enabled .quiz-step {
    display: none;
}

.js-enabled .quiz-step.is-active {
    display: block;
}

.js-enabled .quiz-step.quiz-finish {
    display: none;
}

.js-enabled .quiz-step.quiz-finish.is-active {
    display: block;
}

@media (max-width: 1080px) {
    .hero-grid,
    .cta-grid,
    .feature-grid,
    .quiz-shell,
    .split-grid,
    .thanks-grid {
        grid-template-columns: 1fr;
    }

    .visual {
        order: -1;
        min-height: 580px;
    }

    .hero-visual {
        min-height: 540px;
    }

    .visual-figure {
        inset: 34px -8px 92px 126px;
    }

    .hero-visual::after {
        right: 30px;
        top: 118px;
        width: 360px;
        height: 190px;
    }

    .hero-visual .visual-figure {
        inset: 32px 0 102px 96px;
    }

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

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

@media (max-width: 780px) {
    .top {
        top: 8px;
        width: min(calc(100% - 20px), calc(var(--wrap) + 24px));
    }

    .top-inner,
    .foot,
    .promo-banner,
    .soft-banner,
    .final-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding-top: 88px;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
    }

    .metrics,
    .grid-4,
    .experience-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .visual {
        min-height: 540px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .visual-figure {
        inset: 54px -6px 96px 84px;
    }

    .visual-figure img {
        height: 100%;
        width: auto;
        transform: translateX(6px);
    }

    .hero-visual::after {
        right: 6px;
        top: 154px;
        width: 276px;
        height: 150px;
        border-radius: 30px;
    }

    .hero-visual .visual-figure {
        inset: 42px -6px 116px 58px;
    }

    .hero-visual .visual-figure img {
        max-width: min(100%, 340px);
        transform: translateX(0);
    }

    .hero-facts {
        left: 18px;
        right: 18px;
        bottom: 18px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-visual .hero-facts {
        left: 18px;
        right: 18px;
        bottom: 6px;
    }

    .travel-card img {
        min-height: 380px;
    }

    .travel-card-person img {
        padding-top: 70px;
    }

    .promo-banner,
    .final-banner,
    .soft-banner,
    .panel,
    .list-panel,
    .quiz-card,
    .form-wrap,
    .feature-summary-card {
        padding: 24px;
    }

    .promo-copy {
        max-width: none;
    }

    .promo-copy strong,
    .promo-copy p {
        max-width: none;
    }

    .promo-aside {
        max-width: none;
        width: 100%;
        min-width: 0;
        justify-items: stretch;
        gap: 12px;
    }

    .promo-media {
        width: min(100%, 420px);
        margin: 0 auto;
        border-radius: 22px;
        box-shadow: 0 10px 22px rgba(191, 132, 31, 0.09);
    }

    .promo-media::after {
        inset: 10px;
        border-radius: 16px;
    }

    .promo-media img {
        aspect-ratio: 16 / 7.4;
        object-position: center 54%;
    }

    .promo-badge {
        width: min(100%, 440px);
        margin: 8px auto 0;
        padding: 15px 16px;
        border-radius: 16px;
    }

    .promo-badge strong {
        font-size: 1.32rem;
    }

    .promo-badge span {
        font-size: 0.9rem;
        line-height: 1.48;
    }

    .promo-cta {
        width: min(100%, 440px);
        max-width: none;
        min-width: 0;
        margin: 0 auto;
    }

    .faq-question {
        padding: 20px 18px;
        gap: 14px;
        font-size: 1.02rem;
    }

    .faq-answer {
        padding: 0 18px 20px 60px;
    }

    .legal-copy {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .wrap {
        width: min(var(--wrap), calc(100% - 20px));
    }

    .hero-actions,
    .thanks-actions {
        flex-direction: column;
    }

    .btn,
    .promo-cta,
    .final-cta {
        width: 100%;
    }

    .visual {
        min-height: 450px;
    }

    .hero-visual {
        min-height: 430px;
    }

    .travel-card-person img {
        padding-top: 84px;
    }

    .visual-figure {
        inset: 70px -8px 112px 58px;
    }

    .visual-figure img {
        height: 100%;
        width: auto;
        transform: translateX(2px);
    }

    .hero-visual::after {
        right: -18px;
        top: 166px;
        width: 212px;
        height: 114px;
        border-radius: 24px;
    }

    .hero-visual .visual-figure {
        inset: 36px -4px 118px 40px;
    }

    .hero-visual .visual-figure img {
        max-width: min(100%, 280px);
        transform: translateX(0);
    }

    .hero-facts {
        left: 14px;
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }

    .hero-visual .hero-facts {
        left: 12px;
        right: 12px;
        bottom: 8px;
    }

    .hero-fact {
        padding: 14px 16px;
        border-radius: 18px;
    }

    .hero-fact strong {
        font-size: 0.98rem;
    }

    .hero-fact span {
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .lead,
    .intro,
    .feature-lead,
    .card p,
    .metric span,
    .team-copy p,
    .faq-answer p,
    .foot p {
        font-size: 0.98rem;
        line-height: 1.65;
    }

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

    .feature-icon {
        width: 52px;
        height: 52px;
    }

    .promo-banner,
    .final-banner {
        padding: 28px 24px;
    }

    .promo-kicker {
        padding: 0 14px;
        font-size: 0.77rem;
    }

    .promo-copy strong {
        font-size: clamp(1.65rem, 8vw, 2.15rem);
    }

    .promo-point {
        min-height: 36px;
        padding: 0 14px;
        font-size: 0.86rem;
    }

    .feature-summary-head strong {
        max-width: none;
    }

    .feature-summary-line {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .promo-aside {
        padding: 0;
        border-radius: 0;
    }

    .promo-media {
        width: 100%;
        border-radius: 16px;
    }

    .promo-media img {
        aspect-ratio: 16 / 8.4;
        object-position: center 53%;
    }

    .promo-badge {
        width: 100%;
        margin: 0;
        padding: 16px 18px;
        border-radius: 16px;
    }

    .promo-cta {
        width: 100%;
        max-width: none;
        min-width: 0;
        margin: 0;
    }
}

/* Header and hero reworked to follow the original reference more closely. */
.top {
    top: 0;
    width: 100%;
    margin: 0;
    border: none;
    border-radius: 0;
    background: #4255f4;
    box-shadow: none;
    backdrop-filter: none;
}

.top-inner {
    gap: 24px;
    padding: 10px 0;
}

.brand {
    gap: 14px;
}

.mark {
    width: 40px;
    height: 40px;
    border-color: rgba(255, 255, 255, 0.24);
    background:
        radial-gradient(circle at 30% 30%, rgba(139, 246, 231, 0.82), transparent 24%),
        radial-gradient(circle at 66% 42%, rgba(170, 197, 255, 0.62), transparent 18%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 191, 47, 0.14));
}

.mark::before {
    inset: 7px;
    border-color: rgba(255, 255, 255, 0.3);
}

.mark::after {
    inset: 14px 7px;
    border-color: rgba(255, 215, 118, 0.42);
}

.brand-copy strong {
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.brand-copy span {
    display: none;
}

.nav {
    gap: 12px 26px;
}

.nav a {
    padding: 6px 0;
    border-radius: 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.97rem;
}

.nav a:hover,
.nav a:focus-visible {
    background: transparent;
    color: rgba(255, 255, 255, 0.84);
}

.hero {
    padding: 46px 0 36px;
}

.hero-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(520px, 1.04fr);
    align-items: center;
    gap: 22px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 8px;
}

.hero-copy h1 {
    max-width: none;
    font-size: clamp(3rem, 5.6vw, 4.7rem);
    line-height: 0.9;
    letter-spacing: -0.045em;
    color: #202535;
}

.hero-line {
    display: block;
}

.hero-accent {
    color: #315dff;
}

.hero-eyebrow {
    margin-bottom: 18px;
}

.hero-divider {
    width: 44px;
    height: 8px;
    margin: 14px 0 22px;
    background: #ffcb17;
}

.lead {
    max-width: 31ch;
    font-size: 1.02rem;
    line-height: 1.62;
}

.hero-points {
    gap: 10px;
    margin-top: 22px;
    max-width: 40rem;
}

.hero-points li {
    gap: 14px;
    color: #232b3e;
    font-size: 1.04rem;
    line-height: 1.42;
}

.hero-check {
    width: 30px;
    height: 30px;
    margin-top: 1px;
    border: 2px solid #315dff;
    color: #315dff;
    background: transparent;
    box-shadow: none;
}

.hero-actions {
    margin-top: 24px;
}

.hero-actions .btn {
    min-height: 52px;
    padding: 0 32px;
    border-radius: 10px;
}

.hero-actions .btn-main {
    background: #4255f4;
    box-shadow: none;
}

.hero-actions .btn-main:hover,
.hero-actions .btn-main:focus-visible {
    background: #3245df;
}

.hero-actions .btn-ghost {
    background: #ffffff;
    border-color: rgba(31, 49, 85, 0.1);
    box-shadow: 0 10px 20px rgba(31, 49, 85, 0.05);
}

.hero-note-text {
    max-width: 38ch;
    margin-top: 18px;
    color: #66748b;
}

.hero-visual {
    min-height: 560px;
    margin-left: -38px;
    overflow: visible;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 26px 22px 136px 2px;
    border-radius: 48px;
    background:
        radial-gradient(circle at 78% 18%, rgba(49, 93, 255, 0.1), transparent 22%),
        radial-gradient(circle at 8% 88%, rgba(17, 194, 176, 0.12), transparent 24%);
    pointer-events: none;
}

.hero-visual::after,
.hero-visual .visual-glow,
.hero-visual .visual-figure::before {
    display: none;
}

.hero-visual .visual-figure {
    inset: -10px 24px 142px 84px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
}

.hero-visual .visual-figure img {
    width: auto;
    height: auto;
    max-width: min(100%, 524px);
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.1));
    transform: translate(-14px, -10px);
}

.hero-ratings {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hero-rating {
    position: relative;
    display: grid;
    gap: 8px;
    padding: 16px 18px 18px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(31, 49, 85, 0.08);
    box-shadow: 0 12px 24px rgba(31, 49, 85, 0.07);
}

.hero-rating::before {
    content: "";
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: #ffcb17;
}

.hero-rating-head {
    display: block;
}

.hero-rating strong {
    display: block;
    color: #1f3154;
    font-size: 1.08rem;
    line-height: 1.1;
}

.hero-rating span {
    display: block;
    color: #6f7788;
    font-size: 0.92rem;
    line-height: 1.4;
}

@media (max-width: 1080px) {
    .hero {
        padding: 44px 0 34px;
    }

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

    .hero-visual {
        order: -1;
        min-height: 540px;
        margin-left: 0;
    }

    .hero-visual .visual-figure {
        inset: -2px -6px 132px 118px;
    }

    .hero-ratings {
        left: 66px;
        right: 32px;
    }
}

@media (max-width: 780px) {
    .top-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 12px 0 14px;
    }

    .nav {
        width: 100%;
        gap: 12px 24px;
    }

    .hero {
        padding: 34px 0 28px;
    }

    .hero-copy h1 {
        font-size: clamp(2.9rem, 12vw, 4rem);
    }

    .lead {
        max-width: 38ch;
    }

    .hero-points li {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 486px;
        margin-left: 0;
    }

    .hero-visual::before {
        inset: 18px 8px 144px 14px;
    }

    .hero-visual .visual-figure {
        inset: 8px -8px 136px 88px;
    }

    .hero-visual .visual-figure img {
        max-width: min(100%, 356px);
        transform: translate(4px, -8px);
    }

    .hero-ratings {
        left: 24px;
        right: 18px;
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 560px) {
    .nav {
        gap: 10px 18px;
    }

    .nav a {
        font-size: 0.95rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.35rem, 13vw, 3.3rem);
    }

    .hero-eyebrow {
        font-size: 0.78rem;
    }

    .lead {
        font-size: 1rem;
    }

    .hero-points li {
        font-size: 0.98rem;
    }

    .hero-visual {
        min-height: 430px;
        margin-left: 0;
    }

    .hero-visual::before {
        inset: 14px 6px 140px 10px;
    }

    .hero-visual .visual-figure {
        inset: 10px -10px 142px 42px;
    }

    .hero-visual .visual-figure img {
        max-width: min(100%, 294px);
        transform: translate(2px, -6px);
    }

    .hero-ratings {
        left: 12px;
        right: 12px;
        gap: 10px;
    }

    .hero-rating {
        padding: 14px 16px 16px;
        border-radius: 8px;
    }

    .hero-rating span {
        font-size: 0.85rem;
    }
}
