/* ==========================================================================
   Gratia Sales Page - Premium Design System & Styles
   ========================================================================== */

/* Design Tokens & CSS Variables */
:root {
    --primary-blue: #102A43;      /* Deep Blue for trust, faith, authority */
    --primary-blue-dark: #0B1D33; /* Darker blue for background blocks/gradients */
    --primary-blue-light: #486581;/* Softer blue for body text & muted states */
    --gold: #D4AF37;              /* Soft Gold for high value, light and purpose */
    --gold-light: #F3E5AB;        /* Light gold for backgrounds and accents */
    --gold-dark: #AA7C11;         /* Dark gold for hover states and text */
    --bg-white: #FFFFFF;          /* Pure white for clarity and lightness */
    --bg-light-gray: #F5F7FA;     /* Soft grey for secondary sections */
    --bg-warm-linen: #FCFAF6;     /* Warm beige for deep welcoming empathy sections */
    --border-color: #E4E7EB;      /* Clean neutral border */
    --text-dark: #102A43;         /* Deep blue for solid headings */
    --text-main: #334E68;         /* Highly legible charcoal blue for body */
    --text-muted: #627D98;        /* Soft blue-gray for secondary text */
    
    /* Fonts */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects & Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 4px 20px rgba(16, 42, 67, 0.04);
    --shadow-medium: 0 12px 30px rgba(16, 42, 67, 0.08);
    --shadow-premium: 0 20px 40px rgba(11, 29, 51, 0.12);
    --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.15);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-white);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light-gray);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-blue-light);
    border-radius: 5px;
    border: 2px solid var(--bg-light-gray);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* Typography & Layout Helpers */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Urgent Top Alert Bar */
.urgent-bar {
    background: linear-gradient(90deg, #b8860b 0%, #102a43 50%, #b8860b 100%);
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-family: var(--font-title);
    font-weight: 500;
    position: relative;
    z-index: 1001;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.urgent-bar strong {
    color: #ffe699;
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(16, 42, 67, 0.05);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

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

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

.logo-icon {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 2px 5px rgba(212, 175, 55, 0.2));
}

.logo-text {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.btn-header {
    background: var(--primary-blue);
    color: var(--bg-white);
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-title);
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: 0 4px 10px rgba(16, 42, 67, 0.1);
}

.btn-header:hover {
    background: var(--bg-white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Sections Global */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px auto;
}

.section-tag {
    font-family: var(--font-title);
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    padding-top: 80px;
    padding-bottom: 90px;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, rgba(255, 255, 255, 0) 65%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-dark);
    padding: 6px 14px;
    border-radius: 30px;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px var(--gold);
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 36px;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    width: 100%;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #173b5e 100%);
    color: var(--bg-white);
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(16, 42, 67, 0.2);
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 42, 67, 0.3);
    filter: brightness(1.15);
}

.btn-secondary {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary-blue);
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 40px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    background-color: var(--bg-light-gray);
}

/* Live Traffic Indicator */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 0.88rem;
    color: var(--text-main);
    background-color: rgba(16, 42, 67, 0.03);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(16, 42, 67, 0.06);
}

.pulse-green-dot {
    width: 8px;
    height: 8px;
    background-color: #2ec4b6;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #2ec4b6;
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(46, 196, 182, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0); }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    width: 100%;
}

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

.trust-icon {
    width: 18px;
    height: 18px;
    color: var(--gold-dark);
}

/* App Mockup Visual Elements */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-sphere {
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
}

.mockup-wrapper {
    position: relative;
    z-index: 2;
    max-width: 320px;
    width: 100%;
}

.mockup-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 40px rgba(16, 42, 67, 0.12));
    animation: float 6s ease-in-out infinite;
}

.mockup-decoration {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 12px 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-medium);
    z-index: 3;
    width: 200px;
}

.decoration-1 {
    top: 25%;
    left: -70px;
    animation: float-slow 8s ease-in-out infinite;
}

.decoration-2 {
    bottom: 20%;
    right: -60px;
    animation: float-slow 7s ease-in-out infinite reverse;
}

.decor-icon {
    font-size: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.decor-text h4 {
    font-size: 0.85rem;
    margin-bottom: 2px;
    color: var(--primary-blue);
}

.decor-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Welcoming & Empathetic Pastoral Letter Section */
.pain-section {
    background-color: var(--bg-warm-linen);
    border-top: 1px solid rgba(16, 42, 67, 0.02);
    border-bottom: 1px solid rgba(16, 42, 67, 0.02);
}

.pain-letter-box {
    background: var(--bg-white);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 28px;
    padding: 56px;
    box-shadow: var(--shadow-medium), 0 15px 35px rgba(212, 175, 55, 0.03);
    max-width: 900px;
    margin: 0 auto;
}

.pain-letter-box .section-tag {
    margin-bottom: 16px;
}

.pain-letter-box .section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.25;
}

.letter-intro {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 36px;
    line-height: 1.6;
}

.pain-bullet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.pain-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-cross {
    color: var(--gold-dark);
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 2px;
}

.pain-bullet-item p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-main);
}

.pain-bullet-item p strong {
    color: var(--primary-blue);
}

.pain-divider {
    height: 1px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(255,255,255,0) 80%);
    margin: 36px 0;
}

.letter-conclusion {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 36px;
}

.letter-conclusion strong {
    color: var(--primary-blue);
}

.letter-cta-wrapper {
    display: flex;
    justify-content: center;
}

/* Benefits / Features Section */
.benefits-section {
    background-color: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--bg-light-gray);
    border: 1px solid rgba(16, 42, 67, 0.03);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: var(--bg-white);
    box-shadow: var(--shadow-medium);
    border-color: rgba(212, 175, 55, 0.2);
}

.benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.benefit-icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon-box {
    background: var(--primary-blue);
    color: var(--gold);
    transform: scale(1.05);
}

.benefit-icon {
    width: 28px;
    height: 28px;
}

.benefit-badge {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    background-color: rgba(16, 42, 67, 0.06);
    color: var(--primary-blue);
}

.benefit-badge.warm {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--gold-dark);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.benefit-card p {
    font-size: 0.98rem;
    color: var(--text-main);
}

/* Social Proof (Testimonials) */
.social-proof-section {
    background-color: var(--bg-warm-linen);
}

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

.testimonial-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    border: 1px solid rgba(16, 42, 67, 0.01);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(212, 175, 55, 0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.rating {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.verified-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: #2ec4b6;
    background-color: rgba(46, 196, 182, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 0.96rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.65;
    margin-bottom: 24px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--bg-white);
    flex-shrink: 0;
}

.bg-amber { background: linear-gradient(135deg, #F5B041, #DC7633); }
.bg-blue { background: linear-gradient(135deg, #5DADE2, #2E86C1); }
.bg-gold { background: linear-gradient(135deg, #F4D03F, #B7950B); }

.user-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.user-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Offer Section (High-Conversion Style) */
.offer {
    background: var(--bg-white);
}

.offer-box {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, #163656 100%);
    border-radius: 36px;
    padding: 70px 48px;
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(11, 29, 51, 0.25);
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, rgba(255,255,255,0) 65%);
    pointer-events: none;
}

.offer-tag {
    font-family: var(--font-title);
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

/* Countdown Urgency Timer Box */
.countdown-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-family: var(--font-title);
    margin-bottom: 30px;
}

.countdown-container strong {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 1px;
}

.offer-title {
    color: var(--bg-white);
    font-size: 2.3rem;
    margin-bottom: 16px;
    line-height: 1.25;
}

.offer-subtitle {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 1.05rem;
}

/* Value Stacking Styles */
.value-stack-box {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    max-width: 720px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.stack-title {
    color: var(--bg-white);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.stack-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.stack-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.stack-check {
    color: var(--gold);
    font-weight: bold;
    margin-right: 10px;
}

.stack-check.bonus {
    color: #e29578;
}

.stack-item-name {
    flex-grow: 1;
}

.stack-item-price {
    font-family: var(--font-title);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.stack-item-price.strike {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
}

.bonus-item {
    background-color: rgba(226, 149, 120, 0.06);
    padding: 4px 8px;
    border-radius: 6px;
    border-left: 2px solid #e29578;
}

.stack-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.stack-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
}

.total-strike {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.45);
}

/* Pricing Card Highlight */
.pricing-card-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 28px;
    max-width: 500px;
    margin: 0 auto 36px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-badge {
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.price-box {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 12px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-right: 6px;
}

.price-amount {
    font-family: var(--font-title);
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.price-period {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 6px;
}

.price-explanation {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.offer-cta-wrapper {
    margin-bottom: 24px;
}

.btn-offer {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-blue-dark);
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.3rem;
    text-decoration: none;
    padding: 22px 56px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
    filter: brightness(1.15);
}

.guarantee-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.guarantee-icon-s {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

/* Warranty Section */
.warranty-section {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0;
}

.warranty-box-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
}

.warranty-badge-wrapper {
    flex-shrink: 0;
}

.warranty-badge {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.2));
}

.warranty-content {
    flex-grow: 1;
}

.warranty-title {
    font-size: 1.45rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.warranty-text {
    font-size: 0.98rem;
    color: var(--text-main);
    line-height: 1.75;
}

/* FAQ Accordion Section */
.faq-section {
    background-color: var(--bg-warm-linen);
}

.faq-accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(16, 42, 67, 0.02);
    transition: var(--transition);
}

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

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

.faq-icon-cross {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-icon-cross::before, .faq-icon-cross::after {
    content: "";
    position: absolute;
    background: var(--primary-blue);
    transition: var(--transition);
}

/* Horizontal line */
.faq-icon-cross::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

/* Vertical line */
.faq-icon-cross::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow-medium);
}

.faq-item.active .faq-icon-cross::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon-cross::before {
    background: var(--gold-dark);
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    border-top: 1px solid rgba(16, 42, 67, 0.04);
}

/* Footer Section */
.footer {
    background-color: var(--primary-blue-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-brand {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.footer-brand .logo {
    justify-content: center;
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: var(--bg-white);
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

/* Sticky Bottom CTA Mobile-Only */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(16, 42, 67, 0.08);
    padding: 12px 24px;
    z-index: 999;
    box-shadow: 0 -8px 25px rgba(16, 42, 67, 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15), opacity 0.3s ease;
}

.sticky-cta.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.sticky-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-price-info {
    display: flex;
    flex-direction: column;
}

.sticky-price-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-price-value {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.sticky-price-value small {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.btn-sticky-cta {
    background: var(--gold);
    color: var(--primary-blue-dark);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.btn-sticky-cta:hover {
    background: var(--gold-dark);
    color: var(--bg-white);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes float-slow {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

@keyframes heart-beat {
    0% { transform: scale(1); }
    14% { transform: scale(1.15); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    70% { transform: scale(1); }
}

@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.pulse-btn {
    animation: pulse-btn 2.5s infinite;
}

/* ==========================================================================
   Responsiveness & Mobile-First Media Queries
   ========================================================================== */

/* Tablet & Mobile (Max-Width: 991px) */
@media (max-width: 991px) {
    section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 1.95rem;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 50px;
        padding-bottom: 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
    
    .hero-trust {
        justify-content: center;
    }

    .live-indicator {
        margin-bottom: 24px;
        text-align: center;
    }
    
    /* Pain Section / Letter */
    .pain-letter-box {
        padding: 32px 24px;
    }
    
    .pain-letter-box .section-title {
        font-size: 1.7rem;
    }
    
    .pain-bullet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px;
    }
    
    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Offer Box */
    .offer-box {
        padding: 40px 24px;
    }
    
    .offer-title {
        font-size: 1.75rem;
    }
    
    .value-stack-box {
        padding: 20px 16px;
    }
    
    .stack-list li {
        font-size: 0.88rem;
    }
    
    .price-amount {
        font-size: 3.2rem;
    }
    
    .btn-offer {
        width: 100%;
        max-width: 320px;
        padding: 18px 24px;
        font-size: 1.15rem;
    }
    
    /* Warranty */
    .warranty-box-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    /* Navigation */
    .nav {
        display: none; /* Hide standard nav on mobile */
    }
}

/* Small Mobile Devices (Max-Width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 1.65rem;
    }
    
    .decor-icon {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    
    .mockup-decoration {
        width: 160px;
        padding: 8px 12px;
    }
    
    .decoration-1 {
        left: -30px;
    }
    
    .decoration-2 {
        right: -20px;
    }
    
    .btn-primary, .btn-secondary, .btn-offer {
        font-size: 1rem;
        padding: 14px 28px;
    }
}
