:root {
    --ink: #10083f;
    --ink-soft: #1c1554;
    --teal: #35a7a5;
    --teal-dark: #19807f;
    --mint: #dff5f2;
    --sun: #ffd166;
    --paper: #fbfaf7;
    --muted: #f0f6f5;
    --line: rgba(16, 8, 63, 0.1);
    --text: #242331;
    --text-soft: #62606f;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(16, 8, 63, 0.12);
    --radius: 8px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    background: var(--paper);
    color: var(--text);
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(16, 8, 63, 0.055) 1px, transparent 0);
    background-size: 28px 28px;
    opacity: 0.42;
}

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

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

button,
input,
textarea {
    font: inherit;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(16, 8, 63, 0.94);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 14px 35px rgba(16, 8, 63, 0.2);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
    width: 100%;
    height: 3px;
    background: transparent;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--sun), var(--teal));
    box-shadow: 0 0 18px rgba(53, 167, 165, 0.55);
    transition: width 0.08s linear;
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    font-family: "League Spartan", Arial, sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.logo-with-mark {
    gap: 10px;
}

.logo-with-mark img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.2));
}

.logo-with-mark span {
    color: var(--teal);
    margin-left: 0;
}

.site-header .logo-with-mark span {
    color: var(--white);
}

.site-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.nav-cta {
    background: var(--teal);
    color: var(--white);
}

.nav-cta:hover,
.nav-cta.active {
    background: var(--teal-dark);
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.hero {
    min-height: 100vh;
    padding: calc(var(--header-height) + 54px) 0 72px;
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(53, 167, 165, 0.26), transparent 35%),
        radial-gradient(circle at 78% 24%, rgba(255, 209, 102, 0.24), transparent 26rem),
        linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 58%, #08051f 100%);
    color: var(--white);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 90px;
    background: linear-gradient(180deg, transparent, rgba(251, 250, 247, 0.1));
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 56px;
    position: relative;
    z-index: 1;
}

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--teal);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero .eyebrow {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--mint);
}

h1,
h2,
h3 {
    font-family: "League Spartan", Arial, sans-serif;
    letter-spacing: 0;
    line-height: 1.02;
}

.hero h1 {
    max-width: 700px;
    margin-bottom: 20px;
    font-size: clamp(3.15rem, 8vw, 5.8rem);
    font-weight: 900;
}

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

.hero p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
}

.price-hero {
    position: relative;
    display: inline-grid;
    gap: 4px;
    width: min(100%, 420px);
    margin: 8px 0 28px;
    padding: 18px 24px 18px 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 6px solid var(--sun);
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(255, 209, 102, 0.16), rgba(255, 255, 255, 0.08)),
        rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    align-items: center;
text-align: center;
}

.price-hero.is-lit {
    transform: translateY(-2px);
    border-color: rgba(255, 209, 102, 0.65);
    box-shadow: 0 24px 55px rgba(255, 209, 102, 0.18), 0 20px 45px rgba(0, 0, 0, 0.18);
}

.price-hero::after {
    content: "";
    position: absolute;
    inset: 10px 12px auto auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 16px 0 0 rgba(255, 255, 255, 0.38);
}

.price-hero small {
    color: var(--mint);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
}
.price-hero strong {
    color: var(--white);
    font-family: "League Spartan", Arial, sans-serif;
    font-size: clamp(3.3rem, 7vw, 4.9rem);
    font-weight: 900;
    line-height: 0.9;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.price-hero span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 900;
    text-align: center;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(53, 167, 165, 0.3);
}

.btn-primary:hover {
    background: var(--teal-dark);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-stage {
    min-height: 520px;
    position: relative;
    display: grid;
    place-items: end center;
    perspective: 1200px;
}

.hero-stage::before {
    content: "";
    position: absolute;
    width: min(84%, 430px);
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(53, 167, 165, 0.55), rgba(53, 167, 165, 0.14) 58%, transparent 70%);
    filter: blur(10px);
    transform: translateY(-30px);
}

.stage-road {
    position: absolute;
    bottom: 28px;
    width: min(95%, 480px);
    height: 118px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.38), transparent 68%);
    transform: rotateX(62deg);
}

.mascot-wrap {
    width: min(88vw, 410px);
    position: relative;
    display: grid;
    justify-items: center;
    transform-origin: 50% 100%;
    animation: mascotWalkIn 2.45s cubic-bezier(0.17, 0.84, 0.32, 1) 0.1s both, mascotIdle 4s ease-in-out 2.7s infinite;
}

.mascot {
    position: relative;
    z-index: 1;
    width: min(100%, 390px);
    filter: drop-shadow(0 26px 22px rgba(0, 0, 0, 0.32));
}

.speech-bubble {
    position: absolute;
    top: -118px;
    left: 50%;
    right: auto;
    z-index: 3;
    max-width: 250px;
    padding: 14px 16px;
    border-radius: 18px 18px 18px 6px;
    background: var(--white);
    color: var(--text);
    box-shadow: var(--shadow);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.38;
    opacity: 0;
    transform: translate(-50%, 14px) scale(0.92);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.speech-bubble::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 20px;
    height: 20px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform: translateX(-50%) rotate(-45deg);
}

.speech-bubble span {
    color: var(--teal-dark);
}

.speech-bubble.visible {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

.speech-bubble.is-changing {
    transform: translate(-50%, -4px) scale(1.03);
}

@keyframes mascotWalkIn {
    0% {
        opacity: 0;
        transform: translateY(-98px) translateZ(-520px) scale(0.36);
        filter: blur(5px);
    }
    45% {
        opacity: 1;
        transform: translateY(-22px) translateZ(-180px) scale(0.68) rotate(-2deg);
        filter: blur(1px);
    }
    72% {
        transform: translateY(10px) translateZ(0) scale(1.04) rotate(1.5deg);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(0) scale(1);
        filter: blur(0);
    }
}

@keyframes mascotIdle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

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

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

.stat-card,
.service-card,
.step-card,
.contact-form,
.benefit-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 14px 32px rgba(16, 8, 63, 0.06);
}

.stat-card {
    padding: 22px;
    text-align: center;
}

.stat-card strong {
    display: block;
    color: var(--ink);
    font-family: "League Spartan", Arial, sans-serif;
    font-size: 3rem;
    line-height: 1;
}

.stat-card p {
    color: var(--text-soft);
    font-weight: 600;
}

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

.muted {
    background:
        linear-gradient(135deg, rgba(53, 167, 165, 0.07), transparent 38%),
        linear-gradient(315deg, rgba(255, 209, 102, 0.1), transparent 35%),
        var(--muted);
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(16, 8, 63, 0.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(16, 8, 63, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 25% 18%, rgba(0, 0, 0, 0.55), transparent 68%);
}

.section::after {
    content: "";
    position: absolute;
    inset: auto -120px -170px auto;
    z-index: 0;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(53, 167, 165, 0.13) 0 8px,
            transparent 8px 18px
        );
    opacity: 0.55;
}

.about-pattern::before {
    background-image:
        radial-gradient(circle at 2px 2px, rgba(53, 167, 165, 0.16) 2px, transparent 0);
    background-size: 34px 34px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 72%);
}

.about-pattern::after {
    inset: -90px auto auto -110px;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.2), transparent 66%);
}

.services-pattern::before {
    background-image:
        repeating-linear-gradient(
            135deg,
            rgba(16, 8, 63, 0.045) 0 2px,
            transparent 2px 18px
        );
    background-size: 42px 42px;
    mask-image: linear-gradient(110deg, transparent 4%, rgba(0, 0, 0, 0.48), transparent 88%);
}

.services-pattern::after {
    inset: auto -120px -120px auto;
    background:
        radial-gradient(circle, rgba(53, 167, 165, 0.16), transparent 62%);
}

.membership-pattern::before {
    background-image:
        linear-gradient(90deg, rgba(53, 167, 165, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(53, 167, 165, 0.08) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 76% 28%, rgba(0, 0, 0, 0.5), transparent 72%);
}

.membership-pattern::after {
    inset: 80px -150px auto auto;
    background:
        repeating-radial-gradient(circle, rgba(255, 209, 102, 0.16) 0 3px, transparent 3px 18px);
}

.order-pattern::before {
    background-image:
        linear-gradient(115deg, transparent 0 47%, rgba(16, 8, 63, 0.06) 47% 48%, transparent 48% 100%),
        radial-gradient(circle at 20% 50%, rgba(53, 167, 165, 0.2) 0 5px, transparent 6px),
        radial-gradient(circle at 72% 34%, rgba(255, 209, 102, 0.34) 0 5px, transparent 6px);
    background-size: 260px 120px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 80%);
}

.order-pattern::after {
    inset: auto auto -120px -120px;
    background:
        radial-gradient(circle, rgba(16, 8, 63, 0.08), transparent 65%);
}

.map-pattern::before {
    background-image:
        linear-gradient(30deg, rgba(16, 8, 63, 0.045) 12%, transparent 12.5%, transparent 87%, rgba(16, 8, 63, 0.045) 87.5%),
        linear-gradient(150deg, rgba(16, 8, 63, 0.045) 12%, transparent 12.5%, transparent 87%, rgba(16, 8, 63, 0.045) 87.5%);
    background-size: 70px 120px;
    mask-image: radial-gradient(circle at 40% 40%, rgba(0, 0, 0, 0.4), transparent 72%);
}

.map-pattern::after {
    inset: -130px -90px auto auto;
    background:
        radial-gradient(circle, rgba(53, 167, 165, 0.14), transparent 66%);
}

.contact-pattern::before {
    background-image:
        radial-gradient(circle at 18% 30%, rgba(53, 167, 165, 0.16), transparent 18rem),
        radial-gradient(circle at 92% 72%, rgba(255, 209, 102, 0.18), transparent 20rem);
    background-size: auto;
    mask-image: none;
}

.contact-pattern::after {
    display: none;
}

.section > .container {
    position: relative;
    z-index: 1;
}

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

.section-copy h2,
.section-heading h2 {
    max-width: 680px;
    margin-bottom: 18px;
    color: var(--ink);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 900;
}

.section-copy p,
.section-heading p {
    max-width: 720px;
    color: var(--text-soft);
    font-size: 1.02rem;
}

.section-heading {
    margin-bottom: 34px;
}

.value-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.benefit-panel div {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
}

.value-list div {
    position: relative;
    min-height: 210px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(53, 167, 165, 0.12), transparent 55%),
        var(--white);
    box-shadow: 0 14px 32px rgba(16, 8, 63, 0.07);
}

.value-list div::after {
    content: "";
    position: absolute;
    inset: auto -34px -48px auto;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 209, 102, 0.24);
}

.value-list span {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--sun);
    font-family: "League Spartan", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(16, 8, 63, 0.18);
}

.value-list i {
    position: absolute;
    top: 24px;
    right: 24px;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
    background: var(--mint);
    color: var(--teal-dark);
    font-size: 1.22rem;
}

.value-list h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 1.7rem;
    font-weight: 900;
}

.value-list p {
    position: relative;
    z-index: 1;
    color: var(--text-soft);
    font-weight: 600;
}

.benefit-panel span {
    font-weight: 700;
}

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

.service-card,
.step-card {
    padding: 24px;
}

.service-card {
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::after {
    content: "Pilih layanan";
    display: inline-flex;
    margin-top: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--mint);
    color: var(--teal-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.service-card:hover,
.service-card.is-selected {
    border-color: rgba(53, 167, 165, 0.45);
    box-shadow: 0 22px 45px rgba(16, 8, 63, 0.12);
}

.service-card.is-selected::after {
    content: "Dipilih";
    background: var(--teal);
    color: var(--white);
}

.service-card:focus-visible {
    outline: 3px solid rgba(53, 167, 165, 0.35);
    outline-offset: 3px;
}

.service-card i {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: var(--radius);
    background: var(--mint);
    color: var(--teal-dark);
    font-size: 1.45rem;
}

.service-card h3,
.step-card h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.45rem;
    font-weight: 800;
}

.service-card p,
.step-card p {
    color: var(--text-soft);
    font-size: 0.96rem;
}

.benefit-panel {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.benefit-panel i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: var(--mint);
    color: var(--teal-dark);
}

.membership-steps {
    margin-top: 42px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.membership-steps h3 {
    margin-bottom: 18px;
    color: var(--ink);
    font-size: 2rem;
    font-weight: 900;
}

.membership-step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.membership-step-grid div {
    min-height: 138px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 14px 32px rgba(16, 8, 63, 0.06);
}

.membership-step-grid span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    font-weight: 900;
}

.membership-step-grid p {
    color: var(--text-soft);
    font-size: 0.94rem;
}

.step-card span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--sun);
    font-family: "League Spartan", Arial, sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
}

.contact-section {
    background:
        linear-gradient(135deg, rgba(53, 167, 165, 0.12), transparent 35%),
        var(--paper);
}

.location-section {
    background:
        linear-gradient(135deg, rgba(16, 8, 63, 0.035), transparent 44%),
        var(--paper);
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
    gap: 34px;
    align-items: stretch;
}

.location-info {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.location-info div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    font-weight: 700;
}

.location-info i {
    color: var(--teal-dark);
}

.map-card {
    min-height: 420px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 14px 32px rgba(16, 8, 63, 0.08);
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 42px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--text);
    padding: 13px 14px;
    outline: none;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(53, 167, 165, 0.14);
}

.form-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 1100;
    max-width: min(420px, calc(100% - 32px));
    padding: 13px 16px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow);
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 16px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.form-toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

.site-footer {
    padding: 44px 0;
    background: var(--ink);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 22px;
    align-items: center;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.copyright {
    grid-column: 1 / -1;
    font-size: 0.9rem;
}

.wa-float,
.scroll-top-btn {
    position: fixed;
    right: 22px;
    z-index: 900;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 12px 28px rgba(16, 8, 63, 0.22);
}

.wa-float {
    bottom: 22px;
    background: #25d366;
    font-size: 1.55rem;
}

.scroll-top-btn {
    bottom: 86px;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.appear {
    opacity: 1;
    transform: translateY(0);
}

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

    .speech-bubble {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 70px;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 20px;
        right: 20px;
        display: grid;
        gap: 4px;
        padding: 12px;
        border-radius: var(--radius);
        background: rgba(16, 8, 63, 0.98);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        justify-content: center;
    }

    .hero {
        padding-top: calc(var(--header-height) + 34px);
    }

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

    .hero-copy {
        text-align: center;
        margin: 0 auto;
    }

    .hero p {
        margin-inline: auto;
    }

    .price-hero {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-points {
        justify-content: center;
    }

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

    .stats-grid,
    .card-grid,
    .steps-grid,
    .membership-step-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

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

    .hero {
        min-height: auto;
        padding-bottom: 44px;
    }

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

    .logo-with-mark img {
        width: 42px;
        height: 42px;
    }

    .logo-with-mark span {
        font-size: 1.28rem;
    }

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

    .price-hero {
        border-radius: 22px;
        text-align: left;
    }

    .hero-stage {
        min-height: 360px;
    }

    .mascot-wrap {
        width: min(86vw, 310px);
    }

    .speech-bubble {
        top: -92px;
        left: 50%;
        right: auto;
        max-width: 220px;
        font-size: 0.84rem;
    }

    .stats-grid,
    .card-grid,
    .steps-grid,
    .membership-step-grid,
    .value-list {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 0;
    }

    .wa-float,
    .scroll-top-btn {
        right: 16px;
        width: 48px;
        height: 48px;
    }
}
