/**
 * Landing Page Styles - DUOPOS
 * Static HTML version with animations
 */

:root {
    --landing-primary: #3f85ff;
    --landing-primary-dark: #2a6ad4;
    --landing-primary-light: #e8f1ff;
    --landing-secondary: #0ea5e9;
    --landing-accent: #06b6d4;
    --landing-text: #111827;
    --landing-text-secondary: #6b7280;
    --landing-text-muted: #9ca3af;
    --landing-border: #e5e7eb;
    --landing-bg: #ffffff;
    --landing-bg-alt: #f8fafc;
    --landing-bg-dark: #0f172a;
    --landing-success: #10b981;
    --landing-warning: #f59e0b;
    --landing-gradient: linear-gradient(135deg, #3f85ff 0%, #0ea5e9 100%);
    --landing-gradient-soft: linear-gradient(135deg, #e8f1ff 0%, #e0f2fe 100%);
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--landing-text);
    background: var(--landing-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-left {
    animation: fadeLeft 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for grid items */
.features-grid .scroll-animate:nth-child(1) { transition-delay: 0s; }
.features-grid .scroll-animate:nth-child(2) { transition-delay: 0.1s; }
.features-grid .scroll-animate:nth-child(3) { transition-delay: 0.2s; }
.features-grid .scroll-animate:nth-child(4) { transition-delay: 0.3s; }
.features-grid .scroll-animate:nth-child(5) { transition-delay: 0.4s; }
.features-grid .scroll-animate:nth-child(6) { transition-delay: 0.5s; }

.pricing-grid .scroll-animate:nth-child(1) { transition-delay: 0s; }
.pricing-grid .scroll-animate:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .scroll-animate:nth-child(3) { transition-delay: 0.2s; }
.pricing-grid .scroll-animate:nth-child(4) { transition-delay: 0.3s; }

.testimonials-grid .scroll-animate:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .scroll-animate:nth-child(2) { transition-delay: 0.15s; }
.testimonials-grid .scroll-animate:nth-child(3) { transition-delay: 0.3s; }

.steps-container .scroll-animate:nth-child(1) { transition-delay: 0s; }
.steps-container .scroll-animate:nth-child(2) { transition-delay: 0.1s; }
.steps-container .scroll-animate:nth-child(3) { transition-delay: 0.2s; }
.steps-container .scroll-animate:nth-child(4) { transition-delay: 0.3s; }
.steps-container .scroll-animate:nth-child(5) { transition-delay: 0.4s; }

/* ===============================
   Navigation
   =============================== */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.landing-nav.scrolled {
    border-bottom-color: var(--landing-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo img {
    height: 32px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

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

.nav-links a {
    color: var(--landing-text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--landing-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--landing-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-btn-secondary {
    color: var(--landing-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-btn-secondary:hover {
    background: var(--landing-bg-alt);
    color: var(--landing-text);
}

.nav-btn-primary {
    background: var(--landing-gradient);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(63, 133, 255, 0.25);
}

.nav-btn-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(63, 133, 255, 0.35);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--landing-text);
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s;
}

.nav-mobile-toggle:hover {
    transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 24px;
    border-bottom: 1px solid var(--landing-border);
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    animation: fadeUp 0.3s ease-out;
}

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

.mobile-menu a {
    color: var(--landing-text);
    text-decoration: none;
    font-size: 16px;
    padding: 12px 0;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--landing-primary);
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid var(--landing-border);
    margin: 8px 0;
}

.mobile-menu-cta {
    background: var(--landing-gradient);
    color: white !important;
    text-align: center;
    border-radius: 8px;
    padding: 14px !important;
}

/* ===============================
   Hero Section
   =============================== */
.hero {
    padding: 140px 0 80px;
    background: var(--landing-gradient-soft);
    position: relative;
    overflow: hidden;
}

/* Animated Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    transition: transform 0.3s ease-out;
}

.hero-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(63, 133, 255, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-bg-shapes .shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(63, 133, 255, 0.1) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation: float 10s ease-in-out infinite;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--landing-primary);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(63, 133, 255, 0.15);
    border: 1px solid var(--landing-primary-light);
}

.hero-badge i {
    font-size: 16px;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 20px 0;
    color: var(--landing-text);
}

.hero-highlight {
    background: var(--landing-gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease infinite;
}

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

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--landing-gradient);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(63, 133, 255, 0.35);
    position: relative;
    overflow: hidden;
}

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

.hero-btn-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(63, 133, 255, 0.45);
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary i {
    animation: bounce 2s infinite;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--landing-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 10px;
    border: 1px solid var(--landing-border);
    transition: all 0.3s;
}

.hero-btn-secondary:hover {
    background: white;
    color: var(--landing-primary);
    border-color: var(--landing-primary);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

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

.hero-trust-item i {
    color: var(--landing-success);
    font-size: 18px;
}

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

.hero-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    transition: transform 0.3s ease;
}

.hero-mockup:hover {
    transform: translateY(-10px);
}

.mockup-header {
    background: #f3f4f6;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    transition: transform 0.2s;
}

.hero-mockup:hover .mockup-dots span:first-child { background: #ef4444; transform: scale(1.1); }
.hero-mockup:hover .mockup-dots span:nth-child(2) { background: #f59e0b; transform: scale(1.1); }
.hero-mockup:hover .mockup-dots span:last-child { background: #22c55e; transform: scale(1.1); }

.mockup-title {
    font-size: 12px;
    color: var(--landing-text-secondary);
}

.mockup-content {
    display: flex;
    min-height: 300px;
}

.mockup-sidebar {
    width: 60px;
    background: #1e293b;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-menu-item {
    height: 32px;
    background: #334155;
    border-radius: 6px;
    transition: all 0.3s;
}

.mockup-menu-item.active {
    background: var(--landing-primary);
}

.mockup-main {
    flex: 1;
    padding: 20px;
    background: #f8fafc;
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.mockup-card {
    background: white;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-mockup:hover .mockup-card {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mockup-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 18px;
}

.mockup-card.blue .mockup-card-icon {
    background: var(--landing-primary-light);
    color: var(--landing-primary);
}

.mockup-card.green .mockup-card-icon {
    background: #dcfce7;
    color: #16a34a;
}

.mockup-card.orange .mockup-card-icon {
    background: #fef3c7;
    color: #d97706;
}

.mockup-card-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--landing-text);
}

.mockup-card-label {
    font-size: 11px;
    color: var(--landing-text-muted);
}

.mockup-chart {
    background: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chart-bar {
    flex: 1;
    background: var(--landing-gradient);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    transition: height 0.5s ease, transform 0.3s;
}

.hero-mockup:hover .chart-bar {
    transform: scaleY(1.1);
    transform-origin: bottom;
}

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

.section-badge {
    display: inline-block;
    background: var(--landing-gradient);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--landing-text);
}

.section-header p {
    font-size: 17px;
    color: var(--landing-text-secondary);
    margin: 0;
}

/* ===============================
   Features Section
   =============================== */
.features {
    padding: 100px 0;
    background: var(--landing-bg);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--landing-primary-light), transparent);
}

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

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
    border: 1px solid var(--landing-border);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--landing-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(63, 133, 255, 0.15);
    border-color: var(--landing-primary-light);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--landing-gradient-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 28px;
    background: var(--landing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* ===============================
   How it Works Section
   =============================== */
.how-it-works {
    padding: 100px 0;
    background: var(--landing-gradient-soft);
    position: relative;
}

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

.step-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    flex: 1;
    max-width: 280px;
    box-shadow: 0 8px 24px rgba(63, 133, 255, 0.1);
    border: 1px solid rgba(63, 133, 255, 0.1);
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(63, 133, 255, 0.2);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--landing-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(63, 133, 255, 0.3);
    transition: transform 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.15);
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--landing-text);
}

.step-content p {
    font-size: 14px;
    color: var(--landing-text-secondary);
    margin: 0;
}

.step-arrow {
    color: var(--landing-primary);
    font-size: 28px;
    animation: bounce 2s infinite;
}

/* ===============================
   Pricing Section
   =============================== */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.pricing-card {
    background: white;
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
    border-color: var(--landing-primary);
    box-shadow: 0 8px 24px rgba(63, 133, 255, 0.15);
}

.pricing-card.popular:hover {
    box-shadow: 0 24px 48px rgba(63, 133, 255, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--landing-gradient);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(63, 133, 255, 0.3);
    animation: pulse 2s infinite;
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--landing-text);
}

.pricing-desc {
    font-size: 14px;
    color: var(--landing-text-secondary);
    margin: 0;
}

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

.price-value {
    font-size: 36px;
    font-weight: 700;
    background: var(--landing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 14px;
    color: var(--landing-text-secondary);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

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

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

.pricing-features li i {
    color: var(--landing-success);
    font-size: 18px;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.pricing-btn.primary {
    background: var(--landing-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(63, 133, 255, 0.3);
}

.pricing-btn.primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(63, 133, 255, 0.4);
}

.pricing-btn.secondary {
    background: white;
    color: var(--landing-primary);
    border: 1px solid var(--landing-primary-light);
}

.pricing-btn.secondary:hover {
    background: var(--landing-primary-light);
    color: var(--landing-primary);
    transform: translateY(-2px);
}

/* ===============================
   Testimonials Section
   =============================== */
.testimonials {
    padding: 100px 0;
    background: var(--landing-bg-alt);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--landing-primary-light), transparent);
}

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

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--landing-border);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(63, 133, 255, 0.12);
    border-color: var(--landing-primary-light);
}

.testimonial-quote {
    color: var(--landing-primary);
    font-size: 40px;
    margin-bottom: 8px;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.testimonial-card:hover .testimonial-quote {
    opacity: 0.6;
}

.testimonial-content p {
    font-size: 15px;
    color: var(--landing-text);
    line-height: 1.7;
    margin: 0 0 24px 0;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--landing-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 15px;
    color: var(--landing-text);
}

.author-info span {
    font-size: 13px;
    color: var(--landing-text-secondary);
}

/* ===============================
   CTA Section
   =============================== */
.cta {
    padding: 100px 0;
    background: var(--landing-gradient);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: float 8s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
}

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

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

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--landing-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 10px;
    transition: all 0.3s;
}

.cta-btn-primary:hover {
    background: var(--landing-bg-alt);
    color: var(--landing-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ===============================
   Contact Section
   =============================== */
.contact {
    padding: 100px 0;
    background: var(--landing-bg-alt);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 16px 0 12px 0;
    color: var(--landing-text);
}

.contact-info > p {
    font-size: 16px;
    color: var(--landing-text-secondary);
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--landing-gradient-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.contact-item:hover .contact-item-icon {
    transform: scale(1.1);
}

.contact-item-icon i {
    font-size: 22px;
    background: var(--landing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item-text {
    display: flex;
    flex-direction: column;
}

.contact-item-text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--landing-text);
    margin-bottom: 2px;
}

.contact-item-text span {
    font-size: 14px;
    color: var(--landing-text-secondary);
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(63, 133, 255, 0.1);
    border: 1px solid var(--landing-primary-light);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(63, 133, 255, 0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--landing-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--landing-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--landing-primary);
    box-shadow: 0 0 0 4px rgba(63, 133, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--landing-text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--landing-gradient);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(63, 133, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(63, 133, 255, 0.4);
}

.contact-submit:hover::before {
    left: 100%;
}

.contact-submit i {
    font-size: 18px;
}

/* ===============================
   Form Messages
   =============================== */
.form-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    animation: fadeUp 0.3s ease-out;
}

.form-message i {
    font-size: 20px;
}

.form-message-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* ===============================
   Footer
   =============================== */
.footer {
    background: var(--landing-bg-dark);
    padding: 80px 0 32px;
}

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

.footer-logo {
    height: 32px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0 0 20px 0;
    max-width: 280px;
    line-height: 1.6;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--landing-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-social a i {
    font-size: 20px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===============================
   Responsive Design
   =============================== */
@media (max-width: 1024px) {
    .hero .landing-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero h1 {
        font-size: 42px;
    }

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

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

    .hero-visual {
        order: -1;
    }

    .hero-mockup {
        max-width: 480px;
    }

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

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

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

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

    .hero h1 {
        font-size: 32px;
    }

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

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

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .section-header h2 {
        font-size: 28px;
    }

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

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

    .step-card {
        max-width: 100%;
    }

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

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

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

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

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

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

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

    .mockup-card-value {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .landing-container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .feature-card,
    .pricing-card,
    .testimonial-card,
    .step-card {
        padding: 24px;
    }
}

/* ===============================
   Social Proof Section
   =============================== */
.social-proof {
    padding: 48px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f1ff 100%);
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
}

.social-proof .landing-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.social-proof-content {
    text-align: center;
    width: 100%;
}

.social-proof-title {
    font-size: 16px;
    color: var(--landing-text-secondary);
    font-weight: 500;
    margin: 0 0 24px 0;
}

.social-proof-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.proof-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 1px solid var(--landing-border);
    border-radius: 50px;
    font-size: 14px;
    color: var(--landing-text);
    font-weight: 500;
    transition: all 0.3s ease;
}

.proof-badge i {
    font-size: 20px;
    color: var(--landing-primary);
}

.proof-badge:hover {
    border-color: var(--landing-primary);
    background: var(--landing-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 133, 255, 0.15);
}

.social-proof-metrics {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.metric-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.metric-item i {
    font-size: 24px;
    color: var(--landing-success);
}

.metric-item span {
    font-size: 14px;
    color: var(--landing-text-secondary);
}

.metric-item b {
    color: var(--landing-text);
    font-weight: 600;
}

/* ===============================
   Hero Tertiary Button
   =============================== */
.hero-btn-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--landing-border);
    color: var(--landing-text-secondary);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn-tertiary:hover {
    border-color: var(--landing-primary);
    color: var(--landing-primary);
    background: var(--landing-primary-light);
}

/* ===============================
   Benefits Section
   =============================== */
.benefits {
    padding: 80px 0;
    background: var(--landing-bg-alt);
}

.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.benefit-row:last-child {
    margin-bottom: 0;
}

.benefit-row.reverse {
    direction: rtl;
}

.benefit-row.reverse > * {
    direction: ltr;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--landing-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 4px;
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-content h3 {
    font-size: 28px;
    color: var(--landing-text);
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-content p {
    font-size: 16px;
    color: var(--landing-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.benefit-list i {
    font-size: 20px;
    color: var(--landing-success);
    flex-shrink: 0;
}

.benefit-image {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.benefit-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.benefit-img:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.mockup-preview {
    width: 100%;
    height: 400px;
    background: var(--landing-gradient);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 20px 60px rgba(63, 133, 255, 0.3);
    transition: all 0.3s ease;
}

.mockup-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(63, 133, 255, 0.4);
}

.mockup-preview i {
    font-size: 80px;
    color: white;
    opacity: 0.9;
}

.mockup-preview span {
    font-size: 20px;
    color: white;
    font-weight: 600;
}

.mockup-preview.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.mockup-preview.green:hover {
    box-shadow: 0 30px 80px rgba(16, 185, 129, 0.4);
}

.mockup-preview.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.mockup-preview.purple:hover {
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.4);
}

.mockup-preview.orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.3);
}

.mockup-preview.orange:hover {
    box-shadow: 0 30px 80px rgba(245, 158, 11, 0.4);
}

/* ===============================
   Pricing Enhancements
   =============================== */
.price-clp {
    display: block;
    font-size: 14px;
    color: var(--landing-text-muted);
    margin-top: 4px;
}

.pricing-for {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--landing-border);
    font-size: 13px;
    color: var(--landing-text-secondary);
    text-align: center;
}

.pricing-for b {
    color: var(--landing-text);
    display: block;
    margin-top: 4px;
}

.pricing-risk {
    text-align: center;
    margin-top: 32px;
    padding: 16px;
    background: var(--landing-success);
    color: white;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
}

/* ===============================
   FAQ Section
   =============================== */
.faq {
    padding: 80px 0;
    background: var(--landing-bg);
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--landing-text);
}

.faq .section-header p {
    text-align: center;
    color: var(--landing-text-secondary);
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--landing-primary);
    box-shadow: 0 4px 12px rgba(63, 133, 255, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    color: var(--landing-text);
    font-size: 16px;
}

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

.faq-question i {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: var(--landing-primary);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    color: var(--landing-text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

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

.faq-list .faq-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    line-height: 1.6;
}

.faq-list .faq-item:hover {
    box-shadow: 0 4px 12px rgba(63, 133, 255, 0.15);
    transform: translateY(-2px);
}

.faq-list .faq-item b {
    display: block;
    color: var(--landing-text);
    font-size: 16px;
    margin-bottom: 8px;
}

/* ===============================
   CTA Trust
   =============================== */
.cta-trust {
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* ===============================
   Contact Post-Submit
   =============================== */
.contact-post-submit {
    margin-top: 16px;
    padding: 12px;
    background: var(--landing-success);
    color: white;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

/* ===============================
   Static Pages (About, Terms, Privacy)
   =============================== */
.page-header {
    padding: 120px 0 60px;
    background: var(--landing-gradient);
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    margin: 0 0 16px 0;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.page-content {
    padding: 80px 0;
    background: var(--landing-bg);
}

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

.content-wrapper h2 {
    font-size: 32px;
    color: var(--landing-text);
    margin: 48px 0 24px 0;
    font-weight: 700;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 24px;
    color: var(--landing-text);
    margin: 32px 0 16px 0;
    font-weight: 600;
}

.content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--landing-text-secondary);
    margin: 0 0 16px 0;
}

.content-wrapper ul.feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.content-wrapper ul.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--landing-text-secondary);
}

.content-wrapper ul.feature-list li i {
    color: var(--landing-primary);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.content-wrapper ul.feature-list li strong {
    color: var(--landing-text);
}

.content-wrapper a {
    color: var(--landing-primary);
    text-decoration: none;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

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

.value-card {
    padding: 32px 24px;
    background: var(--landing-bg-alt);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 48px;
    color: var(--landing-primary);
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: var(--landing-text);
}

.value-card p {
    font-size: 14px;
    color: var(--landing-text-secondary);
    margin: 0;
}

/* About page layout */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    margin-bottom: 64px;
}

.about-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 24px;
}

.about-stats {
    background: var(--landing-gradient);
    padding: 32px 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ===============================
   Responsive Adjustments
   =============================== */
@media (max-width: 768px) {
    .social-proof {
        padding: 32px 0;
    }

    .social-proof-title {
        font-size: 14px;
    }

    .social-proof-badges {
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
        margin: 0 auto;
    }

    .proof-badge {
        justify-content: center;
    }

    .social-proof-metrics {
        flex-direction: column;
        max-width: 300px;
        gap: 12px;
    }

    .metric-item {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btn-primary,
    .hero-btn-secondary,
    .hero-btn-tertiary {
        width: 100%;
        justify-content: center;
    }

    .faq h2 {
        font-size: 28px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Benefits responsive */
    .benefits {
        padding: 48px 0;
    }

    .benefit-row {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }

    .benefit-row.reverse {
        direction: ltr;
    }

    .benefit-content h3 {
        font-size: 24px;
    }

    .benefit-image {
        min-height: 250px;
    }

    .benefit-img {
        height: 250px;
    }

    .mockup-preview {
        height: 300px;
    }

    .mockup-preview i {
        font-size: 60px;
    }

    .mockup-preview span {
        font-size: 18px;
    }

    /* Static pages responsive */
    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .page-content {
        padding: 48px 0;
    }

    .content-wrapper h2 {
        font-size: 24px;
        margin: 32px 0 16px 0;
    }

    .content-wrapper h3 {
        font-size: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }

    .about-sidebar {
        position: relative;
        top: 0;
    }

    .about-image {
        height: 300px;
    }
}
