/* ==========================================================================
   CSS DESIGN SYSTEM - LANDING PAGE "CUANDO DIOS RESPONDIO"
   Aesthetic: Dark Mode Premium, Divine Light Glows, Golden Accents
   ========================================================================== */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Unified Dark Theme */
    --color-primary-dark: #03060d; /* Pitch Black Navy */
    --color-primary: #060b17;      /* Deepest Premium Navy */
    --color-primary-light: #0d172e;/* Sleek Dark Navy */
    --color-primary-ultra-light: #1c2c4d;
    
    --color-gold: #f3c65f;         /* Bright Premium Gold */
    --color-gold-dark: #c69724;    /* Deep Gold */
    --color-gold-light: #fde8bb;   /* Shining Soft Gold */
    --color-gold-glow: rgba(243, 198, 95, 0.45);
    
    --color-white: #ffffff;
    --color-bg-light: #060b17;     /* Dark Navy instead of white/light */
    --color-text-dark: #f1f5f9;     /* Light text for compatibility */
    --color-text-muted: #94a3b8;   /* Cool Slate Gray for descriptions */
    --color-text-light: #f1f5f9;
    --color-text-gold: #f8d88e;
    
    --color-success: #10b981;
    --color-danger: #ef4444;
    
    /* Font Families */
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Layout & Shadows */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 9999px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 20px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 30px -5px rgba(0, 0, 0, 0.6);
    --shadow-gold-heavy: 0 0 35px rgba(243, 198, 95, 0.45);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

p {
    font-weight: 400;
}

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

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

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

/* ==========================================================================
   PARTICLE CANVAS & BACKGROUND EFFECTS
   ========================================================================== */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.aurora-bg {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 90vh;
    background: radial-gradient(circle, rgba(243, 198, 95, 0.08) 0%, rgba(6, 11, 23, 0) 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.aurora-bg-alt {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 80%;
    height: 80vh;
    background: radial-gradient(circle, rgba(13, 23, 46, 0.5) 0%, rgba(3, 6, 13, 0) 60%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================================
   DYNAMIC TOPBAR
   ========================================================================== */
.topbar {
    position: sticky;
    top: 0;
    background: rgba(3, 6, 13, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(243, 198, 95, 0.2);
    z-index: 1000;
    padding: 10px 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.topbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.topbar-main {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.topbar-date {
    color: var(--color-gold);
    text-shadow: 0 0 12px rgba(243, 198, 95, 0.4);
}

.topbar-sub {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ==========================================================================
   CONTAINER & LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-title-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--color-white);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15), 0 0 25px rgba(243, 198, 95, 0.25);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 15px auto 0 auto;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 400;
    line-height: 1.5;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    padding: 40px 0 80px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(13, 23, 46, 0.5) 0%, rgba(3, 6, 13, 1) 90%);
}

.hero-header {
    text-align: center;
    margin-bottom: 35px;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.hero-badge {
    background: rgba(243, 198, 95, 0.08);
    border: 1px solid rgba(243, 198, 95, 0.25);
    padding: 6px 14px;
    border-radius: var(--border-radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-badge i {
    font-size: 0.75rem;
    color: var(--color-gold);
}

.hero-headline {
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--color-white);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.85), 0 0 25px rgba(255, 255, 255, 0.3);
}

.hero-headline span {
    background: linear-gradient(135deg, var(--color-gold) 30%, var(--color-gold-light) 95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 12px rgba(243, 198, 95, 0.5));
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--color-text-light);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-weight: 300;
    line-height: 1.6;
}

.hero-subheadline strong {
    color: var(--color-gold);
    font-weight: 600;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Button & Action Styles */
.btn-primary {
    position: relative;
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 35%, var(--color-gold-light) 70%, var(--color-gold-dark) 100%);
    background-size: 300% 100%;
    color: var(--color-primary-dark);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 16px 40px;
    border-radius: var(--border-radius-pill);
    box-shadow: var(--shadow-sm), var(--shadow-gold-heavy);
    transition: var(--transition-bounce), background-position 0.6s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    text-transform: uppercase;
    z-index: 1;
    animation: btn-float-continuous 2.5s ease-in-out infinite alternate;
}

@keyframes btn-float-continuous {
    0% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 4px 15px rgba(243, 198, 95, 0.3), var(--shadow-sm);
    }
    100% {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 15px 30px rgba(243, 198, 95, 0.6), var(--shadow-sm);
    }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
    transition: 0.6s ease-in-out;
}

.btn-primary:hover {
    background-position: 100% 0;
    color: var(--color-primary-dark);
    animation: btn-float-active 0.8s ease-in-out infinite alternate;
}

@keyframes btn-float-active {
    0% {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 8px 25px rgba(243, 198, 95, 0.5), var(--shadow-sm);
    }
    100% {
        transform: translateY(-12px) scale(1.07);
        box-shadow: 0 20px 40px rgba(243, 198, 95, 0.9), var(--shadow-sm);
    }
}

@keyframes gold-glow-pulse-hover {
    0% {
        box-shadow: 0 5px 25px rgba(243, 198, 95, 0.5), var(--shadow-sm);
    }
    100% {
        box-shadow: 0 20px 45px rgba(243, 198, 95, 0.95), var(--shadow-sm);
    }
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-subtext {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

/* Hero Mockup */
.hero-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 10px auto 20px auto;
    z-index: 2;
}

.hero-mockup {
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.75));
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.hero-mockup:hover {
    transform: translateY(-5px) scale(1.01);
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 75%;
    background: radial-gradient(circle, rgba(243, 198, 95, 0.22) 0%, rgba(3, 6, 13, 0) 70%);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(35px);
    animation: breathe 8s ease-in-out infinite;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.benefit-card {
    background: rgba(13, 23, 46, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 30px 25px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 198, 95, 0.06) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 198, 95, 0.45);
    box-shadow: var(--shadow-lg), 0 10px 20px rgba(243, 198, 95, 0.06);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(243, 198, 95, 0.08);
    border: 1px solid rgba(243, 198, 95, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-gold);
    font-size: 1.3rem;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
    background: var(--color-gold);
    color: var(--color-primary-dark);
    transform: scale(1.08);
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.benefit-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-white);
}

.benefit-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   TRANSFORMATION SECTION (BEFORE / AFTER)
   ========================================================================== */
.transformation-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.transformation-card {
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.transformation-card-before {
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.18);
    color: var(--color-text-light);
}

.transformation-card-after {
    background: rgba(13, 23, 46, 0.7);
    border: 1px solid rgba(243, 198, 95, 0.3);
    color: var(--color-white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(243, 198, 95, 0.05);
}

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

.transformation-badge {
    padding: 5px 12px;
    border-radius: var(--border-radius-pill);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.transformation-card-before .transformation-badge {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.transformation-card-after .transformation-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.transformation-title {
    font-size: 1.35rem;
    color: inherit;
}

.transformation-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.transformation-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.transformation-item i {
    margin-top: 3px;
    font-size: 1rem;
}

.transformation-card-before .transformation-item i {
    color: var(--color-danger);
}

.transformation-card-after .transformation-item i {
    color: var(--color-success);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.testimonial-card {
    background: rgba(13, 23, 46, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(243, 198, 95, 0.35);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--color-text-light);
    opacity: 0.9;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1.5px solid var(--color-gold);
    overflow: hidden; /* Ensure image fits round borders perfectly */
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.testimonial-info-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-white);
}

.testimonial-info-location {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   AUTHORITY SECTION
   ========================================================================== */
.authority-box {
    background: radial-gradient(circle at top right, rgba(13, 23, 46, 0.75) 0%, rgba(3, 6, 13, 0.95) 80%);
    border: 1px solid rgba(243, 198, 95, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 40px 25px;
    text-align: center;
    margin-top: 30px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.authority-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.authority-title {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
    text-align: left;
}

.authority-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.authority-item-icon {
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-top: 2px;
}

.authority-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 5px;
}

.authority-item-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   OFFER SECTION
   ========================================================================== */
.offer {
    background: radial-gradient(circle at center, rgba(13, 23, 46, 0.6) 0%, rgba(3, 6, 13, 1) 100%);
    border-top: 1px solid rgba(243, 198, 95, 0.15);
}
.offer-card {
    background: rgba(6, 11, 23, 0.9);
    border: 2px solid var(--color-gold);
    border-radius: var(--border-radius-lg);
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-gold-heavy);
    backdrop-filter: blur(10px);
}

.offer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.offer-image-wrapper {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.offer-bundle-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    border: 1px solid rgba(243, 198, 95, 0.25);
    transition: var(--transition-smooth);
}

.offer-bundle-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(243, 198, 95, 0.2);
}

.offer-content {
    width: 100%;
}
.offer-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
    color: var(--color-primary-dark);
    padding: 6px 20px;
    border-radius: var(--border-radius-pill);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(243, 198, 95, 0.35);
}

.offer-title {
    font-size: 1.5rem;
    margin-top: 15px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.offer-includes {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 30px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer-include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.offer-include-item i {
    color: var(--color-success);
    font-size: 1.1rem;
}

.price-container {
    margin-bottom: 25px;
}

.price-original {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-promo {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-gold-light);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-shadow: 0 0 20px rgba(243, 198, 95, 0.25);
}

.price-promo-symbol {
    font-size: 1.8rem;
    font-weight: 700;
}

.price-promo-currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-light);
    opacity: 0.8;
}

.price-saving {
    font-size: 0.9rem;
    color: var(--color-success);
    font-weight: 700;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4px 10px;
    border-radius: var(--border-radius-pill);
    display: inline-block;
    margin-top: 8px;
}

.offer-cta {
    margin-bottom: 20px;
    width: 100%;
    max-width: 450px;
}

/* ==========================================================================
   WARRANTY SECTION
   ========================================================================== */
.warranty-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    padding: 25px 20px;
    max-width: 700px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.warranty-seal {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}

.warranty-title {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 4px;
}

.warranty-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-accordion {
    max-width: 850px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(13, 23, 46, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(243, 198, 95, 0.25);
    background: rgba(13, 23, 46, 0.6);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-white);
}

.faq-icon {
    font-size: 0.8rem;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

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

.faq-answer-inner {
    padding: 0 24px 18px 24px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* Active State */
.faq-item.active {
    background: rgba(13, 23, 46, 0.75);
    border-color: rgba(243, 198, 95, 0.45);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 250px; /* Safe expanded height for accordion transition */
}

/* ==========================================================================
   SECURITY & TRUST SEALS
   ========================================================================== */
.trust-seals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.seal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.seal-item i {
    font-size: 1rem;
    color: var(--color-gold);
}

/* ==========================================================================
   DYNAMIC PURCHASE NOTIFICATIONS
   ========================================================================== */
.purchase-notification {
    position: fixed;
    bottom: -100px;
    left: 20px;
    background: rgba(6, 11, 23, 0.95);
    border: 1px solid rgba(243, 198, 95, 0.35);
    border-radius: var(--border-radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), var(--shadow-gold-heavy);
    z-index: 9999;
    max-width: 300px;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.purchase-notification.show {
    bottom: 20px;
    opacity: 1;
}

.purchase-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary-light);
    border: 1.5px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-weight: 800;
    font-size: 0.8rem;
}

.purchase-details {
    flex-grow: 1;
}

.purchase-text {
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-weight: 500;
    line-height: 1.35;
}

.purchase-text strong {
    color: var(--color-gold-light);
}

.purchase-time {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--color-primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 50px 0 30px 0;
    text-align: center;
    position: relative;
    z-index: 5;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-logo span {
    color: var(--color-gold);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

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

.footer-link:hover {
    color: var(--color-gold);
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 25px;
}

/* ==========================================================================
   ANIMATIONS & SCROLL REVEALS
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes breathe {
    0% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.06); }
    100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES (MOBILE FIRST -> DESKTOP)
   ========================================================================== */

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) {
    .topbar-content {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2.6rem;
    }
    
    .hero {
        padding: 60px 0 100px 0;
    }
    
    .hero-headline {
        font-size: 3.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transformation-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: stretch;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .authority-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offer-card {
        padding: 50px 40px;
        max-width: 950px;
    }
    
    .offer-grid {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 40px;
    }
    
    .offer-image-wrapper {
        flex: 1.1;
        max-width: none;
    }
    
    .offer-content {
        flex: 0.9;
    }
    
    .offer-title {
        font-size: 1.8rem;
        text-align: left;
        margin-top: 0;
    }
    
    .offer-includes {
        margin: 0 0 25px 0;
    }
    
    .price-container {
        text-align: left;
    }
    
    .offer-card .price-promo {
        justify-content: flex-start;
    }
    
    .offer-card .price-saving {
        display: inline-block;
    }
    
    .offer-card .offer-cta-container {
        justify-content: flex-start !important;
    }
    
    .offer-card .btn-primary {
        margin-left: 0;
        width: 100%;
        max-width: 400px;
    }
    
    .offer-card .btn-subtext {
        justify-content: flex-start !important;
    }
    
    .warranty-wrapper {
        flex-direction: row;
        text-align: left;
        padding: 30px 40px;
    }
    
    .warranty-seal {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
    }
}

/* Large Devices (Desktops, 1024px and up) */
@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 0.92fr 1.08fr; /* Mockup on left (0.92), content on right (1.08) */
        text-align: left;
        gap: 50px;
    }
    
    .hero-badge {
        margin-left: 0;
    }
    
    .hero-subheadline {
        margin-left: 0;
    }
    
    .hero-cta-group {
        align-items: flex-start;
    }
    
    .hero-mockup-wrapper {
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra Small Devices (Mobile phones, 480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 30px 0 60px 0;
    }
    
    .hero-headline {
        font-size: clamp(1.6rem, 7.5vw, 2.1rem);
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6.5vw, 1.9rem);
    }
    
    .btn-primary {
        font-size: 1rem !important;
        padding: 14px 24px !important;
        width: 100%;
        display: inline-flex;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .btn-subtext {
        font-size: 0.75rem;
        text-align: center;
        width: 100%;
        justify-content: center;
    }
    
    .hero-mockup-wrapper {
        max-width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-mockup {
        max-width: 100% !important;
        width: 100%;
    }
    
    .benefit-card, 
    .transformation-card, 
    .testimonial-card, 
    .authority-box, 
    .offer-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .offer-card {
        padding: 35px 15px;
    }
    
    .offer-includes {
        padding: 0 5px;
    }
    
    .price-promo {
        font-size: 3rem;
    }
    
    .purchase-notification {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
        box-sizing: border-box;
    }
}
