/* Dental Voice Pro - Main Styles */

/* CSS Variables */
:root {
    --primary-black: #0A0A0A;
    --accent-blue: #0066FF;
    --accent-blue-dark: #0052CC;
    --accent-purple: #7C3AED;
    --accent-cyan: #06B6D4;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --white: #FFFFFF;
    
    --success-green: #10B981;
    --warning-amber: #F59E0B;
    --error-red: #EF4444;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    --border-radius-sm: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --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);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1, "liga" 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Container - Wider for reduced white space */
.container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
}

/* Navigation - High-Tech Cockpit Aesthetic */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    overflow: visible;
}

/* Titanium bezel + glass highlight */
.nav::before {
    content: '';
    position: absolute;
    inset: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
    opacity: 0.7;
    pointer-events: none;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.15rem 0;
    min-height: 28px;
    height: auto;
    gap: var(--spacing-md);
    flex-wrap: nowrap;
    overflow: visible;
}

.nav-content > * {
    min-width: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow: visible;
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition-fast);
}

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

/* Logo icon - clip to show only the gear/waves, not the text */
.logo-icon {
    height: 26px;
    width: 26px;
    object-fit: cover;
    object-position: center top;
    display: block;
    flex-shrink: 0;
}

/* Logo text - High-tech cockpit branding */
.nav-logo-text {
    font-family: 'Montserrat', 'Outfit', var(--font-display, system-ui, sans-serif);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* Keep logo horizontal on all screen sizes with gradient indicator bar */
.nav-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

/* Add gradient indicator bar next to logo - inline element */
.nav-logo::after {
    content: '';
    height: 4px;
    width: 20px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--bar-color-start, #00E5FF), var(--bar-color-mid, #00B4D8), var(--bar-color-end, #0077B6));
    box-shadow: 0 0 8px var(--bar-glow, rgba(0, 229, 255, 0.4));
    flex-shrink: 0;
    align-self: center;
}

@media (min-width: 768px) {
    .logo-icon {
        height: 24px;
        width: 24px;
    }

    .nav-logo-text {
        font-size: 0.9rem;
        font-weight: 800;
    }
}

@media (min-width: 1024px) {
    .logo-icon {
        height: 28px;
        width: 28px;
    }

    .nav-logo-text {
        font-size: 1rem;
        font-weight: 800;
    }
}

.nav-links {
    display: flex;
    gap: clamp(0.4rem, 1vw, 1rem);
    align-items: center;
    flex-wrap: nowrap !important;
    white-space: nowrap;
    overflow: hidden;
    flex-shrink: 1;
    min-width: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: clamp(0.75rem, 0.85vw, 0.9rem);
    transition: all var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    padding-left: 12px;
}

/* Indicator dot for nav links */
.nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--text-tertiary, rgba(255, 255, 255, 0.3));
    transition: all var(--transition-fast);
}

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

.nav-links a:hover::before {
    background-color: var(--bar-color-start, #00E5FF);
    box-shadow: 0 0 10px var(--bar-glow, rgba(0, 229, 255, 0.6));
}

/* Active state for nav links */
.nav-links a.active,
.nav-links a.nav-live-demo.active {
    color: var(--text-primary);
}

.nav-links a.active::before,
.nav-links a.nav-live-demo.active::before {
    background-color: var(--bar-color-start, #00E5FF);
    box-shadow: 0 0 10px var(--bar-glow, rgba(0, 229, 255, 0.6));
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white !important;
    padding: 0.35rem var(--spacing-sm);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
    font-size: clamp(0.8rem, 0.9vw, 0.95rem);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* High-tech shimmer effect */
.btn-nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-nav-cta:hover::before {
    left: 100%;
}

.btn-nav-cta:hover {
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-secondary-hover) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.3), 0 0 20px rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-secondary-hover) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

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

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

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Sections */
.section {
    padding: 3rem 0;
    background-color: var(--bg-primary);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    background:
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

/* Water texture overlay for hero */
.hero .hero-texture {
    position: absolute;
    inset: 0;
    background-image: url('../assets/texture-bg.avif');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    filter: grayscale(100%) contrast(1.1);
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-title {
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--accent-blue) 80%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-3xl);
    flex-wrap: wrap;
}

.hero-visual {
    margin-top: var(--spacing-3xl);
}

.dashboard-preview {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.preview-content {
    padding: var(--spacing-xl);
}

.call-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.flow-step {
    background: var(--gray-50);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid var(--gray-200);
}

.flow-arrow {
    font-size: 2rem;
    color: var(--accent-blue);
}

/* Problem Section */
.section-problem {
    background: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: 16px;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.1));
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
                0 1px 3px rgba(0, 0, 0, 0.08),
                inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.problem-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary, #0f172a);
    font-weight: 700;
}

.problem-card p {
    color: var(--text-secondary, #475569);
    line-height: 1.6;
}

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

/* Solution Section */
.section-solution {
    background: var(--gray-50);
}

.solution-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.step {
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: var(--spacing-sm);
}

.step-content p {
    margin-bottom: var(--spacing-md);
}

.step-visual {
    font-size: 2rem;
    letter-spacing: 0.5rem;
}

/* Ownership Section */
.section-ownership {
    background: var(--primary-black);
    color: var(--white);
}

.section-ownership .section-title {
    color: var(--white);
}

.ownership-tagline {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: var(--spacing-xl);
}

.ownership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.ownership-feature {
    text-align: center;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.ownership-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

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

.ownership-feature h4 {
    color: var(--primary-black) !important;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.ownership-feature p {
    color: var(--gray-700) !important;
    font-weight: 500;
}

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

.feature-card {
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.12);
    border-color: var(--accent-blue);
}

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

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

.feature-card p {
    color: var(--gray-600);
}

/* Pricing Section */
.section-pricing {
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-blue);
}

.pricing-card-featured {
    border-color: var(--accent-blue);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.15);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.02) 0%, rgba(124, 58, 237, 0.02) 100%);
}

.pricing-card-featured:hover {
    box-shadow: 0 20px 56px rgba(0, 102, 255, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-tier {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary-black);
}

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

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

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-black);
}

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

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

.pricing-features li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

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

.pricing-card .btn {
    width: 100%;
}

/* Social Proof Section */
.section-proof {
    background: var(--gray-50);
}

.proof-badges {
    display: flex;
    gap: var(--spacing-xl);
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--white);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

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

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    color: var(--primary-black);
    font-size: 1.125rem;
}

.badge-text span {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* FAQ Section */
.section-faq {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0;
}

.section-faq .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 82, 204, 0.15);
}

.faq-item h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-black);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-item h3::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-left: 1.25rem;
}

/* CTA Footer Section */
.section-cta-footer {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #0052CC 100%);
    color: var(--white);
}

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

.cta-footer-content h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

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

.cta-footer-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-footer-buttons .btn-secondary {
    background: var(--white);
    color: var(--accent-blue);
    border: none;
}

.cta-footer-buttons .btn-secondary:hover {
    background: var(--gray-100);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    position: relative;
    z-index: 1;
    margin-top: auto;
}

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

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

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--spacing-md);
    text-align: center;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gray-400);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Mobile Menu Button - Base styles (overridden by mobile-responsive.css) */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

/* Mobile menu button spans - simplified (detailed styling in mobile-responsive.css) */
.mobile-menu-button span {
    transition: all var(--transition-base);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive - Mobile First Approach */

/* Large phones / Small tablets (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .container {
        padding: 0 var(--spacing-lg);
    }

    .logo-icon {
        height: 70px;
    }

    .hero {
        padding-top: 110px;
    }

    .btn {
        min-height: 48px;
        padding: 0.875rem 1.75rem;
    }
}

/* Desktop - Full nav visible (above 1100px) */
@media (min-width: 1101px) {
    .mobile-menu-button {
        display: none !important;
    }

    .nav-links {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        padding: 0 !important;
        height: auto !important;
        width: auto !important;
        box-shadow: none !important;
    }

    .nav-content {
        justify-content: space-between;
    }
}

/* Medium desktop - tighter nav spacing (1101px - 1300px) */
@media (min-width: 1101px) and (max-width: 1300px) {
    .nav-links {
        gap: 0.35rem;
    }

    .nav-links a {
        font-size: 0.75rem;
        padding: 0.25rem 0.3rem;
    }

    .btn-nav-cta {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }

    .nav-live-demo {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }

    .nav-logo-text {
        font-size: 0.9rem;
    }

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

/* Large desktop - comfortable spacing (1301px+) */
@media (min-width: 1301px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

/* Compact navigation breakpoint (tablets and small laptops) */
@media (max-width: 1100px) {
    /* Mobile navigation positioning handled by mobile-responsive.css */
    /* Only logo sizing adjustments here to avoid conflicts */

    .logo-icon {
        height: 60px;
    }

    .nav-logo h1 {
        font-size: 1.125rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Mobile navigation positioning handled by mobile-responsive.css */
    /* All nav-links styles removed to prevent conflicts */
    
    .hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: var(--spacing-2xl);
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .btn {
        width: 100%;
        min-height: 48px;
        font-size: 1rem;
    }
    
    .call-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .ownership-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .faq-item {
        padding: 1.25rem 1.5rem;
    }

    .faq-item h3 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
        margin-left: 1rem;
    }
    
    .section {
        padding: var(--spacing-2xl) 0;
    }
    
    .cta-footer-buttons {
        flex-direction: column;
    }
}

/* Mobile optimizations for new sections */
@media (max-width: 768px) {
    .section-automation .section-title {
        font-size: 2rem !important;
    }
    
    .section-automation p[style*="font-size: 1.5rem"] {
        font-size: 1.125rem !important;
    }
    
    .section-automation p[style*="font-size: 1.3rem"] {
        font-size: 1.125rem !important;
    }
    
    .section-automation div[style*="display: flex"] {
        flex-direction: column !important;
    }
    
    .section-automation h2[style*="font-size: 2.5rem"] {
        font-size: 1.75rem !important;
    }
    
    .proof-badges {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

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

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

/* Extra small mobile devices (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .logo-icon {
        height: 50px;
    }

    .hero {
        padding-top: 80px;
        padding-bottom: var(--spacing-xl);
    }

    .hero-title {
        font-size: clamp(1.5rem, 9vw, 2rem);
        margin-bottom: var(--spacing-sm);
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

    .btn {
        min-height: 44px;
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

    .section {
        padding: var(--spacing-xl) 0;
    }

    .section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .dashboard-preview {
        padding: var(--spacing-sm);
    }
}

/* Large desktops (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        margin: 0 auto;
    }

    .hero-title {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}
