/* ========================================
   MediDesk Marketing Website - CSS
   ======================================== */

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

:root {
    /* Colors */
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --secondary: #8b5cf6;
    --orange: #FF6B35;
    --orange-dark: #f97316;
    --orange-light: #fb923c;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-sans);
    color: var(--gray-900);
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--gray-600);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border-color: var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* === BADGES === */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-lg);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: var(--spacing-md) 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gray-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s ease;
}

/* === HERO SECTION === */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-text h1 {
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-2xl);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* === MOCKUP === */
.mockup-container {
    perspective: 1000px;
}

.mockup-screen {
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.mockup-screen:hover {
    transform: rotateY(-10deg) rotateX(3deg);
}

.mockup-header {
    display: flex;
    gap: 6px;
    padding: var(--spacing-md);
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.mockup-content {
    padding: var(--spacing-xl);
    background: white;
}

.silhouette-preview {
    display: flex;
    justify-content: center;
}

/* === LOGOS SECTION === */
.logos-section {
    padding: var(--spacing-3xl) 0;
    background: white;
    text-align: center;
}

.logos-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xl);
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-3xl);
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-400);
}

/* === FEATURES SECTION === */
.features-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.section-header p {
    font-size: 1.125rem;
    margin-top: var(--spacing-md);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: var(--spacing-lg);
}

.feature-card h3 {
    margin-bottom: var(--spacing-md);
}

.feature-card p {
    margin-bottom: var(--spacing-lg);
}

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

.feature-list li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* === SECURITY SECTION === */
.security-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.security-text h2 {
    margin-bottom: var(--spacing-lg);
}

.security-text > p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-2xl);
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.security-item {
    display: flex;
    gap: var(--spacing-md);
}

.security-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.security-item h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--gray-900);
}

.security-item p {
    font-size: 0.9375rem;
}

.security-badge-container {
    display: flex;
    gap: var(--spacing-2xl);
    justify-content: center;
}

.security-badge {
    text-align: center;
}

.security-badge p {
    margin-top: var(--spacing-md);
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.3;
}

/* === PRICING SECTION === */
.pricing-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.pricing-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card-popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.pricing-subtitle {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-lg);
}

.pricing-price {
    margin-bottom: var(--spacing-xl);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
}

.period {
    font-size: 1.125rem;
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.pricing-features li svg {
    flex-shrink: 0;
}

.pricing-features .disabled {
    color: var(--gray-400);
}

.pricing-footer {
    text-align: center;
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.pricing-footer p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* === CTA SECTION === */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-2xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.cta-footnote {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

/* === FAQ SECTION === */
.faq-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--spacing-xl);
}

.faq-item {
    padding: var(--spacing-xl);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
}

.faq-item p {
    line-height: 1.7;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
}

.contact-info h2 {
    margin-bottom: var(--spacing-lg);
}

.contact-info > p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-2xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-method {
    display: flex;
    gap: var(--spacing-md);
}

.contact-method svg {
    flex-shrink: 0;
    color: var(--primary);
}

.contact-method h4 {
    margin-bottom: var(--spacing-xs);
}

.contact-method a {
    color: var(--gray-600);
    font-weight: 500;
}

/* === FORMS === */
.contact-form {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-footnote {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: var(--spacing-md);
}

/* === FOOTER === */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

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

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-col ul li a {
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-badges {
    display: flex;
    gap: var(--spacing-md);
}

.badge-footer {
    padding: 0.375rem 0.75rem;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-content,
    .security-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-popular {
        transform: scale(1);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
}

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

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

/* === NEW SECTIONS - FREE & OPEN SOURCE MODEL === */

/* Badge Variants */
.badge-free {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-weight: 700;
}

.badge-pro {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: white;
    font-weight: 700;
}

.badge-beta {
    background: linear-gradient(135deg, var(--secondary) 0%, #7c3aed 100%);
    color: white;
    font-weight: 700;
}

/* Hero Secondary Text */
.hero-secondary-text {
    font-size: 1rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

/* Problem/Solution Section */
.problem-solution-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.problem-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.problem-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
}

.solution-box {
    text-align: center;
    padding: var(--spacing-3xl);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-2xl);
    color: white;
}

.solution-box h2 {
    color: white;
    margin-bottom: var(--spacing-lg);
}

.solution-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
}

/* Free Features Section */
.features-free {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.feature-highlight {
    border: 3px solid #10b981;
    position: relative;
}

.feature-highlight::before {
    content: "⭐ Unique sur le marché";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
}

.free-cta-box {
    text-align: center;
    padding: var(--spacing-3xl);
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    margin-top: var(--spacing-3xl);
    border: 3px solid #10b981;
}

.free-cta-box h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-900);
}

.free-cta-box p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

/* Pro Modules Section */
.modules-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.module-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
    position: relative;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.module-popular {
    border: 3px solid var(--orange);
    transform: scale(1.05);
}

.module-ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 700;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

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

.module-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
}

.module-card h3 {
    margin-bottom: var(--spacing-md);
}

.module-features {
    list-style: none;
    margin: var(--spacing-lg) 0;
}

.module-features li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.module-value {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    color: var(--orange-dark);
}

.modules-note {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--orange);
}

.modules-note p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Pricing Updates */
.pricing-featured {
    border: 3px solid #10b981;
    transform: scale(1.08);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.pricing-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: var(--spacing-md);
}

.price-original {
    display: block;
    font-size: 1rem;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-top: 0.25rem;
}

/* Beta Section */
.beta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

.beta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.beta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.beta-content > p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}

.beta-benefits {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin-bottom: var(--spacing-2xl);
}

.beta-benefits li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: var(--gray-700);
}

/* Contact Form Updates */
.contact-form-section {
    margin-top: var(--spacing-3xl);
    display: flex;
    justify-content: center;
}

.contact-form-section .contact-form {
    max-width: 700px;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-success {
    text-align: center;
    padding: var(--spacing-2xl);
    background: #d1fae5;
    border-radius: var(--radius-lg);
    border: 2px solid #10b981;
}

.form-success h4 {
    color: #059669;
    margin-bottom: var(--spacing-md);
}

.form-success p {
    color: #047857;
}

.form-error {
    text-align: center;
    padding: var(--spacing-2xl);
    background: #fee2e2;
    border-radius: var(--radius-lg);
    border: 2px solid #ef4444;
}

.form-error h4 {
    color: #dc2626;
    margin-bottom: var(--spacing-md);
}

.form-error p {
    color: #b91c1c;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .module-popular {
        transform: scale(1);
    }
    
    .pricing-featured {
        transform: scale(1);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .feature-highlight::before {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
}
