/* ========================================
   LIGO Website Styles - Matching Figma Design
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Exact from Figma */
    --color-primary: #5336d1;
    --color-secondary: #f2b305;
    --color-accent: #04d9b2;
    --color-accent-alt: #00d9b2;
    --color-dark: #000000;
    --color-light: #ffffff;
    --color-gray: #d5d5d5;
    --color-purple-light: #6968c9;
    --color-blue: #006be9;
    --color-purple-dark: #2412b9;
    --color-purple-gradient-start: #2613c7;
    --color-purple-gradient-end: #2412b9;

    /* Font Families - Matching Figma Design */
    --font-display: 'Dx Playhigh', 'Bebas Neue', 'Oswald', sans-serif;
    --font-subtitle: 'BBH Sans Bartle', 'Syne', sans-serif;
    --font-highlight: 'Zilla Slab Highlight', 'Zilla Slab', serif;
    --font-mono: 'Geist Mono', 'JetBrains Mono', 'Fira Code', monospace;
    --font-body: 'DM Sans', 'Inter', sans-serif;
    --font-nav: 'Inter', system-ui, sans-serif;
    --font-syne: 'Syne', 'DM Sans', sans-serif;
    --font-satoshi: 'Satoshi', 'Satoshi Variable', 'Inter', sans-serif;

    --transition-default: all 0.3s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-light);
    background-color: var(--color-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-default);
}

img {
    /* max-width: 100%; */
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button, input {
    font-family: inherit;
    border: none;
    outline: none;
}

/* ========================================
   Header Styles - Figma: 1280x96.568px
   Pixel-perfect positioning from Figma node 1:280
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72.568px;
    z-index: 1000;
    padding: 24px 64px;
    background: #ffffff;
    transition: var(--transition-default);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 64px;
    height: auto;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
}

.logo img {
    height: 48.568px;
    width: 69.748px;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
    height: 23px;
}

.nav-link {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-dark);
    letter-spacing: -0.08px;
    line-height: 1.4375; /* 23px / 16px */
    white-space: nowrap;
    transition: var(--transition-default);
}

.header.scrolled .nav-link {
    color: var(--color-light);
}

.nav-link:hover {
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--color-light);
    transition: var(--transition-default);
}

.header.scrolled .mobile-menu-btn span {
    background: var(--color-light);
}

/* ========================================
   Hero Section - Figma: 1440x1024px
   Pixel-perfect positioning from Figma node 1:291
   ======================================== */
.hero {
    position: sticky;
    top: -108px;
    width: 100%;
    /* max-width: 1440px; */
    height: 1024px;
    min-height: 112vh;
    overflow: hidden;
    margin: 0 auto;
    z-index: 30;
}

.hero-gradient {
    position: absolute;
    left: 0;
    top: 14px;
    width: 100%;
    height: 1080px;
    background: linear-gradient(179.99deg, rgba(217, 217, 217, 0) 37.72%, rgb(36, 18, 185) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    top: -26px;
}

.hero-bg-img {
    width: 101%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    left: 0;
    top: 14px;
    width: 100%;
    height: 1300px;
    background: linear-gradient(179.99deg, rgba(217, 217, 217, 0) 37.72%, rgb(36, 18, 185) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
    position: absolute;
    left: 268px;
    top: 124px;
}

.hero-subtitle {
    font-family: var(--font-subtitle);
    font-size: 29.717px;
    color: var(--color-gray);
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: 0;
    margin-bottom: 0;
}

.hero-title {
    position: absolute;
    left: 265px;
    top: 243px;
    font-family: var(--font-display);
    font-size: 128.707px;
    text-transform: uppercase;
    line-height: 97.503px;
    margin: 0;
    font-weight: 400;
    color: var(--color-gray);
    letter-spacing: 0;
}

.hero-title span {
    display: block;
}

.hero-person {
    position: absolute;
    left: 469px;
    top: 201px;
    z-index: 2;
    width: 437px;
    height: 408px;
    animation: levitate 3s ease-in-out infinite;
}

.hero-person img {
    width: 437px;
    height: 408px;
    object-fit: cover;
    filter: drop-shadow(10px 20px 60px rgba(0, 0, 0, 0.39));
    transition: filter 3s ease-in-out;
}

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

.hero-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) !important;
    text-align: center;
    z-index: 3;
    width: 100%;
}

.hero-app-icon {
    position: absolute;
    left: 665px;
    top: 631px;
    width: 100px;
    height: 100px;
    border-radius: 31.694px;
    background: linear-gradient(to bottom, #f1f5ff, #bdd0ff);
    box-shadow: 0px 11.677px 20.017px 0px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-app-icon img {
    width: 70%;
    height: 60%;
}

.hero-description {
    position: absolute;
    left: 50%;
    top: 763px;
    transform: translateX(-50%) !important;
    font-family: var(--font-syne);
    font-weight: 500;
    font-size: 24px;
    color: var(--color-gray);
    line-height: normal;
    text-align: center;
    white-space: nowrap;
    width: 717px;
}

.hero-badges {
    position: absolute;
    left: 506px;
    top: 894px;
    display: flex;
    gap: 0;
    width: 428.018px;
    height: 55.153px;
}

.app-badge {
    background: rgba(217, 217, 217, 0.4);
    backdrop-filter: blur(2.88px);
    border-radius: 8.64px;
    transition: var(--transition-default);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.app-badge.google-play {
    margin-right: 10px;
}

.app-badge:hover {
    transform: translateY(-3px);
    background: rgba(217, 217, 217, 0.6);
}

.app-badge img {
    height: 40px;
    width: auto;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
}

.badge-icon {
    font-size: 20px;
    color: var(--color-light);
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.badge-small {
    font-family: var(--font-body);
    font-size: 8px;
    color: var(--color-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-large {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-light);
}

/* ========================================
   Scroll-mapped Video Transition
   ======================================== */
.scroll-transition {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 200vh;
}

.scroll-transition-video {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
}

/* ========================================
   Members Section - Figma: 1440x1024px
   ======================================== */
.members {
    position: relative;
    width: 100%;
    height: calc(1024px + 80vh);
    z-index: 15;
    background-color: #120877;
}

.members-bg {
    position: sticky;
    top: 0;
    width: 100%;
    height: 1057px;
    margin-bottom: -1057px;
    z-index: 0;
    overflow: hidden;
}

.members-bg-img {
    width: 124% !important;
    height: 150% !important;
    object-fit: cover;
    position: absolute;
    top: -24%;
    left: 0;
    max-width: 200% !important;
}

.members-content {
    position: sticky;
    top: 0;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    height: 1024px;
    margin: 0 auto;
    overflow: hidden;
}

.members-subtitle {
    position: absolute;
    left: calc(50% - 285px);
    top: 83px;
    font-family: var(--font-subtitle);
    font-size: 25.545px;
    color: var(--color-gray);
    text-transform: lowercase;
    letter-spacing: 0;
    margin: 0;
}

.members-title {
    position: absolute;
    left: 50%;
    top: 121px;
    transform: translateX(calc(-50% - 13px)) !important;
    font-family: var(--font-display);
    font-size: 202.5px;
    color: var(--color-gray);
    line-height: normal;
    font-weight: 400;
    margin: 0;
    text-align: center;
    letter-spacing: 0;
}

.members-layout {
    position: absolute;
    inset: 0;
}

.members-info {
    position: absolute;
    left: 196px;
    top: 372px;
    text-align: left;
}

.members-highlight {
    position: absolute;
    left: 196px;
    top: 460px;
    font-family: var(--font-display);
    font-size: 57.717px;
    color: var(--color-light);
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

.members-description {
    font-family: var(--font-syne);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-light);
    line-height: normal;
    margin: 0 0 20px 0;
    max-width: 290px;
    white-space: pre-wrap;
}

.members-benefits {
    position: absolute;
    left: 196px;
    top: 520px;
    font-family: var(--font-highlight);
    font-size: 24px;
    color: var(--color-light);
    text-transform: uppercase;
    line-height: 1.4;
    font-weight: 400;
}

.members-benefits li {
    margin-bottom: 0;
    line-height: 34px;
}

.members-phone {
    position: absolute;
    left: 50%;
    top: 73px;
    /* transform: translateX(-45%) !important; */
    /* transform-origin: center top; */
    width: 444px;
    height: 670px;
}

.phone-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.phone-frame {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.phone-screen {
    position: absolute;
    top: 78px;
    left: 19.82%;
    width: 54.28%;
    height: auto;
    border-radius: 36px !important;
    z-index: 2;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 1179 / 2556;
}

.phone-mockup {
    width: 100%;
    height: auto;
    filter: drop-shadow(10px 20px 60px rgba(0, 0, 0, 0.39));
    position: relative;
    z-index: 1;
}

.arrow-hand {
    position: absolute;
    left: 440px;
    top: 359px;
    width: 100px;
    height: 339px;
    object-fit: contain;
    transform: scaleY(-1) rotate(180deg);
}

.members-cta {
    position: absolute;
    right: 146px;
    top: 549px;
    text-align: left;
}

.members-cta-title {
    position: absolute;
    left: 1016px;
    top: 707px;
    font-family: var(--font-display);
    font-size: 37.034px;
    color: var(--color-light);
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

.members-form {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.input-field {
    background: var(--color-primary);
    border: 1px solid var(--color-light);
    padding: 12px 16px;
    color: var(--color-light);
    font-family: var(--font-mono);
    font-size: 13px;
    width: 278px;
    height: 42px;
}

.input-field::placeholder {
    color: var(--color-light);
    opacity: 1;
}

.input-purple {
    background: var(--color-purple-light);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-accent);
    padding: 16px 24px;
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-primary);
    cursor: pointer;
    transition: var(--transition-default);
    width: fit-content;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(254, 193, 17, 0.4);
}

.btn-bullet {
    width: 4px;
    height: 4px;
    background: var(--color-primary);
}

.members-footer-text {
    position: absolute;
    left: calc(50% - 337px);
    top: 905px;
    font-family: var(--font-syne);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-light);
    margin: 0;
}

.members-input {
    position: absolute;
    left: 1016px;
    top: 549px;
}

.members-btn {
    position: absolute;
    left: calc(50% + 434.5px);
    top: 625px;
    transform: translateX(-50%);
    background: #04d9b2;
}

.members-btn:hover {
    background: #00c9a2;
}

/* ========================================
   Map Section (Dónde Caer) - Figma: 1440x1024px
   ======================================== */
.map-section {
    position: relative;
    width: 100%;
    height: 1024px;
    min-height: 100vh;
    overflow: hidden;
    background: #c4c4c4;
    z-index: 15;
}

.map-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.map-bg-img {
    width: 122%;
    height: 108% !important;
    object-fit: cover;
    position: absolute;
    /* top: 40px; */
    left: -159px;
    max-width: 200% !important;
}

.map-bg-mobile {
    display: none;
}

.map-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1024px;
    background: linear-gradient(89.45deg, rgba(217, 217, 217, 0) 32.65%, rgba(38, 19, 124, 1) 99.34%);
    mix-blend-mode: multiply;
}

.map-gradient-top {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 636px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 37.72%, rgba(36, 18, 185, 1) 100%);
    mix-blend-mode: lighten;
    transform: rotate(180deg);
}

.map-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
}

.map-subtitle {
    position: absolute;
    left: 516px;
    top: 134px;
    font-family: var(--font-subtitle);
    font-size: 25.545px;
    color: var(--color-gray);
    text-transform: lowercase;
    letter-spacing: 0;
    margin: 0;
    width: 408px;
    text-align: center;
}

.map-title {
    position: absolute;
    left: 311px;
    top: 172px;
    font-family: var(--font-display);
    font-size: 202.5px;
    color: var(--color-gray);
    line-height: 188px;
    font-weight: 400;
    margin: 0;
    text-align: center;
    letter-spacing: 0;
    width: 818px;
}

.map-phone {
    position: absolute;
    left: calc(50% + 20px);
    top: 224px;
    transform: translateX(-50%) !important;
    width: 444px;
    height: 671px;
}

.map-phone .phone-mockup {
    position: absolute;
    width: 100%;
    height: auto;
    filter: drop-shadow(10px 20px 60px rgba(0, 0, 0, 0.39));
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.map-phone .phone-screen {
    position: absolute;
    left: 19.82%;
    top: 77px;
    width: 54.28%;
    height: auto;
    border-radius: 36px;
    z-index: 3;
    aspect-ratio: 1179/2556;
}

.map-highlight {
    position: absolute;
    left: 943px;
    top: 396px;
    font-family: var(--font-syne);
    font-weight: 700;
    font-size: 20px;
    color: #f2b305;
    line-height: 20px;
    margin: 0;
    text-align: left;
    white-space: nowrap;
}

.map-search {
    position: absolute;
    left: 943px;
    top: 470px;
}

.map-search .input-field {
    width: 366px;
    height: 42px;
    background: #6968c9;
    border: 1px solid white;
    font-family: var(--font-mono);
    font-size: 13px;
    color: white;
    padding: 0 15px;
}

.map-search .input-field::placeholder {
    color: white;
    opacity: 1;
}

.map-question {
    position: absolute;
    left: 943px;
    top: 542px;
    font-family: var(--font-syne);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-gray);
    text-transform: uppercase;
    line-height: 20px;
    margin: 0;
}

.map-features {
    position: absolute;
    left: 944px;
    top: 588px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.map-features li {
    display: flex;
    align-items: flex-start;
    gap: 27px;
    font-family: var(--font-syne);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-gray);
    line-height: 20px;
}

.feature-icon {
    width: 23px;
    height: auto;
    flex-shrink: 0;
}

/* ========================================
   Medusa Section (Chat) - Figma: 1440x1024px
   ======================================== */
.medusa-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 1024px;
    overflow: visible;
    background: var(--color-blue);
    z-index: 15;
}

.medusa-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.medusa-bg-img {
    width: 100%;
    height: 121% !important;
    object-fit: cover;
    position: absolute;
    /* top: 6px; */
    /* left: -48px; */
}

.medusa-characters {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.jellyfish {
    position: absolute;
    height: auto;
    opacity: 1;
    z-index: 5;
    width: 5% !important;
    height: 11%;
}

/* Positioning jellyfish based on Figma design */
.jellyfish-1 {
    /* BOY - right side upper */
    left: 78%;
    top: 65.14%;
    width: 53px;
}

.jellyfish-2 {
    /* BOY - left side */
    left: 25.76%;
    top: 61.13%;
    width: 53px;
}

.jellyfish-3 {
    /* BOY - bottom center */
    left: 64.93%;
    top: 87.11%;
    width: 53px;
}

.jellyfish-4 {
    /* GIRL - right side pink */
    left: 70%;
    top: 72.42%;
    width: 51px;
}

.jellyfish-5 {
    /* GIRL - far left pink */
    left: 9.72%;
    top: 68.8%;
    width: 51px;
}

.jellyfish-6 {
    /* GIRL - far right upper */
    left: 82%;
    top: 56.5%;
    width: 51px;
}

.jellyfish-7 {
    /* GIRL - left lower */
    left: 29.58%;
    top: 79.74%;
    width: 51px;
}

.jellyfish-8 {
    /* GLBTI - right side lower */
    left: 78%;
    top: 78.85%;
    width: 53px;
}

.jellyfish-9 {
    /* GLBTI - left side */
    left: 16.32%;
    top: 65.23%;
    width: 53px;
}

.medusa-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.medusa-subtitle {
    position: absolute;
    left: calc(50% - 291px);
    top: 89px;
    font-family: var(--font-subtitle);
    font-size: 25.545px;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0;
}

.medusa-title {
    position: absolute;
    left: 50%;
    top: 120px;
    transform: translateX(calc(-50% - 0.5px)) !important;
    font-family: var(--font-display);
    font-size: 181.204px;
    color: #d5d5d5;
    line-height: normal;
    font-weight: 400;
    margin: 0;
    text-align: center;
    letter-spacing: 0;
    z-index: 5;
}

.medusa-layout {
    position: absolute;
    inset: 0;
}

.medusa-info {
    text-align: left;
}

.medusa-info.left {
    position: absolute;
    left: 148px;
    top: 369px;
    width: 406px;
    height: 134px;
}

.medusa-info.right {
    position: absolute;
    left: 970px;
    top: 305px;
    width: 420px;
    z-index: 5;
}

.medusa-description {
    font-family: var(--font-syne);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-light);
    line-height: 28px;
    margin-bottom: 0;
    /* white-space: pre-wrap; */
}

.medusa-tagline {
    font-family: var(--font-syne);
    font-size: 24px;
    color: var(--color-light);
    font-weight: 400;
    margin: 20px 0 0 0;
}

.medusa-phone {
    position: absolute;
    left: calc(50% + 22px);
    top: 146px;
    transform: translateX(-50%);
    width: 444px;
    height: 671px;
    z-index: 10;
}

.medusa-phone.animate-on-scroll {
    transform: translateX(-50%) translateY(30px);
}

.medusa-phone.animated {
    transform: translateX(-50%) translateY(0) !important;
}

.medusa-phone .phone-screen-only {
    width: 100%;
    height: auto;
    filter: drop-shadow(10px 20px 60px rgba(0, 0, 0, 0.39));
}

/* Traveling Phone - single phone that moves between sections */
#traveling-phone {
    position: fixed;
    top: 0;
    left: 0;
    width: 444px;
    height: 671px;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    will-change: transform;
}

#traveling-phone.visible {
    opacity: 1;
}

#traveling-phone .traveling-frame {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(10px 20px 60px rgba(0, 0, 0, 0.39));
}

#traveling-phone .traveling-screen {
    position: absolute;
    top: 77px;
    left: 19.82%;
    width: 54.28%;
    height: auto;
    border-radius: 36px;
    z-index: 2;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 1179/2556;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#traveling-phone .traveling-screen.active {
    opacity: 1;
}

/* Hide original phones when traveling phone is active */
.traveling-active .members-phone,
.traveling-active .map-phone,
.traveling-active .medusa-phone {
    visibility: hidden !important;
}

.medusa-explanation {
    font-family: var(--font-syne);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gray);
    line-height: 19px;
    margin-bottom: 0;
}

.medusa-questions {
    margin-top: 13px;
}

.medusa-questions p {
    font-family: var(--font-syne);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-gray);
    line-height: 32px;
    margin-bottom: 0;
}

.highlight-text {
    font-family: 'Zilla Slab Highlight', 'Zilla Slab', serif;
    text-transform: uppercase;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    line-height: 32px;
}

/* ========================================
   Plans Section (LIGO Prime) - Figma: 1440x1024px
   Pixel-perfect positioning from Figma node 1:1158
   ======================================== */
.plans-section {
    position: relative;
    width: 100%;
    height: 1024px;
    min-height: 100vh;
    overflow: hidden;
    z-index: 15;
}

.plans-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.plans-bg-img {
    width: 100%;
    height: 117%;
    object-fit: cover;
    position: absolute;
    top: -9%;
    left: 0;
}

.plans-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
}

.plans-subtitle {
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%) !important;
    font-family: var(--font-subtitle);
    font-size: 25.545px;
    color: var(--color-gray);
    text-transform: lowercase;
    letter-spacing: 0;
    margin: 0;
    white-space: nowrap;
}

.plans-title {
    position: absolute;
    left: 50%;
    top: 121px;
    transform: translateX(-50%) !important;
    font-family: var(--font-display);
    font-size: 202.5px;
    color: var(--color-gray);
    line-height: 148px;
    font-weight: 400;
    margin: 0;
    text-align: center;
    letter-spacing: 0;
}

.plans-layout {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Steps - Left Side */
.plans-steps {
    position: absolute;
    left: 224px;
    top: 352px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-icon {
    width: 67.302px;
    height: 67.302px;
    background: var(--color-secondary);
    transform: rotate(45deg);
    border-radius: 12.898px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: 3.6px;
    background: var(--color-secondary);
    border: 0.86px solid var(--color-primary);
    border-radius: 10px;
    z-index: 0;
}

.step-icon img {
    transform: rotate(-45deg);
    width: 28px;
    height: 26px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    /* filter: brightness(0) invert(1); */
}

.step-text {
    font-family: var(--font-syne);
    font-weight: 700;
    font-size: 12.898px;
    color: var(--color-light);
    text-transform: uppercase;
}

/* Couple Image - Center */
.plans-couple {
    position: absolute;
    left: 513px;
    top: 251px;
    width: 301px;
    height: 493px;
    z-index: 5;
}

.plans-couple img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

/* LIGO Prime Card - Right Side */
.plans-card {
    position: absolute;
    left: 1012px;
    top: 246px;
    width: 310px;
    height: 671px;
    background: linear-gradient(180deg, #5336d1 0%, #000000 100%);
    border-radius: 12px;
    overflow: visible;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.go-for-it {
    position: absolute;
    font-family: var(--font-syne);
    font-weight: 700;
    font-size: 3.094px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.go-for-it.left {
    left: -3px;
    top: 50%;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: left center;
}

.go-for-it.right {
    right: -3px;
    top: 60%;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: right center;
}

.card-header {
    padding: 18px 20px 10px;
}

.card-title {
    font-family: var(--font-subtitle);
    font-size: 29.379px;
    color: var(--color-light);
    line-height: 1.1;
    font-weight: 400;
}

.card-body {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-section {
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(6.525px);
    -webkit-backdrop-filter: blur(6.525px);
    padding: 20px;
    text-align: center;
    height: 189px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price {
    font-family: var(--font-syne);
    font-weight: 700;
    font-size: 57.545px;
    color: #00d9b2;
    display: block;
    line-height: 1;
}

.price-period {
    font-family: var(--font-syne);
    font-weight: 700;
    font-size: 10.405px;
    color: var(--color-light);
    letter-spacing: 5.2027px;
    display: block;
    margin-top: 5px;
}

.price-daily {
    font-family: var(--font-syne);
    font-weight: 500;
    font-size: 13.276px;
    color: var(--color-light);
    display: block;
    margin-top: 8px;
}

.card-description {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11.098px;
    color: var(--color-light);
    text-align: center;
    line-height: 1.4;
    padding: 15px 37px;
    width: 100%;
}

.card-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 0;
}

.plan-option {
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(6.525px);
    -webkit-backdrop-filter: blur(6.525px);
    border-radius: 12.805px 12.805px 0 0;
    padding: 12px 8px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-price {
    font-family: var(--font-syne);
    font-weight: 700;
    font-size: 29.568px;
    color: #00d9b2;
    display: block;
    line-height: 1;
    order: 1;
}

.plan-duration {
    font-family: var(--font-syne);
    font-weight: 700;
    font-size: 9.39px;
    color: var(--color-light);
    letter-spacing: 4.6951px;
    display: block;
    margin-top: 5px;
    order: 2;
}

.plan-savings {
    font-family: var(--font-syne);
    font-weight: 500;
    font-size: 9.39px;
    color: var(--color-light);
    display: block;
    line-height: 1.4;
    margin-top: 5px;
    order: 3;
}

.btn-subscribe {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #04d9b2;
    padding: 14px 40px;
    margin: 15px 20px 10px;
    border-radius: 8px;
    font-family: var(--font-syne);
    font-weight: 700;
    font-size: 14px;
    color: #5336d1;
    text-transform: capitalize;
    transition: background 0.3s;
}

.btn-subscribe:hover {
    background: #00c9a2;
}

.corporate-link {
    display: block;
    padding: 14px 20px;
    text-align: center;
    font-family: var(--font-syne);
    font-weight: 700;
    font-size: 9.39px;
    color: #5336d1;
    letter-spacing: 1.878px;
    text-transform: uppercase;
    margin: 0 20px;
    background: #04d9b2;
    border: none;
    border-radius: 0 0 12.805px 12.805px;
    height: 45.244px;
}

.corporate-link:hover {
    background: #00c9a2;
}

.card-footer {
    padding: 15px 20px 20px;
    margin-top: auto;
}

.plans-card .download-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.plans-card .badge-link {
    background: rgba(217, 217, 217, 0.4);
    backdrop-filter: blur(2.458px);
    -webkit-backdrop-filter: blur(2.458px);
    border-radius: 6px;
    padding: 6px 10px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plans-card .badge-link img {
    height: 24px;
    width: auto;
}

/* ========================================
   Partners Section (Guauuu)
   ======================================== */
.partners-section {
    position: relative;
    min-height: 100vh;
    height: 1024px;
    padding: 100px 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #2412b9 0%, #5336d1 100%);
    z-index: 15;
}

.partners-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.partners-bg-img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center bottom;
}

.partners-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(83, 54, 209, 0.5) 100%);
}

.partners-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.partners-subtitle {
    font-family: var(--font-subtitle);
    font-size: 25.545px;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0;
}

.partners-title {
    font-family: var(--font-display);
    font-size: 202.5px;
    color: var(--color-gray);
    line-height: 180px;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0;
}

.partners-layout {
    margin-top: 55%;
}

.partners-question {
    font-family: var(--font-syne);
    font-weight: 700;
    font-size: 30px;
    color: var(--color-light);
    margin-bottom: 20px;
    text-align: center;
}

.partners-description {
    font-family: var(--font-syne);
    font-weight: 500;
    font-size: 20px;
    color: var(--color-light);
    margin-bottom: 40px;
}

.partners-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.partners-form .input-field {
    width: 100%;
    max-width: 500px;
    height: 50px;
    background: rgba(217, 217, 217, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.partners-form .btn-primary {
    width: 100%;
    max-width: 500px;
    justify-content: center;
}

.btn-yellow {
    background: #f2b305;
    color: #5336d1;
}

.btn-yellow:hover {
    background: #e0a500;
}

.partners-footer-question {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-syne);
    font-weight: 600;
    font-size: 24px;
    color: var(--color-light);
    text-align: center;
}

/* ========================================
   Footer - Figma: 1280x414.222px
   Pixel-perfect positioning from Figma node 1:1331
   ======================================== */
.footer {
    position: relative;
    z-index: 15;
    background: var(--color-dark);
    padding: 89px 44px 40px;
    width: 100%;
    height: 414px;
    max-width: 100%;
    margin: 0 auto;
}

.footer-container {
    max-width: 1191px;
    height: 307px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    gap: 0;
    padding-bottom: 53px;
}

.footer-brand {
    width: 506px;
    padding-right: 89px;
}

.footer-logo img {
    width: 62px;
    height: 43.17px;
    margin-bottom: 18px;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-light);
    line-height: 1.3;
    max-width: 402px;
    height: auto;
}

.footer-links {
    display: flex;
    flex: 1;
}

.footer-column {
    flex: 1;
}

.footer-column:nth-child(1) {
    width: 204px;
}

.footer-column:nth-child(2) {
    width: 236px;
}

.footer-column:nth-child(3) {
    width: 230px;
}

.footer-title {
    font-family: var(--font-satoshi);
    font-weight: 500;
    font-size: 18px;
    color: #00d9b2;
    margin-bottom: 18px;
    line-height: 23px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-menu li a {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-light);
    display: flex;
    align-items: center;
    gap: 9px;
    line-height: 25px;
}

.footer-menu li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--color-accent);
}

.footer-menu li a:hover {
    color: var(--color-accent);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-social li a {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-light);
    display: flex;
    align-items: center;
    gap: 9px;
    line-height: 25px;
}

.footer-social li a i {
    font-size: 18px;
    color: var(--color-accent);
    width: 16px;
}

.footer-social li a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 27px;
    border-top: 1px dashed var(--color-light);
}

.copyright {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-light);
    line-height: 19px;
}

.powered-by {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-accent);
    line-height: 19px;
}

/* ========================================
   Responsive Styles
   ======================================== */

/* ---------- 1400px ---------- */
@media (max-width: 1400px) {
    .hero,
    .members,
    .map-section,
    .medusa-section {
        height: auto;
        min-height: 100vh;
    }

    .plans-section {
        height: auto;
        min-height: 900px;
    }

    .plans-steps {
        left: 100px;
    }

    .plans-card {
        left: auto;
        right: 40px;
    }

    .plans-phone {
        right: 220px;
    }
}

/* ---------- 1200px ---------- */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 90px;
        line-height: 80px;
    }

    .members-title,
    .map-title {
        font-size: 140px;
        line-height: 1;
    }

    .medusa-title {
        font-size: 120px;
    }

    /* ===== MEMBERS: Tighter absolute positioning ===== */
    .members-content {
        max-width: 100%;
    }

    .members-subtitle {
        left: calc(50% - 240px);
    }

    .members-info {
        left: 80px;
    }

    .members-highlight {
        left: 80px;
        font-size: 45px;
    }

    .members-benefits {
        left: 80px;
    }

    .members-cta-title {
        left: auto;
        right: 80px;
    }

    .members-input {
        left: auto;
        right: 80px;
    }

    .members-btn {
        left: auto;
        right: 80px;
        transform: none;
    }

    .members-phone {
        width: 380px;
        height: auto;
    }

    /* ===== HERO: Convert absolute → flex at 1200px ===== */
    .hero {
        padding: 90px 40px 50px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .hero-text {
        position: relative;
        left: auto;
        top: auto;
        text-align: center;
    }

    .hero-title {
        position: relative;
        left: auto;
        top: auto;
        text-align: center;
        margin-top: 10px;
    }

    .hero-person {
        position: relative;
        left: auto;
        top: auto;
        width: 80%;
        max-width: 420px;
        height: auto;
        margin: 30px auto 0;
    }

    .hero-person img {
        width: 100%;
        height: auto;
    }

    .hero-app-icon {
        position: relative;
        left: auto;
        top: auto;
        margin: 20px auto;
    }

    .hero-description {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: auto;
        max-width: 90%;
        white-space: normal;
        margin: 0 auto;
    }

    .hero-badges {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        justify-content: center;
        margin-top: 25px;
    }

    /* Plans: convert from absolute to flex */
    .plans-section {
        height: auto;
        min-height: auto;
        padding: 100px 40px 120px;
    }

    .plans-content {
        position: relative;
        height: auto;
    }

    .plans-subtitle {
        position: relative;
        left: auto;
        top: auto;
        transform: none !important;
        text-align: center;
        margin-bottom: 10px;
    }

    .plans-title {
        position: relative;
        left: auto;
        top: auto;
        transform: none !important;
        font-size: 120px;
        line-height: 1;
        margin-bottom: 60px;
    }

    .plans-layout {
        position: relative;
        inset: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .plans-steps {
        position: relative;
        left: auto;
        top: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .plans-couple {
        position: relative;
        left: auto;
        top: 275px;
        width: 250px;
        height: auto;
        z-index: 0;
    }

    .plans-phone {
        position: relative;
        right: auto;
        top: auto;
        width: 180px;
    }

    .plans-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        max-width: 350px;
        height: auto;
        min-height: auto;
    }

    .step-icon {
        width: 55px;
        height: 55px;
    }

    .step-icon img {
        width: 20px;
        height: 20px;
    }

    .plans-bg-img {
        height: 100% !important;
        top: 0;
    }

    /* ===== MAP: Shift right-side content ===== */
    .map-subtitle {
        left: 50%;
        transform: translateX(-50%);
        width: auto;
    }

    .map-phone {
        width: 380px;
        height: auto;
    }

    .map-highlight {
        left: auto;
        right: 80px;
    }

    .map-search {
        left: auto;
        right: 80px;
    }

    .map-search .input-field {
        width: 300px;
    }

    .map-question {
        left: auto;
        right: 80px;
    }

    .map-features {
        left: auto;
        right: 80px;
    }

    /* ===== MEDUSA: Tighter positioning ===== */
    .medusa-phone {
        width: 380px;
        height: auto;
    }

    .medusa-info.left {
        left: 60px;
        width: 340px;
    }

    .medusa-info.right {
        left: auto;
        right: 60px;
        width: 360px;
    }

    /* ===== PARTNERS: New 1200px breakpoint ===== */
    .partners-title {
        font-size: 140px;
        line-height: 130px;
    }

    .partners-subtitle {
        font-size: 22px;
    }

    .partners-section {
        padding: 80px 60px;
        height: auto;
        min-height: auto;
    }

    .partners-layout {
        margin-top: 45%;
    }

    .partners-question {
        font-size: 26px;
    }

    .partners-description {
        font-size: 18px;
    }

    /* ===== FOOTER: New 1200px breakpoint ===== */
    .footer {
        padding: 70px 40px 35px;
        height: auto;
    }

    .footer-container {
        max-width: 100%;
        height: auto;
    }

    .footer-brand {
        width: 400px;
        padding-right: 60px;
    }

    .footer-column:nth-child(1),
    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        width: auto;
    }
}

/* ---------- 992px: Major layout conversion ---------- */
@media (max-width: 992px) {
    /* -- Header -- */
    .header {
        padding: 16px 30px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* ===== SCROLL TRANSITION: hide on mobile ===== */
    .scroll-transition {
        display: none;
    }

    .scroll-transition-video {
        opacity: 0 !important;
    }

    /* -- All sections: remove fixed heights -- */
    .hero,
    .members,
    .map-section,
    .medusa-section,
    .plans-section,
    .partners-section {
        height: auto;
        min-height: auto;
        overflow: hidden;
    }

    /* ===== HERO ===== */
    .hero {
        padding: 90px 30px 50px;
        opacity: 1 !important;
        position: relative;
        top: auto;
        min-height: 100dvh;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .hero-text {
        position: relative;
        left: auto;
        top: auto;
        text-align: center;
    }

    .hero-title {
        position: relative;
        left: auto;
        top: auto;
        font-size: 70px;
        line-height: 65px;
        text-align: center;
        margin-top: 10px;
    }

    .hero-person {
        position: relative;
        left: auto;
        top: auto;
        width: 80%;
        max-width: 400px;
        height: auto;
        margin: 30px auto 0;
    }

    .hero-person img {
        width: 100%;
        height: auto;
    }

    .hero-app-icon {
        position: relative;
        left: auto;
        top: auto;
        margin: 20px auto;
    }

    .hero-description {
        position: relative;
        left: auto;
        top: auto;
        transform: none !important;
        width: auto;
        max-width: 90%;
        white-space: normal;
        font-size: 18px;
        margin: 0 auto;
    }

    .hero-badges {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        justify-content: center;
        margin-top: 25px;
    }

    /* ===== MEMBERS ===== */
    .members {
        padding: 80px 0px 60px;
        height: auto;
        min-height: auto;
    }

    .members-bg {
        position: absolute;
        height: 100%;
        margin-bottom: 0;
    }

    .members-bg-img {
        position: relative;
        width: 150%;
        height: 100% !important;
        top: auto;
        left: auto;
        object-fit: cover;
        object-position: center top;
    }

    .members-content {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .members-subtitle {
        position: relative;
        left: auto;
        top: auto;
        text-align: center;
        margin-bottom: 5px;
    }

    .members-title {
        position: relative;
        left: auto;
        top: auto;
        transform: none !important;
        font-size: 80px;
        text-align: center;
        margin-bottom: 20px;
    }

    .members-phone {
        position: relative;
        left: auto;
        top: auto;
        transform: none !important;
        width: 80%;
        max-width: 320px;
        height: auto;
        margin: 0 auto 30px;
    }

    .arrow-hand {
        display: none;
    }

    .members-info {
        position: relative;
        left: auto;
        top: auto;
        text-align: center;
    }

    .members-description {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .members-highlight {
        position: relative;
        left: auto;
        top: auto;
        text-align: center;
        margin: 15px 0;
    }

    .members-benefits {
        position: relative;
        left: auto;
        top: auto;
        text-align: center;
        margin-bottom: 30px;
    }

    .members-cta {
        position: relative;
        right: auto;
        top: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        max-width: 350px;
    }

    .members-input {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 350px;
    }

    .members-btn {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
    }

    .members-cta-title {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        text-align: center;
        margin-top: 20px;
    }

    .members-footer-text {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        text-align: center;
        font-size: 18px;
        margin-top: 10px;
    }

    /* ===== MAP ===== */
    .map-section {
        padding: 80px 30px 60px;
    }

    .map-bg-img {
        width: 123%;
        height: 100% !important;
        left: 0px;
    }

    .map-bg-desktop {
        display: none;
    }

    .map-bg-mobile {
        display: block;
    }

    .map-gradient {
        height: 100%;
    }

    .map-gradient-top {
        height: 50%;
    }

    .map-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .map-subtitle {
        position: relative;
        left: auto;
        top: auto;
        text-align: center;
        width: auto;
        margin-bottom: 5px;
    }

    .map-title {
        position: relative;
        left: auto;
        top: auto;
        font-size: 80px;
        line-height: 1;
        text-align: center;
        width: auto;
        margin-bottom: 20px;
    }

    .map-phone {
        position: relative;
        left: auto;
        top: auto;
        transform: none !important;
        width: 80%;
        max-width: 320px;
        height: auto;
        margin: 0 auto 30px;
    }

    .map-phone .phone-mockup {
        position: relative;
        top: auto;
        transform: none;
    }

    .map-phone .phone-screen {
        position: absolute;
        left: 19.82%;
        top: 11.5%;
        width: 54.28%;
    }

    .map-highlight {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        text-align: center;
        white-space: normal;
        margin-bottom: 20px;
    }

    .map-search {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .map-search .input-field {
        width: 100%;
    }

    .map-question {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        text-align: center;
        margin-bottom: 20px;
    }

    .map-features {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        align-items: flex-start;
        width: 100%;
        max-width: 400px;
    }

    /* ===== MEDUSA ===== */
    .medusa-section {
        padding: 80px 30px 60px;
        overflow: hidden;
    }

    .medusa-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .medusa-subtitle {
        position: relative;
        left: auto;
        top: auto;
        text-align: center;
        margin-bottom: 5px;
    }

    .medusa-title {
        position: relative;
        left: auto;
        top: auto;
        transform: none !important;
        font-size: 70px;
        text-align: center;
        margin-bottom: 20px;
    }

    .medusa-layout {
        position: relative;
        inset: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0 30px;
    }

    .medusa-info.left {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        max-width: 500px;
        height: auto;
        text-align: left;
    }

    .medusa-info.right {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: auto;
        max-width: 500px;
        text-align: left;
    }

    .medusa-phone {
        display: none;
    }

    .medusa-phone.animate-on-scroll {
        transform: translateY(30px);
    }

    .medusa-phone.animated {
        transform: translateY(0) !important;
    }

    .medusa-explanation {
        display: none;
    }

    .medusa-characters {
        overflow: hidden;
        max-width: none;
        transform: none;
    }

    .jellyfish {
        width: 6% !important;
        height: 9%;
    }

    .jellyfish-1 { left: 85%; top: 55%; }
    .jellyfish-2 { left: 10%; top: 45%; }
    .jellyfish-3 { left: 70%; top: 80%; }
    .jellyfish-4 { left: 80%; top: 65%; }
    .jellyfish-5 { left: 5%;  top: 60%; }
    .jellyfish-6 { left: 90%; top: 40%; }
    .jellyfish-7 { left: 15%; top: 75%; }
    .jellyfish-8 { left: 85%; top: 70%; }
    .jellyfish-9 { left: 8%;  top: 50%; }

    /* ===== PLANS ===== */
    .plans-section {
        padding: 80px 30px 60px;
    }

    .plans-title {
        font-size: 70px;
    }

    .plans-steps {
        order: 1;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .plans-couple {
        order: 2;
    }

    .plans-card {
        order: 3;
        width: 100%;
        max-width: 340px;
    }

    .price-section {
        height: auto;
        padding: 18px 20px;
    }

    /* ===== PARTNERS ===== */
    .partners-section {
        padding: 60px 30px;
    }

    .partners-title {
        font-size: 80px;
        line-height: 1;
    }

    .partners-layout {
        margin-top: 40%;
    }

    .partners-question {
        font-size: 24px;
    }

    .partners-description {
        font-size: 18px;
    }

    .partners-section {
        height: auto;
        min-height: auto;
    }

    .partners-form {
        max-width: 100%;
    }

    .partners-form .input-field {
        max-width: 100%;
    }

    .partners-form .btn-primary {
        max-width: 100%;
        width: 100%;
    }

    /* ===== FOOTER ===== */
    .footer {
        width: 100%;
        height: auto;
        padding: 60px 30px 40px;
    }

    .footer-container {
        height: auto;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand {
        width: 100%;
        padding-right: 0;
    }

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

    .footer-column {
        width: auto !important;
        min-width: 150px;
    }
}

/* ---------- 768px ---------- */
@media (max-width: 768px) {
    /* -- Hero -- */
    .hero {
        padding: 80px 20px 40px;
    }

    .hero-title {
        font-size: 50px;
        line-height: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-person {
        max-width: 300px;
    }

    .hero-app-icon {
        width: 80px;
        height: 80px;
    }

    /* -- Members -- */
    .members {
        padding: 60px 0px 50px;
    }

    .members-title {
        font-size: 50px;
    }

    .members-highlight {
        font-size: 35px;
    }

    .members-benefits {
        font-size: 18px;
    }

    .members-footer-text {
        font-size: 16px;
    }

    /* -- Map -- */
    .map-section {
        padding: 60px 20px 50px;
    }

    .map-title {
        font-size: 50px;
    }

    /* -- Medusa -- */
    .medusa-section {
        padding: 60px 20px 50px;
    }

    .medusa-title {
        font-size: 55px;
    }

    .medusa-description {
        font-size: 18px;
    }

    .medusa-tagline {
        font-size: 18px;
        margin-top: 12px;
    }

    .medusa-questions p {
        font-size: 15px;
        line-height: 24px;
    }

    .jellyfish {
        width: 8% !important;
        height: 8%;
    }

    .jellyfish-3,
    .jellyfish-6,
    .jellyfish-8 {
        display: none;
    }

    /* -- Plans -- */
    .plans-section {
        padding: 60px 20px 50px;
    }

    .plans-title {
        font-size: 50px;
    }

    .plans-subtitle {
        font-size: 20px;
        white-space: normal;
        text-align: center;
    }

    /* ===== PLANS CARD: Tablet refinements ===== */
    .plans-card {
        max-width: 300px;
    }

    .card-description {
        padding: 12px 20px;
        font-size: 11px;
    }

    .card-plans {
        gap: 8px;
        padding: 0 15px;
    }

    .plan-option {
        padding: 10px 6px 12px;
    }

    .plan-price {
        font-size: 24px;
    }

    .plan-duration {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .plan-savings {
        font-size: 8px;
    }

    .corporate-link {
        margin: 0 15px;
        font-size: 8px;
        height: 40px;
    }

    .card-footer {
        padding: 12px 15px 15px;
    }

    .plans-card .badge-link {
        padding: 5px 8px;
    }

    .plans-card .badge-link img {
        height: 20px;
    }

    .plans-couple {
        width: 200px;
    }

    /* -- Partners -- */
    .partners-title {
        font-size: 50px;
    }

    .partners-layout {
        margin-top: 35%;
    }

    .partners-question {
        font-size: 20px;
    }

    .partners-description {
        font-size: 16px;
    }

    .partners-section {
        padding: 50px 20px;
    }

    .partners-form .input-field {
        height: 48px;
    }

    .partners-form .btn-primary {
        width: 100%;
        padding: 14px 20px;
    }

    /* -- Footer -- */
    .footer {
        padding: 40px 20px 30px;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-menu li a,
    .footer-social li a {
        font-size: 14px;
    }

    .copyright,
    .powered-by {
        font-size: 12px;
    }

    /* -- Inputs -- */
    .input-field {
        width: 100%;
    }
}

/* ---------- 480px ---------- */
@media (max-width: 480px) {
    /* -- Header: show nav links per Figma mobile -- */
    .header {
        height: auto;
        padding: 20px 24px;
    }

    .nav {
        display: flex !important;
        flex-direction: column;
        gap: 3px;
        align-items: flex-end;
        height: auto;
    }

    .nav-link {
        font-size: 13px;
    }

    .mobile-menu-btn {
        display: none !important;
    }

    /* -- Hero -- */
    .hero {
        padding: 130px 15px 30px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        display: none;
    }

    .hero-person {
        max-width: 100%;
        width: 85%;
    }

    .hero-app-icon {
        width: 70px;
        height: 70px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .app-badge {
        width: 100%;
        max-width: 250px;
    }

    /* -- Members (Figma mobile match) -- */
    .members {
        padding: 60px 0px 40px;
    }

    .members-title {
        font-size: 75px;
        line-height: 1;
        margin-bottom: 10px;
    }

    .members-subtitle {
        font-size: 11px;
    }

    /* Reorder: description before phone, cta-title before input */
    .members-info {
        order: 3;
        margin-bottom: 15px;
    }
    .members-phone {
        order: 4;
        max-width: 260px;
    }
    .members-highlight {
        order: 5;
        font-size: 28px;
        text-align: left;
        align-self: flex-start;
        padding-left: 23px;
    }
    .members-benefits {
        order: 6;
        font-size: 12px;
        text-align: left;
        align-self: flex-start;
        padding-left: 23px;
    }
    .members-benefits li {
        line-height: 19px;
    }
    .members-cta-title {
        order: 7;
        font-size: 24px;
        margin-top: 30px;
    }
    .members-cta {
        order: 8;
        padding: 0 23px;
    }
    .members-btn {
        display: none;
    }
    .members-footer-text {
        order: 9;
    }
    .members-description {
        font-size: 12px;
    }

    /* -- Map -- */
    .map-section {
        padding: 60px 15px 40px;
    }

    .map-title {
        font-size: 36px;
    }

    .map-subtitle {
        font-size: 18px;
    }

    .map-phone {
        max-width: 260px;
        margin-bottom: 490px;
    }

    .map-features li {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    /* -- Medusa (Figma mobile match) -- */
    .medusa-section {
        padding: 50px 15px 40px;
    }

    .medusa-title {
        font-size: 80px;
        margin-bottom: 25px;
    }

    .medusa-subtitle {
        font-size: 12px;
    }

    .medusa-layout {
        padding: 0 23px;
        gap: 15px;
    }

    .medusa-description {
        font-size: 16px;
        line-height: 20px;
    }

    .medusa-tagline {
        font-size: 16px;
        margin-top: 10px;
    }

    .medusa-questions p {
        font-size: 13px;
        line-height: 20px;
    }

    .jellyfish {
        width: 10% !important;
        height: 7%;
    }

    .jellyfish-2,
    .jellyfish-7 {
        display: none;
    }

    /* -- Plans (Figma mobile match) -- */
    .plans-section {
        padding: 50px 15px 40px;
    }

    .plans-title {
        font-size: 80px;
        line-height: 0.73;
        margin-bottom: 40px;
    }

    .plans-subtitle {
        font-size: 13px;
        margin-bottom: 5px;
    }

    /* ===== PLANS: Mobile two-column grid (Figma 375px match) ===== */
    .plans-layout {
        display: grid;
        grid-template-columns: 1fr 170px;
        gap: 10px 10px;
    }

    .plans-couple {
        grid-column: 1 / -1;
        order: -1;
        position: relative;
        left: auto;
        top: 100px;
        width: 250px;
        height: auto;
        z-index: 0;
        max-width: 280px;
        margin: 0 auto;
    }

    .plans-couple img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .plans-steps {
        grid-column: 1;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 14px;
        justify-content: flex-start;
        order: 0;
        align-self: start;
        padding-top: 5px;
    }

    .plans-steps .step {
        flex-direction: row;
        width: auto !important;
        min-width: auto;
        text-align: left;
        gap: 8px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
        border-radius: 8px;
    }

    .step-icon::before {
        border-radius: 6px;
    }

    .step-icon img {
        width: 16px;
        height: 16px;
    }

    .step-text {
        font-size: 8px;
    }

    .plans-card {
        grid-column: 2;
        order: 0;
        width: auto;
        max-width: none;
    }

    .card-header {
        padding: 12px 12px 6px;
    }

    .card-title {
        font-size: 16px;
        line-height: 1.1;
    }

    .price-section {
        padding: 10px 12px;
    }

    .price {
        font-size: 32px;
    }

    .price-period {
        font-size: 6px;
        letter-spacing: 2.8px;
        margin-top: 3px;
    }

    .price-daily {
        font-size: 7px;
        margin-top: 5px;
    }

    .card-description {
        padding: 8px 10px;
        font-size: 6px;
        line-height: 1.5;
    }

    .card-plans {
        padding: 0 8px;
        gap: 5px;
    }

    .plan-option {
        padding: 6px 4px 8px;
    }

    .plan-price {
        font-size: 16px;
    }

    .plan-duration {
        font-size: 5px;
        letter-spacing: 2.5px;
        margin-top: 2px;
    }

    .plan-savings {
        font-size: 5px;
        margin-top: 2px;
        line-height: 1.3;
    }

    .corporate-link {
        margin: 0 8px;
        font-size: 5px;
        height: 25px;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-footer {
        padding: 8px 8px 10px;
    }

    .plans-card .badge-link {
        padding: 4px 5px;
    }

    .plans-card .badge-link img {
        height: 14px;
    }

    .go-for-it {
        display: none;
    }

    /* -- Partners (Figma: 375x872) -- */
    .partners-section {
        padding: 50px 15px 40px;
        min-height: 800px;
    }

    .partners-title {
        font-size: 60px;
        line-height: 1;
    }

    .partners-subtitle {
        font-size: 16px;
    }

    .partners-layout {
        margin-top: 55%;
    }

    .partners-question {
        font-size: 18px;
    }

    .partners-description {
        font-size: 14px;
    }

    .partners-form .input-field {
        height: 44px;
        font-size: 16px;
    }

    .partners-form .btn-primary {
        padding: 12px 16px;
        font-size: 12px;
    }

    /* -- Footer -- */
    .footer {
        padding: 30px 15px 20px;
    }

    .footer-column {
        min-width: auto;
    }

    .footer-column {
        width: 100% !important;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-menu li a,
    .footer-social li a {
        font-size: 13px;
    }

    .copyright,
    .powered-by {
        font-size: 11px;
    }

    /* ===== GLOBAL: Touch-friendly inputs ===== */
    .input-field {
        height: 48px;
        font-size: 16px;
        padding: 14px 16px;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }
}