/* ================================
   LUXURY GLASSMORPHISM DESIGN
   Color Scheme: Blue, Yellow, White, Black
   ================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-blue: #1E3A8A;
    --secondary-blue: #3B82F6;
    --light-blue: #60A5FA;
    --accent-yellow: #FCD34D;
    --gold: #F59E0B;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --black: #000000;
    --rich-black: #0F172A;

    /* Glassmorphism Effects */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--rich-black);
    background: var(--off-white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ================================
   NAVIGATION
   ================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    padding: 20px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-cta-button {
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.15s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.nav-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    margin-top: 90px;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--gradient-overlay);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="200" cy="200" r="300" fill="rgba(59,130,246,0.1)"/><circle cx="1000" cy="600" r="400" fill="rgba(252,211,77,0.1)"/></svg>'),
        linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-gold);
    color: var(--rich-black);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 25px;
}

.highlight-yellow {
    color: var(--accent-yellow);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light-blue);
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* ================================
   CTA BUTTONS
   ================================ */

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.15s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: none;
    letter-spacing: 0.3px;
}

.cta-button.primary {
    background: var(--gradient-gold);
    color: var(--rich-black);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.15rem;
}

.cta-button.full-width {
    width: 100%;
    text-align: center;
}

/* ================================
   VIDEO PLACEHOLDERS
   ================================ */

.video-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(15, 23, 42, 0.9));
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.15s ease;
    border: 2px solid rgba(252, 211, 77, 0.3);
}

.video-placeholder:hover {
    transform: scale(1.02);
    border-color: var(--accent-yellow);
}

.video-placeholder.vertical {
    aspect-ratio: 9/16;
    max-width: 400px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--rich-black);
    transition: all 0.15s ease;
    z-index: 2;
}

.play-button.small {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.video-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.video-duration {
    font-size: 0.9rem;
    color: var(--accent-yellow);
    font-weight: 600;
}

/* YouTube Video Embed Styling */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(252, 211, 77, 0.4);
    transition: all 0.15s ease;
}

.video-wrapper:hover {
    box-shadow: 0 25px 80px rgba(252, 211, 77, 0.25);
    border-color: var(--accent-yellow);
    transform: translateY(-5px);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 18px;
}

/* Vertical Video Wrapper (YouTube Shorts) */
.video-wrapper-vertical {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(252, 211, 77, 0.4);
    transition: all 0.15s ease;
    margin: 0 auto;
}

.video-wrapper-vertical:hover {
    box-shadow: 0 25px 80px rgba(252, 211, 77, 0.25);
    border-color: var(--accent-yellow);
    transform: translateY(-5px);
}

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

/* ================================
   TRUST INDICATORS
   ================================ */

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: all 0.15s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-yellow);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.trust-label {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
}

/* ================================
   SECTION STYLES
   ================================ */

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header.centered {
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-blue);
    margin-bottom: 15px;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50px;
}

.section-eyebrow.light {
    color: var(--accent-yellow);
    background: rgba(252, 211, 77, 0.2);
}

.section-eyebrow.danger {
    color: var(--gold);
    background: rgba(245, 158, 11, 0.15);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--rich-black);
    margin-bottom: 20px;
}

.section-title.white {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748B;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle.white {
    color: rgba(255, 255, 255, 0.85);
}

/* ================================
   GLASSMORPHISM CARDS
   ================================ */

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* ================================
   PROBLEM SECTION
   ================================ */

.problem-section {
    background: var(--off-white);
}

.problems-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.15s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.2);
}

.problem-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--light-blue);
    opacity: 0.3;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.problem-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 15px;
}

.problem-card p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

/* ================================
   IMAGE PLACEHOLDERS
   ================================ */

.content-image-placeholder,
.image-placeholder {
    position: relative;
    background: linear-gradient(135deg, #E2E8F0, #CBD5E1);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 2px dashed #94A3B8;
}

.content-image-placeholder {
    margin-top: 40px;
}

.placeholder-overlay {
    text-align: center;
    padding: 40px;
    color: #64748B;
    font-size: 1.1rem;
    font-weight: 600;
}

.content-image-container {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-height: 400px;
}

.content-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.image-placeholder.large {
    min-height: 450px;
}

/* ================================
   GUIDE SECTION
   ================================ */

.guide-section {
    background: var(--white);
}

.guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.guide-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.credentials {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.credential-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.credential-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--gradient-gold);
    color: var(--rich-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
}

.credential-item strong {
    display: block;
    font-size: 1.15rem;
    color: var(--rich-black);
    margin-bottom: 5px;
}

.credential-item p {
    font-size: 1rem;
    color: #64748B;
}

/* ================================
   PLAN SECTION
   ================================ */

.plan-section {
    background: var(--gradient-overlay);
    position: relative;
    overflow: hidden;
}

.plan-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.plan-step {
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.15s ease;
}

.plan-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.step-number-large {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-yellow);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.plan-step h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.plan-step p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.step-duration {
    font-size: 0.95rem;
    color: var(--accent-yellow);
    font-weight: 600;
}

/* ================================
   TRANSITIONAL CTA
   ================================ */

.transitional-cta {
    background: var(--off-white);
    padding: 80px 0;
}

.transitional-cta-content {
    text-align: center;
    padding: 80px 60px;
    border-radius: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.transitional-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--rich-black);
    margin-bottom: 20px;
}

.transitional-cta-content p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 35px;
}

/* ================================
   SUCCESS SECTION
   ================================ */

.success-section {
    background: var(--white);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.testimonial-video {
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
}

.testimonial-quote {
    padding: 40px;
}

.quote-stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-quote p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--rich-black);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-image-placeholder {
    flex-shrink: 0;
}

.avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--rich-black);
}

.testimonial-info {
    text-align: left;
}

.testimonial-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(30, 58, 138, 0.1);
}

.metric {
    text-align: center;
}

.metric strong {
    display: block;
    font-size: 1.5rem;
    color: var(--secondary-blue);
    font-weight: 900;
    margin-bottom: 5px;
}

.metric span {
    font-size: 0.85rem;
    color: #64748B;
}

.testimonial-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: var(--off-white);
}

.testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.15s ease;
}

.testimonial-video:hover .testimonial-photo {
    transform: scale(1.05);
}

/* ================================
   SUCCESS GALLERY
   ================================ */

.success-gallery {
    margin-top: 80px;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--rich-black);
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item .image-placeholder {
    min-height: 250px;
    font-size: 0.95rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    max-height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    background: var(--off-white);
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
}

/* ================================
   FEATURES SECTION
   ================================ */

.features-section {
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.feature-card {
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.15s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

/* ================================
   STAKES SECTION
   ================================ */

.stakes-section {
    background: var(--white);
}

.stakes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stakes-text p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
}

.stakes-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stake-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(245, 158, 11, 0.05);
    border-left: 4px solid var(--gold);
    border-radius: 10px;
}

.stake-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.stake-item strong {
    display: block;
    font-size: 1.15rem;
    color: var(--rich-black);
    margin-bottom: 5px;
}

.stake-item p {
    font-size: 1rem;
    color: #64748B;
    margin: 0;
}

.stakes-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stakes-graph {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ================================
   FAQ SECTION
   ================================ */

.faq-section {
    background: var(--off-white);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.15s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 35px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.9);
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--rich-black);
    margin: 0;
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--secondary-blue);
    transition: transform 0.15s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
    background: rgba(255, 255, 255, 0.5);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 30px 35px;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
}

/* ================================
   FINAL CTA SECTION
   ================================ */

.final-cta-section {
    background: var(--gradient-overlay);
    padding: 120px 0;
}

.cta-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    padding: 50px 45px;
    border-radius: 25px;
}

.contact-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rich-black);
}

.form-group input,
.form-group select {
    padding: 16px 20px;
    font-size: 1rem;
    border: 2px solid rgba(30, 58, 138, 0.2);
    border-radius: 10px;
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.15s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-disclaimer {
    font-size: 0.85rem;
    color: #64748B;
    text-align: center;
    margin-top: 15px;
    line-height: 1.5;
}

/* ================================
   CONTACT SIDEBAR
   ================================ */

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    padding: 30px;
    border-radius: 20px;
}

.sidebar-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 20px;
}

.expect-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expect-list li {
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    color: #475569;
}

.expect-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: 900;
    font-size: 1.2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--rich-black);
    transition: all 0.15s ease;
}

.contact-link:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2rem;
}

.contact-link strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.contact-link span {
    font-size: 0.9rem;
    color: #64748B;
}

.sidebar-guarantee {
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--accent-yellow);
}

.guarantee-badge {
    font-size: 3rem;
    margin-bottom: 15px;
}

.sidebar-guarantee p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: var(--rich-black);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.social-link {
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.15s ease;
}

.social-link:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links a,
.footer-section p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-section p a:hover {
    color: var(--accent-yellow);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 25px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-yellow);
}

.disclaimer-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 1000px;
}

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

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }

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

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

@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .guide-content,
    .stakes-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }

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

    .hero-subtitle {
        font-size: 1.4rem;
    }

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

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

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

    .problems-container,
    .plan-steps,
    .success-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

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

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

    .trust-indicators {
        grid-template-columns: 1fr;
    }

    .logo {
        height: 40px;
    }

    .nav-cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ================================
   SUCCESS MESSAGE
   ================================ */

.success-message {
    background: var(--gradient-gold);
    color: var(--rich-black);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
    display: none;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.success-message.show {
    display: block;
    animation: slideInSuccess 0.2s ease;
}

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

/* ================================
   CONSULTATION MODAL
   ================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 50px 60px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(50px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(30, 58, 138, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(30, 58, 138, 0.2);
    transform: rotate(90deg);
}

/* Progress Bar */
.modal-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    z-index: 2;
}

.progress-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(100, 116, 139, 0.2);
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.15s ease;
    border: 3px solid transparent;
}

.progress-step.active .progress-circle {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
    transform: scale(1.1);
}

.progress-step.completed .progress-circle {
    background: var(--gradient-gold);
    color: var(--rich-black);
}

.progress-step span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748B;
    transition: all 0.15s ease;
}

.progress-step.active span {
    color: var(--primary-blue);
}

.progress-line {
    height: 3px;
    background: rgba(100, 116, 139, 0.2);
    flex: 1;
    margin: 0 -10px;
    margin-top: -35px;
    z-index: 1;
    transition: all 0.15s ease;
}

.progress-line.completed {
    background: var(--gradient-gold);
}

/* Modal Steps */
.modal-step {
    display: none;
    animation: fadeInSlide 0.3s ease;
}

.modal-step.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--rich-black);
    margin-bottom: 15px;
}

.step-header p {
    font-size: 1.1rem;
    color: #64748B;
}

/* Modal Form */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-modal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group-modal label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--rich-black);
}

.form-group-modal input,
.form-group-modal select,
.form-group-modal textarea {
    padding: 16px 20px;
    font-size: 1.05rem;
    border: 2px solid rgba(30, 58, 138, 0.15);
    border-radius: 12px;
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.15s ease;
}

.form-group-modal input:focus,
.form-group-modal select:focus,
.form-group-modal textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.form-group-modal textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio Cards */
.investment-options,
.time-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-content {
    padding: 20px;
    border: 2px solid rgba(30, 58, 138, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.15s ease;
    text-align: center;
}

.radio-card:hover .radio-content {
    border-color: var(--secondary-blue);
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
}

.radio-card input[type="radio"]:checked + .radio-content {
    border-color: var(--secondary-blue);
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.radio-content strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.radio-content span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.radio-card input[type="radio"]:checked + .radio-content strong,
.radio-card input[type="radio"]:checked + .radio-content span {
    color: var(--white);
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-modal {
    flex: 1;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-next,
.btn-submit,
.btn-primary {
    background: var(--gradient-gold);
    color: var(--rich-black);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
}

.btn-next:hover,
.btn-submit:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn-back {
    background: rgba(100, 116, 139, 0.1);
    color: var(--rich-black);
}

.btn-back:hover {
    background: rgba(100, 116, 139, 0.2);
}

/* Success Animation */
.success-animation {
    text-align: center;
    padding: 20px 0;
}

.success-checkmark {
    margin: 0 auto 40px;
    width: 120px;
    height: 120px;
}

.checkmark {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    stroke-width: 3;
    stroke: var(--white);
    stroke-miterlimit: 10;
    box-shadow: inset 0 0 0 var(--gold);
    animation: fill-checkmark 0.2s ease-in-out 0.2s forwards, scale-checkmark 0.15s ease-in-out 0.4s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: var(--gold);
    fill: none;
    animation: stroke-checkmark 0.3s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: var(--gold);
    stroke-width: 3;
    animation: stroke-checkmark 0.15s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

@keyframes stroke-checkmark {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale-checkmark {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill-checkmark {
    100% {
        box-shadow: inset 0 0 0 60px var(--gold);
    }
}

.success-animation h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--rich-black);
    margin-bottom: 15px;
}

.success-message {
    font-size: 1.2rem;
    color: #64748B;
    margin-bottom: 40px;
}

.success-details {
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid var(--secondary-blue);
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.success-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.success-details p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.success-bonus {
    background: var(--gradient-gold);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    animation: pulse 2s ease infinite;
}

.success-bonus h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rich-black);
    margin-bottom: 10px;
}

.success-bonus p {
    font-size: 1.05rem;
    color: var(--rich-black);
    line-height: 1.7;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.btn-primary {
    margin-top: 30px;
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-container {
        padding: 40px 30px;
        width: 95%;
    }

    .step-header h2 {
        font-size: 1.8rem;
    }

    .investment-options,
    .time-options {
        grid-template-columns: 1fr;
    }

    .modal-progress {
        margin-bottom: 30px;
    }

    .progress-step span {
        font-size: 0.75rem;
    }

    .progress-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .btn-modal {
        width: 100%;
    }

    .success-checkmark {
        width: 100px;
        height: 100px;
    }

    .checkmark {
        width: 100px;
        height: 100px;
    }
}

/* ================================
   DISCLAIMER MODAL
   ================================ */

.disclaimer-modal-container {
    max-width: 550px;
    padding: 40px 50px;
}

.disclaimer-modal-content {
    text-align: center;
}

.disclaimer-header {
    margin-bottom: 30px;
}

.disclaimer-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.disclaimer-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--rich-black);
}

.disclaimer-body {
    text-align: left;
    margin-bottom: 30px;
}

.disclaimer-body p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.disclaimer-body p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.disclaimer-links {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(30, 58, 138, 0.1);
}

.disclaimer-links > p {
    text-align: center;
    padding-left: 0;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--rich-black);
}

.disclaimer-links > p::before {
    display: none;
}

.disclaimer-link-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.disclaimer-link-btn {
    padding: 12px 20px;
    background: rgba(30, 58, 138, 0.08);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.15s ease;
    border: 1px solid rgba(30, 58, 138, 0.15);
}

.disclaimer-link-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

#acceptDisclaimer {
    width: 100%;
    margin-top: 10px;
}

.disclaimer-trigger {
    cursor: pointer;
    transition: all 0.15s ease;
}

.disclaimer-trigger:hover {
    color: var(--accent-yellow);
}

.disclaimer-trigger a {
    color: var(--accent-yellow);
    text-decoration: underline;
}

.disclaimer-trigger a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .disclaimer-modal-container {
        padding: 30px 25px;
    }

    .disclaimer-header h2 {
        font-size: 1.6rem;
    }

    .disclaimer-body p {
        font-size: 0.95rem;
    }

    .disclaimer-link-buttons {
        flex-direction: column;
    }

    .disclaimer-link-btn {
        width: 100%;
        text-align: center;
    }
}