/**
 * 1MinuteFollowup Marketing Site Styles
 * Based on 1MinuteFunnel design system
 * Compliant text-to-book solution for lead response
 */

/* ============================================
   CSS VARIABLES (1MinuteFollowup Brand)
   ============================================ */
:root {
    /* Primary Colors - Purple Gradient (matching 1MinuteFunnel) */
    --color-primary: #667eea;
    --color-primary-dark: #5568d3;
    --color-primary-light: #7c8fef;
    --color-secondary: #764ba2;

    /* Accent Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #0ea5e9;

    /* Neutrals */
    --color-bg: #f8fafc;
    --color-bg-alt: #f1f5f9;
    --color-surface: #ffffff;
    --color-border: #e2e8f0;
    --color-text: #111111;
    --color-text-body: #334155;
    --color-text-light: #64748b;
    --color-text-muted: #94a3b8;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-light: linear-gradient(180deg, #f8fafc 0%, #fff 100%);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    /* Spacing */
    --section-padding: 80px 24px;
    --section-padding-mobile: 48px 16px;
    --container-max: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--color-primary);
    font-style: italic;
}

.highlight-primary {
    color: var(--color-primary);
}

.highlight-orange {
    color: var(--color-warning);
}

.highlight-underline {
    text-decoration: underline;
    text-decoration-color: var(--color-warning);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-cta {
    background: var(--color-warning);
    color: #000;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.btn-cta:hover {
    background: #e69009;
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.logo:hover {
    text-decoration: none;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    color: var(--color-text-body);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.nav-cta {
    background: var(--color-warning);
    color: #000;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: #e69009;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Brand Selector Dropdown */
.brand-selector {
    position: relative;
}

.brand-selector-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-body);
    cursor: pointer;
    transition: all 0.2s;
}

.brand-selector-btn:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-primary);
}

.brand-selector-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.brand-selector.open .brand-selector-btn svg {
    transform: rotate(180deg);
}

.brand-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 100;
}

.brand-selector.open .brand-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.brand-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--color-text-body);
    font-size: 14px;
    transition: background 0.2s;
}

.brand-dropdown a:hover {
    background: var(--color-bg);
    text-decoration: none;
}

.brand-dropdown a.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: var(--color-primary);
    font-weight: 600;
}

.brand-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
}

.brand-icon-followup {
    background: var(--gradient-primary);
}

.brand-icon-funnel {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Mobile Navigation */
.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    margin: 6px 0;
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-surface);
    z-index: 999;
    padding: 80px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.nav-mobile.open {
    transform: translateX(0);
}

.nav-mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--color-text);
}

.nav-mobile-links {
    list-style: none;
    margin-bottom: 24px;
}

.nav-mobile-links li {
    border-bottom: 1px solid var(--color-border);
}

.nav-mobile-links a {
    display: block;
    padding: 16px 0;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 500;
}

.nav-mobile-links a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .nav-mobile {
        display: block;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: var(--gradient-primary);
    padding: 60px 24px 80px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title .highlight-underline {
    text-decoration-color: var(--color-warning);
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
    font-style: normal;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

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

.hero-guarantee {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 640px) {
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
}

/* ============================================
   PROBLEM / PAIN POINTS SECTION
   ============================================ */
.problem-section {
    background: var(--color-surface);
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-body);
    max-width: 700px;
    margin: 0 auto 40px;
}

.problem-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--color-bg);
    border-radius: 12px;
    border-left: 4px solid var(--color-error);
}

.problem-x {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #fee2e2;
    color: var(--color-error);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.problem-content {
    font-size: 16px;
    color: var(--color-text-body);
}

.problem-content strong {
    display: block;
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--color-text);
}

/* ============================================
   SOLUTION / INTRODUCTION SECTION
   ============================================ */
.intro-section {
    background: var(--color-surface);
    padding: var(--section-padding);
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.intro-eyebrow {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.intro-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto 20px;
}

.intro-subtitle {
    font-size: 18px;
    color: var(--color-text-body);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    background: linear-gradient(180deg, #fdf8f3 0%, #fef6ee 50%, #fff5eb 100%);
    padding: var(--section-padding);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-body);
    max-width: 600px;
    margin: 0 auto 56px;
}

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

.step-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.step-card-reverse {
    direction: rtl;
}

.step-card-reverse > * {
    direction: ltr;
}

.step-number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-visual {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.step-visual-placeholder {
    background: var(--color-bg);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    color: var(--color-text-light);
}

.step-content {
    text-align: left;
}

.step-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.step-content p {
    font-size: 17px;
    color: var(--color-text-body);
    margin-bottom: 24px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .step-card,
    .step-card-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }

    .step-visual {
        order: 1;
    }

    .step-content {
        order: 2;
        text-align: center;
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: var(--color-surface);
    padding: var(--section-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 48px auto 0;
}

.feature-card {
    background: var(--color-bg);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--color-text-body);
    line-height: 1.6;
}

/* Feature card variations */
.feature-card-highlighted {
    border: 2px solid var(--color-primary);
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
}

.feature-card-orange {
    border: 2px solid var(--color-warning);
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
}

.feature-card-orange .feature-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: var(--color-bg);
    padding: var(--section-padding);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.pricing-toggle span {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-light);
}

.pricing-toggle span.active {
    color: var(--color-text);
}

.toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--color-border);
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch.active {
    background: var(--color-primary);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: var(--shadow-sm);
}

.toggle-switch.active::after {
    transform: translateX(24px);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--color-surface);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--color-border);
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-featured {
    border: 2px solid var(--color-primary);
    background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-tier {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.pricing-description {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 8px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text);
    vertical-align: top;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--color-text-light);
}

.pricing-subtext {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-text-body);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .icon-check {
    color: var(--color-success);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
}

/* Setup Fee Banner */
.setup-banner {
    background: var(--color-bg);
    border: 1px dashed var(--color-border);
    border-radius: 12px;
    padding: 20px;
    margin-top: 32px;
    text-align: center;
}

.setup-banner h4 {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 8px;
}

.setup-banner p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* Smart Start Bundles */
.bundles-section {
    margin-top: 64px;
    text-align: center;
}

.bundles-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.bundles-subtitle {
    font-size: 16px;
    color: var(--color-text-body);
    margin-bottom: 32px;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.bundle-card {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.bundle-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.bundle-price {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.bundle-includes {
    font-size: 14px;
    color: var(--color-text-body);
    line-height: 1.6;
}

.bundle-savings {
    display: inline-block;
    background: var(--color-success);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 48px 0;
    background: var(--gradient-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.testimonial-card.featured {
    border: 2px solid var(--color-warning);
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
}

.testimonial-quote {
    font-size: 17px;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-quote-marks {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.quote-mark {
    font-size: 48px;
    font-family: Georgia, serif;
    color: var(--color-warning);
    line-height: 0.8;
    font-weight: 700;
}

.quote-text {
    flex: 1;
    padding: 12px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    font-style: italic;
    text-align: center;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.testimonial-info strong {
    display: block;
    color: #2d3748;
    font-size: 15px;
}

.testimonial-info span {
    color: #718096;
    font-size: 13px;
}

.author-bookend {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
}

.author-bookend .dash {
    width: 24px;
    height: 2px;
    background: var(--color-warning);
}

.author-bookend .name {
    font-weight: 700;
    color: var(--color-warning);
    font-size: 15px;
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-section {
    background: var(--gradient-dark);
    padding: 80px 24px;
    text-align: center;
}

.guarantee-content {
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-badge-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.guarantee-badge-large .days {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.guarantee-badge-large .label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 16px;
}

.guarantee-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 8px;
    padding: 16px 24px;
    margin-top: 24px;
}

.guarantee-highlight p {
    color: #10b981;
    font-weight: 600;
    font-size: 16px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--color-surface);
    padding: var(--section-padding);
}

.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
    transition: color 0.2s;
}

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

.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-text-light);
    transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer-content {
    padding-bottom: 24px;
    font-size: 15px;
    color: var(--color-text-body);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 24px;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 24px 32px;
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
}

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

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand .logo span {
    color: rgba(255, 255, 255, 0.9);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s;
}

.footer-social a:hover {
    background: var(--color-primary);
}

.footer-column h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-legal a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .hero-section {
        padding: 48px 16px 64px;
    }

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

    .hero-cta-group .btn {
        width: 100%;
        max-width: 300px;
    }

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s ease infinite;
}

/* ============================================
   PRICING PAGE SPECIFIC
   ============================================ */
.pricing-page-hero {
    background: var(--gradient-primary);
    padding: 60px 24px;
    text-align: center;
}

.pricing-page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.pricing-page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-comparison-table {
    max-width: 900px;
    margin: 48px auto;
    background: var(--color-surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--color-bg);
    border-bottom: 2px solid var(--color-border);
}

.comparison-header > div {
    padding: 24px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
}

.comparison-header > div:first-child {
    text-align: left;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--color-border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 16px 24px;
    display: flex;
    align-items: center;
}

.comparison-row > div:not(:first-child) {
    justify-content: center;
}

.comparison-feature {
    font-weight: 500;
    color: var(--color-text);
}

.comparison-check {
    color: var(--color-success);
    font-size: 20px;
}

.comparison-value {
    font-weight: 600;
    color: var(--color-text);
}
