/* VetOne.AI - Professional Corporate Design */

/* ===== ROOT VARIABLES ===== */
:root {
    /* Pure Black & White */
    --bg-primary: #000000;
    --bg-secondary: #000000;
    --bg-card: #000000;

    /* Corporate Colors - Precise & Professional */
    --accent-cyan: #00D9FF;
    --accent-cyan-dim: #008599;
    --white: #FFFFFF;
    --primary: var(--accent-cyan);

    /* Professional Grayscale */
    --gray-100: #FFFFFF;
    --gray-200: #E6E6E6;
    --gray-300: #CCCCCC;
    --gray-400: #999999;
    --gray-500: #666666;
    --gray-600: #333333;

    /* Typography - High Contrast */
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-tertiary: #999999;

    /* Precise Spacing - Grid Based */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-8: 64px;
    --space-10: 80px;
    --space-12: 96px;
    --space-16: 128px;

    /* No Shadows - Clean Borders Only */
    --border: 1px solid var(--gray-600);
    --border-accent: 2px solid var(--accent-cyan);
    --border-thin: 1px solid var(--gray-500);

    /* Sharp Corners - No Radius */
    --radius: 0px;

    /* Precise Transitions */
    --transition: 200ms ease-out;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: #000000;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY - PROFESSIONAL & PRECISE ===== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    margin: 0;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* No Gradients - Solid Corporate Colors */
.gradient-text {
    color: var(--accent-cyan);
}

.text-accent {
    color: var(--accent-cyan);
}

/* ===== CONTAINERS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.container-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.container-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

/* ===== NAVIGATION ===== */
/* ===== NAVIGATION - CLEAN & PROFESSIONAL ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #000000;
    border-bottom: var(--border);
    padding: var(--space-3) 0;
}

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

.logo img {
    height: 60px;
    width: auto;
    transition: transform var(--transition-base);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-menu a:not(.btn-nav):hover {
    color: var(--accent-cyan);
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: width var(--transition-base);
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    padding: var(--space-2) var(--space-6);
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: var(--space-24) 0 var(--space-16);
    overflow: hidden;
    background: transparent;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 100%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.container-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    margin-bottom: var(--space-6);
}

.badge-gradient {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    margin-bottom: var(--space-6);
    font-weight: 800;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--space-8);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

/* ===== BUTTONS - CLEAN & PROFESSIONAL ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: var(--border);
    background: transparent;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-primary-gradient,
.btn-primary {
    background: var(--accent-cyan);
    color: #000000;
    border: none;
}

.btn-primary-gradient:hover,
.btn-primary:hover {
    background: #FFFFFF;
    color: #000000;
}

.btn-secondary-modern,
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: var(--border);
}

.btn-secondary-modern:hover,
.btn-secondary:hover {
    background: var(--text-primary);
    color: #000000;
    border-color: var(--text-primary);
}

.hero-trust {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gray-600);
    font-size: 0.9rem;
}

.trust-item svg {
    flex-shrink: 0;
}

/* ===== APP STORE BADGES ===== */
.app-store-badges {
    margin-top: var(--space-6);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
}

.app-store-badges .badge-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-1) var(--space-3);
    background: linear-gradient(135deg, rgba(160, 107, 232, 0.1), rgba(74, 144, 226, 0.1));
    border-radius: var(--radius-full);
    border: 1px solid rgba(160, 107, 232, 0.2);
}

.store-badges {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.store-badge {
    display: inline-block;
    transition: transform var(--transition-base), opacity var(--transition-base);
    opacity: 0.9;
}

.store-badge:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.store-badge img {
    height: 40px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .app-store-badges {
        align-items: center;
        text-align: center;
    }

    .store-badges {
        justify-content: center;
    }

    .store-badge img {
        height: 36px;
    }
}

/* ===== FLOATING CARDS (Hero Visual) ===== */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    box-shadow: 0 0 40px rgba(49, 242, 254, 0.15), 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: floatCard 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.card-1 {
    top: 30px;
    right: 40px;
    width: 300px;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: 30px;
    width: 280px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 40px;
    right: 50px;
    width: 290px;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(1deg); }
    50% { transform: translateY(-8px) rotate(-0.5deg); }
    75% { transform: translateY(-15px) rotate(0.5deg); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.card-icon {
    font-size: 1.5rem;
}

.card-status {
    font-size: 0.75rem;
    color: var(--cyan-bright);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(49, 242, 254, 0.5);
}

.card-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.card-content {
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: var(--space-3);
}

.waveform span {
    width: 3px;
    height: 20px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    animation: wave 1s ease-in-out infinite;
}

.waveform span:nth-child(1) { animation-delay: 0s; height: 15px; }
.waveform span:nth-child(2) { animation-delay: 0.1s; height: 25px; }
.waveform span:nth-child(3) { animation-delay: 0.2s; height: 20px; }
.waveform span:nth-child(4) { animation-delay: 0.3s; height: 30px; }
.waveform span:nth-child(5) { animation-delay: 0.4s; height: 18px; }
.waveform span:nth-child(6) { animation-delay: 0.5s; height: 22px; }
.waveform span:nth-child(7) { animation-delay: 0.6s; height: 28px; }
.waveform span:nth-child(8) { animation-delay: 0.7s; height: 16px; }
.waveform span:nth-child(9) { animation-delay: 0.8s; height: 24px; }
.waveform span:nth-child(10) { animation-delay: 0.9s; height: 19px; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.card-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-style: italic;
}

.diagnosis-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.diagnosis-name {
    font-weight: 600;
    color: var(--gray-800);
}

.confidence-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.confidence-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    animation: fillBar 1.5s ease-out;
}

@keyframes fillBar {
    from { width: 0; }
}

.confidence-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.prescription-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    font-size: 0.9rem;
}

.prescription-item span {
    color: var(--gray-700);
}

.alert-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    background: rgba(255, 193, 7, 0.1);
    color: #f57c00;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: var(--space-2);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: rgba(255, 255, 255, 0.02);
    padding: var(--space-16) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-12);
    text-align: center;
}

.stat-modern {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== SECTION HEADERS ===== */
.section-header-modern {
    text-align: center;
    margin-bottom: var(--space-16);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(49, 242, 254, 0.1);
    color: var(--cyan-bright);
    border-radius: var(--radius-full);
    border: 1px solid rgba(49, 242, 254, 0.3);
    box-shadow: 0 0 20px rgba(49, 242, 254, 0.2);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    border: 1px solid var(--gray-200);
}

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

.section-header-modern h2 {
    margin-bottom: var(--space-4);
}

.section-header-modern p {
    font-size: 1.25rem;
    color: var(--gray-600);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: var(--space-24) 0;
    background: var(--gray-50);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.step-card {
    background: transparent;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-base);
}

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

.step-number {
    position: absolute;
    top: var(--space-8);
    right: var(--space-8);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
}

.step-icon-modern {
    font-size: 3rem;
    margin-bottom: var(--space-4);
}

.step-card h3 {
    margin-bottom: var(--space-3);
    font-size: 1.5rem;
}

.step-card p {
    margin-bottom: var(--space-4);
    font-size: 1rem;
}

.step-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.feature-pill {
    padding: var(--space-1) var(--space-3);
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== FEATURES MODERN ===== */
.features-modern {
    padding: var(--space-24) 0;
    background: transparent;
}

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

.feature-card-modern {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-card-modern:hover {
    border-color: rgba(49, 242, 254, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(49, 242, 254, 0.15), 0 10px 30px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: var(--space-4);
}

.feature-card-modern h3 {
    margin-bottom: var(--space-3);
    font-size: 1.5rem;
}

.feature-card-modern p {
    margin-bottom: var(--space-4);
    font-size: 1rem;
}

.feature-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gray-600);
    font-size: 0.95rem;
}

.feature-benefits li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ===== PRICING MODERN ===== */
.pricing-modern {
    padding: var(--space-24) 0;
    background: var(--gradient-light);
}

.pricing-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card-modern {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pricing-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(49, 242, 254, 0.15), 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(49, 242, 254, 0.3);
}

.pricing-card-modern.featured {
    border-color: rgba(49, 242, 254, 0.6);
    box-shadow: 0 0 40px rgba(49, 242, 254, 0.2), 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
    background: rgba(49, 242, 254, 0.05);
}

.pricing-card-modern.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 0 60px rgba(49, 242, 254, 0.3), 0 25px 50px rgba(0, 0, 0, 0.6);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-2) var(--space-6);
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-2);
}

.pricing-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.pricing-amount {
    text-align: center;
    margin: var(--space-6) 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: var(--space-1);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-600);
}

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

.period {
    font-size: 1rem;
    color: var(--gray-600);
}

.pricing-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: var(--space-4);
}

.pricing-features-modern {
    list-style: none;
    margin: var(--space-6) 0;
    flex-grow: 1;
}

.pricing-features-modern li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
    color: var(--gray-700);
}

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

.pricing-features-modern svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: none;
    stroke: var(--primary-blue);
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: var(--space-4);
    text-align: center;
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    margin-top: auto;
}

.btn-gradient-modern {
    background: var(--gradient-secondary);
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.btn-gradient-modern:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

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

.btn-outline-modern:hover {
    background: var(--light-blue);
}

/* ===== TESTIMONIALS MODERN ===== */
.testimonials-modern {
    padding: var(--space-24) 0;
    background: transparent;
}

.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.testimonial-card-modern {
    background: var(--gray-50);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

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

.testimonial-stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: var(--space-4);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

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

.author-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ===== WAITLIST MODERN ===== */
.waitlist-modern {
    padding: var(--space-24) 0;
    background: var(--gradient-secondary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.waitlist-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.waitlist-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-16);
    align-items: start;
    position: relative;
    z-index: 1;
}

.waitlist-content-modern h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.waitlist-content-modern p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: var(--space-8);
}

.waitlist-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--white);
    font-size: 1rem;
}

.benefit-item svg {
    flex-shrink: 0;
    stroke: var(--white);
}

/* ===== MODERN FORMS ===== */
.waitlist-form-wrapper {
    background: transparent;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group-modern label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    padding: var(--space-3) var(--space-4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--cyan-bright);
    box-shadow: 0 0 0 3px rgba(49, 242, 254, 0.1), 0 0 20px rgba(49, 242, 254, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

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

.checkbox-modern label {
    display: flex;
    align-items: start;
    gap: var(--space-2);
    font-weight: 400;
    cursor: pointer;
    color: var(--gray-700);
}

.checkbox-modern input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-modern a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.btn-submit-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-xl);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-submit-modern:active {
    transform: translateY(0);
}

.form-footer-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: var(--space-2);
}

/* ===== CONTACT MODERN ===== */
.contact-modern {
    padding: var(--space-24) 0;
    background: var(--gray-50);
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-16);
}

.contact-info-modern h2 {
    margin: var(--space-4) 0 var(--space-2);
}

.contact-info-modern > p {
    margin-bottom: var(--space-8);
    font-size: 1.1rem;
}

.contact-methods-modern {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
    background: transparent;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    text-decoration: none;
    transition: all var(--transition-base);
}

.contact-method-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.method-icon-modern {
    font-size: 2rem;
}

.contact-method-card h4 {
    font-size: 1rem;
    margin-bottom: var(--space-1);
}

.contact-method-card p {
    font-size: 0.95rem;
    color: var(--primary-blue);
    margin: 0;
}

.social-modern h4 {
    margin-bottom: var(--space-3);
}

.social-links-modern {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-link:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-form-modern {
    background: transparent;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
}

/* ===== FOOTER MODERN ===== */
.footer-modern {
    background: var(--bg-secondary);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.footer-col-main p {
    color: var(--gray-400);
    margin: var(--space-4) 0 var(--space-6);
}

.footer-logo {
    height: 78px;
    margin-bottom: var(--space-4);
}

.footer-social-modern {
    display: flex;
    gap: var(--space-3);
}

.footer-social-modern a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all var(--transition-base);
}

.footer-social-modern a:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

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

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

.footer-col li {
    margin-bottom: var(--space-3);
}

.footer-col a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-8);
    text-align: center;
}

.footer-bottom-modern p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: var(--space-2);
}

/* ===== MODAL MODERN ===== */
.modal-modern {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn var(--transition-base);
}

.modal-content-modern {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    margin: 10% auto;
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideUp var(--transition-slow);
    box-shadow: 0 0 60px rgba(49, 242, 254, 0.2), 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

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

.modal-close {
    position: absolute;
    right: var(--space-6);
    top: var(--space-6);
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    color: var(--cyan-bright);
    text-shadow: 0 0 10px rgba(49, 242, 254, 0.5);
}

.modal-icon-modern {
    font-size: 4rem;
    margin-bottom: var(--space-4);
}

.modal-content-modern h3 {
    margin-bottom: var(--space-3);
    font-size: 1.75rem;
}

.modal-content-modern p {
    margin-bottom: var(--space-6);
    color: var(--gray-600);
}

.btn-modal-close {
    padding: var(--space-3) var(--space-8);
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== PRICING PAGE SPECIFIC ===== */
.pricing-hero {
    padding: var(--space-24) 0 var(--space-16);
    background: transparent;
    text-align: center;
}

.pricing-hero-content {
    margin-bottom: var(--space-12);
}

.currency-note {
    margin-top: var(--space-4);
    padding: var(--space-3) var(--space-6);
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid var(--primary-blue);
    border-radius: var(--radius-full);
    display: inline-block;
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}

.credit-explainer {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: var(--space-6);
    align-items: center;
    background: transparent;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
}

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

.explainer-content h3 {
    margin-bottom: var(--space-3);
    color: var(--gray-800);
}

.explainer-content p {
    margin-bottom: var(--space-4);
    font-size: 1.1rem;
}

.credit-includes {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.credit-includes span {
    padding: var(--space-2) var(--space-4);
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-section {
    padding: var(--space-16) 0;
    background: transparent;
}

.credit-info {
    background: var(--gray-50);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    margin: var(--space-6) 0;
    text-align: center;
}

.credit-info.highlight {
    background: var(--gradient-light);
    border: 2px solid var(--primary-blue);
}

.credit-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-6);
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: var(--space-3);
}

.credit-value {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: var(--space-2);
}

.credit-extra {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 600;
    margin-top: var(--space-2);
}

.pricing-note-top {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: var(--space-2) 0 var(--space-4);
}

.plan-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: var(--space-3);
    font-weight: 500;
}

.custom-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    display: block;
    padding: var(--space-4) 0;
}

.feature-unavailable {
    opacity: 0.5;
}

.feature-unavailable svg {
    stroke: var(--gray-400);
}

/* Comparison Table */
.pricing-comparison {
    padding: var(--space-24) 0;
    background: var(--gray-50);
}

.comparison-table-wrapper {
    overflow-x: auto;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-2xl);
}

.comparison-table {
    width: 100%;
    background: transparent;
    border-collapse: collapse;
}

.comparison-table thead th {
    background: var(--gray-800);
    color: var(--white);
    padding: var(--space-6);
    font-size: 1.1rem;
    text-align: left;
    border-bottom: 3px solid var(--primary-blue);
}

.comparison-table thead th:first-child {
    border-top-left-radius: var(--radius-2xl);
}

.comparison-table thead th:last-child {
    border-top-right-radius: var(--radius-2xl);
}

.featured-col {
    background: var(--gradient-light) !important;
    border-left: 2px solid var(--primary-blue);
    border-right: 2px solid var(--primary-blue);
}

.comparison-table tbody td {
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table tbody tr:hover {
    background: var(--gray-50);
}

.faq-pricing {
    padding: var(--space-24) 0;
    background: transparent;
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    user-select: none;
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: var(--space-3);
}

/* Cost Calculator */
.cost-calculator {
    padding: var(--space-24) 0;
    background: var(--gradient-secondary);
    color: var(--white);
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.calculator-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.calculator-header h2 {
    color: var(--gray-800);
    margin-bottom: var(--space-3);
}

.calculator-header p {
    color: var(--gray-600);
}

.calculator-input {
    margin-bottom: var(--space-12);
}

.calculator-input label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-4);
    font-size: 1.2rem;
    text-align: center;
}

.calculator-input input[type="number"] {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-xl);
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-4);
}

.calculator-input input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--gray-200);
    outline: none;
}

.calculator-input input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.calculator-input input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: none;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.result-card {
    background: var(--gray-50);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
}

.result-card.highlight {
    background: var(--gradient-light);
    border: 2px solid var(--primary-blue);
}

.result-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.result-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: var(--space-2);
}

.result-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container-hero {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .hero-visual {
        height: 400px;
    }

    .waitlist-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-grid-modern {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --space-24: 4rem;
        --space-16: 3rem;
        --space-12: 2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background: transparent;
        width: 100%;
        text-align: center;
        transition: left var(--transition-base);
        box-shadow: var(--shadow-lg);
        padding: var(--space-8) 0;
        gap: var(--space-4);
    }

    .nav-menu.active {
        left: 0;
    }

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-visual {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

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

    .pricing-card-modern.featured {
        transform: scale(1);
    }

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

    .footer-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .modal-content-modern {
        margin: 20% auto;
        padding: var(--space-8);
    }
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-page {
    padding: var(--space-12) 0 var(--space-10);
    background: transparent;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-updated {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--gray-200);
}

.legal-section {
    margin-bottom: var(--space-8);
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    margin-top: var(--space-6);
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-3);
    margin-top: var(--space-4);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-3);
}

.legal-section ul {
    margin: var(--space-3) 0;
    padding-left: var(--space-6);
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
}

.legal-section a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--primary-purple);
}

.legal-section strong {
    color: var(--gray-900);
    font-weight: 600;
}

.legal-footer {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 2px solid var(--gray-200);
    text-align: center;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .legal-content {
        padding: var(--space-6) var(--space-4);
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }
}

/* ===== DARK THEME SECTION ENHANCEMENTS ===== */

.problem-section {
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.solution-section {
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(49, 242, 254, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Badge Gradient for Dark Theme */
.badge-gradient {
    background: rgba(49, 242, 254, 0.1);
    border: 1px solid rgba(49, 242, 254, 0.3);
    box-shadow: 0 0 20px rgba(49, 242, 254, 0.2);
    color: var(--cyan-bright);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Enhance gradient text for better visibility on dark */
.gradient-text {
    background: linear-gradient(135deg, #31f2fe 0%, #4e5ed6 50%, #A06BE8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Card hover effects enhancement */
.feature-card-modern, .pricing-card-modern, .floating-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern scrollbar for dark theme */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: rgba(49, 242, 254, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(49, 242, 254, 0.5);
}

/* Selection color */
::selection {
    background: rgba(49, 242, 254, 0.3);
    color: var(--white);
}

::-moz-selection {
    background: rgba(49, 242, 254, 0.3);
    color: var(--white);
}


/* ===== PROFESSIONAL CARD STYLES ===== */
.feature-card-modern,
.pricing-card-modern,
.floating-card {
    background: #000000;
    border: var(--border);
    padding: var(--space-4);
    transition: var(--transition);
}

.feature-card-modern:hover,
.pricing-card-modern:hover {
    border-color: var(--accent-cyan);
}

.pricing-card-modern.featured {
    border-color: var(--accent-cyan);
    border-width: 2px;
}

/* ===== SECTIONS - CLEAN BACKGROUNDS ===== */
section {
    background: #000000;
    border-bottom: var(--border-thin);
}

.stats-bar {
    background: #000000;
    border-top: var(--border);
    border-bottom: var(--border);
    padding: var(--space-8) 0;
}

/* ===== FORMS - PROFESSIONAL ===== */
.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    background: #000000;
    border: var(--border);
    color: var(--text-primary);
    padding: 12px 16px;
}

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

/* ===== MODAL - CLEAN ===== */
.modal-modern {
    background: rgba(0, 0, 0, 0.95);
}

.modal-content-modern {
    background: #000000;
    border: var(--border-accent);
}

/* ===== FOOTER - PROFESSIONAL ===== */
.footer-modern {
    background: #000000;
    border-top: var(--border);
}

.footer-col a:hover {
    color: var(--accent-cyan);
    padding-left: 0;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: var(--space-10) 0;
}

/* ===== BADGES - CLEAN ===== */
.badge-gradient,
.section-badge {
    background: transparent;
    border: var(--border);
    color: var(--accent-cyan);
    padding: 8px 16px;
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Remove all box shadows */
* {
    box-shadow: none !important;
    text-shadow: none !important;
}


/* ===== SOFTER DESIGN WITH TEXTURE & SHADOWS ===== */

/* Background texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.015) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

/* Soft shadows on interactive elements */
.btn-primary,
.btn-primary-gradient {
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.15) !important;
}

.btn-primary:hover,
.btn-primary-gradient:hover {
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.25) !important;
}

/* Soft shadows on cards in features */
#recursos > div > div > div {
    padding: 32px;
    border: var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    transition: all var(--transition);
}

#recursos > div > div > div:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px);
}

/* Soft shadow on how it works steps */
section > div > div > div[style*="grid-template-columns: 100px"] {
    transition: all var(--transition);
}

section > div > div > div[style*="grid-template-columns: 100px"]:hover {
    transform: translateX(8px);
}

/* Modal shadows */
.modal-content-modern {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

/* Form inputs soft focus */
.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1) !important;
}

/* Navbar subtle shadow */
.navbar {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

/* Footer soft top border shadow */
footer {
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05) !important;
}

/* Soften all borders slightly */
* {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Remove the harsh no-shadow rule */
* {
    box-shadow: initial !important;
    text-shadow: initial !important;
}

/* Contact section background texture */
#contato {
    position: relative;
}

#contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 217, 255, 0.02), transparent);
    pointer-events: none;
}

