/* =====================================================
   OneClickSEO Landing Page Styles
   Design System: Glass Morphism, Dark Theme, Gradients
   ===================================================== */

/* CSS Variables - Matching Plugin Design */
:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #c026d3;
    --accent: #14b8a6;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --gold: #ffd700;

    /* Background Colors */
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: rgba(30, 58, 138, 0.15);
    --bg-glass: rgba(30, 58, 138, 0.25);

    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #e2e8f0;
    --text-muted: rgba(226, 232, 240, 0.7);
    --text-dark: #1e293b;

    /* Borders */
    --border-glass: rgba(165, 180, 252, 0.2);
    --border-light: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #c026d3 100%);
    --gradient-accent: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
    --gradient-bg: linear-gradient(125deg, #0f172a 0%, #312e81 50%, #4f46e5 100%);
    --gradient-hero: linear-gradient(180deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --shadow-glow-accent: 0 0 40px rgba(20, 184, 166, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 120px;
    --section-padding-mobile: 60px;
}

/* =====================================================
   Reset & Base Styles
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* =====================================================
   Container
   ===================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   Announcement Bar
   ===================================================== */
.announcement-bar {
    background: var(--gradient-primary);
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.announcement-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.announcement-link {
    color: var(--text-white);
    font-weight: 600;
    transition: opacity var(--transition-fast);
}

.announcement-link:hover {
    opacity: 0.8;
}

/* =====================================================
   Navigation
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 0;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-white);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-md), 0 0 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(99, 102, 241, 0.4);
}

.btn-glass {
    background: var(--bg-glass);
    color: var(--text-white);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-glass:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
}

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

.btn-outline:hover {
    background: var(--bg-glass);
    border-color: var(--primary);
}

.btn-white {
    background: var(--text-white);
    color: var(--primary-dark);
}

.btn-white:hover {
    background: var(--text-light);
    transform: translateY(-2px);
}

.btn-glass-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-glass-white:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-stars {
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--text-white);
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

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

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.badge-icon {
    color: var(--gold);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-white);
}

.title-gradient {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-glass);
}

/* Hero Visual / Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border-glass);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-title {
    font-size: 13px;
    color: var(--text-muted);
}

.mockup-content {
    padding: 32px;
}

.mockup-card {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.mockup-score {
    position: relative;
    width: 140px;
    height: 140px;
}

.score-ring {
    width: 100%;
    height: 100%;
}

.score-value {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-white);
}

.score-label {
    font-size: 12px;
    color: var(--text-muted);
}

.mockup-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
}

.metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.metric-icon.success {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.metric-icon.warning {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

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

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* =====================================================
   Logos Section
   ===================================================== */
.logos-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-glass);
}

.logos-title {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.logo-item:hover {
    opacity: 0.8;
}

/* =====================================================
   Section Styles
   ===================================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   Problem Section
   ===================================================== */
.problem-section {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

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

.problem-card {
    padding: 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.1);
}

.problem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-md);
    color: var(--error);
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

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

/* =====================================================
   Solution / Features Section
   ===================================================== */
.solution-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-bg);
    position: relative;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.feature-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 48px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.feature-icon-large {
    margin-bottom: 24px;
}

.feature-main-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.feature-main-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-light);
}

.feature-list svg {
    color: var(--success);
    flex-shrink: 0;
}

/* AI Animation */
.feature-main-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-animation {
    position: relative;
    width: 280px;
    height: 280px;
}

.ai-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
}

.ai-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: ring-rotate 10s linear infinite;
}

.ai-ring-1 {
    width: 120px;
    height: 120px;
    border-top-color: var(--primary);
}

.ai-ring-2 {
    width: 180px;
    height: 180px;
    border-right-color: var(--secondary);
    animation-direction: reverse;
    animation-duration: 15s;
}

.ai-ring-3 {
    width: 240px;
    height: 240px;
    border-bottom-color: var(--accent);
    animation-duration: 20s;
}

@keyframes ring-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.ai-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: particle-float 4s ease-in-out infinite;
}

.ai-particle-1 { top: 20%; left: 30%; animation-delay: 0s; }
.ai-particle-2 { top: 70%; left: 20%; animation-delay: 1s; background: var(--secondary); }
.ai-particle-3 { top: 30%; right: 20%; animation-delay: 2s; background: var(--accent); }
.ai-particle-4 { bottom: 20%; right: 30%; animation-delay: 3s; }

@keyframes particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    position: relative;
    padding: 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

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

.feature-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-tag.pro {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.feature-tag.free {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

/* =====================================================
   How It Works Section
   ===================================================== */
.how-it-works-section {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 24px;
    box-shadow: var(--shadow-glow);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-visual {
    margin-top: 24px;
}

.step-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    color: var(--primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.step-connector {
    flex-shrink: 0;
}

/* =====================================================
   Results Section
   ===================================================== */
.results-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.results-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.results-text {
    max-width: 400px;
}

.results-text .section-badge {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.results-text .section-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.results-text p {
    color: rgba(255, 255, 255, 0.8);
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.result-stat {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.result-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

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

/* =====================================================
   Comparison Section
   ===================================================== */
.comparison-section {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-glass);
}

.comparison-table th {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.2);
}

.comparison-table th.highlighted {
    background: rgba(99, 102, 241, 0.2);
}

.comparison-table td {
    font-size: 15px;
    color: var(--text-light);
}

.comparison-table td.highlighted {
    background: rgba(99, 102, 241, 0.05);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check {
    color: var(--success);
    font-size: 18px;
    font-weight: 700;
}

.cross {
    color: var(--text-muted);
    font-size: 18px;
}

/* =====================================================
   Pricing Section
   ===================================================== */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-bg);
    position: relative;
}

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

.toggle-label {
    font-size: 15px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.toggle-label.active {
    color: var(--text-white);
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 4px;
    bottom: 3px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: transform var(--transition-base);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(28px);
}

.save-badge {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-cards.pricing-cards-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(192, 38, 211, 0.2));
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-white);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-white);
}

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

.price-billing {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-glass);
}

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

.pricing-features svg {
    color: var(--success);
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Guarantee Box */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.guarantee-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    color: var(--success);
}

.guarantee-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.guarantee-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =====================================================
   Testimonials Section
   ===================================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

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

.testimonial-card {
    padding: 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
}

.author-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
}

.author-title {
    font-size: 13px;
    color: var(--text-muted);
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-bg);
}

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

.faq-item {
    margin-bottom: 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    text-align: left;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.1);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

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

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =====================================================
   Final CTA Section
   ===================================================== */
.final-cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
}

.footer-content {
    text-align: center;
    margin-bottom: 48px;
}

.footer-content .footer-brand {
    max-width: 400px;
    margin: 0 auto;
}

.footer-content .logo {
    justify-content: center;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 16px 0 0;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-glass);
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom .heart {
    color: var(--error);
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .feature-main {
        grid-template-columns: 1fr;
    }

    .feature-main-visual {
        order: -1;
    }

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

    .results-content {
        flex-direction: column;
        text-align: center;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

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

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 44px;
    }

    .section-title {
        font-size: 36px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .results-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .announcement-bar .container {
        flex-direction: column;
        gap: 8px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-main {
        padding: 32px;
    }

    .ai-animation {
        width: 200px;
        height: 200px;
    }

    .ai-ring-1 { width: 80px; height: 80px; }
    .ai-ring-2 { width: 120px; height: 120px; }
    .ai-ring-3 { width: 160px; height: 160px; }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .section-title {
        font-size: 28px;
    }

    .pricing-toggle {
        flex-wrap: wrap;
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Scroll animations will be handled by JavaScript */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   NEW STYLES - Marketing Optimized Landing
   ===================================================== */

/* Hero XL Button */
.btn-xlarge {
    padding: 20px 40px;
    font-size: 18px;
    flex-direction: column;
    gap: 4px;
}

.btn-subtext {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

/* Hero Trust Indicators */
.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trust-indicators span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-trust-indicators svg {
    color: var(--success);
}

.trust-divider {
    color: var(--border-glass) !important;
}

/* =====================================================
   Trust Bar Section
   ===================================================== */
.trust-bar-section {
    padding: 60px 0;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-glass);
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.trust-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 4px;
}

.trust-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 14px;
    color: var(--text-muted);
}

.compatible-logos {
    text-align: center;
}

.compatible-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* =====================================================
   FREE Features Section
   ===================================================== */
.free-features-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-bg);
}

.section-badge.badge-free {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--text-white);
    border: none;
}

/* Feature Tabs */
.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
}

.feature-tab:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--text-white);
}

.feature-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-white);
}

/* Tab Contents */
.feature-tab-contents {
    margin-bottom: 48px;
}

.feature-tab-content {
    display: none;
}

.feature-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

/* Features Grid Variants */
.features-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.features-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

/* Mini Feature Cards */
.feature-card-mini {
    position: relative;
    padding: 28px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.feature-card-mini:hover {
    transform: translateY(-4px);
    border-color: var(--success);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.feature-card-mini .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    color: var(--success);
}

.feature-card-mini h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.feature-card-mini p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.feature-card-mini .feature-tag {
    position: static;
    display: inline-block;
}

.feature-tag.free {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--text-white);
}

/* Features CTA */
.features-cta {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-glass);
}

.features-cta p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* =====================================================
   Installation Guide
   ===================================================== */
.install-guide {
    max-width: 600px;
    margin: 60px auto 0;
    padding: 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    text-align: center;
}

.install-guide h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
}

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.install-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
}

.install-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    flex-shrink: 0;
}

.install-step code {
    font-size: 14px;
    color: var(--text-light);
    background: none;
}

.install-note {
    font-size: 14px;
    color: var(--text-muted);
}

/* =====================================================
   Value Comparison Section
   ===================================================== */
.value-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.value-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.value-text .section-title {
    font-size: 32px;
}

.value-comparison {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.competitor {
    padding: 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    text-align: center;
}

.competitor-name {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.competitor-price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
}

.competitor-price.free {
    color: var(--success);
}

.competitor.featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border-color: var(--success);
    transform: scale(1.05);
}

.competitor-note {
    display: block;
    font-size: 12px;
    color: var(--success);
    margin-top: 8px;
}

/* =====================================================
   Pricing FREE Featured
   ===================================================== */
.pricing-card.free-featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
    border: 2px solid var(--success);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
    transform: scale(1.02);
}

.pricing-card.free-featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-badge.free-badge {
    background: linear-gradient(135deg, #10b981, #059669);
}

.pricing-card.free-featured .pricing-features svg {
    color: var(--success);
}

.base-feature {
    font-weight: 600;
    color: var(--text-white) !important;
}

/* Feature Meter */
.feature-meter-container {
    max-width: 600px;
    margin: 0 auto 48px;
}

.feature-meter {
    display: flex;
    height: 48px;
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
}

.meter-free {
    flex: 58;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.meter-pro {
    flex: 42;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

/* =====================================================
   Testimonials Enhanced
   ===================================================== */
.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 48px;
    padding: 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
}

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

.testimonial-stat .stat-number {
    font-size: 32px;
}

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

.verified-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--success);
}

.testimonial-result {
    margin-bottom: 16px;
}

.result-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--success);
}

.reviews-link {
    text-align: center;
    margin-top: 40px;
}

.link-external {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    transition: color var(--transition-fast);
}

.link-external:hover {
    color: var(--text-white);
}

/* Text White Helper */
.text-white {
    color: var(--text-white);
}

/* =====================================================
   Responsive Updates
   ===================================================== */
@media (max-width: 1200px) {
    .features-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .competitor.featured {
        transform: none;
    }
}

@media (max-width: 992px) {
    .feature-tabs {
        gap: 8px;
    }

    .feature-tab {
        padding: 10px 16px;
        font-size: 14px;
    }

    .trust-stats {
        gap: 32px;
    }

    .testimonials-stats {
        gap: 32px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-trust-indicators {
        justify-content: center;
    }

    .features-grid-four,
    .features-grid-three {
        grid-template-columns: 1fr;
    }

    .value-comparison {
        grid-template-columns: 1fr;
    }

    .feature-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .feature-tab {
        justify-content: center;
    }

    .trust-stats {
        flex-direction: column;
        gap: 24px;
    }

    .testimonials-stats {
        flex-direction: column;
        gap: 24px;
    }

    .pricing-card.free-featured {
        transform: none;
    }

    .pricing-card.free-featured:hover {
        transform: translateY(-4px);
    }

    .install-step {
        flex-direction: column;
        text-align: center;
    }
}
