/* Modern Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Color Palette */
    --primary-gradient: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    --secondary-gradient: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    --blue-gradient: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --accent: #0284c7;
    --success: #43e97b;
    --warning: #ffd93d;
    
    --text-dark: #1a1a1a;
    --text-medium: #333333;
    --text-gray: #555555;
    --text-light: #666666;
    --text-lighter: #999999;
    
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #e9ecef;
    --bg-dark: #1a1a1a;
    
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.4);
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--border-light);
    padding: 18px 0;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 14px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

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

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

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

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

.cta-nav {
    padding: 10px 24px !important;
    font-size: 14px !important;
}

/* CTA Buttons - Enhanced Contrast */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 17px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
    opacity: 0;
    transition: var(--transition);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.6);
}

.cta-button > * {
    position: relative;
    z-index: 1;
}

.cta-primary {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
}

.cta-primary::before {
    background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
}

.cta-primary:hover {
    color: white;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.6);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cta-outline {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cta-outline::before {
    background: var(--bg-light);
}

.cta-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.2);
}

.cta-large {
    padding: 20px 48px;
    font-size: 18px;
    border-radius: var(--radius-lg);
    font-weight: 700;
}

.cta-hero {
    padding: 22px 52px;
    font-size: 18px;
    font-weight: 800;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 20px 120px;
    text-align: center;
    background: var(--primary-gradient);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: #38bdf8;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #0ea5e9;
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #0284c7;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: slideDown 0.8s ease-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 16px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-headline {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 28px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    animation: slideUp 0.8s ease-out 0.2s both;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    color: #0ea5e9;
}

.hero-subheadline {
    font-size: 1.35rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.hero-trial-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 16px;
    font-weight: 500;
    animation: slideUp 0.8s ease-out 0.7s both;
}


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



/* Section Styles */
section {
    padding: var(--section-padding) var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(2, 132, 199, 0.12) 100%);
    color: var(--primary-dark);
    border: 2px solid rgba(14, 165, 233, 0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.gradient-badge {
    background: var(--primary-gradient);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.light-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.light-title {
    color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.light-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Problem Section */
.problem {
    background: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

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

.problem-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.problem-card:hover .problem-icon-wrapper {
    background: var(--primary-gradient);
}

.problem-icon {
    font-size: 2.5rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.problem-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.problem-impact {
    padding: 12px 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    color: #c53030;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.problem-footer {
    text-align: center;
    margin-top: 60px;
}

.problem-empathy {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 20px;
    font-style: italic;
    line-height: 1.7;
}

.problem-solution {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-top: 30px;
    animation: bounce 2s ease-in-out infinite;
}

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

/* Solution Section */
.solution {
    background: white;
}

.transformation-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    margin-bottom: 60px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

.transformation-header h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.transformation-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.transformation-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
}

.transformation-card.before {
    border-left: 4px solid #f56565;
}

.transformation-card.after {
    border-left: 4px solid #48bb78;
}

.transformation-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.before .transformation-label {
    background: #fed7d7;
    color: #c53030;
}

.after .transformation-label {
    background: #c6f6d5;
    color: #2f855a;
}

.transformation-list {
    list-style: none;
}

.transformation-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

.icon-x {
    color: #f56565;
    font-weight: 700;
    flex-shrink: 0;
}

.icon-check {
    color: #48bb78;
    font-weight: 700;
    flex-shrink: 0;
}

.transformation-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.transformation-arrow svg {
    width: 48px;
    height: 48px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.benefit-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.benefit-card:hover .benefit-link {
    gap: 8px;
    color: var(--primary-dark);
}

.solution-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-note {
    margin-top: 20px;
    color: var(--text-light);
    font-size: 14px;
}

/* Social Proof Section */
.social-proof {
    background: var(--bg-light);
}


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

.trust-title {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.trust-badge .badge-icon {
    font-size: 2rem;
}

.badge-text {
    text-align: left;
}

.badge-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 16px;
}

.badge-desc {
    font-size: 14px;
    color: var(--text-gray);
}

/* Features Section */
.features {
    background: white;
}

.features-showcase {
    margin-bottom: 60px;
}

.features-nav {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.feature-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.feature-tab.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35);
}

.tab-icon {
    font-size: 20px;
}

.features-content {
    position: relative;
    min-height: 400px;
}

.feature-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-panel.active {
    display: grid;
    animation: fadeInUp 0.5s ease-out;
}

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

.feature-demo {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.demo-placeholder {
    text-align: center;
}

.demo-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.demo-placeholder p {
    color: var(--text-light);
    font-weight: 600;
}

.feature-details h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.feature-details > p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.features-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.compact-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.compact-feature:hover {
    background: var(--bg-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.compact-icon {
    font-size: 1.75rem;
}

.locked-feature {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.locked-feature:hover {
    transform: none;
    background: white;
    border-color: var(--border-color);
}

.coming-soon-badge {
    display: inline-block;
    font-size: 11px;
    padding: 3px 8px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 6px;
}

.compact-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.features-cta {
    text-align: center;
    margin-top: 60px;
}

/* Pricing Section */
.pricing {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 50px 45px;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
    width: 100%;
    max-width: 500px;
}

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

.featured-plan {
    border-color: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.featured-plan:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(238, 90, 111, 0.4);
}

.pricing-note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ff6b6b;
}

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

.pricing-plan {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--text-light);
    font-size: 15px;
}

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

.price-amount-free {
    font-size: 4rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-then {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--text-gray);
}

.pricing-then span:first-child {
    margin-right: 8px;
}

.price-after-trial {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

.pricing-trial-badge {
    text-align: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(2, 132, 199, 0.15) 100%);
    border: 2px solid rgba(14, 165, 233, 0.3);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.price-currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-gray);
}

.price-amount {
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

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

.price-text {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 15px;
}

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

.pricing-guarantee {
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 45px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.guarantee-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.guarantee-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.guarantee-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.pricing-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 15px;
}

.feature-check {
    color: var(--success);
    font-weight: 700;
}

/* Demo Section */
.demo-section {
    background: var(--bg-light);
}

.demo-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-video {
    background: white;
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--border-color);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.video-placeholder:hover {
    transform: scale(1.02);
    border-color: var(--primary);
}

.play-button {
    transition: var(--transition);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.video-placeholder p {
    font-weight: 600;
    color: var(--text-gray);
}

.demo-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.demo-info > p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.demo-highlights {
    list-style: none;
    margin-bottom: 40px;
}

.demo-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 1.05rem;
}

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

/* FAQ Section */
.faq {
    background: white;
}

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

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

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px;
    cursor: pointer;
    user-select: none;
    background: var(--bg-light);
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

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

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

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

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

/* Final CTA Section */
.final-cta {
    position: relative;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
}


.cta-headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 28px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-subheadline {
    font-size: 1.35rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-guarantees {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.guarantee-icon {
    color: var(--success);
    font-weight: 700;
}

/* Footer */
.footer {
    background: #0f0f0f;
    color: white;
    padding: 60px var(--container-padding) 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
    font-size: 15px;
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.footer-social span {
    color: rgba(255, 255, 255, 0.6);
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    color: white;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
    }
    
    .feature-panel {
        grid-template-columns: 1fr;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-actions {
        gap: 16px;
    }
    
    .nav-link {
        display: none;
    }
    
    .hero {
        padding: 140px 20px 80px;
    }
    
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    
    .features-nav {
        flex-direction: column;
    }
    
    .features-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        flex-direction: column;
    }
    
    .featured-plan {
        transform: scale(1);
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-headline {
        font-size: 2.25rem;
    }
    
    .cta-guarantees {
        flex-direction: column;
        gap: 16px;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .cta-large {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .transformation-box {
        padding: 30px 20px;
    }
    
    .transformation-card {
        padding: 24px;
    }
}

/* Image Styles - Ready for actual images */
.demo-screenshot {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.demo-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.video-thumbnail:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

/* Logo image styles */
.navbar img,
.footer-logo img {
    display: block;
    border-radius: 6px;
}

.logo img {
    object-fit: contain;
}

.footer-logo img {
    object-fit: contain;
}


/* Print Styles */
@media print {
    .navbar,
    .floating-cta {
        display: none;
    }
}