        :root {
            --orange: #FF8A00;
            --orange-hover: #E87A00;
            --ink: #1A1A1A;
            --ink-2: #333333;
            --muted: #6B7280;
            --line: #E8E8E8;
            --bg: #FFFFFF;
            --bg-soft: #FAF8F5;
            --max: 1240px;
            --radius: 14px;
            --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 2px 8px rgba(0,0,0,.04);
            --shadow-lg: 0 20px 60px rgba(15, 23, 42, .12);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 17px;
            line-height: 1.55;
            color: var(--ink-2);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a { color: inherit; text-decoration: none; }
        button { font-family: inherit; cursor: pointer; border: none; background: none; }
        img { display: block; max-width: 100%; height: auto; }

        .container {
            max-width: var(--max);
            margin: 0 auto;
            padding: 0 28px;
        }

        /* ============ HEADER ============ */
        .header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: saturate(140%) blur(12px);
            -webkit-backdrop-filter: saturate(140%) blur(12px);
            border-bottom: 1px solid var(--line);
        }
        .header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            height: 72px;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            font-size: 16px;
            color: var(--ink);
            letter-spacing: -.01em;
            line-height: 1.15;
            text-transform: uppercase;
        }
        .brand__mark {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--ink) center/cover no-repeat url('/assets-package-v4/img/avatar.webp');
            background-position: center 20%;
            flex-shrink: 0;
            box-shadow: 0 0 0 2px var(--orange);
        }
        .brand__text { display: inline-block; }
        .brand__text span { color: var(--orange); }

        .nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Language selector */
        .lang {
            position: relative;
        }
        .lang__btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            color: var(--ink);
            transition: background .2s;
        }
        .lang__btn:hover { background: #F2F2F2; }
        /* the flag assets are circular badges on a square canvas (40x40), so a
           landscape box with object-fit:cover clipped the top and bottom off */
        .lang__flag {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            object-fit: contain;
            box-shadow: 0 0 0 1px rgba(0,0,0,.05);
        }
        .lang__chev { width: 10px; height: 8px; opacity: .6; }
        /* Multi-column list, as on the package-v4 landing: 30 languages in one
           tall scrolling column is unusable, three short columns fit on screen. */
        .lang__dropdown {
            position: absolute;
            right: 0;
            top: calc(100% + 8px);
            width: 440px;
            max-width: calc(100vw - 32px);
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            padding: 16px;
            display: none;
            z-index: 110;
            column-count: 3;
            column-gap: 8px;
        }
        .lang__dropdown.is-open { display: block; }
        .lang__item {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 7px 8px;
            border-radius: 8px;
            font-size: 13px;
            color: var(--ink-2);
            cursor: pointer;
            transition: background .15s;
            /* keep a row from being split across two columns */
            break-inside: avoid;
            -webkit-column-break-inside: avoid;
        }
        .lang__item:hover { background: #FAF8F5; }
        .lang__item.is-active {
            background: rgba(255, 138, 0, .08);
            color: var(--ink);
            font-weight: 600;
        }
        .lang__item img {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            object-fit: contain;
            box-shadow: 0 0 0 1px rgba(0,0,0,.06);
            flex-shrink: 0;
        }
        /* v4 steps 3 -> 2 columns on small screens; below that a single column
           is all that fits next to the flag. */
        @media (max-width: 640px) {
            .lang__dropdown {
                width: 320px;
                padding: 12px;
                column-count: 2;
            }
            .lang__item { font-size: 12.5px; gap: 7px; padding: 6px; }
            .lang__item img { width: 18px; height: 18px; }
        }
        @media (max-width: 380px) {
            .lang__dropdown { width: 190px; column-count: 1; }
        }

        .login {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            color: var(--ink);
            transition: background .2s;
        }
        .login:hover { background: #F2F2F2; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 22px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            background: var(--orange);
            color: #fff;
            transition: transform .15s ease, background .2s, box-shadow .2s;
            box-shadow: 0 6px 18px rgba(255, 138, 0, .35);
            white-space: nowrap;
        }
        .btn:hover { background: var(--orange-hover); transform: translateY(-1px); }
        .btn:active { transform: translateY(0); }
        .btn--lg {
            padding: 18px 32px;
            font-size: 17px;
            border-radius: 14px;
        }
        .btn--ghost {
            background: transparent;
            color: var(--ink);
            box-shadow: inset 0 0 0 1.5px var(--line);
        }
        .btn--ghost:hover { background: #FAF8F5; box-shadow: inset 0 0 0 1.5px #D6D6D6; }
        .btn--stack {
            flex-direction: column;
            align-items: center;
            gap: 2px;
            padding: 9px 20px;
            line-height: 1.15;
            box-shadow: 0 4px 14px rgba(255, 138, 0, .28);
        }
        .btn--stack .btn__main {
            font-size: 14.5px;
            font-weight: 700;
            letter-spacing: -.005em;
        }
        .btn--stack .btn__sub {
            font-size: 11px;
            font-weight: 500;
            opacity: .9;
            white-space: nowrap;
            letter-spacing: .01em;
        }

        /* ============ HERO ============ */
        .hero {
            position: relative;
            padding: 56px 0 80px;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(900px 500px at 85% 20%, rgba(255, 138, 0, .07), transparent 60%),
                radial-gradient(700px 500px at 5% 90%, rgba(11, 37, 64, .04), transparent 60%);
            pointer-events: none;
        }
        .hero__grid {
            position: relative;
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 64px;
            align-items: center;
        }
        .hero__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 22px;
        }
        .hero__tag {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 6px 13px;
            border-radius: 999px;
            background: rgba(255, 138, 0, .1);
            color: #B85F00;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .04em;
            text-transform: uppercase;
        }
        .hero__tag::before {
            content: '';
            width: 5px; height: 5px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
        }
        /* ============ BOAT COVER (/page-<model> SEO pages) ============
           Full-bleed cover carrying the page H1, the v5 counterpart of the v4
           landing's $firstBlockFull cover block. */
        .boat-cover {
            position: relative;
            isolation: isolate;
            min-height: clamp(340px, 52vh, 560px);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #0B2540;
            text-align: center;
        }
        .boat-cover__media { position: absolute; inset: 0; z-index: -2; }
        .boat-cover__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        /* keeps the headline legible over any photo */
        .boat-cover::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(180deg, rgba(6, 20, 35, .62), rgba(6, 20, 35, .78));
        }
        .boat-cover__inner { padding: 64px 0; color: #fff; }
        .boat-cover__title {
            font-size: clamp(28px, 4.2vw, 52px);
            line-height: 1.08;
            letter-spacing: -.022em;
            font-weight: 800;
            margin: 0;
            text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
        }
        .boat-cover__title em { font-style: normal; color: var(--orange); }
        .boat-cover__rule {
            display: block;
            width: 64px;
            height: 3px;
            border-radius: 2px;
            background: var(--orange);
            margin: 22px auto;
        }
        .boat-cover__lead {
            font-size: clamp(16px, 1.7vw, 21px);
            font-weight: 700;
            margin: 0 auto;
            max-width: 46ch;
        }
        .boat-cover__sub {
            font-size: clamp(13px, 1.3vw, 16px);
            color: rgba(255, 255, 255, .78);
            margin: 10px auto 0;
            max-width: 52ch;
        }
        @media (max-width: 640px) {
            .boat-cover { min-height: 300px; }
            .boat-cover__inner { padding: 48px 0; }
        }
        .hero__title {
            font-size: clamp(38px, 5vw, 64px);
            line-height: 1.04;
            letter-spacing: -.025em;
            color: var(--ink);
            font-weight: 800;
            margin-bottom: 22px;
        }
        .hero__title em {
            font-style: normal;
            color: var(--orange);
            position: relative;
            white-space: nowrap;
        }
        .hero__sub {
            font-size: clamp(16px, 1.35vw, 18px);
            line-height: 1.6;
            color: var(--ink-2);
            margin-bottom: 36px;
            max-width: 560px;
        }
        .hero__sub p + p { margin-top: 16px; }
        .hero__sub strong { color: var(--ink); font-weight: 700; }
        .hero__cta {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }
        .hero__hint {
            font-size: 13px;
            color: var(--muted);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .hero__hint svg { opacity: .55; }

        .hero__stats {
            margin-top: 44px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding-top: 28px;
            border-top: 1px solid var(--line);
        }
        .stat__num {
            font-size: 28px;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: -.02em;
            line-height: 1;
            margin-bottom: 6px;
        }
        .stat__num em {
            font-style: normal;
            color: var(--orange);
        }
        .stat__label {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.3;
        }

        /* Hero photo */
        .hero__media {
            position: relative;
            display: flex;
            justify-content: center;
        }
        .hero__photo {
            position: relative;
            width: 100%;
            max-width: 480px;
            aspect-ratio: 1 / 1.05;
            border-radius: 28px;
            overflow: hidden;
            background: #EFEFEF;
            box-shadow:
                0 30px 60px -20px rgba(15, 23, 42, .25),
                0 18px 36px -18px rgba(255, 138, 0, .25);
        }
        .hero__photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .hero__photo::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.12) 100%);
            pointer-events: none;
        }
        .hero__play {
            position: absolute;
            right: -10px;
            top: 28px;
            background: #fff;
            border-radius: 999px;
            padding: 8px 16px 8px 8px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: var(--shadow-lg);
            font-size: 13px;
            font-weight: 700;
            color: var(--ink);
            cursor: pointer;
            transition: transform .2s;
        }
        .hero__play:hover { transform: translateY(-2px); }
        .hero__play-circle {
            width: 34px; height: 34px;
            border-radius: 50%;
            background: var(--orange);
            display: grid;
            place-items: center;
            color: #fff;
        }

        /* Mobile burger (only visible on small screens) */
        .burger { display: none; }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 960px) {
            .hero__grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .hero { padding: 36px 0 60px; }
            .hero__photo { max-width: 380px; margin: 0 auto; }
            .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
            .brand__text { display: none; }
        }
        @media (max-width: 640px) {
            .container { padding: 0 18px; }
            .header__inner { height: 64px; gap: 10px; }
            .login__title, .nav .btn { display: none; }
            .login { padding: 8px; }
            .lang__btn { padding: 8px; }
            .lang__current { display: none; }
            .hero__title { font-size: 36px; }
            .hero__cta { gap: 12px; }
            .btn--lg { padding: 16px 24px; font-size: 16px; width: 100%; }
            .hero__photo { max-width: 320px; }
            .hero__play { right: -4px; }
        }

        /* Modal-friendly outline & focus */
        :focus-visible {
            outline: 2px solid var(--orange);
            outline-offset: 3px;
            border-radius: 6px;
        }

        /* ============ LIGHTBOX ============ */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, .92);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 40px;
            opacity: 0;
            transition: opacity .2s ease;
        }
        .lightbox.is-open {
            display: flex;
            opacity: 1;
        }
        body.lb-open { overflow: hidden; }
        .lightbox__stage {
            position: relative;
            max-width: 100%;
            max-height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .lightbox__img {
            max-width: calc(100vw - 140px);
            max-height: calc(100vh - 120px);
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
            display: block;
        }
        .lightbox__btn {
            position: fixed;
            background: rgba(255, 255, 255, .1);
            color: #fff;
            border-radius: 50%;
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: background .2s, transform .15s;
            border: none;
        }
        .lightbox__btn:hover { background: rgba(255, 255, 255, .2); transform: scale(1.05); }
        .lightbox__btn:active { transform: scale(.95); }
        .lightbox__close {
            top: 24px;
            right: 24px;
            width: 48px;
            height: 48px;
        }
        .lightbox__nav {
            top: 50%;
            transform: translateY(-50%);
            width: 56px;
            height: 56px;
        }
        .lightbox__nav:hover { transform: translateY(-50%) scale(1.05); }
        .lightbox__nav:active { transform: translateY(-50%) scale(.95); }
        .lightbox__prev { left: 24px; }
        .lightbox__next { right: 24px; }
        .lightbox__counter {
            position: fixed;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, .75);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .08em;
            padding: 6px 14px;
            background: rgba(255, 255, 255, .08);
            border-radius: 999px;
        }
        @media (max-width: 640px) {
            .lightbox { padding: 12px; }
            .lightbox__img {
                max-width: calc(100vw - 24px);
                max-height: calc(100vh - 130px);
            }
            .lightbox__close { top: 14px; right: 14px; width: 40px; height: 40px; }
            .lightbox__nav { width: 44px; height: 44px; }
            .lightbox__prev { left: 10px; }
            .lightbox__next { right: 10px; }
            .lightbox__counter { bottom: 18px; }
        }

        /* ============ MODELS MODAL ============ */
        .models-modal {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, .85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 1150;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 32px 20px;
            opacity: 0;
            transition: opacity .2s ease;
        }
        .models-modal.is-open { display: flex; opacity: 1; }
        body.mm-open { overflow: hidden; }
        .models-modal__card {
            background: #fff;
            border-radius: 24px;
            padding: 32px 28px 24px;
            max-width: 880px;
            width: 100%;
            max-height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            box-shadow: 0 40px 100px rgba(0, 0, 0, .4);
        }
        .models-modal__close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(15, 23, 42, .06);
            color: var(--ink);
            border: none;
            cursor: pointer;
            display: grid;
            place-items: center;
            z-index: 1;
            transition: background .2s;
        }
        .models-modal__close:hover { background: rgba(15, 23, 42, .12); }
        .models-modal__eyebrow {
            color: var(--orange);
            font-size: 11.5px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            margin-bottom: 6px;
        }
        .models-modal__title {
            font-size: 24px;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: -.02em;
            line-height: 1.2;
            margin: 0 30px 6px 0;
        }
        .models-modal__sub {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 22px;
        }
        .models-modal__list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6px 12px;
            overflow-y: auto;
            padding-right: 8px;
            padding-bottom: 8px;
            scrollbar-width: thin;
            scrollbar-color: rgba(15, 23, 42, .2) transparent;
        }
        .models-modal__list::-webkit-scrollbar { width: 8px; }
        .models-modal__list::-webkit-scrollbar-track { background: transparent; }
        .models-modal__list::-webkit-scrollbar-thumb {
            background: rgba(15, 23, 42, .2);
            border-radius: 4px;
        }
        .models-modal__item {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--ink-2);
            padding: 8px 10px;
            border-radius: 8px;
            text-decoration: none;
            transition: background .15s, color .15s;
            display: block;
        }
        .models-modal__item:hover {
            background: rgba(255, 138, 0, .1);
            color: var(--orange);
        }
        @media (max-width: 720px) {
            .models-modal { padding: 16px 12px; }
            .models-modal__card { padding: 28px 18px 18px; border-radius: 20px; }
            .models-modal__list { grid-template-columns: repeat(2, 1fr); gap: 4px 8px; }
            .models-modal__title { font-size: 20px; }
        }
        @media (max-width: 480px) {
            .models-modal__list { grid-template-columns: 1fr; }
        }

        /* ============ SUBSCRIBE MODAL ============ */
        .sub-modal {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, .82);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 1200;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
            opacity: 0;
            transition: opacity .2s ease;
        }
        .sub-modal.is-open { display: flex; opacity: 1; }
        body.sm-open { overflow: hidden; }
        .sub-modal__card {
            background: linear-gradient(180deg, #fff 0%, #FCFAF6 100%);
            border-radius: 28px;
            padding: 44px 38px 36px;
            max-width: 480px;
            width: 100%;
            position: relative;
            box-shadow: 0 40px 100px rgba(0, 0, 0, .4);
            animation: smSlideIn .35s cubic-bezier(.2, .9, .3, 1.1);
        }
        @keyframes smSlideIn {
            from { opacity: 0; transform: translateY(20px) scale(.96); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        .sub-modal__close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(15, 23, 42, .06);
            color: var(--ink);
            border: none;
            cursor: pointer;
            display: grid;
            place-items: center;
            transition: background .2s;
        }
        .sub-modal__close:hover { background: rgba(15, 23, 42, .12); }
        .sub-modal__eyebrow {
            color: var(--orange);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            text-align: center;
        }
        .sub-modal__title {
            font-size: 26px;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: -.02em;
            text-align: center;
            margin: 10px 0 0;
            line-height: 1.2;
        }
        .sub-modal__price {
            font-size: 52px;
            font-weight: 800;
            color: var(--orange);
            line-height: 1;
            letter-spacing: -.03em;
            text-align: center;
            margin: 18px 0 6px;
        }
        .sub-modal__price-period {
            text-align: center;
            font-size: 14px;
            color: var(--muted);
            font-weight: 600;
        }
        .sub-modal__note {
            background: rgba(255, 138, 0, .07);
            border: 1px solid rgba(255, 138, 0, .2);
            border-radius: 14px;
            padding: 14px 16px;
            margin-top: 24px;
            font-size: 13.5px;
            line-height: 1.5;
            color: var(--ink-2);
        }
        .sub-modal__note strong { color: var(--ink); font-weight: 700; }
        .sub-modal__form {
            margin-top: 22px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .sub-modal__email {
            width: 100%;
            height: 56px;
            padding: 0 18px;
            background: #fff;
            border: 1.5px solid var(--line);
            border-radius: 14px;
            color: var(--ink);
            font-size: 15.5px;
            font-family: inherit;
            font-weight: 600;
            letter-spacing: -.005em;
            transition: border-color .2s, box-shadow .2s;
        }
        .sub-modal__email::placeholder { color: var(--muted); font-weight: 500; }
        .sub-modal__email:focus {
            outline: none;
            border-color: var(--orange);
            box-shadow: 0 0 0 4px rgba(255, 138, 0, .15);
        }
        .sub-modal__submit {
            width: 100%;
            height: 56px;
            background: var(--orange);
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            border: none;
            border-radius: 14px;
            cursor: pointer;
            font-family: inherit;
            transition: background .2s, transform .15s;
            box-shadow: 0 14px 32px -10px rgba(255, 138, 0, .55);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .sub-modal__submit:hover { background: var(--orange-hover); transform: translateY(-1px); }
        .sub-modal__trust {
            margin-top: 16px;
            font-size: 12px;
            color: var(--muted);
            text-align: center;
            font-weight: 600;
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .sub-modal__trust span { display: inline-flex; align-items: center; gap: 5px; }

        /* Consent / gift checkboxes carried over from the checkout contract.
           .offer__agree sits on the dark price card, the modal ones on light. */
        .sub-modal__gift,
        .sub-modal__agree,
        .offer__agree {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-top: 12px;
            font-size: 12px;
            line-height: 1.45;
            text-align: left;
            font-weight: 500;
            color: var(--muted);
            cursor: pointer;
        }
        .sub-modal__gift input,
        .sub-modal__agree input,
        .offer__agree input {
            flex: 0 0 auto;
            margin-top: 2px;
            accent-color: var(--orange);
        }
        .sub-modal__agree a,
        .offer__agree a { color: var(--orange); text-decoration: underline; }
        .offer__agree { color: rgba(255, 255, 255, .65); }
        @media (max-width: 480px) {
            .sub-modal__card { padding: 36px 24px 28px; border-radius: 22px; }
            .sub-modal__title { font-size: 22px; }
            .sub-modal__price { font-size: 44px; }
            .sub-modal__note { font-size: 13px; }
        }

        /* ============ VIDEO MODAL (trailer) ============ */
        .video-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .94);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 1100;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity .2s ease;
        }
        .video-modal.is-open { display: flex; opacity: 1; }
        body.vm-open { overflow: hidden; }
        .video-modal__stage {
            position: relative;
            max-width: 100%;
            max-height: 100%;
        }
        .video-modal__video {
            display: block;
            height: calc(100vh - 40px);
            width: auto;
            max-width: calc(100vw - 40px);
            aspect-ratio: 9 / 16;
            background: #000;
            border-radius: 14px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, .55);
            object-fit: contain;
        }
        .video-modal__close {
            position: fixed;
            top: 22px;
            right: 22px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .1);
            color: #fff;
            border: none;
            cursor: pointer;
            display: grid;
            place-items: center;
            transition: background .2s, transform .15s;
            z-index: 1;
        }
        .video-modal__close:hover {
            background: rgba(255, 255, 255, .2);
            transform: scale(1.05);
        }
        @media (max-width: 640px) {
            .video-modal__video {
                height: 100vh;
                max-width: 100vw;
                border-radius: 0;
            }
            .video-modal__close {
                top: 14px;
                right: 14px;
                width: 40px;
                height: 40px;
                background: rgba(0, 0, 0, .5);
            }
        }

        /* ============ SECTION: COMPARE (Why this course) ============ */
        .compare {
            background: var(--bg-soft);
            background-image: radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.07) 1px, transparent 0);
            background-size: 28px 28px;
            padding: 110px 0;
            position: relative;
            overflow: hidden;
        }
        .compare::before {
            content: '';
            position: absolute;
            top: -140px;
            right: -160px;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 138, 0, .12), transparent 65%);
            pointer-events: none;
        }
        .compare::after {
            content: '';
            position: absolute;
            bottom: -180px;
            left: -180px;
            width: 480px;
            height: 480px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(11, 37, 64, .05), transparent 65%);
            pointer-events: none;
        }
        .section__head {
            max-width: 820px;
            margin: 0 auto 64px;
            text-align: center;
            position: relative;
        }
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--orange);
            font-size: 12.5px;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }
        .eyebrow::before, .eyebrow::after {
            content: '';
            display: block;
            width: 24px;
            height: 1.5px;
            background: var(--orange);
            opacity: .55;
            border-radius: 2px;
        }
        .section__title {
            font-size: clamp(28px, 3.5vw, 46px);
            line-height: 1.12;
            letter-spacing: -.022em;
            color: var(--ink);
            font-weight: 800;
        }
        .section__title em {
            font-style: normal;
            color: var(--orange);
            position: relative;
            white-space: nowrap;
        }
        .section__mark {
            display: block;
            width: 64px;
            height: 4px;
            background: linear-gradient(90deg, var(--orange), #FFB04D);
            border-radius: 3px;
            margin: 26px auto 0;
        }
        .compare__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            position: relative;
        }
        .compare__card {
            position: relative;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 22px;
            padding: 30px 28px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            overflow: hidden;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
        }
        .compare__card:hover {
            transform: translateY(-4px);
            box-shadow: 0 26px 56px -28px rgba(15, 23, 42, .25);
        }
        .compare__num {
            position: absolute;
            top: 14px;
            right: 22px;
            font-size: 86px;
            font-weight: 800;
            line-height: 1;
            color: transparent;
            -webkit-text-stroke: 1.5px rgba(15, 23, 42, .1);
            text-stroke: 1.5px rgba(15, 23, 42, .1);
            letter-spacing: -.04em;
            pointer-events: none;
            user-select: none;
            font-family: 'Manrope', sans-serif;
        }
        .compare__chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 11px 5px 8px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .06em;
            text-transform: uppercase;
            align-self: flex-start;
            background: rgba(220, 38, 38, .1);
            color: #B91C1C;
            position: relative;
            z-index: 1;
        }
        .compare__chip svg { flex-shrink: 0; }
        .compare__icon {
            width: 62px;
            height: 62px;
            border-radius: 16px;
            background: linear-gradient(135deg, #F4F1EC 0%, #E9E5DD 100%);
            color: #9A9A9A;
            display: grid;
            place-items: center;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 6px 14px -8px rgba(0,0,0,.1);
            margin-top: 8px;
            position: relative;
            z-index: 1;
        }
        .compare__kind {
            font-size: 11.5px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--muted);
            position: relative;
            z-index: 1;
        }
        .compare__title {
            font-size: 22px;
            font-weight: 800;
            line-height: 1.2;
            color: var(--ink);
            letter-spacing: -.015em;
            margin: -2px 0 0;
            position: relative;
            z-index: 1;
        }
        .compare__text {
            font-size: 14.5px;
            line-height: 1.6;
            color: var(--ink-2);
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* Positive (winner) card */
        .compare__card--pos {
            background:
                radial-gradient(120% 80% at 50% 0%, #FFF1DC 0%, #FFFBF3 60%, #FFFFFF 100%);
            border-color: rgba(255, 138, 0, .4);
            box-shadow: 0 22px 56px -22px rgba(255, 138, 0, .42);
        }
        .compare__card--pos::before {
            content: '';
            position: absolute;
            top: 0; left: 28px; right: 28px;
            height: 4px;
            background: linear-gradient(90deg, var(--orange) 0%, #FFB04D 100%);
            border-radius: 0 0 6px 6px;
        }
        .compare__card--pos .compare__num {
            -webkit-text-stroke-color: rgba(255, 138, 0, .35);
            text-stroke-color: rgba(255, 138, 0, .35);
        }
        .compare__card--pos .compare__chip {
            background: var(--orange);
            color: #fff;
            box-shadow: 0 4px 12px -2px rgba(255, 138, 0, .5);
        }
        .compare__card--pos .compare__icon {
            background: linear-gradient(135deg, #FFA940 0%, #FF7A00 100%);
            color: #fff;
            box-shadow: 0 10px 22px -6px rgba(255, 138, 0, .55), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
        }
        .compare__card--pos .compare__kind { color: var(--orange); }
        .compare__card--pos:hover {
            box-shadow: 0 28px 64px -22px rgba(255, 138, 0, .52);
        }

        @media (max-width: 960px) {
            .compare { padding: 80px 0; background-size: 22px 22px; }
            .compare__grid { grid-template-columns: 1fr; gap: 16px; }
            .compare__head { margin-bottom: 48px; }
            .compare__num { font-size: 72px; }
        }
        @media (max-width: 640px) {
            .compare { padding: 60px 0; }
            .compare__card { padding: 26px 22px; }
            .compare__title { font-size: 20px; }
            .compare__num { font-size: 60px; top: 12px; right: 18px; }
            .eyebrow::before, .eyebrow::after { width: 16px; }
        }

        /* ============ SECTION: ABOUT (Vadim) ============ */
        .about {
            background: #fff;
            padding: 110px 0;
            position: relative;
            overflow: hidden;
        }
        .about::before {
            content: '';
            position: absolute;
            top: 80px;
            left: -200px;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 138, 0, .07), transparent 70%);
            pointer-events: none;
        }
        .about::after {
            content: '';
            position: absolute;
            bottom: -120px;
            right: -150px;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(11, 37, 64, .05), transparent 70%);
            pointer-events: none;
        }
        .about__grid {
            display: grid;
            grid-template-columns: 0.85fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
        }
        .about__visual {
            position: relative;
            aspect-ratio: 4 / 5;
            border-radius: 26px;
            overflow: hidden;
            background: #EFEFEF;
            box-shadow:
                0 32px 60px -28px rgba(15, 23, 42, .35),
                0 18px 40px -22px rgba(255, 138, 0, .18);
        }
        .about__visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .about__visual::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.35) 100%);
            pointer-events: none;
        }
        .about__author-chip {
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 18px;
            background: rgba(255, 255, 255, .96);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 10px 16px 10px 10px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 8px 24px -10px rgba(0,0,0,.25);
        }
        .about__author-chip > .about__author-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
            box-shadow: 0 0 0 4px rgba(255, 138, 0, .2);
        }
        .about__author-chip strong {
            display: block;
            font-size: 15px;
            color: var(--ink);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -.005em;
        }
        .about__author-chip span {
            font-size: 12px;
            color: var(--muted);
            display: block;
            margin-top: 2px;
        }

        .about__bio {
            position: relative;
        }
        .about__bio-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--orange);
            font-size: 12.5px;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }
        .about__bio-eyebrow::before {
            content: '';
            display: block;
            width: 24px;
            height: 1.5px;
            background: var(--orange);
            opacity: .55;
            border-radius: 2px;
        }
        .about__bio-title {
            font-size: clamp(26px, 3.1vw, 38px);
            line-height: 1.15;
            letter-spacing: -.022em;
            color: var(--ink);
            font-weight: 800;
            margin-bottom: 24px;
        }
        .about__bio-title em {
            font-style: normal;
            color: var(--orange);
        }
        .about__quote {
            font-size: 19px;
            line-height: 1.5;
            color: var(--ink);
            font-weight: 600;
            letter-spacing: -.005em;
            margin: 0 0 24px;
            padding: 14px 20px;
            border-left: 3px solid var(--orange);
            background: var(--bg-soft);
            border-radius: 0 12px 12px 0;
        }
        .about__bio p {
            font-size: 16.5px;
            line-height: 1.7;
            color: var(--ink-2);
            margin: 0;
        }
        .about__bio p + p { margin-top: 14px; }
        .about__bio strong { color: var(--ink); font-weight: 700; }

        /* Voyage cards (below About) */
        .voyages-lead {
            margin: 80px auto 28px;
            text-align: center;
            font-size: clamp(20px, 2.1vw, 26px);
            font-weight: 700;
            color: var(--ink);
            line-height: 1.35;
            letter-spacing: -.012em;
            max-width: 640px;
        }
        .voyages-lead em {
            font-style: normal;
            color: var(--orange);
        }
        .voyages {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
            position: relative;
        }
        .voyage {
            background: var(--bg-soft);
            border: 1px solid var(--line);
            border-radius: 22px;
            display: grid;
            grid-template-columns: 0.95fr 1fr;
            overflow: hidden;
            transition: transform .25s ease, box-shadow .25s ease;
        }
        .voyage:hover {
            transform: translateY(-3px);
            box-shadow: 0 24px 50px -28px rgba(15, 23, 42, .25);
        }
        .voyage__img {
            position: relative;
            overflow: hidden;
            background: #DCE7EE;
        }
        .voyage__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .6s ease;
        }
        .voyage:hover .voyage__img img { transform: scale(1.04); }
        .voyage__chart-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(255,255,255,.92);
            color: var(--ink);
            font-size: 10.5px;
            font-weight: 800;
            padding: 5px 10px 5px 8px;
            border-radius: 999px;
            letter-spacing: .06em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 4px 12px -4px rgba(0,0,0,.18);
        }
        .voyage__chart-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--orange);
        }
        .voyage__body {
            padding: 24px 26px 26px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
        }
        .voyage__route {
            font-size: 22px;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: -.015em;
            line-height: 1.15;
        }
        .voyage__route svg {
            display: inline-block;
            vertical-align: middle;
            margin: 0 4px;
            color: var(--orange);
        }
        .voyage__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .voyage__meta span {
            font-size: 11px;
            font-weight: 700;
            color: var(--orange);
            background: rgba(255, 138, 0, .12);
            padding: 4px 9px;
            border-radius: 999px;
            letter-spacing: .03em;
            white-space: nowrap;
        }
        .voyage__text {
            font-size: 14px;
            line-height: 1.55;
            color: var(--ink-2);
            margin: 4px 0 0;
        }

        /* Yacht journey gallery (between bio and voyages) */
        .yachts {
            margin-top: 80px;
            position: relative;
        }
        .yachts-lead {
            text-align: center;
            font-size: clamp(20px, 2.2vw, 26px);
            font-weight: 700;
            color: var(--ink);
            line-height: 1.35;
            letter-spacing: -.012em;
            max-width: 720px;
            margin: 0 auto 36px;
        }
        .yachts-lead em {
            font-style: normal;
            color: var(--orange);
        }
        .yachts__grid {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .yacht {
            background: var(--bg-soft);
            border: 1px solid var(--line);
            border-radius: 28px;
            padding: 36px 36px 36px;
            position: relative;
            overflow: hidden;
            transition: transform .25s ease, box-shadow .25s ease;
        }
        .yacht:hover {
            box-shadow: 0 28px 60px -32px rgba(15, 23, 42, .22);
        }
        .yacht--current {
            background:
                radial-gradient(110% 70% at 30% 0%, #FFE9C9 0%, #FFF6E0 30%, #FFFEFA 70%, #FFFFFF 100%);
            border-color: rgba(255, 138, 0, .45);
            box-shadow: 0 26px 60px -26px rgba(255, 138, 0, .32);
        }
        .yacht__num {
            position: absolute;
            top: 18px;
            right: 30px;
            font-size: clamp(90px, 14vw, 160px);
            font-weight: 800;
            line-height: .85;
            color: transparent;
            -webkit-text-stroke: 1.5px rgba(15, 23, 42, .1);
            letter-spacing: -.06em;
            pointer-events: none;
            user-select: none;
            font-family: 'Manrope', sans-serif;
            z-index: 0;
        }
        .yacht--current .yacht__num {
            -webkit-text-stroke-color: rgba(255, 138, 0, .35);
        }
        .yacht__deco {
            position: absolute;
            opacity: .06;
            pointer-events: none;
            color: var(--ink);
        }
        .yacht__deco--bottom-left {
            bottom: -40px;
            left: -40px;
            width: 220px;
            height: 220px;
        }
        .yacht--current .yacht__deco--bottom-left {
            color: var(--orange);
            opacity: .1;
        }
        .yacht__head {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 18px;
            position: relative;
            z-index: 1;
            max-width: 700px;
        }
        .yacht__details {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
        }
        .yacht__detail {
            background: rgba(255, 255, 255, .55);
            border: 1px solid rgba(15, 23, 42, .06);
            border-radius: 12px;
            padding: 11px 13px;
            display: flex;
            align-items: center;
            gap: 11px;
            transition: background .2s, border-color .2s, transform .2s;
        }
        .yacht__detail:hover {
            background: rgba(255, 255, 255, .85);
            transform: translateY(-1px);
        }
        .yacht--current .yacht__detail {
            background: rgba(255, 255, 255, .6);
            border-color: rgba(255, 138, 0, .18);
        }
        .yacht--current .yacht__detail:hover {
            background: rgba(255, 255, 255, .9);
        }
        .yacht__detail-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: rgba(255, 138, 0, .12);
            color: var(--orange);
            display: grid;
            place-items: center;
            flex-shrink: 0;
        }
        .yacht__detail-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
            min-width: 0;
        }
        .yacht__detail-label {
            font-size: 9.5px;
            font-weight: 800;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--muted);
        }
        .yacht__detail-value {
            font-size: 13px;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -.005em;
            margin-top: 2px;
        }
        .yacht__split {
            display: grid;
            grid-template-columns: 1.05fr 1fr;
            gap: 28px;
            position: relative;
            z-index: 1;
            align-items: start;
        }
        .yacht__col {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .yacht__label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            align-self: flex-start;
            padding: 5px 11px 5px 9px;
            border-radius: 999px;
            background: rgba(15, 23, 42, .06);
            color: var(--muted);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
        }
        .yacht__label::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: currentColor;
            opacity: .55;
        }
        .yacht--current .yacht__label {
            background: var(--orange);
            color: #fff;
            box-shadow: 0 4px 12px -3px rgba(255, 138, 0, .5);
        }
        .yacht--current .yacht__label::before {
            background: #fff;
            opacity: 1;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
        }
        .yacht__name {
            font-size: 24px;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: -.018em;
            line-height: 1.1;
            margin: 4px 0 0;
        }
        .yacht__specs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .yacht__specs span {
            font-size: 12.5px;
            font-weight: 700;
            color: var(--ink-2);
            background: rgba(15, 23, 42, .05);
            padding: 4px 10px;
            border-radius: 999px;
        }
        .yacht--current .yacht__specs span {
            background: rgba(255, 138, 0, .12);
            color: var(--orange);
        }
        .yacht__gallery {
            display: grid;
            gap: 10px;
        }
        .yacht__feature {
            aspect-ratio: 4 / 3;
            border-radius: 16px;
            overflow: hidden;
            background: #E0DCD4;
            box-shadow: 0 10px 26px -12px rgba(0, 0, 0, .25);
            cursor: zoom-in;
        }
        .yacht__feature img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }
        .yacht__feature:hover img { transform: scale(1.04); }
        .yacht__thumbs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }
        .yacht__thumb {
            aspect-ratio: 1 / 1;
            border-radius: 10px;
            overflow: hidden;
            background: #E0DCD4;
            cursor: zoom-in;
            position: relative;
        }
        .yacht__thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }
        .yacht__thumb:hover img { transform: scale(1.1); }

        /* Voyage section nested inside yacht card */
        .yacht__voyage {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .yacht__voyage-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 4px 0;
            color: var(--orange);
            font-size: 10.5px;
            font-weight: 800;
            letter-spacing: .16em;
            text-transform: uppercase;
        }
        .yacht__voyage-divider::before,
        .yacht__voyage-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(255, 138, 0, .35), transparent);
        }
        .yacht__voyage-divider svg {
            width: 14px;
            height: 14px;
            opacity: .85;
        }
        .yacht__route {
            font-size: 22px;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: -.018em;
            line-height: 1.15;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .yacht__route svg {
            color: var(--orange);
            flex-shrink: 0;
        }
        .yacht__chart {
            aspect-ratio: 16 / 10;
            border-radius: 14px;
            overflow: hidden;
            background: #DCE7EE;
            position: relative;
            box-shadow: 0 6px 16px -8px rgba(0, 0, 0, .18);
            cursor: zoom-in;
        }
        .yacht__chart img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }
        .yacht__chart:hover img { transform: scale(1.04); }
        .yacht__chart-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(255, 255, 255, .94);
            color: var(--ink);
            font-size: 10px;
            font-weight: 800;
            padding: 5px 10px 5px 8px;
            border-radius: 999px;
            letter-spacing: .08em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 4px 12px -4px rgba(0, 0, 0, .18);
        }
        .yacht__chart-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--orange);
        }
        .yacht__voyage-text {
            font-size: 14.5px;
            line-height: 1.6;
            color: var(--ink-2);
            margin: 2px 0 0;
        }
        .yacht__voyage-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .yacht__voyage-meta span {
            font-size: 11.5px;
            font-weight: 700;
            color: var(--orange);
            background: rgba(255, 138, 0, .12);
            padding: 4px 10px;
            border-radius: 999px;
        }

        @media (max-width: 960px) {
            .about { padding: 80px 0; }
            .about__grid {
                grid-template-columns: 1fr;
                gap: 44px;
            }
            .about__visual {
                max-width: 420px;
                margin: 0 auto;
                aspect-ratio: 4 / 5;
            }
            .voyages { grid-template-columns: 1fr; gap: 16px; margin-top: 56px; }
            .voyage { grid-template-columns: 1fr; }
            .voyage__img { aspect-ratio: 16 / 9; }
            .yachts { margin-top: 60px; }
            .yachts__grid { gap: 22px; }
            .yacht { padding: 26px 24px; }
            .yacht__split { grid-template-columns: 1fr; gap: 22px; }
            .yacht__head { margin-bottom: 16px; }
            .yacht__details { grid-template-columns: repeat(2, 1fr); margin-bottom: 22px; }
            .yacht__deco--bottom-left { width: 160px; height: 160px; bottom: -30px; left: -30px; }
        }
        @media (max-width: 640px) {
            .about { padding: 60px 0; }
            .about__bio-title { font-size: 24px; }
            .about__quote { font-size: 17px; padding: 12px 16px; }
            .about__bio p { font-size: 15.5px; }
            .voyage__body { padding: 20px 22px 22px; }
            .voyage__route { font-size: 19px; }
            .yacht { padding: 22px 20px; border-radius: 22px; }
            .yacht__name { font-size: 21px; }
            .yacht__thumbs { gap: 6px; }
            .yacht__num { top: 14px; right: 18px; }
            .yacht__details { gap: 8px; }
            .yacht__detail { padding: 9px 11px; gap: 9px; }
            .yacht__detail-icon { width: 26px; height: 26px; }
            .yacht__detail-label { font-size: 9px; }
            .yacht__detail-value { font-size: 12px; }
        }

        /* ============ SECTION: COURSE PROGRAM ============ */
        .course {
            background: #fff;
            padding: 110px 0;
            position: relative;
            overflow: hidden;
        }
        .course::before {
            content: '';
            position: absolute;
            top: 60px; right: -180px;
            width: 460px; height: 460px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 138, 0, .06), transparent 65%);
            pointer-events: none;
        }
        .course::after {
            content: '';
            position: absolute;
            bottom: -180px; left: -180px;
            width: 460px; height: 460px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(11, 37, 64, .04), transparent 65%);
            pointer-events: none;
        }
        .course__stats {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 32px 44px;
            margin: -28px auto 56px;
            position: relative;
            z-index: 1;
        }
        .course__stat {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .course__stat-num {
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 800;
            color: var(--orange);
            letter-spacing: -.025em;
            line-height: 1;
        }
        .course__stat-num em {
            font-style: normal;
            font-size: 0.7em;
        }
        .course__stat-label {
            font-size: 13px;
            color: var(--muted);
            font-weight: 600;
            line-height: 1.3;
            max-width: 140px;
        }
        .course__grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px;
            position: relative;
            z-index: 1;
        }
        .course-mod {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 14px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
            position: relative;
        }
        .course-mod:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 38px -22px rgba(15, 23, 42, .25);
            border-color: rgba(255, 138, 0, .35);
        }
        .course-mod__img {
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #EEE9E1;
            position: relative;
        }
        .course-mod__img img,
        .course-mod__img video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .course-mod__img img {
            transition: transform .5s ease;
            z-index: 1;
        }
        .course-mod__img video {
            opacity: 0;
            transition: opacity .35s ease;
            z-index: 2;
            pointer-events: none;
        }
        .course-mod.is-playing .course-mod__img video { opacity: 1; }
        @media (hover: hover) {
            .course-mod:hover .course-mod__img img { transform: scale(1.06); }
        }
        /* Tap-to-play hint on touch devices */
        @media (hover: none) {
            .course-mod { cursor: pointer; }
            .course-mod__img::after {
                content: '';
                position: absolute;
                bottom: 8px;
                right: 8px;
                width: 26px;
                height: 26px;
                background: rgba(255, 255, 255, .94) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 14' fill='%231A1A1A'><path d='M12 7 0 14V0z'/></svg>") center/9px no-repeat;
                border-radius: 50%;
                z-index: 3;
                box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
                pointer-events: none;
                transition: opacity .2s;
            }
            .course-mod.is-playing .course-mod__img::after { opacity: 0; }
        }
        .course-mod__badge {
            position: absolute;
            top: 9px;
            left: 9px;
            font-size: 9.5px;
            font-weight: 800;
            letter-spacing: .1em;
            text-transform: uppercase;
            padding: 4px 9px;
            border-radius: 999px;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: 2;
        }
        .course-mod__badge--soon {
            background: rgba(15, 23, 42, .85);
            color: #fff;
        }
        .course-mod__badge--new {
            background: var(--orange);
            color: #fff;
            box-shadow: 0 4px 12px -2px rgba(255, 138, 0, .45);
        }
        .course-mod__body {
            padding: 14px 14px 16px;
            display: flex;
            flex-direction: column;
            flex: 1;
            gap: 6px;
        }
        .course-mod__title {
            font-size: 13.5px;
            font-weight: 700;
            line-height: 1.32;
            color: var(--ink);
            letter-spacing: -.005em;
            margin: 0;
            flex: 1;
        }
        .course-mod__count {
            font-size: 11px;
            font-weight: 800;
            color: var(--orange);
            text-transform: uppercase;
            letter-spacing: .08em;
            margin-top: 4px;
        }
        .course-mod__count--planned {
            color: var(--muted);
        }
        .course__note {
            margin-top: 32px;
            text-align: center;
            font-size: 13.5px;
            color: var(--muted);
            position: relative;
            z-index: 1;
        }
        .course__note strong {
            color: var(--ink);
            font-weight: 700;
        }

        /* Three yacht scales — dark "blueprint room" panel */
        .scales {
            margin-top: 90px;
            background:
                radial-gradient(110% 70% at 50% 0%, #163A65 0%, #0B2540 60%),
                #081B30;
            border-radius: 32px;
            padding: 72px 40px 60px;
            position: relative;
            overflow: hidden;
            color: #E5EAF3;
            z-index: 1;
            box-shadow:
                0 30px 80px -36px rgba(0, 0, 0, .35),
                inset 0 1px 0 rgba(255, 255, 255, .06);
        }
        /* Blueprint paper grid */
        .scales::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
            background-size: 32px 32px;
            pointer-events: none;
        }
        .scales::after {
            content: '';
            position: absolute;
            right: -160px;
            bottom: -160px;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 138, 0, .14), transparent 65%);
            pointer-events: none;
        }
        .scales__head {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 56px;
            position: relative;
            z-index: 1;
        }
        .scales__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--orange);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }
        .scales__eyebrow::before, .scales__eyebrow::after {
            content: '';
            width: 22px;
            height: 1.5px;
            background: var(--orange);
            opacity: .55;
            border-radius: 2px;
        }
        .scales__title {
            font-size: clamp(24px, 3vw, 38px);
            line-height: 1.15;
            letter-spacing: -.02em;
            color: #fff;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .scales__title em {
            font-style: normal;
            color: var(--orange);
        }
        .scales__lead {
            font-size: 16px;
            color: rgba(229, 234, 243, .8);
            line-height: 1.6;
            margin: 0;
        }
        .scales__lead strong { color: #fff; font-weight: 700; }
        .scales__deck {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            align-items: end;
            position: relative;
            z-index: 1;
        }
        .scales__yacht {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 8px;
            color: #fff;
            position: relative;
        }
        .scales__yacht-viz {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            position: relative;
            height: 320px;
            margin: 18px 0 8px;
            width: 100%;
        }
        .scales__yacht-viz::after {
            content: '';
            position: absolute;
            left: -16px; right: -16px;
            bottom: 0;
            height: 1px;
            background: rgba(255, 255, 255, .18);
        }
        .scales__yacht-viz img {
            display: block;
            max-height: 100%;
            width: auto;
            filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .45));
        }
        .scales__yacht--sm .scales__yacht-viz img { height: 200px; }
        .scales__yacht--md .scales__yacht-viz img { height: 257px; }
        .scales__yacht--lg .scales__yacht-viz img { height: 310px; }
        .scales__yacht--lg .scales__yacht-viz::after {
            height: 2px;
            background: var(--orange);
            box-shadow: 0 0 14px rgba(255, 138, 0, .6);
        }
        .scales__yacht-num {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .5);
            margin-bottom: 6px;
        }
        .scales__yacht--lg .scales__yacht-num { color: var(--orange); }
        .scales__yacht-length {
            font-size: clamp(30px, 3.2vw, 40px);
            font-weight: 800;
            letter-spacing: -.025em;
            color: #fff;
            line-height: 1;
        }
        .scales__yacht--lg .scales__yacht-length { color: var(--orange); }
        .scales__yacht-length-sub {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, .55);
            margin-top: 5px;
        }
        .scales__yacht-name {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            margin: 20px 0 0;
            letter-spacing: -.012em;
            line-height: 1.2;
        }
        .scales__yacht-kind {
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: .04em;
            color: rgba(255, 255, 255, .55);
            margin-top: 6px;
        }
        .scales__yacht--lg .scales__yacht-kind {
            color: var(--orange);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .12em;
        }
        .scales__yacht-text {
            font-size: 13.5px;
            line-height: 1.6;
            color: rgba(229, 234, 243, .78);
            margin: 14px auto 0;
            max-width: 280px;
        }

        @media (max-width: 960px) {
            .scales { margin-top: 70px; padding: 56px 26px 44px; border-radius: 24px; }
            .scales__head { margin-bottom: 40px; }
            .scales__deck { gap: 18px; }
            .scales__yacht-viz { height: 240px; margin-top: 12px; }
            .scales__yacht--sm .scales__yacht-viz img { height: 150px; }
            .scales__yacht--md .scales__yacht-viz img { height: 195px; }
            .scales__yacht--lg .scales__yacht-viz img { height: 235px; }
            .scales__yacht-name { font-size: 15px; }
            .scales__yacht-text { font-size: 12.5px; }
        }
        /* Stack vertically — 3 narrow columns are unreadable on phones */
        @media (max-width: 720px) {
            .scales { margin-top: 50px; padding: 44px 22px 36px; border-radius: 22px; }
            .scales__head { margin-bottom: 32px; }
            .scales__deck {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .scales__yacht {
                max-width: 420px;
                margin: 0 auto;
                padding: 0 8px;
            }
            .scales__yacht-viz {
                height: auto;
                margin-top: 22px;
                padding-bottom: 14px;
            }
            .scales__yacht--sm .scales__yacht-viz img { height: 180px; }
            .scales__yacht--md .scales__yacht-viz img { height: 230px; }
            .scales__yacht--lg .scales__yacht-viz img { height: 270px; }
            .scales__yacht-length { font-size: 38px; }
            .scales__yacht-length-sub { font-size: 14px; }
            .scales__yacht-name { font-size: 19px; margin-top: 20px; }
            .scales__yacht-kind { font-size: 12px; }
            .scales__yacht-text { font-size: 14px; line-height: 1.55; max-width: none; }
        }
        @media (max-width: 480px) {
            .scales { padding: 36px 18px 30px; border-radius: 18px; }
            .scales__head { margin-bottom: 28px; }
            .scales__deck { gap: 36px; }
            .scales__yacht--sm .scales__yacht-viz img { height: 160px; }
            .scales__yacht--md .scales__yacht-viz img { height: 205px; }
            .scales__yacht--lg .scales__yacht-viz img { height: 240px; }
            .scales__yacht-length { font-size: 34px; }
            .scales__yacht-name { font-size: 18px; }
        }

        /* ============ SECTION: COMMUNITY ============ */
        .community {
            background: var(--bg-soft);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .community::before {
            content: '';
            position: absolute;
            top: -120px; left: -120px;
            width: 380px; height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 138, 0, .07), transparent 65%);
            pointer-events: none;
        }
        .community__lead {
            font-size: 17px;
            line-height: 1.55;
            color: var(--ink-2);
            max-width: 640px;
            margin: 18px auto 0;
        }
        .community__grid {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 28px;
            align-items: stretch;
            position: relative;
            z-index: 1;
        }

        /* Chat mockup */
        .chat {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 22px 56px -28px rgba(15, 23, 42, .2);
            display: flex;
            flex-direction: column;
        }
        .chat__header {
            background: #fff;
            padding: 16px 22px;
            border-bottom: 1px solid var(--line);
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .chat__header-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange), #FFB04D);
            color: #fff;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px -3px rgba(255, 138, 0, .4);
        }
        .chat__header-title {
            font-size: 15.5px;
            font-weight: 800;
            color: var(--ink);
            line-height: 1.2;
            letter-spacing: -.005em;
        }
        .chat__header-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--muted);
            margin-top: 3px;
            font-weight: 600;
        }
        .chat__header-status::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #3FBF7F;
            box-shadow: 0 0 0 3px rgba(63, 191, 127, .25);
        }
        .chat__body {
            flex: 1;
            padding: 22px 22px 26px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            background:
                radial-gradient(circle at 1px 1px, rgba(15, 23, 42, .05) 1px, transparent 0),
                #F7F4EE;
            background-size: 18px 18px;
            min-height: 420px;
        }
        .chat__msg {
            display: flex;
            gap: 10px;
            max-width: 88%;
        }
        .chat__msg--right {
            align-self: flex-end;
            flex-direction: row-reverse;
        }
        .chat__msg-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            color: #fff;
            font-weight: 800;
            font-size: 12.5px;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
        }
        .chat__msg-avatar-img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            box-shadow: 0 0 0 2px var(--orange);
        }
        .chat__msg-bubble {
            background: #fff;
            border-radius: 14px 14px 14px 4px;
            padding: 9px 14px 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, .07);
        }
        .chat__msg--right .chat__msg-bubble {
            background: #FFEAC9;
            border-radius: 14px 14px 4px 14px;
        }
        .chat__msg-name {
            font-size: 11.5px;
            font-weight: 800;
            color: var(--orange);
            margin-bottom: 2px;
            letter-spacing: -.005em;
        }
        .chat__msg--right .chat__msg-name {
            color: #B85F00;
            text-align: right;
        }
        .chat__msg-text {
            font-size: 14px;
            line-height: 1.4;
            color: var(--ink);
        }
        .chat__msg-time {
            font-size: 10.5px;
            color: var(--muted);
            margin-top: 3px;
            text-align: right;
            font-weight: 600;
        }
        .chat__msg--right .chat__msg-time { text-align: left; }
        .chat__typing {
            display: inline-flex;
            gap: 4px;
            background: #fff;
            padding: 12px 16px;
            border-radius: 14px 14px 14px 4px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, .07);
            margin-left: 46px;
            align-self: flex-start;
        }
        .chat__typing span {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #BAB5AC;
            animation: chatBlink 1.4s infinite;
        }
        .chat__typing span:nth-child(2) { animation-delay: .2s; }
        .chat__typing span:nth-child(3) { animation-delay: .4s; }
        @keyframes chatBlink {
            0%, 60%, 100% { opacity: .3; transform: translateY(0); }
            30% { opacity: 1; transform: translateY(-2px); }
        }

        /* Benefit cards (right column) */
        .community__benefits {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .benefit {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 18px;
            padding: 24px 26px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: transform .25s ease, box-shadow .25s ease;
        }
        .benefit:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px -24px rgba(15, 23, 42, .18);
        }
        .benefit__icon {
            width: 46px;
            height: 46px;
            border-radius: 13px;
            background: rgba(255, 138, 0, .12);
            color: var(--orange);
            display: grid;
            place-items: center;
            flex-shrink: 0;
        }
        .benefit__title {
            font-size: 17px;
            font-weight: 800;
            color: var(--ink);
            line-height: 1.25;
            letter-spacing: -.012em;
            margin: 2px 0 6px;
        }
        .benefit__text {
            font-size: 14.5px;
            line-height: 1.55;
            color: var(--ink-2);
        }
        .benefit--highlight {
            background: linear-gradient(180deg, #FFF6E6 0%, #FFFBF3 100%);
            border-color: rgba(255, 138, 0, .4);
            box-shadow: 0 16px 36px -22px rgba(255, 138, 0, .32);
        }
        .benefit--highlight .benefit__icon {
            background: linear-gradient(135deg, #FFA940, #FF7A00);
            color: #fff;
            box-shadow: 0 8px 18px -6px rgba(255, 138, 0, .5);
        }

        @media (max-width: 960px) {
            .community { padding: 80px 0; }
            .community__grid { grid-template-columns: 1fr; gap: 20px; }
            .chat__body { min-height: 360px; }
        }
        @media (max-width: 560px) {
            .community { padding: 60px 0; }
            .chat__body { min-height: 320px; padding: 18px 16px 22px; gap: 14px; }
            .chat__header { padding: 14px 18px; }
            .chat__msg { max-width: 92%; }
            .chat__msg-text { font-size: 13.5px; }
            .benefit { padding: 20px 22px; gap: 14px; }
            .benefit__title { font-size: 16px; }
        }

        /* ============ SECTION: MARINAS (Map database) ============ */
        .marinas {
            background: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .marinas::before {
            content: '';
            position: absolute;
            top: -120px; right: -120px;
            width: 460px; height: 460px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 138, 0, .06), transparent 65%);
            pointer-events: none;
        }
        .marinas::after {
            content: '';
            position: absolute;
            bottom: -160px; left: -160px;
            width: 420px; height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(11, 37, 64, .05), transparent 65%);
            pointer-events: none;
        }
        .marinas__lead {
            font-size: 17px;
            line-height: 1.55;
            color: var(--ink-2);
            max-width: 720px;
            margin: 18px auto 0;
        }
        .marinas__regions {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            max-width: 760px;
            margin: 22px auto 0;
        }
        .marinas__region {
            font-size: 12.5px;
            font-weight: 700;
            color: var(--orange);
            background: rgba(255, 138, 0, .1);
            padding: 6px 13px;
            border-radius: 999px;
            letter-spacing: -.005em;
            white-space: nowrap;
        }
        .marinas__region--muted {
            color: var(--muted);
            background: rgba(15, 23, 42, .06);
        }
        .marinas__grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 32px;
            align-items: stretch;
            position: relative;
            z-index: 1;
        }
        .marinas__viz {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .marinas__main {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            background: #E9EFF3;
            box-shadow: 0 30px 60px -28px rgba(15, 23, 42, .3);
            border: 1px solid var(--line);
            cursor: zoom-in;
            aspect-ratio: 16 / 10;
        }
        .marinas__main img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }
        .marinas__main:hover img { transform: scale(1.02); }
        .marinas__viz-badge {
            position: absolute;
            top: 18px;
            left: 18px;
            background: rgba(255, 255, 255, .95);
            color: var(--ink);
            font-size: 11px;
            font-weight: 800;
            padding: 6px 12px;
            border-radius: 999px;
            letter-spacing: .08em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 14px -4px rgba(0,0,0,.2);
            backdrop-filter: blur(6px);
            z-index: 2;
            pointer-events: none;
        }
        .marinas__viz-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--orange);
            box-shadow: 0 0 0 3px rgba(255, 138, 0, .25);
        }
        .marinas__thumbs {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        .marinas__thumb {
            aspect-ratio: 4 / 3;
            border-radius: 14px;
            overflow: hidden;
            background: #E9EFF3;
            cursor: zoom-in;
            border: 1px solid var(--line);
            box-shadow: 0 12px 26px -18px rgba(15, 23, 42, .2);
            transition: transform .25s, box-shadow .25s;
            position: relative;
        }
        .marinas__thumb:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 32px -16px rgba(15, 23, 42, .28);
        }
        .marinas__thumb img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .marinas__thumb-label {
            position: absolute;
            bottom: 8px;
            left: 8px;
            right: 8px;
            background: rgba(15, 23, 42, .85);
            backdrop-filter: blur(4px);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 6px;
            letter-spacing: .04em;
            text-align: center;
        }
        .marinas__features {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .marinas__feat {
            background: var(--bg-soft);
            border: 1px solid var(--line);
            border-radius: 18px;
            padding: 22px 24px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: transform .25s, box-shadow .25s;
        }
        .marinas__feat:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 36px -22px rgba(15, 23, 42, .18);
        }
        .marinas__feat-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255, 138, 0, .12);
            color: var(--orange);
            display: grid;
            place-items: center;
            flex-shrink: 0;
        }
        .marinas__feat-title {
            font-size: 16px;
            font-weight: 800;
            color: var(--ink);
            line-height: 1.25;
            letter-spacing: -.012em;
            margin: 2px 0 5px;
        }
        .marinas__feat-text {
            font-size: 14px;
            line-height: 1.5;
            color: var(--ink-2);
        }
        .marinas__feat--highlight {
            background: linear-gradient(180deg, #FFF6E6 0%, #FFFBF3 100%);
            border-color: rgba(255, 138, 0, .4);
        }
        .marinas__feat--highlight .marinas__feat-icon {
            background: linear-gradient(135deg, #FFA940, #FF7A00);
            color: #fff;
            box-shadow: 0 8px 18px -6px rgba(255, 138, 0, .5);
        }

        @media (max-width: 960px) {
            .marinas { padding: 80px 0; }
            .marinas__grid { grid-template-columns: 1fr; gap: 22px; }
        }
        @media (max-width: 560px) {
            .marinas { padding: 60px 0; }
            .marinas__main { border-radius: 18px; }
            .marinas__viz-badge { font-size: 10px; padding: 5px 10px; top: 12px; left: 12px; }
            .marinas__thumbs { gap: 8px; }
            .marinas__thumb { border-radius: 12px; }
            .marinas__thumb-label { font-size: 9px; padding: 3px 6px; bottom: 6px; left: 6px; right: 6px; }
            .marinas__feat { padding: 18px 20px; gap: 13px; }
            .marinas__feat-title { font-size: 15px; }
            .marinas__feat-text { font-size: 13.5px; }
        }

        /* ============ SECTION: OFFER (Pricing + What's included) ============ */
        .offer {
            background: #fff;
            padding: 110px 0 120px;
            position: relative;
            overflow: hidden;
        }
        .offer::before {
            content: '';
            position: absolute;
            top: -180px;
            left: 50%;
            transform: translateX(-50%);
            width: 900px;
            height: 600px;
            background: radial-gradient(ellipse, rgba(255, 138, 0, .09), transparent 65%);
            pointer-events: none;
        }
        .offer::after {
            content: '';
            position: absolute;
            bottom: -200px;
            right: -150px;
            width: 480px;
            height: 480px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(11, 37, 64, .05), transparent 65%);
            pointer-events: none;
        }
        .offer__grid {
            display: grid;
            grid-template-columns: 0.85fr 1fr;
            gap: 28px;
            align-items: stretch;
            position: relative;
            z-index: 1;
        }

        /* Price card (left) */
        .offer__price-card {
            background: linear-gradient(180deg, #15273F 0%, #0B2540 100%);
            border-radius: 28px;
            padding: 48px 40px 42px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow:
                0 30px 70px -30px rgba(15, 23, 42, .45),
                inset 0 1px 0 rgba(255, 255, 255, .08);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .offer__price-card::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 360px;
            height: 280px;
            background: radial-gradient(ellipse, rgba(255, 138, 0, .35), transparent 60%);
            pointer-events: none;
        }
        .offer__price-card > * { position: relative; z-index: 1; }
        .offer__price-eyebrow {
            color: var(--orange);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
        }
        .offer__price {
            font-size: clamp(70px, 11vw, 108px);
            font-weight: 800;
            line-height: 1;
            letter-spacing: -.04em;
            margin: 22px 0 6px;
            color: #fff;
        }
        .offer__price em {
            font-style: normal;
            color: var(--orange);
        }
        .offer__price-period {
            font-size: 17px;
            color: rgba(255, 255, 255, .75);
            font-weight: 600;
        }
        .offer__price-hint {
            font-size: 13px;
            color: rgba(255, 255, 255, .55);
            margin-top: 14px;
            line-height: 1.45;
        }
        .offer__form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 28px;
            position: relative;
            z-index: 1;
        }
        .offer__email {
            display: block;
            width: 100%;
            height: 60px;
            padding: 0 22px;
            background: #fff;
            border: 2px solid #fff;
            border-radius: 14px;
            color: var(--ink);
            font-size: 16px;
            font-family: inherit;
            font-weight: 600;
            letter-spacing: -.005em;
            transition: border-color .2s, box-shadow .2s;
            box-shadow: 0 8px 22px -10px rgba(0, 0, 0, .35);
        }
        .offer__email::placeholder {
            color: var(--muted);
            font-weight: 500;
        }
        .offer__email:focus {
            outline: none;
            border-color: var(--orange);
            box-shadow: 0 0 0 4px rgba(255, 138, 0, .25), 0 8px 22px -10px rgba(0, 0, 0, .35);
        }
        .offer__cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--orange);
            color: #fff;
            font-weight: 700;
            font-size: 16.5px;
            padding: 0 26px;
            height: 60px;
            border: none;
            border-radius: 14px;
            flex-shrink: 0;
            cursor: pointer;
            transition: background .2s, transform .15s, box-shadow .2s;
            box-shadow: 0 14px 32px -10px rgba(255, 138, 0, .55);
            white-space: nowrap;
            font-family: inherit;
        }
        .offer__cta:hover {
            background: var(--orange-hover);
            transform: translateY(-1px);
            box-shadow: 0 18px 36px -10px rgba(255, 138, 0, .65);
        }
        .offer__cta:active { transform: translateY(0); }
        .offer__trust {
            display: flex;
            justify-content: center;
            gap: 22px;
            margin-top: 22px;
            font-size: 12.5px;
            color: rgba(255, 255, 255, .6);
            flex-wrap: wrap;
        }
        .offer__trust-item {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }
        .offer__trust-item svg { opacity: .8; }

        /* Includes (right) */
        .offer__includes {
            background: var(--bg-soft);
            border-radius: 28px;
            padding: 38px 38px 36px;
            border: 1px solid var(--line);
        }
        .offer__includes-title {
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 24px;
        }
        .offer__includes-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .offer__includes-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .offer__check {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: rgba(255, 138, 0, .15);
            color: var(--orange);
            display: grid;
            place-items: center;
            margin-top: 1px;
        }
        .offer__includes-text strong {
            font-size: 15.5px;
            font-weight: 800;
            color: var(--ink);
            display: block;
            letter-spacing: -.005em;
            line-height: 1.25;
        }
        .offer__includes-text span {
            font-size: 13.5px;
            color: var(--muted);
            font-weight: 500;
            line-height: 1.45;
            display: block;
            margin-top: 2px;
        }

        /* Comparison strip (full width below) */
        .offer__compare {
            margin-top: 32px;
            background: var(--bg-soft);
            border: 1px solid var(--line);
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            z-index: 1;
        }
        .offer__compare-head {
            background: #F2EFE8;
            padding: 14px 30px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--orange);
        }
        .offer__compare-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 18px 30px;
            border-top: 1px solid var(--line);
        }
        .offer__compare-name {
            font-size: 15.5px;
            color: var(--ink-2);
            font-weight: 600;
        }
        .offer__compare-price {
            font-size: 22px;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: -.015em;
            white-space: nowrap;
        }
        .offer__compare-price small {
            font-size: 13px;
            font-weight: 600;
            color: var(--muted);
            margin-left: 6px;
        }
        .offer__compare-row--us {
            background: linear-gradient(90deg, rgba(255, 138, 0, .08), rgba(255, 138, 0, .02));
        }
        .offer__compare-row--us .offer__compare-name {
            color: var(--orange);
            font-weight: 800;
        }
        .offer__compare-row--us .offer__compare-price {
            color: var(--orange);
        }

        @media (max-width: 960px) {
            .offer { padding: 80px 0 90px; }
            .offer__grid { grid-template-columns: 1fr; gap: 20px; }
            .offer__price-card { padding: 40px 32px 36px; }
            .offer__includes { padding: 32px 28px 30px; }
            .offer__compare-head { padding: 12px 22px; }
            .offer__compare-row { padding: 16px 22px; }
        }
        @media (max-width: 560px) {
            .offer { padding: 60px 0 70px; }
            .offer__price-card { padding: 36px 24px 30px; border-radius: 22px; }
            .offer__includes { padding: 26px 22px; border-radius: 22px; }
            .offer__email { height: 52px; font-size: 14.5px; }
            .offer__cta { font-size: 15px; height: 52px; padding: 0 22px; }
            .offer__includes-text strong { font-size: 14.5px; }
            .offer__includes-text span { font-size: 13px; }
            .offer__compare-row { flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 18px; }
            .offer__compare-price { font-size: 19px; }
        }

        /* ============ FOOTER ============ */
        .footer {
            background:
                radial-gradient(120% 70% at 50% 0%, #15273F 0%, #0B2540 60%),
                #081B30;
            color: rgba(255, 255, 255, .8);
            padding: 64px 0 32px;
            position: relative;
            overflow: hidden;
        }
        .footer::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
            background-size: 32px 32px;
            pointer-events: none;
        }
        .footer__top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 44px;
            position: relative;
            z-index: 1;
        }
        .footer__brand {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .footer__brand-mark {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: #0B2540 center 20% / cover no-repeat url('/assets-package-v4/img/avatar.webp');
            flex-shrink: 0;
            box-shadow: 0 0 0 2px var(--orange);
        }
        .footer__brand-text strong {
            display: block;
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -.005em;
        }
        .footer__brand-text span {
            font-size: 13px;
            color: rgba(255, 255, 255, .55);
            line-height: 1.3;
        }
        .footer__login {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 22px;
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, .2);
            border-radius: 12px;
            font-weight: 700;
            font-size: 14.5px;
            transition: background .2s, border-color .2s;
        }
        .footer__login:hover {
            background: rgba(255, 255, 255, .08);
            border-color: rgba(255, 255, 255, .4);
        }
        .footer__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding-top: 36px;
            border-top: 1px solid rgba(255, 255, 255, .1);
            position: relative;
            z-index: 1;
        }
        .footer__col-title {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 18px;
        }
        .footer__col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer__col a {
            color: rgba(255, 255, 255, .8);
            font-size: 14.5px;
            font-weight: 500;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .footer__col a:hover { color: #fff; }
        .footer__col a svg {
            opacity: .55;
            flex-shrink: 0;
            transition: opacity .2s;
        }
        .footer__col a:hover svg { opacity: 1; color: var(--orange); }
        .footer__bottom {
            margin-top: 40px;
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            display: flex;
            justify-content: space-between;
            gap: 20px;
            font-size: 12.5px;
            color: rgba(255, 255, 255, .45);
            position: relative;
            z-index: 1;
        }

        @media (max-width: 640px) {
            .footer { padding: 48px 0 28px; }
            .footer__top { margin-bottom: 32px; gap: 18px; }
            .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-top: 28px; }
            .footer__bottom { flex-direction: column; gap: 10px; margin-top: 32px; }
        }

        @media (max-width: 1100px) {
            .course__grid { grid-template-columns: repeat(4, 1fr); }
        }
        @media (max-width: 860px) {
            .course { padding: 80px 0; }
            .course__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
            .course__stats { gap: 24px 30px; }
        }
        @media (max-width: 560px) {
            .course { padding: 60px 0; }
            .course__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .course-mod__body { padding: 12px 12px 14px; }
            .course-mod__title { font-size: 12.5px; }
            .course-mod__count { font-size: 10px; }
            .course__stat-num { font-size: 28px; }
        }
