*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4A94B;
    --gold-light: #EEC96A;
    --gold-pale: #F9EDD0;
    --gold-dark: #A07820;
    --rose-gold: #C4846A;
    --rose-light: #DFA98F;
    --onyx: #080C14;
    --charcoal: #0E1420;
    --graphite: #14202E;
    --smoke: #1C2C3E;
    --navy-accent: #1A2540;
    --ivory: #F4ECD8;
    --cream: #E6D8BE;
    --platinum: #D6CEBC;
    --muted: rgba(244, 236, 216, 0.45);
    --sapphire: #2E4A7A;
    --diamond-ice: #C8E8F4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--onyx);
    color: var(--ivory);
    overflow-x: hidden;
    
}

.cursor {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s, height 0.2s;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212, 169, 75, 0.55);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.18s ease;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
    width: 20px;
    height: 20px;
}

body:has(input:focus) .cursor,
body:has(textarea:focus) .cursor,
body:has(select:focus) .cursor {
    width: 18px;
    height: 18px;
}

body.flex-col {
    display: flex;
    flex-direction: column;
}

#bgCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ——— NAV ——— */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 10px 60px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    background: rgba(8, 12, 20, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 169, 75, 0.08);
}

.nav-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--gold);
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo span {
    color: var(--platinum);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    justify-content: center;
    align-items: center;
}

.nav-links a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(214, 206, 188, 0.75);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--ivory);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--ivory);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-auth {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.btn-login {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 26px;
    border: 1px solid rgba(212, 169, 75, 0.55);
    color: var(--ivory);
    background: transparent;
    
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-login:hover {
    background: rgba(212, 169, 75, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.btn-register {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 26px;
    background: linear-gradient(110deg, var(--gold), var(--rose-gold));
    color: var(--onyx);
    border: none;
    
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 18px rgba(212, 169, 75, 0.25);
}

.btn-register:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(212, 169, 75, 0.35);
}

/* ——— INTRO SECTION (after banner) ——— */
.intro-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #080C14 0%, #0C1828 45%, #0A1220 75%, #080C14 100%);
    border-bottom: 1px solid rgba(212, 169, 75, 0.08);
}

.intro-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 5% 50%, rgba(212, 169, 75, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 95% 30%, rgba(196, 132, 106, 0.05) 0%, transparent 55%);
    pointer-events: none;
}

.intro-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-eyebrow {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.intro-eyebrow::before {
    content: '◆';
    font-size: 0.45rem;
}

.intro-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 3.8vw, 2.7rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ivory);
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.intro-heading em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
}

.intro-desc {
    font-size: 0.85rem;
    line-height: 1.9;
    font-weight: 300;
    color: rgba(244, 236, 216, 0.45);
    max-width: 480px;
    margin-bottom: 36px;
}

.intro-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Right side */
.intro-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.ist-card {
    background: var(--graphite);
    border: 1px solid rgba(212, 169, 75, 0.1);
    padding: 22px 20px;
    transition: border-color 0.3s, transform 0.3s;
}

.ist-card:hover {
    border-color: rgba(212, 169, 75, 0.28);
    transform: translateY(-2px);
}

.ist-card-gold {
    border-color: rgba(212, 169, 75, 0.2);
    background: rgba(20, 30, 12, 0.6);
}

.ist-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.ist-label {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 236, 216, 0.35);
    margin-top: 6px;
}

/* Three asset pillars */
.intro-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 12px;
    gap: 6px;
    border: 1px solid;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    transform: scaleX(0);
    transition: transform 0.4s;
}

.pillar:hover::before {
    transform: scaleX(1);
}

.pillar:hover {
    transform: translateY(-3px);
}

.pillar-gold {
    background: rgba(20, 16, 4, 0.7);
    border-color: rgba(212, 169, 75, 0.22);
}

.pillar-gold::before {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pillar-diamond {
    background: rgba(4, 8, 20, 0.7);
    border-color: rgba(200, 232, 244, 0.18);
}

.pillar-diamond::before {
    background: linear-gradient(90deg, transparent, var(--diamond-ice), transparent);
}

.pillar-land {
    background: rgba(4, 12, 4, 0.7);
    border-color: rgba(100, 180, 100, 0.18);
}

.pillar-land::before {
    background: linear-gradient(90deg, transparent, #7DC97A, transparent);
}

.pillar-icon {
    font-size: 1.6rem;
}

.pillar-name {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--ivory);
}

.pillar-tag {
    font-size: 0.52rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.pillar-gold .pillar-tag {
    color: var(--gold);
}

.pillar-diamond .pillar-tag {
    color: var(--diamond-ice);
}

.pillar-land .pillar-tag {
    color: #7DC97A;
}

@media(max-width:900px) {
    .intro-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 60px 28px;
    }
}

/* Shared buttons */
.btn-primary {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 16px 38px;
    background: linear-gradient(110deg, var(--gold), var(--rose-gold));
    color: var(--onyx);
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 28px rgba(212, 169, 75, 0.28);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(212, 169, 75, 0.38);
}

.btn-ghost {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 16px 38px;
    background: transparent;
    color: var(--ivory);
    border: 1px solid rgba(244, 236, 216, 0.2);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0) }
    10% { transform: translate(-2%, -3%) }
    20% { transform: translate(3%, 2%) }
    30% { transform: translate(-3%, 3%) }
    40% { transform: translate(2%, -2%) }
    50% { transform: translate(-1%, 3%) }
    60% { transform: translate(3%, -1%) }
    70% { transform: translate(-2%, 2%) }
    80% { transform: translate(1%, -3%) }
    90% { transform: translate(-3%, 1%) }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1) }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06) }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) }
    50% { transform: translateY(-6px) }
}

@keyframes blink {
    0%, 100% { opacity: 1 }
    50% { opacity: 0.2 }
}

@keyframes orbPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1
    }
}

/* ——— TICKER ——— */
.ticker-bar {
    background: linear-gradient(90deg, #0A1020, #0F1828, #0A1020);
    border-top: 1px solid rgba(212, 169, 75, 0.18);
    border-bottom: 1px solid rgba(212, 169, 75, 0.18);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: rgba(244, 236, 216, 0.5);
}

.ticker-item .name {
    color: var(--gold);
    font-weight: 500;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
}

.ticker-item .up {
    color: #5DBA5A;
}

.ticker-item .down {
    color: #D96060;
}

.ticker-sep {
    color: rgba(212, 169, 75, 0.28);
}

/* ——— SWIPER BANNER ——— */
.swiper-banner-section {
    padding-top: 6rem;
    position: relative;
    z-index: 3;
    background: var(--charcoal);
    border-bottom: 1px solid rgba(212, 169, 75, 0.1);
    overflow: hidden;
}

.swiper-banner-section .swiper {
    width: 100%;
}

.swiper-slide-banner {
    position: relative;
    height: 440px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Gold Slide */
.slide-gold {
    background: linear-gradient(115deg, #0A1020 0%, #141A0A 40%, #1A1400 70%, #0D0B00 100%);
}

.slide-gold .slide-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(212, 169, 75, 0.18) 0%, transparent 65%), radial-gradient(ellipse 30% 40% at 20% 30%, rgba(212, 169, 75, 0.08) 0%, transparent 50%);
}

/* Diamond Slide */
.slide-diamond {
    background: linear-gradient(115deg, #080C14 0%, #0A1220 40%, #061220 70%, #060E1A 100%);
}

.slide-diamond .slide-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(200, 232, 244, 0.15) 0%, transparent 65%), radial-gradient(ellipse 30% 40% at 20% 30%, rgba(46, 74, 122, 0.12) 0%, transparent 50%);
}

/* Land Slide */
.slide-land {
    background: linear-gradient(115deg, #080C14 0%, #0A140A 40%, #081008 70%, #060C06 100%);
}

.slide-land .slide-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(80, 160, 80, 0.15) 0%, transparent 65%), radial-gradient(ellipse 30% 40% at 20% 30%, rgba(100, 140, 70, 0.1) 0%, transparent 50%);
}

.slide-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.slide-content {}

.slide-eyebrow {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slide-eyebrow::before {
    content: '◆';
    font-size: 0.45rem;
}

.slide-gold .slide-eyebrow {
    color: var(--gold);
}

.slide-diamond .slide-eyebrow {
    color: var(--diamond-ice);
}

.slide-land .slide-eyebrow {
    color: #7DC97A;
}

.slide-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--ivory);
    margin-bottom: 14px;
}

.slide-gold .slide-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
}

.slide-diamond .slide-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--diamond-ice);
}

.slide-land .slide-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #7DC97A;
}

.slide-desc {
    font-size: 0.82rem;
    line-height: 1.85;
    font-weight: 300;
    color: rgba(244, 236, 216, 0.45);
    margin-bottom: 32px;
    max-width: 440px;
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    transition: all 0.3s;
}

.slide-gold .slide-cta {
    background: linear-gradient(110deg, var(--gold), var(--rose-gold));
    color: var(--onyx);
    box-shadow: 0 8px 28px rgba(212, 169, 75, 0.3);
}

.slide-gold .slide-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.slide-diamond .slide-cta {
    background: linear-gradient(110deg, #2E5A8A, #4A7AAA);
    color: var(--ivory);
    box-shadow: 0 8px 28px rgba(46, 74, 122, 0.4);
}

.slide-diamond .slide-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.slide-land .slide-cta {
    background: linear-gradient(110deg, #3A7A3A, #5A9A5A);
    color: var(--ivory);
    box-shadow: 0 8px 28px rgba(80, 140, 80, 0.35);
}

.slide-land .slide-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

/* Slide right visual */
.slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Gold icon visual */
.slide-icon-wrap {
    width: 240px;
    height: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: orbPulse 3s ease-in-out infinite;
}

.slide-gold .slide-icon-bg {
    background: radial-gradient(circle, rgba(212, 169, 75, 0.15) 0%, rgba(212, 169, 75, 0.04) 60%, transparent 100%);
}

.slide-diamond .slide-icon-bg {
    background: radial-gradient(circle, rgba(200, 232, 244, 0.15) 0%, rgba(46, 74, 122, 0.05) 60%, transparent 100%);
}

.slide-land .slide-icon-bg {
    background: radial-gradient(circle, rgba(80, 160, 80, 0.15) 0%, rgba(50, 100, 50, 0.04) 60%, transparent 100%);
}

.slide-icon-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.slide-icon-ring-1 {
    width: 180px;
    height: 180px;
    animation: spin 18s linear infinite;
}

.slide-icon-ring-2 {
    width: 220px;
    height: 220px;
    animation: spin 28s linear infinite reverse;
}

.slide-gold .slide-icon-ring {
    border-color: rgba(212, 169, 75, 0.22);
    font-size: 3rem;
}

.slide-diamond .slide-icon-ring {
    border-color: rgba(200, 232, 244, 0.18);
    font-size: 3rem;
}

.slide-land .slide-icon-ring {
    border-color: rgba(100, 180, 100, 0.18);
    font-size: 3rem;
}

.slide-big-icon {
    font-size: 15rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(212, 169, 75, 0.4));
}

.slide-diamond .slide-big-icon {
    filter: drop-shadow(0 0 30px rgba(100, 180, 255, 0.4));
}

.slide-land .slide-big-icon {
    filter: drop-shadow(0 0 30px rgba(100, 200, 100, 0.4));
}

/* Package badge on slide */
.slide-package-badge {
    position: absolute;
    bottom: 24px;
    right: -88px;
    background: rgba(8, 12, 20, 0.92);
    border: 1px solid rgba(212, 169, 75, 0.28);
    padding: 8px 6px;
    min-width: 125px;
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.slide-diamond .slide-package-badge {
    border-color: rgba(200, 232, 244, 0.25);
}

.slide-land .slide-package-badge {
    border-color: rgba(100, 180, 100, 0.25);
}

.spb-label {
    font-size: 0.52rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 236, 216, 0.38);
    margin-bottom: 5px;
}

.spb-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.1;
}

.slide-gold .spb-value {
    color: var(--gold);
}

.slide-diamond .spb-value {
    color: var(--diamond-ice);
}

.slide-land .spb-value {
    color: #7DC97A;
}

.spb-return {
    font-size: 0.62rem;
    color: #5DBA5A;
    margin-top: 4px;
}

/* Swiper nav arrows */
.swiper-banner-section .swiper-button-next,
.swiper-banner-section .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(8, 12, 20, 0.8);
    border: 1px solid rgba(212, 169, 75, 0.25);
    border-radius: 0;
    color: var(--gold);
    --swiper-navigation-size: 16px;
    transition: all 0.3s;
}

.swiper-banner-section .swiper-button-next:hover,
.swiper-banner-section .swiper-button-prev:hover {
    background: rgba(212, 169, 75, 0.12);
    border-color: var(--gold);
}

.swiper-banner-section .swiper-pagination-bullet {
    background: rgba(212, 169, 75, 0.35);
    opacity: 1;
    width: 6px;
    height: 6px;
}

.swiper-banner-section .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 24px;
    border-radius: 3px;
    transition: width 0.3s;
}

.swiper-banner-section .swiper-pagination {
    bottom: 18px;
}

/* ——— SECTION COMMONS ——— */
.section {
    padding: 120px 60px;
    position: relative;
}

.section-tag {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-tag::before {
    content: '◆';
    font-size: 0.5rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 400;
    color: var(--ivory);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
}

.section-desc {
    font-size: 0.85rem;
    line-height: 1.9;
    font-weight: 300;
    color: rgba(244, 236, 216, 0.45);
    max-width: 500px;
}

/* ——— SERVICES ——— */
.services {
    background: var(--charcoal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 70px;
    border: 1px solid rgba(212, 169, 75, 0.1);
}

.service-card {
    background: var(--graphite);
    padding: 48px 40px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--rose-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: rgba(20, 32, 46, 0.95);
    border-color: rgba(212, 169, 75, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 28px;
    display: block;
}

.service-name {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--ivory);
    margin-bottom: 16px;
}

.service-desc {
    font-size: 0.8rem;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(244, 236, 216, 0.4);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 14px;
}

/* ——— PRODUCTS / PACKAGES ——— */
.products {
    background: var(--onyx);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--graphite);
    border: 1px solid rgba(212, 169, 75, 0.1);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 169, 75, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 169, 75, 0.08);
}

.product-card.featured {
    border-color: rgba(212, 169, 75, 0.35);
}

.product-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -32px;
    background: linear-gradient(110deg, var(--gold), var(--rose-gold));
    color: var(--onyx);
    font-size: 0.52rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    padding: 5px 44px;
    transform: rotate(45deg);
}

.product-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-gold {
    background: linear-gradient(135deg, #0E1405, #1A1A08, #1A1200);
}

.product-img-diamond {
    background: linear-gradient(135deg, #080C14, #0A1020, #060E1E);
}

.product-img-land {
    background: linear-gradient(135deg, #040C04, #081208, #061006);
}

.product-img-icon {
    font-size: 4.5rem;
    opacity: 0.55;
}

/* Animated ring inside product image */
.product-img-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-img-ring-1 {
    width: 110px;
    height: 110px;
    animation: spin 15s linear infinite;
}

.product-img-ring-2 {
    width: 150px;
    height: 150px;
    animation: spin 25s linear infinite reverse;
}

.ring-gold {
    border-color: rgba(212, 169, 75, 0.25);
}

.ring-diamond {
    border-color: rgba(200, 232, 244, 0.2);
}

.ring-green {
    border-color: rgba(100, 180, 100, 0.2);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 10px;
}

.badge-gold {
    background: var(--gold);
    color: var(--onyx);
}

.badge-diamond {
    background: linear-gradient(110deg, #2E5A8A, #4A7AAA);
    color: var(--ivory);
}

.badge-land {
    background: linear-gradient(110deg, #3A7A3A, #5A9A5A);
    color: var(--ivory);
}

.product-body {
    padding: 28px;
}

.product-category {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cat-gold {
    color: var(--gold);
}

.cat-diamond {
    color: var(--diamond-ice);
}

.cat-land {
    color: #7DC97A;
}

.product-name {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--ivory);
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.78rem;
    line-height: 1.75;
    color: rgba(244, 236, 216, 0.4);
    margin-bottom: 22px;
    font-weight: 300;
}

.product-returns {
    display: flex;
    gap: 0;
    border: 1px solid rgba(212, 169, 75, 0.12);
    margin-bottom: 22px;
}

.return-item {
    flex: 1;
    padding: 12px 10px;
    text-align: center;
    border-right: 1px solid rgba(212, 169, 75, 0.1);
}

.return-item:last-child {
    border-right: none;
}

.return-pct {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
}

.return-gold {
    color: var(--gold);
}

.return-diamond {
    color: var(--diamond-ice);
}

.return-land {
    color: #7DC97A;
}

.return-label {
    font-size: 0.52rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(244, 236, 216, 0.3);
    margin-top: 4px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
}

.product-price span {
    font-size: 0.7rem;
    color: rgba(244, 236, 216, 0.38);
}

.product-btn {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 9px 18px;
    border: 1px solid rgba(212, 169, 75, 0.28);
    color: var(--gold);
    background: none;
    
    transition: all 0.3s;
}

.product-btn:hover {
    background: linear-gradient(110deg, var(--gold), var(--rose-gold));
    color: var(--onyx);
    border-color: transparent;
}

.product-diamond-btn {
    border-color: rgba(200, 232, 244, 0.3);
    color: var(--diamond-ice);
}

.product-diamond-btn:hover {
    background: linear-gradient(110deg, #2E5A8A, #4A8AAA);
    color: var(--ivory);
}

.product-land-btn {
    border-color: rgba(100, 180, 100, 0.3);
    color: #7DC97A;
}

.product-land-btn:hover {
    background: linear-gradient(110deg, #3A7A3A, #5A9A5A);
    color: var(--ivory);
}

/* ——— INCOME PLAN ——— */
.income-plan {
    background: var(--charcoal);
}

.income-tabs {
    display: flex;
    gap: 4px;
    margin-top: 50px;
    margin-bottom: 48px;
}

.inc-tab {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 1px solid rgba(212, 169, 75, 0.18);
    color: rgba(244, 236, 216, 0.4);
    background: none;
    cursor: pointer;
    transition: all 0.3s;
}

.inc-tab.active {
    background: linear-gradient(110deg, var(--gold), var(--rose-gold));
    color: var(--onyx);
    border-color: transparent;
}

.inc-tab:hover:not(.active) {
    border-color: var(--gold);
    color: var(--gold);
}

.income-panel {
    display: none;
}

.income-panel.active {
    display: block;
}

/* Booster income grid */
.booster-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.booster-card {
    background: var(--graphite);
    border: 1px solid rgba(212, 169, 75, 0.1);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.booster-card:hover {
    border-color: rgba(212, 169, 75, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.booster-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.booster-card:hover::before {
    transform: scaleX(1);
}

.booster-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.booster-name {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--ivory);
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}

.booster-rate {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.booster-day {
    font-size: 0.68rem;
    color: rgba(244, 236, 216, 0.38);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.booster-return {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    padding: 8px 20px;
    background: rgba(212, 169, 75, 0.1);
    border: 1px solid rgba(212, 169, 75, 0.2);
    color: var(--gold);
}

.booster-condition {
    font-size: 0.72rem;
    line-height: 1.6;
    color: rgba(244, 236, 216, 0.35);
    margin-top: 16px;
}

/* Level bonus table */
.level-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

.level-table th {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 236, 216, 0.35);
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 169, 75, 0.12);
    background: rgba(212, 169, 75, 0.03);
}

.level-table td {
    padding: 16px 20px;
    font-size: 0.82rem;
    color: rgba(244, 236, 216, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.level-table td:first-child {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    color: var(--ivory);
}

.level-table td.income-pct {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold);
}

.level-table tr:hover td {
    background: rgba(212, 169, 75, 0.04);
}

.level-note {
    font-size: 0.78rem;
    line-height: 1.75;
    color: rgba(244, 236, 216, 0.38);
    margin-top: 24px;
    padding: 20px;
    border: 1px solid rgba(212, 169, 75, 0.1);
    background: rgba(212, 169, 75, 0.03);
}

/* Referral income */
.referral-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.referral-big-pct {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(6rem, 12vw, 9rem);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    opacity: 0.85;
}

.referral-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--ivory);
    margin-bottom: 16px;
    letter-spacing: 0.08em;
}

.referral-desc {
    font-size: 0.84rem;
    line-height: 1.9;
    color: rgba(244, 236, 216, 0.45);
    margin-bottom: 28px;
}

.referral-example {
    background: var(--graphite);
    border: 1px solid rgba(212, 169, 75, 0.1);
    padding: 24px;
    border-left: 3px solid var(--gold);
}

.referral-example p {
    font-size: 0.8rem;
    line-height: 1.75;
    color: rgba(244, 236, 216, 0.5);
}

.referral-example strong {
    color: var(--gold);
}

/* Lifetime rewards table */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.rewards-table-wrap {
    background: var(--graphite);
    border: 1px solid rgba(212, 169, 75, 0.12);
    overflow: hidden;
}

.rewards-table {
    width: 100%;
    border-collapse: collapse;
}

.rewards-table th {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 18px;
    text-align: left;
    color: var(--onyx);
    background: linear-gradient(110deg, var(--gold), var(--rose-gold));
}

.rewards-table td {
    padding: 14px 18px;
    font-size: 0.8rem;
    color: rgba(244, 236, 216, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.rewards-table td:first-child {
    font-family: 'Cinzel', serif;
    color: var(--ivory);
    font-size: 0.78rem;
}

.rewards-table td.reward-amt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold);
}

.rewards-table tr:hover td {
    background: rgba(212, 169, 75, 0.04);
}

/* ——— RATES PANEL ——— */
.rates {
    background: var(--onyx);
}

.rates-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.rates-table {
    margin-top: 40px;
}

.rates-table table {
    width: 100%;
    border-collapse: collapse;
}

.rates-table th {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 236, 216, 0.3);
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 169, 75, 0.12);
}

.rates-table td {
    padding: 18px 16px;
    font-size: 0.82rem;
    color: rgba(244, 236, 216, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.rates-table td:first-child {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    color: var(--ivory);
}

.rates-table td.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold);
}

.rates-table tr:hover td {
    background: rgba(212, 169, 75, 0.05);
}

.rates-chart-area {
    padding: 40px;
    background: var(--graphite);
    border: 1px solid rgba(212, 169, 75, 0.12);
    box-shadow: inset 0 1px 0 rgba(212, 169, 75, 0.08);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.chart-title {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--ivory);
}

.chart-tabs {
    display: flex;
    gap: 4px;
}

.chart-tab {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: none;
    border: 1px solid rgba(212, 169, 75, 0.15);
    color: rgba(244, 236, 216, 0.35);
    
    transition: all 0.2s;
}

.chart-tab.active {
    background: linear-gradient(135deg, var(--gold), var(--rose-gold));
    color: var(--onyx);
    border-color: transparent;
}

.chart-tab:hover:not(.active) {
    border-color: var(--gold);
    color: var(--gold);
}

.chart-svg {
    width: 100%;
    overflow: visible;
}

/* ——— TRUST ——— */
.trust {
    background: var(--charcoal);
    text-align: center;
}

.trust-subtitle {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(244, 236, 216, 0.38);
    margin-bottom: 70px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.trust-card {
    background: var(--graphite);
    padding: 48px 32px;
    border: 1px solid rgba(212, 169, 75, 0.08);
    transition: border-color 0.3s, background 0.3s;
}

.trust-card:hover {
    border-color: rgba(212, 169, 75, 0.22);
    background: rgba(20, 32, 46, 0.8);
}

.trust-icon {
    font-size: 2.2rem;
    margin-bottom: 24px;
    display: block;
}

.trust-card-title {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--ivory);
    margin-bottom: 14px;
}

.trust-card-desc {
    font-size: 0.78rem;
    line-height: 1.8;
    color: rgba(244, 236, 216, 0.38);
}

/* ——— TESTIMONIAL ——— */
.testimonial {
    background: linear-gradient(135deg, #0A1020 0%, #0F1828 50%, #0A1020 100%);
    border-top: 1px solid rgba(212, 169, 75, 0.12);
    border-bottom: 1px solid rgba(212, 169, 75, 0.12);
    padding: 100px 60px;
    text-align: center;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    max-width: 820px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.testimonial-quote::before,
.testimonial-quote::after {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 3rem;
    font-style: normal;
    line-height: 0;
    vertical-align: -0.4em;
}

.testimonial-quote::before {
    content: '\201C';
    margin-right: 6px;
}

.testimonial-quote::after {
    content: '\201D';
    margin-left: 6px;
}

.testimonial-author {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ——— PROJECTS ——— */
.projects {
    background: var(--onyx);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.project-card {
    background: var(--graphite);
    border: 1px solid rgba(212, 169, 75, 0.1);
    padding: 40px;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--rose-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.project-card:hover {
    border-color: rgba(212, 169, 75, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.project-state {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.project-name {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--ivory);
    margin-bottom: 14px;
}

.project-desc {
    font-size: 0.8rem;
    line-height: 1.8;
    color: rgba(244, 236, 216, 0.4);
}

.project-badge {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid rgba(100, 180, 100, 0.3);
    color: #7DC97A;
}

/* ——— CTA STRIP ——— */
.cta-strip {
    background: linear-gradient(110deg, var(--gold) 0%, #C9943A 40%, var(--rose-gold) 100%);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-strip-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.5rem);
    font-weight: 600;
    color: var(--onyx);
}

.cta-strip-sub {
    font-size: 0.82rem;
    color: rgba(10, 10, 10, 0.6);
    margin-top: 8px;
}

.cta-strip-btn {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 18px 44px;
    background: var(--onyx);
    color: var(--gold);
    border: none;
    
    white-space: nowrap;
    transition: background 0.3s;
    text-decoration: none;
}

.cta-strip-btn:hover {
    background: var(--graphite);
}

/* ——— FOOTER ——— */
footer {
    background: var(--onyx);
    border-top: 1px solid rgba(212, 169, 75, 0.12);
    padding: 80px 60px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.78rem;
    line-height: 1.8;
    color: rgba(244, 236, 216, 0.3);
    max-width: 260px;
}

.footer-col-title {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.78rem;
    color: rgba(244, 236, 216, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 169, 75, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(244, 236, 216, 0.22);
}

.footer-bottom .certifications {
    display: flex;
    gap: 20px;
}

.cert-badge {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid rgba(212, 169, 75, 0.25);
    color: rgba(212, 169, 75, 0.6);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media(max-width:1100px) {
    .products-grid {
        grid-template-columns: 1fr
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero-right-visual {
        opacity: 0.5;
        right: 2%;
        width: 340px;
        height: 340px
    }

    .booster-grid {
        grid-template-columns: 1fr
    }

    .rewards-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    nav {
        padding: 18px 20px;
        grid-template-columns: auto auto
    }

    .nav-links {
        display: none
    }

    .hero-center {
        padding: 110px 28px 150px
    }

    .hero-right-visual,
    .hero-dot-left {
        display: none
    }

    .hero-stats {
        gap: 28px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 20px
    }

    .stat-divider {
        display: none
    }

    .section {
        padding: 80px 24px
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .rates-inner {
        grid-template-columns: 1fr
    }

    .trust-grid {
        grid-template-columns: 1fr
    }

    .cta-strip {
        flex-direction: column;
        gap: 32px;
        text-align: center
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .slide-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 28px
    }

    .slide-visual {
        display: none
    }

    .swiper-slide-banner {
        height: auto;
        padding: 60px 0
    }

    .referral-inner {
        grid-template-columns: 1fr
    }

    .projects-grid {
        grid-template-columns: 1fr
    }

    .booster-grid {
        grid-template-columns: 1fr
    }
}
.nav-logo img{
    max-width: 70px;
}
.footer-brand img{
    max-width: 100px;
}

/* ——— SHARED FORM STYLES ——— */
.form-wrap {
    width: 100%;
    max-width: 420px;
}

.form-header {
    margin-bottom: 44px;
    animation: fadeUp 0.8s ease 0.1s both;
}

.form-tag {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.form-title {
    font-family: 'Cinzel', serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--ivory);
    line-height: 1.2;
}

.form-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
}

.form-desc {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(244, 236, 216, 0.4);
    margin-top: 10px;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 22px;
    animation: fadeUp 0.8s ease both;
}

.form-group:nth-child(1) { animation-delay: 0.2s; }
.form-group:nth-child(2) { animation-delay: 0.3s; }
.form-group:nth-child(3) { animation-delay: 0.4s; }

.form-label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(244, 236, 216, 0.45);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(8, 12, 20, 0.7);
    border: 1px solid rgba(212, 169, 75, 0.15);
    color: var(--ivory);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    
}

.form-input::placeholder {
    color: rgba(244, 236, 216, 0.2);
}

.form-input:focus {
    border-color: rgba(212, 169, 75, 0.5);
    background: rgba(14, 20, 32, 0.9);
    box-shadow: 0 0 0 3px rgba(212, 169, 75, 0.07), inset 0 1px 0 rgba(212, 169, 75, 0.06);
}

.form-textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(8, 12, 20, 0.7);
    border: 1px solid rgba(212, 169, 75, 0.14);
    color: var(--ivory);
    font-family: 'Raleway', sans-serif;
    font-size: 0.84rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    
    resize: vertical;
    min-height: 130px;
    line-height: 1.7;
}

.form-textarea::placeholder {
    color: rgba(244, 236, 216, 0.18);
}

.form-textarea:focus {
    border-color: rgba(212, 169, 75, 0.5);
    background: rgba(14, 20, 32, 0.9);
    box-shadow: 0 0 0 3px rgba(212, 169, 75, 0.07);
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(8, 12, 20, 0.7);
    border: 1px solid rgba(212, 169, 75, 0.14);
    color: rgba(244, 236, 216, 0.6);
    font-family: 'Raleway', sans-serif;
    font-size: 0.84rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4A94B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-select:focus {
    border-color: rgba(212, 169, 75, 0.48);
}

.form-select option {
    background: #0E1420;
    color: var(--ivory);
}

.btn-submit {
    width: 100%;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 15px 0;
    background: linear-gradient(110deg, var(--gold) 0%, #C9943A 45%, var(--rose-gold) 100%);
    color: var(--onyx);
    border: none;
    
    transition: all 0.3s;
    display: block;
    box-shadow: 0 8px 28px rgba(212, 169, 75, 0.22);
}

.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(212, 169, 75, 0.32);
}

.btn-arrow {
    font-size: 1rem;
    transition: transform 0.3s;
    display: inline-block;
}

.btn-submit:hover .btn-arrow {
    transform: translateX(4px);
}

.form-footer-text {
    text-align: center;
    font-size: 0.72rem;
    color: rgba(244, 236, 216, 0.35);
    margin-top: 28px;
    animation: fadeUp 0.8s ease 0.65s both;
}

.form-footer-text a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.2s;
}

.form-footer-text a:hover {
    opacity: 0.75;
}

.form-extra-links {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: fadeUp 0.8s ease 0.6s both;
}

.form-extra-links span {
    font-size: 0.72rem;
    color: rgba(244, 236, 216, 0.35);
}

.form-extra-links a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.2s;
}

.form-extra-links a:hover {
    opacity: 0.75;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ——— AUTH PAGE LAYOUTS ——— */
.page-wrap {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.left-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 120px 70px;
    background:
        radial-gradient(ellipse 80% 80% at 60% 50%, rgba(26, 37, 64, 0.9) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 10% 20%, rgba(212, 169, 75, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 80% 80%, rgba(196, 132, 106, 0.06) 0%, transparent 50%),
        linear-gradient(160deg, #080C14 0%, #0E1420 60%, #0A1228 100%);
    overflow: hidden;
}

.left-panel::before {
    content: '';
    position: absolute;
    inset: -200%;
    width: 400%;
    height: 400%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
    animation: grain 8s steps(10) infinite;
}

.right-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 70px 60px;
    background: var(--charcoal);
    border-left: 1px solid rgba(212, 169, 75, 0.08);
}

/* ——— DECORATIVE VISUALS ——— */
.deco-visual {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    opacity: 0.6;
}

.deco-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(46, 74, 122, 0.3) 0%, rgba(212, 169, 75, 0.15) 50%, rgba(196, 132, 106, 0.1) 100%);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    border: 1px solid rgba(212, 169, 75, 0.4);
    animation: pulse 4s ease-in-out infinite;
}

.deco-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid;
    transform: translate(-50%, -50%);
}

.dr1 {
    width: 180px;
    height: 180px;
    border-color: rgba(212, 169, 75, 0.2);
    animation: spin 18s linear infinite;
}

.dr2 {
    width: 240px;
    height: 240px;
    border-color: rgba(196, 132, 106, 0.12);
    animation: spin 28s linear infinite reverse;
}

.dr3 {
    width: 300px;
    height: 300px;
    border-color: rgba(46, 74, 122, 0.14);
    animation: spin 38s linear infinite;
}

.panel-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: fadeUp 0.8s ease 0.2s both;
}

.panel-eyebrow::before {
    content: '◆';
    font-size: 0.45rem;
}

.panel-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
    font-weight: 400;
    color: var(--ivory);
    line-height: 1.15;
    margin-bottom: 10px;
    animation: fadeUp 0.8s ease 0.35s both;
}

.panel-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
}

.panel-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 40px;
    animation: fadeUp 0.8s ease 0.48s both;
}

.panel-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeUp 0.8s ease 0.6s both;
}

.panel-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(244, 236, 216, 0.55);
}

.panel-features li::before {
    content: '—';
    color: var(--gold);
    font-size: 0.7rem;
}

.pwd-toggle {
    position: absolute;
    right: 14px;
    bottom: 13px;
    color: rgba(244, 236, 216, 0.3);
    
    transition: color 0.2s;
    line-height: 1;
}

.pwd-toggle:hover {
    color: var(--gold);
}

.pwd-toggle svg {
    display: block;
}

/* Auth responsive */
@media(max-width: 900px) {
    .page-wrap {
        grid-template-columns: 1fr;
    }
    .left-panel {
        display: none;
    }
    .right-panel {
        padding: 100px 30px 60px;
    }
}

/* ——— PAGE HERO (for contact, product pages) ——— */
.page-hero {
    position: relative;
    z-index: 1;
    padding: 140px 60px 80px;
    background: linear-gradient(160deg, #080C14 0%, #0E1420 55%, #080C14 100%);
    border-bottom: 1px solid rgba(212, 169, 75, 0.1);
    text-align: center;
}

.page-hero-tag {
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    animation: fadeUp 0.8s ease 0.1s both;
}

.page-hero-tag::before,
.page-hero-tag::after {
    content: '◆';
    font-size: 0.45rem;
}

.page-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 14px;
    animation: fadeUp 0.8s ease 0.25s both;
}

.page-hero-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
}

.page-hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(244, 236, 216, 0.5);
    animation: fadeUp 0.8s ease 0.4s both;
}

@media(max-width: 900px) {
    .page-hero {
        padding: 120px 24px 60px;
    }
}


/* ——— FOOTER SOCIAL ICONS ——— */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(212, 169, 75, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.footer-social a:hover {
    border-color: var(--gold);
    background: rgba(212, 169, 75, 0.08);
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: rgba(212, 169, 75, 0.5);
    transition: fill 0.3s;
}

.footer-social a:hover svg {
    fill: var(--gold);
}