/* ================================================
   DENTALSITE PRO - MASTER OFFER PAGE STYLES
   ================================================ */

/* ================================================
   CSS VARIABLES & RESET
   ================================================ */

:root {
    /* Colors */
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --primary-light: #7c8df8;
    --secondary: #48bb78;
    --secondary-dark: #38a169;
    --danger: #f56565;
    --warning: #f6ad55;
    --success: #48bb78;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    --gradient-danger: linear-gradient(135deg, #fc8181 0%, #f56565 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    
    /* Text Colors */
    --text-dark: #1a202c;
    --text-body: #2d3748;
    --text-light: #718096;
    --text-lighter: #a0aec0;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-lighter: #edf2f7;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================
   STICKY HEADER
   ================================================ */

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.sticky-header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-cta {
    background: var(--gradient-secondary);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 20px 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0.05;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(102, 126, 234, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.urgency-badge {
    display: inline-block;
    background: var(--gradient-danger);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(245, 101, 101, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(245, 101, 101, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(245, 101, 101, 0.5);
    }
}

.hero-headline {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.highlight-text {
    color: var(--danger);
    position: relative;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subheadline strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    font-size: 20px;
}

.trust-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(72, 187, 120, 0.5);
}

.cta-button.secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.cta-button.large {
    padding: 20px 45px;
    font-size: 19px;
}

.cta-button.huge {
    padding: 25px 55px;
    font-size: 22px;
}

.cta-button.pulse {
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(72, 187, 120, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(72, 187, 120, 0.6);
    }
}

/* Countdown Timer */
.countdown-box {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 50px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-label {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    background: var(--gradient-primary);
    color: white;
    font-size: 42px;
    font-weight: 800;
    padding: 15px 25px;
    border-radius: var(--radius-md);
    min-width: 80px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.countdown-label-small {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.countdown-separator {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.social-proof-avatars {
    display: flex;
    margin-left: -10px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 3px solid white;
    margin-left: -10px;
    box-shadow: var(--shadow-md);
}

.social-proof-text {
    font-size: 15px;
    color: var(--text-light);
}

.social-proof-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-arrow {
    font-size: 24px;
    margin-top: 5px;
}

/* ================================================
   SECTION HEADERS (REUSABLE)
   ================================================ */

section {
    padding: 56px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.text-danger {
    color: var(--danger);
}

/* ================================================
   PROBLEM SECTION
   ================================================ */

.problem-section {
    background: var(--bg-lighter);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 3px solid transparent;
}

.problem-card:hover {
    border-color: var(--danger);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.problem-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.problem-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.problem-stat {
    background: var(--gradient-danger);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    display: inline-block;
}

/* Cost Calculator */
.cost-calculator {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-xl);
}

.calculator-content {
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.calculator-content h3 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.calc-row strong {
    font-weight: 800;
}

.calc-divider {
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

.calc-total {
    text-align: center;
    padding: 25px 0;
}

.calc-total span {
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.calc-amount {
    font-size: 56px;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.calc-question {
    text-align: center;
    font-size: 20px;
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius-md);
}

/* ================================================
   SOLUTION SECTION
   ================================================ */

.solution-section {
    background: white;
}

/* Video Demo */
.video-demo-box {
    max-width: 800px;
    margin: 0 auto 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 20px;
    border: 5px solid white;
    transition: var(--transition);
}

.video-placeholder:hover .play-button {
    background: white;
    color: var(--primary);
}

.video-placeholder p {
    font-size: 24px;
    font-weight: 700;
}

/* Feature Highlights */
.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: var(--bg-lighter);
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.highlight-card:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-card:hover p {
    background: white;
    color: #1f1f1f;
    padding: 3px 3px;
    border-radius: 6px;
    display: inline-block;
}

.highlight-number {
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.highlight-card:hover .highlight-number {
    -webkit-text-fill-color: white;
}

.highlight-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.highlight-card:hover .highlight-label {
    color: white;
}

.highlight-card p {
    font-size: 14px;
    color: var(--text-light);
}

.highlight-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* ================================================
   FEATURES SECTION
   ================================================ */

.features-section {
    background: var(--bg-lighter);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Pre-loaded Content Box */
.preloaded-content-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 50px;
    color: white;
    margin-top: 60px;
}

.preloaded-content-box h3 {
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
}

.preloaded-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

.content-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.content-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.content-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 8px;
}

.content-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.content-item small {
    font-size: 13px;
    opacity: 0.8;
}

/* ================================================
   COMPARISON SECTION
   ================================================ */

.comparison-section {
    background: white;
}

.comparison-table {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--bg-lighter);
    font-weight: 700;
    font-size: 16px;
}

.comparison-col {
    padding: 20px;
    text-align: center;
}

.comparison-col.old {
    color: var(--danger);
}

.comparison-col.new {
    color: var(--success);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--bg-lighter);
    transition: var(--transition);
}

.comparison-row:hover {
    background: var(--bg-light);
}

.comparison-row.highlight {
    background: var(--gradient-gold);
    font-weight: 700;
}

.comparison-row.highlight .comparison-label,
.comparison-row.highlight .comparison-value {
    color: var(--text-dark);
}

.comparison-label {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-value {
    padding: 20px;
    text-align: center;
}

.comparison-value.old {
    color: var(--danger);
}

.comparison-value.new {
    color: var(--success);
    font-weight: 700;
}

/* Savings Box */
.savings-box {
    background: var(--gradient-secondary);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.savings-box h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.savings-amount {
    font-size: 48px;
    font-weight: 900;
    color: #ffd700;
}

.savings-box p {
    font-size: 20px;
    margin-top: 15px;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */

.testimonials-section {
    background: var(--bg-lighter);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 3px solid transparent;
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.author-info strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-result {
    background: var(--bg-lighter);
    padding: 15px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-label {
    font-size: 14px;
    color: var(--text-light);
}

.result-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--success);
}

/* ================================================
   PRICING SECTION
   ================================================ */

.pricing-section {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border: 3px solid var(--bg-lighter);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--success);
    border-width: 4px;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--text-light);
    font-size: 15px;
}

.pricing-price {
    margin-bottom: 15px;
}

.price-currency {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    vertical-align: top;
}

.price-amount {
    font-size: 72px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    margin-top: 5px;
}

.pricing-savings {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-block;
}

.pricing-features {
    text-align: left;
    margin: 30px 0;
}

.pricing-feature {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-lighter);
    font-size: 15px;
    color: var(--text-body);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 18px 30px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    margin-bottom: 15px;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-cta.primary {
    background: var(--gradient-secondary);
}

.pricing-spots {
    font-size: 14px;
    color: var(--danger);
    font-weight: 700;
}

/* Value Stack Box */
.value-stack-box {
    background: var(--bg-lighter);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.value-stack-box h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    font-size: 15px;
}

.value-name {
    color: var(--text-body);
}

.value-price {
    font-weight: 700;
    color: var(--text-dark);
}

.value-total {
    background: white;
    padding: 25px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.value-total strong {
    font-weight: 900;
    font-size: 32px;
}

.value-your-price {
    background: var(--gradient-secondary);
    color: white;
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
}

.highlight-price {
    font-size: 48px;
    font-weight: 900;
    color: #ffd700;
}

/* ================================================
   FAQ SECTION
   ================================================ */

.faq-section {
    background: var(--bg-lighter);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 9px 30px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
    position: relative;
    padding-right: 60px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    font-weight: 300;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-slow);
    padding: 0 30px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}




.faq-answer {
    max-height: none !important;
    padding: 0 30px 25px 30px !important;
    overflow: visible !important;
}

.faq-question::after {
    content: '' !important;  /* removes + / - icon */
}

.faq-item {
    cursor: default !important;
}


/* ================================================
   GUARANTEE SECTION
   ================================================ */

.guarantee-section {
    background: white;
    padding: 80px 0;
}

.guarantee-box {
    background: var(--gradient-secondary);
    color: white;
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-badge {
    font-size: 80px;
    margin-bottom: 20px;
}

.guarantee-box h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.guarantee-box p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 30px;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee-feature {
    font-size: 16px;
    font-weight: 700;
}

/* ================================================
   FINAL CTA SECTION
   ================================================ */

.final-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.final-cta-subtitle {
    font-size: 22px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.final-urgency-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.urgency-icon {
    font-size: 80px;
}

.urgency-content {
    flex: 1;
    text-align: left;
}

.urgency-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.urgency-tiers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.urgency-tier {
    font-size: 16px;
    opacity: 0.95;
}

.urgency-tier strong {
    color: #ffd700;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.final-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.trust-check {
    font-size: 24px;
}

/* ================================================
   FOOTER
   ================================================ */

.main-footer {
    background: var(--text-dark);
    color: var(--text-lighter);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
   
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-lighter);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 14px;
}

/* ================================================
   STICKY BOTTOM BAR (MOBILE)
   ================================================ */

.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding: 15px 20px;
    display: none;
}

.bottom-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.bottom-bar-text {
    display: flex;
    flex-direction: column;
}

.bottom-bar-text strong {
    font-size: 24px;
    color: var(--text-dark);
}

.bottom-bar-text span {
    font-size: 13px;
    color: var(--danger);
    font-weight: 600;
}

.bottom-bar-cta {
    background: var(--gradient-secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-md);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1024px) {
    .hero-headline {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .hero-subheadline {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .countdown-value {
        font-size: 32px;
        padding: 12px 20px;
        min-width: 70px;
    }
    
    .countdown-separator {
        font-size: 32px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .problem-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .final-urgency-box {
        flex-direction: column;
        text-align: center;
    }
    
    .urgency-content {
        text-align: center;
    }
    
    .sticky-bottom-bar {
        display: block;
    }
    
    .value-stack-box,
    .cost-calculator,
    .guarantee-box {
        padding: 30px 20px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .countdown-item {
        flex: 1;
    }
    
    .countdown-value {
        font-size: 24px;
        padding: 10px 15px;
        min-width: 60px;
    }
    
    .cta-button.large {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .cta-button.huge {
        padding: 18px 35px;
        font-size: 18px;
    }
    
    .price-amount {
        font-size: 56px;
    }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

/* ================================================
   ANIMATIONS & LOADING STATES
   ================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ================================================
   PRINT STYLES
   ================================================ */

@media print {
    .sticky-header,
    .sticky-bottom-bar,
    .scroll-indicator,
    .cta-button {
        display: none;
    }
}