
     :root {
    --c1: #000;
    --c2: #C49A3C; /* Main Golden */
    --c3: #231F20;
    --c4: #D4AC54; /* Light Golden */
    --c5: #B8962E; /* Dark Golden */
    --w: #ffffff;
    --w85: rgba(255, 255, 255, 0.85);
    --w55: rgba(255, 255, 255, 0.55);
    --w12: rgba(255, 255, 255, 0.10);
    --bg: #f7f5f3;
    --bg2: #edeae6;
    --text: #231F20;
    --text-soft: #5a5558;
}

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Barlow', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        /* ── NAVBAR ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 48px;
            height: 68px;
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(196, 154, 60, 0.3);
        }

        .nav-logo img {

            width: 180px;
        }

        .nav-logo {
            color: var(--c2);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 26px;
            background: var(--c2);
            color: var(--w);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: background 0.3s;
        }

        .nav-cta:hover {
            background: #8f0b1c;
        }

        /* ── HERO ── */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 640px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero__bg {
            position: absolute;
            inset: 0;
            background: url('hero.jpeg') center/cover no-repeat;
            transform: scale(1.05);
            animation: slowZoom 16s ease-out forwards;
        }

        @keyframes slowZoom {
            from {
                transform: scale(1.05)
            }

            to {
                transform: scale(1.00)
            }
        }

        .hero__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.82) 0%, rgba(35, 31, 32, 0.60) 45%, rgba(0, 0, 0, 0.75) 100%);
        }

        .hero__accent-left {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: linear-gradient(180deg, var(--c2), var(--c4), var(--c5));
            z-index: 3;
        }

        .hero__accent-right {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: linear-gradient(180deg, var(--c5), var(--c4), var(--c2));
            z-index: 3;
        }

        .hero__corner {
            position: absolute;
            width: 80px;
            height: 80px;
            z-index: 3;
        }

        .hero__corner--tl {
            top: 84px;
            left: 28px;
            border-top: 1px solid var(--c2);
            border-left: 1px solid var(--c2);
        }

        .hero__corner--br {
            bottom: 100px;
            right: 28px;
            border-bottom: 1px solid var(--c5);
            border-right: 1px solid var(--c5);
        }

        .hero__content {
            position: relative;
            z-index: 4;
            text-align: center;
            padding: 0 24px;
            max-width: 860px;
        }

        .hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.30em;
            text-transform: uppercase;
            color: var(--c2);
            margin-bottom: 22px;
            animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
        }

        .hero__badge::before,
        .hero__badge::after {
            content: '';
            display: block;
            width: 32px;
            height: 1px;
            background: var(--c2);
        }

        .hero__title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: clamp(2.6rem, 6.5vw, 5.4rem);
            line-height: 1.06;
            color: var(--w);
            margin-bottom: 10px;
            animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
        }

        .hero__title em {
            font-style: italic;
            color: var(--w85);
        }

        .hero__brand-name {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.1rem, 2.5vw, 1.6rem);
            font-weight: 400;
            letter-spacing: 0.18em;
            color: var(--c2);
            text-transform: uppercase;
            margin-bottom: 20px;
            animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
        }

        .hero__sub {
            font-size: clamp(0.85rem, 1.5vw, 1rem);
            font-weight: 300;
            line-height: 1.8;
            color: var(--w55);
            max-width: 560px;
            margin: 0 auto 38px;
            letter-spacing: 0.02em;
            animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
        }

        .hero__cta-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
            animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .btn-red {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 38px;
            background: var(--c2);
            color: var(--w);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            cursor: pointer;
            overflow: hidden;
            transition: box-shadow 0.3s;
        }

        .btn-red::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--c4), var(--c5));
            transform: translateX(-101%);
            transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .btn-red:hover::before {
            transform: translateX(0);
        }

        .btn-red:hover {
            box-shadow: 0 10px 40px rgba(176, 14, 35, 0.5);
        }

        .btn-red span,
        .btn-red svg {
            position: relative;
            z-index: 1;
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 15px 34px;
            background: transparent;
            color: var(--w);
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.30);
            cursor: pointer;
            transition: border-color 0.3s, background 0.3s;
        }

        .btn-ghost:hover {
            border-color: var(--w);
            background: var(--w12);
        }

        .hero__stats {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 4;
            display: flex;
            background: rgba(0, 0, 0, 0.70);
            backdrop-filter: blur(14px);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            animation: fadeUp 0.9s 1s both;
        }

        .hero__stat {
            flex: 1;
            padding: 18px 16px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.07);
        }

        .hero__stat:last-child {
            border-right: none;
        }

        .hero__stat-num {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 400;
            color: var(--w);
            line-height: 1;
        }

        .hero__stat-num sup {
            font-size: 0.9rem;
            color: var(--c2);
        }

        .hero__stat-label {
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--w55);
        }

        .hero__stat-dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--c2);
            margin: 5px auto 4px;
        }

        /* ── LAYOUT ── */
        section {
            padding: 96px 0;
        }

        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .sec-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--c2);
            margin-bottom: 14px;
        }

        .sec-eyebrow::before {
            content: '';
            display: block;
            width: 28px;
            height: 1px;
            background: var(--c2);
        }

        .sec-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: clamp(2rem, 4vw, 3.4rem);
            line-height: 1.12;
            color: var(--c3);
            margin-bottom: 16px;
        }

        .sec-title em {
            font-style: italic;
            color: var(--c2);
        }

        .sec-body {
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.8;
            color: var(--text-soft);
            max-width: 580px;
        }

        /* ── WHY ── */
        .why {
            background: var(--c3);
        }

        .why .sec-title {
            color: var(--w);
        }

        .why .sec-body {
            color: var(--w55);
        }

        .why .sec-eyebrow {
            color: var(--c2);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2px;
            margin-top: 56px;
        }

        .why-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            padding: 38px 30px;
            position: relative;
            overflow: hidden;
            transition: background 0.35s;
        }

        .why-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--c2), var(--c5));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .why-card:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        .why-card:hover::before {
            transform: scaleX(1);
        }

        .why-card__icon {
            width: 46px;
            height: 46px;
            border:  1px solid rgba(196, 154, 60, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--c2);
        }

        .why-card__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--w);
            margin-bottom: 10px;
        }

        .why-card__body {
            font-size: 0.88rem;
            font-weight: 300;
            line-height: 1.75;
            color: var(--w55);
        }

        /* ── PRODUCTS ── */
        .products {
            background: var(--bg2);
        }

        .products-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            margin-bottom: 60px;
        }

        @media(max-width:768px) {
            .products-intro {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            nav{
                gap: 20px;
            }
            .nav-logo img {

            width: 120px;
        }

        .nav-cta{
            padding: 10px;
        }
        }

        .product-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 32px;
        }

        .product-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: var(--w);
            border: 1px solid rgba(0, 0, 0, 0.08);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.08em;
            color: var(--c3);
            transition: background 0.25s, color 0.25s, border-color 0.25s;
            cursor: default;
        }

        .product-tag:hover {
            background: var(--c2);
            color: var(--w);
            border-color: var(--c2);
        }

        .product-tag::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--c2);
            flex-shrink: 0;
        }

        .product-tag:hover::before {
            background: var(--w);
        }

        .products-note {
            background: var(--c1);
            padding: 36px 40px;
            color: var(--w55);
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.8;
            border-left: 4px solid var(--c2);
        }

        .products-note strong {
            color: var(--w);
            font-weight: 500;
        }

        /* ── WHO ── */
        .who {
            background: var(--w);
        }

        .who-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            margin-top: 56px;
        }

        @media(max-width:768px) {
            .who-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        .who-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .who-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-size: 0.96rem;
            font-weight: 400;
            color: var(--text);
            line-height: 1.6;
        }

        .who-list li::before {
            content: '✔';
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            background: var(--c2);
            color: var(--w);
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .benefit-item {
            padding: 20px 18px;
            background: var(--bg);
            border-left: 3px solid var(--c5);
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--c3);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: border-color 0.25s, background 0.25s;
        }

        .benefit-item:hover {
            border-color: var(--c2);
            background: var(--bg2);
        }

        .benefit-item::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--c5);
            flex-shrink: 0;
            transition: background 0.25s;
        }

        .benefit-item:hover::before {
            background: var(--c2);
        }

        /* ── URGENCY ── */
        .urgency {
            background: var(--c2);
            padding: 52px 0;
            text-align: center;
        }

        .urgency__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 300;
            color: var(--w);
            margin-bottom: 12px;
        }

        .urgency__sub {
            font-size: 1rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.80);
            margin-bottom: 28px;
        }

        .urgency .btn-white {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            background: var(--w);
            color: var(--c2);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: background 0.3s, color 0.3s;
        }

        .urgency .btn-white:hover {
            background: var(--c3);
            color: var(--w);
        }

        /* ── FORM SECTION ── */
        .form-section {
            background: var(--c3);
        }

        .form-layout {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 72px;
            align-items: start;
            margin-top: 56px;
        }

        @media(max-width:900px) {
            .form-layout {
                grid-template-columns: 1fr;
                gap: 48px;
            }
        }

        .form-info .sec-title {
            color: var(--w);
        }

        .form-info .sec-body {
            color: var(--w55);
            margin-bottom: 32px;
        }

        .ad-copy {
            padding: 26px;
            background: rgba(196, 154, 60, 0.10);
            border: 1px solid rgba(196, 154, 60, 0.22);
            margin-bottom: 22px;
        }

        .ad-copy__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--w);
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .ad-copy__title em {
            font-style: italic;
            color: var(--c2);
        }

        .ad-copy__sub {
            font-size: 0.83rem;
            font-weight: 300;
            color: var(--w55);
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .ad-copy__list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 16px;
        }

        .ad-copy__list li {
            font-size: 0.82rem;
            font-weight: 400;
            color: var(--w85);
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.5;
        }

        .ad-copy__list li::before {
            content: '✔';
            color: var(--c2);
            flex-shrink: 0;
            font-size: 10px;
            margin-top: 2px;
        }

        .ad-copy__whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: #25D366;
            color: var(--w);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.10em;
            text-decoration: none;
            transition: background 0.25s;
        }

        .ad-copy__whatsapp:hover {
            background: #1da851;
        }

        .ad-copy__limited {
            margin-top: 12px;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--c2);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ad-copy__limited::before {
            content: '';
            width: 22px;
            height: 1px;
            background: var(--c2);
        }

        .contact-block {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 20px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .contact-block__icon {
            width: 40px;
            height: 40px;
            background: var(--c2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .contact-block__label {
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--w55);
            margin-bottom: 3px;
        }

        .contact-block__val {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--w);
        }

        /* ── FORM CARDS ── */
        .dealer-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .form-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }

        .form-card__header {
            padding: 11px 18px;
            background: rgba(0, 0, 0, 0.25);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--w55);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-card__dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--c2);
            flex-shrink: 0;
        }

        .form-card__body {
            padding: 16px 18px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        @media(max-width:560px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .form-group label {
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.20em;
            text-transform: uppercase;
            color: var(--w55);
        }

        .form-group label .req {
            color: var(--c2);
        }

        .form-group input {
            background: rgba(255, 255, 255, 0.04);
            border: none;
            border-bottom: 2px solid rgba(255, 255, 255, 0.10);
            padding: 11px 12px;
            font-family: 'Barlow', sans-serif;
            font-size: 0.90rem;
            font-weight: 300;
            color: var(--w);
            outline: none;
            width: 100%;
            transition: border-color 0.25s, background 0.22s;
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.18);
        }

        .form-group input:focus {
            border-bottom-color: var(--c2);
            background: rgba(255, 255, 255, 0.06);
        }

        .select-wrap {
            position: relative;
        }

        .select-wrap select {
            width: 100%;
            appearance: none;
            -webkit-appearance: none;
            background: rgba(255, 255, 255, 0.04);
            border: none;
            border-bottom: 2px solid rgba(255, 255, 255, 0.10);
            padding: 11px 34px 11px 12px;
            font-family: 'Barlow', sans-serif;
            font-size: 0.90rem;
            font-weight: 300;
            color: var(--w);
            outline: none;
            cursor: pointer;
            transition: border-color 0.25s, background 0.22s;
        }

        .select-wrap select option {
            background: #231F20;
            color: var(--w);
        }

        .select-wrap select:focus {
            border-bottom-color: var(--c2);
            background: rgba(255, 255, 255, 0.06);
        }

        .select-arrow {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: rgba(255, 255, 255, 0.30);
            transition: color 0.25s;
        }

        .select-wrap:focus-within .select-arrow {
            color: var(--c2);
        }

        .form-submit {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 17px 44px;
            background: var(--c2);
            color: var(--w);
            font-family: 'Barlow', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: box-shadow 0.3s;
            margin-top: 4px;
        }

        .form-submit::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--c4), var(--c5));
            transform: translateX(-101%);
            transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .form-submit:hover::before {
            transform: translateX(0);
        }

        .form-submit:hover {
            box-shadow: 0 10px 40px rgba(176, 14, 35, 0.45);
        }

        .form-submit span,
        .form-submit svg {
            position: relative;
            z-index: 1;
        }

        /* ── FOOTER ── */
        footer {
            background: var(--c1);
            padding: 36px 40px;
            text-align: center;
            border-top: 1px solid rgba(176, 14, 35, 0.25);
        }

        footer p {
            font-size: 0.82rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.30);
        }

        footer strong {
            color: var(--c2);
            font-weight: 500;
        }

        /* ── REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        @media(max-width:640px) {
            nav {
                padding: 0 24px;
            }

            .container {
                padding: 0 20px;
            }

            section {
                padding: 64px 0;
            }

            .hero__stat-num {
                font-size: 1.4rem;
            }
        }



         .thankyou-screen {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 60px 40px;
            background: var(--c3);
            border: 1px solid var(--w12);
            width: 100%;
            
        }

        .thankyou-icon {
            width: 70px;
            height: 70px;
            border: 2px solid var(--c2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            color: var(--c2);
            font-size: 26px;
            animation: popIn 0.5s ease forwards;
        }

        @keyframes popIn {
            from { transform: scale(0.3); opacity: 0 }
            to { transform: scale(1); opacity: 1 }
        }

        .thankyou-title {
            font-size: 2.1rem;
            font-weight: 300;
            color: var(--w);
            margin-bottom: 14px;
        }

        .thankyou-title em {
            font-style: italic;
            color: var(--c2);
        }

        .thankyou-sub {
            font-size: 0.95rem;
            font-weight: 300;
            color: var(--w55);
            line-height: 1.8;
            max-width: 420px;
            margin-bottom: 30px;
        }

        .thankyou-steps {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
            max-width: 380px;
            margin-bottom: 32px;
        }

        .thankyou-step {
            padding: 14px 16px;
            background: var(--c1);
            border-left: 3px solid var(--c2);
            text-align: left;
            font-size: 0.85rem;
            color: var(--w85);
        }

        .thankyou-step strong {
            color: var(--c2);
            font-size: 0.75rem;
            display: block;
            margin-bottom: 4px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .thankyou-wa {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 13px 28px;
            background: var(--c5);
            color: var(--w);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            text-decoration: none;
            transition: 0.3s;
            margin-bottom: 15px;
            width: 100%;
            max-width: 340px;
        }

        .thankyou-wa:hover {
            background: var(--c4);
        }

        .back-home {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            background: transparent;
            border: 1px solid var(--c2);
            color: var(--c2);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            text-decoration: none;
            transition: 0.3s;
            width: 100%;
            max-width: 340px;
        }

        .back-home:hover {
            background: var(--c2);
            color: var(--w);
        }

        @media (max-width: 480px) {
            .thankyou-screen {
                padding: 40px 20px;
            }
        }


          /* ── PAGE HERO ── */
        .page-hero {
            padding-top: 68px;
            background: var(--c3);
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, var(--c2), var(--c4), var(--c5));
        }

        .page-hero::after {
            content: 'PRIVACY';
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'Cormorant Garamond', serif;
            font-size: 10rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.025);
            letter-spacing: 0.1em;
            pointer-events: none;
            white-space: nowrap;
        }

        .page-hero__inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 64px 40px 56px 64px;
        }

        .page-hero__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.30em;
            text-transform: uppercase;
            color: var(--c2);
            margin-bottom: 18px;
        }

        .page-hero__eyebrow::before {
            content: '';
            display: block;
            width: 32px;
            height: 1px;
            background: var(--c2);
        }

        .page-hero__title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: clamp(2.4rem, 5vw, 4.2rem);
            line-height: 1.08;
            color: var(--w);
            margin-bottom: 16px;
        }

        .page-hero__title em {
            font-style: italic;
            color: var(--c2);
        }

        .page-hero__meta {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
            margin-top: 28px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 400;
            color: var(--w55);
            letter-spacing: 0.06em;
        }

        .meta-item span {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--c2);
            flex-shrink: 0;
        }

        .page-hero__bar {
            height: 4px;
            background: linear-gradient(90deg, var(--c2), var(--c4), var(--c5));
        }

        /* ── CONTENT LAYOUT ── */
        .policy-layout {
            max-width: 1180px;
            margin: 0 auto;
            padding: 72px 40px;
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 72px;
            align-items: start;
        }

        @media(max-width: 900px) {
            .policy-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .policy-toc {
                position: static !important;
            }
        }

        /* ── TABLE OF CONTENTS ── */
        .policy-toc {
            position: sticky;
            top: 88px;
        }

        .toc-label {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--c2);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .toc-label::before {
            content: '';
            width: 20px;
            height: 1px;
            background: var(--c2);
        }

        .toc-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .toc-list a {
            display: block;
            padding: 9px 14px;
            font-size: 0.82rem;
            font-weight: 400;
            color: var(--text-soft);
            text-decoration: none;
            border-left: 2px solid transparent;
            transition: color 0.2s, border-color 0.2s, background 0.2s, padding-left 0.2s;
            line-height: 1.4;
        }

        .toc-list a:hover,
        .toc-list a.active {
            color: var(--c2);
            border-left-color: var(--c2);
            background: rgba(176, 14, 35, 0.06);
            padding-left: 18px;
        }

        .toc-contact {
            margin-top: 28px;
            padding: 18px 16px;
            background: var(--c3);
            border-left: 3px solid var(--c2);
        }

        .toc-contact__label {
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--w55);
            margin-bottom: 8px;
        }

        .toc-contact__val {
            font-size: 0.90rem;
            font-weight: 500;
            color: var(--w);
        }

        .toc-contact__wa {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 10px;
            padding: 8px 14px;
            background: #25D366;
            color: var(--w);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.10em;
            text-decoration: none;
            transition: background 0.25s;
        }

        .toc-contact__wa:hover {
            background: #1da851;
        }

        /* ── POLICY CONTENT ── */
        .policy-content {
            min-width: 0;
        }

        .policy-section {
            margin-bottom: 52px;
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .policy-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .policy-section:last-child {
            margin-bottom: 0;
        }

        .section-num {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--c2);
            margin-bottom: 10px;
        }

        .section-num::before {
            content: '';
            width: 22px;
            height: 1px;
            background: var(--c2);
        }

        .policy-section h2 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            color: var(--c3);
            line-height: 1.2;
            margin-bottom: 18px;
        }

        .policy-section h2 em {
            font-style: italic;
            color: var(--c2);
        }

        .policy-divider {
            width: 48px;
            height: 2px;
            background: linear-gradient(90deg, var(--c2), var(--c5));
            margin-bottom: 20px;
        }

        .policy-text {
            font-size: 0.96rem;
            font-weight: 300;
            line-height: 1.85;
            color: var(--text-soft);
            margin-bottom: 16px;
        }

        .policy-text:last-child {
            margin-bottom: 0;
        }

        /* ── LISTS ── */
        .policy-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin: 16px 0;
        }

        .policy-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.94rem;
            font-weight: 400;
            color: var(--text);
            line-height: 1.65;
            padding: 12px 16px;
            background: var(--w);
            border-left: 3px solid var(--bg2);
            transition: border-color 0.25s, background 0.25s;
        }

        .policy-list li:hover {
            border-left-color: var(--c2);
            background: var(--bg2);
        }

        .policy-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--c2);
            flex-shrink: 0;
            margin-top: 7px;
        }

        /* ── HIGHLIGHT CARDS ── */
        .highlight-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin: 20px 0;
        }

        @media(max-width: 600px) {
            .highlight-cards {
                grid-template-columns: 1fr;
            }
        }

        .highlight-card {
            padding: 18px 20px;
            background: var(--w);
            border: 1px solid rgba(0, 0, 0, 0.07);
            border-top: 3px solid var(--c5);
            transition: border-top-color 0.25s, box-shadow 0.25s;
        }

        .highlight-card:hover {
            border-top-color: var(--c2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .highlight-card__icon {
            font-size: 1.3rem;
            margin-bottom: 8px;
        }

        .highlight-card__title {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--c3);
            letter-spacing: 0.04em;
            margin-bottom: 5px;
        }

        .highlight-card__body {
            font-size: 0.82rem;
            font-weight: 300;
            color: var(--text-soft);
            line-height: 1.65;
        }

        /* ── NOTICE BOX ── */
        .notice-box {
            padding: 22px 24px;
            background: var(--c3);
            border-left: 4px solid var(--c2);
            margin: 20px 0;
        }

        .notice-box p {
            font-size: 0.90rem;
            font-weight: 300;
            color: var(--w55);
            line-height: 1.8;
        }

        .notice-box strong {
            color: var(--w);
            font-weight: 500;
        }

        /* ── CONSENT BLOCK ── */
        .consent-block {
            padding: 28px 28px;
            background: linear-gradient(135deg, rgba(176, 14, 35, 0.06), rgba(62, 52, 148, 0.06));
            border: 1px solid rgba(176, 14, 35, 0.2);
            margin: 20px 0;
        }

        .consent-block__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--c3);
            margin-bottom: 12px;
        }

        .consent-channels {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 14px;
        }

        .channel-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: var(--w);
            border: 1px solid rgba(0, 0, 0, 0.08);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.06em;
            color: var(--c3);
            transition: background 0.25s, color 0.25s, border-color 0.25s;
        }

        .channel-tag:hover {
            background: var(--c2);
            color: var(--w);
            border-color: var(--c2);
        }

        .channel-tag::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--c2);
            flex-shrink: 0;
            transition: background 0.25s;
        }

        .channel-tag:hover::before {
            background: var(--w);
        }

        /* ── CONTACT SECTION ── */
        .contact-section {
            background: var(--c3);
            padding: 56px 0;
        }

        .contact-inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        .contact-text .eyebrow {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--c2);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-text .eyebrow::before {
            content: '';
            width: 22px;
            height: 1px;
            background: var(--c2);
        }

        .contact-text h3 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 2rem;
            color: var(--w);
            line-height: 1.2;
        }

        .contact-text h3 em {
            font-style: italic;
            color: var(--c2);
        }

        .contact-text p {
            font-size: 0.90rem;
            font-weight: 300;
            color: var(--w55);
            margin-top: 10px;
            line-height: 1.7;
        }

        .contact-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.20em;
            text-transform: uppercase;
            text-decoration: none;
            transition: background 0.3s;
            white-space: nowrap;
        }

        .contact-btn--call {
            background: var(--c2);
            color: var(--w);
        }

        .contact-btn--call:hover {
            background: #8f0b1c;
        }

        .contact-btn--wa {
            background: #25D366;
            color: var(--w);
        }

        .contact-btn--wa:hover {
            background: #1da851;
        }