@charset "UTF-8";

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

:root {
    /* ── Base: escuro profundo e neutro ── */
    --primary-dark:        #080c14;
    --primary-light:       #0e1420;

    /* ── Dourado metálico refinado ── */
    --accent-gold:         #c9a84c;
    --accent-gold-light:   #dfc06a;

    /* ── Azul estratégico no lugar do roxo místico ── */
    --accent-purple:       #2a4a7f;
    --accent-purple-light: #3a6aaf;
    --accent-rose:         #c9a84c;

    /* ── Textos ── */
    --text-light:          #eef0f4;
    --text-muted:          #8a96a8;

    /* ── Glass ── */
    --glass-bg:            rgba(255, 255, 255, 0.04);
    --glass-border:        rgba(201, 168, 76, 0.18);

    /* ── Extras ── */
    --slate:               #1c2333;
    --slate-light:         #242d3f;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse 70% 50% at 15% 20%, rgba(42, 74, 127, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 85% 75%, rgba(201, 168, 76, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(8, 12, 20, 0.8) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.85; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
}

.serif { font-family: 'Cormorant Garamond', serif; }

/* ══ NAVIGATION ══ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(8, 12, 20, 0.90);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    padding: 1.1rem 2rem;
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.5);
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.35rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(120deg, #b8922a 0%, var(--accent-gold) 50%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.logo-icon {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.25);
    animation: float 4s ease-in-out infinite;
}

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

nav .cta-button {
    background: transparent;
    color: var(--accent-gold);
    padding: 0.75rem 1.8rem;
    border: 1px solid rgba(201, 168, 76, 0.45);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

nav .cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    z-index: -1;
}

nav .cta-button:hover { color: var(--primary-dark); border-color: var(--accent-gold); }
nav .cta-button:hover::before { transform: scaleX(1); }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* ══ HERO ══ */
.hero {
    margin-top: 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://private-us-east-1.manuscdn.com/sessionFile/LbccLmmK0WRR74gLqZZQFq/sandbox/BG2N1MpnlkckmjHNf1Hbg4-img-1_1770673669000_na1fn_bG9jdXNfaGVyb19iZw.png?x-oss-process=image/resize,w_1920,h_1920/format,webp/quality,q_80');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    z-index: 0;
    filter: grayscale(40%) brightness(0.85);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 60%, rgba(42, 74, 127, 0.08) 0%, transparent 70%),
        linear-gradient(180deg, transparent 55%, var(--primary-dark) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 960px;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.5rem;
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 2px;
    margin-bottom: 2.5rem;
    font-size: 0.78rem;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: slideDown 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: clamp(3.2rem, 9vw, 6rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    background: linear-gradient(120deg, #b8922a 0%, var(--accent-gold) 40%, var(--accent-gold-light) 70%, #f0d98a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideDown 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.4s;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero .subtitle {
    font-size: 1.55rem;
    font-family: 'Cormorant Garamond', serif;
    color: rgba(201, 168, 76, 0.72);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 400;
    animation: slideDown 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.6s;
    letter-spacing: 0.03em;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(238, 240, 244, 0.70);
    max-width: 720px;
    margin: 0 auto 3rem;
    animation: slideDown 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.8s;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideDown 0.8s ease forwards;
    opacity: 0;
    animation-delay: 1s;
}

/* ══ BUTTONS ══ */
.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 1rem 2.6rem;
    border: none;
    border-radius: 4px;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.20);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gold-light);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(201, 168, 76, 0.32);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    padding: 1rem 2.6rem;
    border: 1px solid rgba(238, 240, 244, 0.22);
    border-radius: 4px;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(201, 168, 76, 0.08);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--accent-gold);
    border-color: rgba(201, 168, 76, 0.45);
    transform: translateY(-3px);
}

.btn-secondary:hover::before { opacity: 1; }

/* ══ SECTIONS ══ */
section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    margin-bottom: 1.3rem;
    background: linear-gradient(120deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-header p {
    font-size: 1.65rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
}

/* ══ ABOUT ══ */
.about {
    background: linear-gradient(160deg, rgba(28, 35, 51, 0.45) 0%, rgba(8, 12, 20, 0.3) 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.07);
    border-bottom: 1px solid rgba(201, 168, 76, 0.07);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -30%; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-text h3 {
    font-size: 2.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: rgba(238, 240, 244, 0.70);
    font-weight: 300;
}

.about-image {
    position: relative;
    height: 440px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 168, 76, 0.14);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(201, 168, 76, 0.07) 0%, transparent 60%);
    z-index: 10;
}

.about-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.92) saturate(0.85);
    transition: filter 0.4s ease, transform 0.6s ease;
}

.about-image:hover img {
    filter: brightness(1) saturate(1);
    transform: scale(1.03);
}

/* ══ FEATURES ══ */
.features {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    bottom: -40%; left: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(42, 74, 127, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid rgba(201, 168, 76, 0.11);
    border-radius: 6px;
    padding: 2.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 168, 76, 0.28);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after  { opacity: 1; }

.feature-icon {
    width: 58px; height: 58px;
    background: rgba(201, 168, 76, 0.09);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    border: 1px solid rgba(201, 168, 76, 0.18);
}

.feature-card h3 {
    font-size: 1.45rem;
    margin-bottom: 1.1rem;
    color: var(--accent-gold-light);
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: var(--accent-gold-light);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(238, 240, 244, 0.66);
    font-weight: 300;
}

/* ══ TESTIMONIALS ══ */
.testimonials {
    background: linear-gradient(160deg, rgba(28, 35, 51, 0.35) 0%, rgba(8, 12, 20, 0.2) 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.07);
    border-bottom: 1px solid rgba(201, 168, 76, 0.07);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -30%; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 14s ease-in-out infinite;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.11);
    border-radius: 6px;
    padding: 3.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar {
    width: 110px; height: 110px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    border: 2px solid rgba(201, 168, 76, 0.35);
    overflow: hidden;
    background: var(--glass-bg);
}

.testimonial-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
    background: none;
    -webkit-text-fill-color: var(--accent-gold);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.testimonial-rating {
    color: var(--accent-gold);
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    letter-spacing: 0.2em;
    opacity: 0.8;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(238, 240, 244, 0.80);
    font-style: italic;
    font-weight: 400;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.carousel-btn {
    width: 44px; height: 44px;
    border-radius: 2px;
    border: 1px solid rgba(201, 168, 76, 0.28);
    background: transparent;
    color: var(--accent-gold);
    cursor: pointer;
    font-size: 1.05rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gold);
    z-index: -1;
    transform: scale(0);
    transition: transform 0.25s ease;
}

.carousel-btn:hover { color: var(--primary-dark); border-color: var(--accent-gold); }
.carousel-btn:hover::before { transform: scale(1); }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.18);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 168, 76, 0.30);
}

.dot.active {
    background: var(--accent-gold);
    width: 26px;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(201, 168, 76, 0.22);
}

/* ══ WHAT YOU GET ══ */
.what-you-get {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.8rem;
    position: relative;
    z-index: 10;
}

.benefit-item {
    background: var(--glass-bg);
    border: 1px solid rgba(201, 168, 76, 0.09);
    border-radius: 6px;
    padding: 2.2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.25s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.benefit-icon {
    width: 52px; height: 52px;
    background: rgba(42, 74, 127, 0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(58, 106, 175, 0.25);
    box-shadow: 0 8px 20px rgba(244, 114, 182, 0.3);
}

.benefit-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold-light);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: var(--accent-gold-light);
}

.benefit-text p {
    font-size: 0.94rem;
    color: rgba(238, 240, 244, 0.62);
    font-weight: 300;
    line-height: 1.7;
}

/* ══ PRICING ══ */
.pricing {
    background: linear-gradient(160deg, var(--slate) 0%, var(--primary-dark) 60%);
    border-top: 1px solid rgba(201, 168, 76, 0.07);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: -40%; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(42, 74, 127, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 16s ease-in-out infinite;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 6px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(201, 168, 76, 0.38);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card.featured {
    border-color: rgba(201, 168, 76, 0.55);
    transform: scale(1.04);
    background: rgba(201, 168, 76, 0.03);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.12);
}

.pricing-card.featured:hover { transform: scale(1.04) translateY(-12px); }

.pricing-content { position: relative; z-index: 10; }

.pricing-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.10);
    color: var(--accent-gold);
    padding: 0.5rem 1.4rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.72rem;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(201, 168, 76, 0.22);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.pricing-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-weight: 700;
}

.pricing-price {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    font-family: 'Playfair Display', serif;
}

.pricing-price span {
    font-size: 1.6rem;
    color: var(--text-muted);
}

.pricing-description {
    font-size: 1.45rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.8rem;
}

.pricing-features li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.09);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(238, 240, 244, 0.78);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 1.1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.22);
    position: relative;
    overflow: hidden;
}

.pricing-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.pricing-cta:hover::before { left: 100%; }
.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(201, 168, 76, 0.35);
}

/* ══ TIMELINE ══ */
.timeline {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 59px; top: 120px;
    width: 1px;
    height: calc(100% + 3.5rem);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.25), transparent);
}

.timeline-item:last-child::before { display: none; }

.timeline-marker {
    width: 120px; height: 120px;
    background: rgba(201, 168, 76, 0.07);
    border: 2px solid rgba(201, 168, 76, 0.30);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--accent-gold);
    position: relative;
    z-index: 10;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.05);
}

.timeline-content { padding-top: 2rem; }

.timeline-content h4 {
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
    color: var(--accent-gold-light);
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: var(--accent-gold-light);
}

.timeline-content p {
    font-size: 1rem;
    color: rgba(238, 240, 244, 0.66);
    line-height: 1.85;
    font-weight: 300;
}

/* ══ FAQ ══ */
.faq {
    background: linear-gradient(160deg, rgba(28, 35, 51, 0.35) 0%, var(--primary-dark) 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.07);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid rgba(201, 168, 76, 0.09);
    border-radius: 4px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    border-color: rgba(201, 168, 76, 0.26);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.faq-question {
    padding: 1.6rem 1.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-question:hover { background: rgba(201, 168, 76, 0.03); }

.faq-question h4 {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.faq-toggle {
    font-size: 1.6rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 1.8rem 1.8rem;
}

.faq-answer p {
    color: rgba(238, 240, 244, 0.70);
    line-height: 1.9;
    font-weight: 300;
    font-size: 1rem;
}

/* ══ FINAL CTA ══ */
.final-cta {
    background: linear-gradient(135deg, #12100a 0%, #1e1800 40%, #120f00 100%);
    border: 1px solid rgba(201, 168, 76, 0.22);
    padding: 5rem 3rem;
    text-align: center;
    border-radius: 8px;
    margin: 5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(201, 168, 76, 0.12);
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 76, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(42, 74, 127, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta h2 {
    color: var(--accent-gold-light);
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    font-weight: 700;
}

.final-cta p {
    color: rgba(238, 240, 244, 0.72);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
    font-weight: 300;
    line-height: 1.9;
}

.final-cta .btn-secondary {
    color: var(--accent-gold);
    border-color: rgba(201, 168, 76, 0.45);
    position: relative;
    z-index: 10;
}

.final-cta .btn-secondary:hover {
    color: var(--primary-dark);
    background: var(--accent-gold);
}

/* ══ FOOTER ══ */
footer {
    background: rgba(4, 6, 10, 0.97);
    border-top: 1px solid rgba(201, 168, 76, 0.09);
    padding: 3.5rem 0;
    text-align: center;
    color: var(--text-muted);
    position: relative;
    z-index: 10;
}

footer p {
    margin-bottom: 0.6rem;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

/* ══ SCROLL REVEAL ══ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══ ANIMATIONS ══ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══ VIDEO SECTION ══ */
.video-section {
    background: linear-gradient(160deg, rgba(28, 35, 51, 0.25) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.video-container {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(201, 168, 76, 0.18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: var(--primary-dark);
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
    border-radius: 5px;
}

.video-text {
    text-align: center;
    margin-bottom: 3rem;
}

.video-text h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--accent-gold-light);
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: var(--accent-gold-light);
}

.video-text p {
    font-size: 1.05rem;
    color: rgba(238, 240, 244, 0.70);
    max-width: 680px;
    margin: 0 auto;
    font-weight: 300;
}

/* ══ ABOUT ME ══ */
.about-me {
    background: linear-gradient(160deg, rgba(28, 35, 51, 0.30) 0%, var(--primary-dark) 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.07);
    position: relative;
    overflow: hidden;
}

.about-me-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-me-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.3;
    background: none;
    -webkit-text-fill-color: var(--text-light);
}

.about-me-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(238, 240, 244, 0.70);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-me-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.about-me-image {
    position: relative;
    height: 270px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.14);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transition: all 0.35s ease;
}

.about-me-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
    border-color: rgba(201, 168, 76, 0.32);
}

.about-me-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.9) saturate(0.82);
    transition: filter 0.4s ease, transform 0.5s ease;
}

.about-me-image:hover img {
    filter: brightness(1) saturate(1);
    transform: scale(1.04);
}

.about-me-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
    z-index: 5;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        margin-top: 120px;
        min-height: 80vh;
    }

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

    .about-content { grid-template-columns: 1fr; }

    .about-image { height: 320px; }

    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
    }

    .timeline-marker {
        width: 80px;
        height: 80px;
        font-size: 1.3rem;
    }

    .pricing-price { font-size: 3rem; }

    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-12px); }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary { width: 100%; }

    .pricing-container { grid-template-columns: 1fr; }

    .final-cta h2 { font-size: 1.9rem; }

    .about-me-content { grid-template-columns: 1fr; }

    .video-wrapper { border-radius: 6px; }

    .video-wrapper iframe { border-radius: 5px; }
	
	  .proof-bar .container{gap:1.5rem;}
	  
	    .elites-grid{grid-template-columns:1fr;}
  .cta-box{padding:3rem 1.5rem;}
}

/* ── PROOF BAR ── */
.proof-bar{background:rgba(201,168,76,.06);border-top:1px solid var(--border-b);border-bottom:1px solid var(--border-b);padding:1.2rem 0;}
.proof-bar .container{display:flex;justify-content:center;gap:3.5rem;flex-wrap:wrap;}
.proof-item{display:flex;align-items:center;gap:.6rem;font-size:.72rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);}
.proof-dot{width:5px;height:5px;border-radius:50%;background:var(--gold);flex-shrink:0;}



/* ── ELITES USAM ── */
.elites{padding:7rem 0;background:var(--black);}
.elites-inner{max-width:1000px;margin:0 auto;text-align:center;}
.elites h2{font-size:clamp(1.8rem,4vw,3rem);margin-bottom:1.5rem;}
.elites-lead{font-size:1.1rem;color:rgba(238,240,244,.75);font-weight:300;line-height:1.95;margin-bottom:3rem;}
.elites-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border-b);border:1px solid var(--border-b);border-radius:4px;overflow:hidden;margin-bottom:3rem;}
.elite-item{background:var(--slate);padding:1.5rem 1.2rem;text-align:center;}
.elite-icon{font-size:1.3rem;margin-bottom:.5rem;}
.elite-item p{font-size:.85rem;color:rgba(238,240,244,.72);font-weight:300;line-height:1.5;}
.elites-quote{font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-style:italic;color:rgba(238,240,244,.65);margin-bottom:2.5rem;}

/* ── CTA FINAL ── */
.cta-final{padding:8rem 0;background:var(--dark);border-top:1px solid var(--border-b);}
.cta-box{max-width:860px;margin:0 auto;text-align:center;border:1px solid rgba(201,168,76,.3);border-radius:6px;padding:5rem 4rem;background:linear-gradient(135deg,rgba(201,168,76,.05) 0%,transparent 60%);position:relative;overflow:hidden;}
.cta-box::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);}
.cta-box h2{font-size:clamp(2rem,4vw,3.2rem);margin-bottom:1.5rem;line-height:1.2;}
.cta-box p{font-size:1.08rem;color:rgba(238,240,244,.78);font-weight:300;max-width:600px;margin:0 auto 1rem;line-height:1.95;}
.cta-guarantee{font-size:.78rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);margin-bottom:2.5rem;}
.cta-guarantee span{color:var(--gold);}