/* ================================================
   CUSTOM FONT IMPORTS
   ================================================ */
/* Roboto loaded via Google Fonts in HTML */

/* ================================================
   DESIGN TOKENS & VARIABLES
   ================================================ */
:root {
    /* Dark Premium Palette - inspired by Image 3 */
    --bg-primary: #0a0a0f;
    --bg-secondary: #101018;
    --bg-tertiary: #16161f;
    --bg-card: rgba(20, 20, 32, 0.85);
    --bg-card-hover: rgba(28, 28, 42, 0.95);
    --bg-glass: rgba(255, 255, 255, 0.03);

    /* Gold Gradient */
    --gold-100: #fef3c7;
    --gold-200: #fde68a;
    --gold-300: #fcd34d;
    --gold-400: #d4a843;
    --gold-500: #c9952c;
    --gold-600: #b8860b;
    --gold-700: #96700a;
    --gold-gradient: linear-gradient(135deg, #d4a843 0%, #f5d280 30%, #c9952c 50%, #f5d280 70%, #d4a843 100%);
    --gold-gradient-text: linear-gradient(135deg, #f5d280, #d4a843, #f5d280);
    --gold-glow: 0 0 20px rgba(212, 168, 67, 0.3), 0 0 40px rgba(212, 168, 67, 0.1);

    /* Text */
    --text-primary: #f1f1f3;
    --text-secondary: #b0b0c0;
    --text-muted: #7a7a90;
    --text-gold: #d4a843;

    /* Accent */
    --accent-rose: #e8a0b4;
    --accent-green: #4ade80;
    --accent-red: #f87171;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 168, 67, 0.08);
    --shadow-glow: 0 0 30px rgba(212, 168, 67, 0.15);

    /* Typography */
    --font-display: 'Roboto', sans-serif;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ================================================
   SCROLL ANIMATIONS BASE
   ================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered delays for grid children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(7) { transition-delay: 0.35s; }
.animate-on-scroll:nth-child(8) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(9) { transition-delay: 0.45s; }

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gold-gradient);
    color: #0a0a0f;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--gold-glow);
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212, 168, 67, 0.45), 0 0 60px rgba(212, 168, 67, 0.15);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(0);
    filter: brightness(0.95);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: 0.6s ease;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--gold-400);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--gold-400);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: var(--gold-300);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* ================================================
   SECTION TITLES
   ================================================ */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 24px;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 48px;
}

.section-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 32px;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    overflow: hidden;
}

/* Background radial glow */
.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 60%, var(--bg-primary) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(212, 168, 67, 0.015) 2px,
            rgba(212, 168, 67, 0.015) 4px
        );
    pointer-events: none;
    z-index: 1;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold-400);
    opacity: 0;
    animation: float-particle 6s ease-in-out infinite;
}

.p1 { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.p2 { top: 25%; left: 85%; animation-delay: 1s; animation-duration: 5s; }
.p3 { top: 60%; left: 20%; animation-delay: 2s; animation-duration: 8s; }
.p4 { top: 40%; left: 70%; animation-delay: 0.5s; animation-duration: 6s; }
.p5 { top: 75%; left: 50%; animation-delay: 3s; animation-duration: 7s; }
.p6 { top: 10%; left: 45%; animation-delay: 1.5s; animation-duration: 5.5s; }
.p7 { top: 80%; left: 80%; animation-delay: 2.5s; animation-duration: 6.5s; }
.p8 { top: 50%; left: 5%; animation-delay: 4s; animation-duration: 8s; }

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    20% {
        opacity: 0.7;
        transform: translateY(-15px) scale(1);
    }
    80% {
        opacity: 0.4;
        transform: translateY(-40px) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0);
    }
}

/* Nav */
.hero-nav {
    position: relative;
    z-index: 10;
    padding: 28px 40px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 4px;
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.4;
}

/* Hero container */
.hero-container {
    position: relative;
    z-index: 10;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 40px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.6rem;
    font-weight: 800;
    font-style: italic;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero-title-accent {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 520px;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 16px 8px;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    border: 1px solid rgba(212, 168, 67, 0.1);
    transition: var(--transition-base);
}

.hero-badge:hover {
    border-color: rgba(212, 168, 67, 0.25);
    background: rgba(212, 168, 67, 0.05);
}

.badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
}

.hero-badge span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Hero Image */
.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 420px;
    height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(212, 168, 67, 0.2);
    box-shadow: var(--gold-glow);
}

.hero-image-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: var(--gold-gradient);
    opacity: 0.15;
    filter: blur(20px);
    z-index: 0;
}

.hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

/* Placeholder for missing images */
.hero-image-frame:not(:has(img[src]:not([src=""]))) {
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}



/* ================================================
   ABOUT SECTION (Antes de continuar + Você já estudou)
   ================================================ */
.about-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.2), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.about-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 168, 67, 0.12);
    transition: var(--transition-base);
}

.about-card:hover {
    border-color: rgba(212, 168, 67, 0.25);
    box-shadow: var(--shadow-card-hover);
}

.card-dark {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
}

.card-light {
    background: rgba(212, 168, 67, 0.04);
    border-color: rgba(212, 168, 67, 0.15);
}

.about-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-list {
    margin: 16px 0;
    padding-left: 4px;
}

.about-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 8px rgba(212, 168, 67, 0.4);
}

/* ================================================
   COLLECTIVE SECTION
   ================================================ */
.collective-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
}

.collective-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.collective-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Steps */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.step:hover {
    background: rgba(212, 168, 67, 0.04);
}

.step.active {
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.2);
}

.step-number {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--bg-tertiary);
    border: 1px solid rgba(212, 168, 67, 0.2);
    color: var(--gold-400);
    transition: var(--transition-base);
}

.step.active .step-number {
    background: var(--gold-gradient);
    color: #0a0a0f;
    border: none;
    box-shadow: var(--gold-glow);
}

.step-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-top: 8px;
}

.step-connector {
    width: 2px;
    height: 16px;
    background: rgba(212, 168, 67, 0.15);
    margin-left: 35px;
}

/* ================================================
   FEATURES SECTION
   ================================================ */
.features-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.2), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 168, 67, 0.08);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-base);
    cursor: default;
}

.feature-card:hover {
    border-color: rgba(212, 168, 67, 0.25);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: rgba(212, 168, 67, 0.15);
    box-shadow: 0 0 15px rgba(212, 168, 67, 0.2);
}

.feature-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ================================================
   DETAILS SECTION
   ================================================ */
.details-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.detail-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.detail-card:hover {
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: var(--shadow-card-hover);
}

.detail-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.detail-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    flex-shrink: 0;
}

.detail-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.detail-card-header .detail-card-title {
    margin-bottom: 0;
}

.detail-card-subtitle {
    font-size: 0.9rem;
    color: var(--text-gold);
    font-weight: 500;
    margin-bottom: 16px;
}

.detail-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Check list */
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 0.9rem;
}

/* X list */
.x-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-red);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Schedule card */
.schedule-card {
    background: rgba(212, 168, 67, 0.06);
    border-color: rgba(212, 168, 67, 0.18);
}

.schedule-days {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.schedule-hours {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.schedule-divider {
    width: 100%;
    height: 1px;
    background: rgba(212, 168, 67, 0.15);
    margin-bottom: 16px;
}

.schedule-except {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.schedule-except-list {
    padding-left: 0;
}

.schedule-except-list li {
    padding-left: 20px;
    position: relative;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.schedule-except-list li::before {
    content: '•';
    position: absolute;
    left: 4px;
    top: 0;
    color: var(--gold-500);
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.2), transparent);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(212, 168, 67, 0.2);
}

.faq-item.active {
    border-color: rgba(212, 168, 67, 0.3);
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--gold-400);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
    color: var(--gold-400);
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--gold-gradient);
    color: #0a0a0f;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px;
}

/* ================================================
   PRICING SECTION
   ================================================ */
.pricing-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.main-pricing {
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.08), rgba(20, 20, 32, 0.9));
    border: 1px solid rgba(212, 168, 67, 0.25);
    box-shadow: var(--shadow-glow);
}

.main-pricing:hover {
    box-shadow: 0 0 40px rgba(212, 168, 67, 0.2);
}

.secondary-pricing {
    background: var(--bg-card);
    border: 1px solid rgba(212, 168, 67, 0.1);
    display: flex;
    align-items: center;
}

.pricing-card-content {
    padding: 40px;
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.pricing-subtitle {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.pricing-values {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.pricing-option {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pricing-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-amount.large {
    font-size: 2.8rem;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-method {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pricing-or {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-pricing {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.payment-icons img {
    height: 25px;
    opacity: 0.7;
    transition: var(--transition-fast);
    border-radius: 3px;
}

.payment-icons img:hover {
    opacity: 1;
}

.payment-security {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ================================================
   FINAL CTA SECTION
   ================================================ */
.final-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.2), transparent);
}

.final-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.final-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.final-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.final-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.4;
}

.final-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.final-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.final-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(212, 168, 67, 0.3);
    box-shadow: var(--gold-glow);
    background: linear-gradient(135deg, rgba(212,168,67,0.1), rgba(20,20,32,0.9));
}

.final-badge {
    text-align: center;
    max-width: 260px;
}

.final-badge-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold-400);
    line-height: 1.5;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    padding: 60px 0 0;
    background: linear-gradient(180deg, #0d1a0d 0%, #0a1510 40%, #0a0f0d 100%);
    border-top: 1px solid rgba(212, 168, 67, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1.3fr;
    gap: 48px;
    align-items: flex-start;
    padding-bottom: 40px;
}

/* Footer brand / photo */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-photo-frame {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(212, 168, 67, 0.2);
}

.footer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    border: 1px solid rgba(212, 168, 67, 0.25);
    transition: var(--transition-base);
}

.social-icon:hover {
    background: rgba(212, 168, 67, 0.15);
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.2);
}

/* Footer columns */
.footer-column-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    color: var(--gold-400);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-base);
    position: relative;
}

.footer-links li a:hover {
    color: var(--gold-400);
    padding-left: 4px;
}

/* Footer contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.contact-item svg {
    color: var(--gold-400);
    flex-shrink: 0;
}

.btn-footer-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--gold-400);
    border-radius: var(--radius-sm);
    color: var(--gold-400);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-base);
    margin-top: 8px;
}

.btn-footer-contact:hover {
    background: rgba(212, 168, 67, 0.1);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Footer bottom */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(212, 168, 67, 0.08);
    text-align: center;
}

.footer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-description {
        max-width: 600px;
    }

    .hero-image-frame {
        width: 340px;
        height: 420px;
    }

    .hero-badges {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .collective-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .final-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .final-content {
        align-items: center;
    }

    .final-image-wrapper {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: auto 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-row: 1 / 3;
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --section-padding: 64px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }

    .btn-footer-contact {
        align-self: center;
    }

    .hero-nav {
        padding: 20px 20px;
    }

    .hero-container {
        padding: 20px 20px 60px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hero-image-frame {
        width: 280px;
        height: 360px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .subsection-title {
        font-size: 1.3rem;
    }

    .about-card {
        padding: 28px 24px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-card {
        padding: 24px 16px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-content {
        padding: 28px 24px;
    }

    .pricing-amount.large {
        font-size: 2.2rem;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 0.85rem;
    }

    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .final-title {
        font-size: 1.6rem;
    }

    .final-section {
        padding: 80px 0;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-badges {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .hero-image-frame {
        width: 240px;
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-values {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================================================
   CUSTOM SCROLLBAR (Webkit)
   ================================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 168, 67, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 168, 67, 0.5);
}

/* ================================================
   ACCESSIBILITY
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

:focus-visible {
    outline: 2px solid var(--gold-400);
    outline-offset: 3px;
}

/* ================================================
   SELECTION STYLE
   ================================================ */
::selection {
    background: rgba(212, 168, 67, 0.3);
    color: var(--text-primary);
}
