/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    /* Light Theme Tokens */
    --bg: #FFFFFF;
    --bg-subtle: #F9FAFB;
    --surface-1: #FFFFFF;
    --surface-2: #F9FAFB;
    --surface-3: #FFFFFF;
    --border: #E5E7EB;
    --border-strong: #D1D5DB;
    --text: #111827;
    --text-muted: #4B5563;
    --text-faint: #6B7280;
    --button-bg: #10B981;
    --button-bg-hover: #059669;
    --button-text: #FFFFFF;
    --success-bg: #10B9811A;
    --info-bg: #0EA5E91A;
    --warning-bg: #F59E0B24;
    --danger-bg: #EF44441A;
    --link: #047857;
    --link-hover: #065F46;
    --panel-bg: #FFFFFF;
    --panel-border: #1118271F;
    --btn-bg: #1118270A;
    --btn-border: #1118271F;
    
    /* Primary Colors */
    --primary-50: #ECFDF5;
    --primary-100: #D1FAE5;
    --primary-200: #A7F3D0;
    --primary-300: #6EE7B7;
    --primary-400: #34D399;
    --primary-500: #10B981;
    --primary-600: #059669;
    --primary-700: #047857;
    --primary-800: #065F46;
    --primary-900: #064E3B;
    --primary-950: #022C22;
    
    /* Neutrals */
    --neutral-50: #F9FAFB;
    --neutral-100: #F3F4F6;
    --neutral-200: #E5E7EB;
    --neutral-300: #D1D5DB;
    --neutral-400: #9CA3AF;
    --neutral-500: #6B7280;
    --neutral-600: #4B5563;
    --neutral-700: #374151;
    --neutral-800: #1F2937;
    --neutral-900: #111827;
    --neutral-950: #0B1220;
    
    /* Semantic Colors */
    --success: #10B981;
    --info: #0EA5E9;
    --warning: #F59E0B;
    --danger: #EF4444;
    
    /* Accents */
    --accent-cyan: #22D3EE;
    --accent-indigo: #6366F1;
    --accent-violet: #8B5CF6;
    
    /* Charts */
    --chart-1: #10B981;
    --chart-2: #0EA5E9;
    --chart-3: #6366F1;
    --chart-4: #F59E0B;
    --chart-5: #EF4444;
    --chart-6: #22D3EE;
    
    /* Legacy Aliases (for backward compatibility) */
    --primary-color: var(--primary-500);
    --primary-dark: var(--primary-600);
    --primary-light: var(--primary-400);
    --secondary-color: var(--neutral-800);
    --text-primary: var(--text);
    --text-secondary: var(--text-muted);
    --text-light: var(--neutral-400);
    --bg-white: var(--bg);
    --bg-gray: var(--bg-subtle);
    --bg-dark: var(--neutral-900);
    --border-color: var(--border);
    --shadow-sm: 0 1px 2px 0 rgba(17, 24, 39, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(17, 24, 39, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(17, 24, 39, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(17, 24, 39, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 48px;
    height: auto;
    width: auto;
    display: block;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.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);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

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

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

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

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

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

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

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

.btn-white:hover {
    background: var(--bg-white);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--neutral-950) 0%, var(--neutral-800) 50%, var(--neutral-950) 100%);
    border-bottom: 2px solid var(--primary-500);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

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

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-400);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.hero-demo-overlay {
    position: absolute;
    bottom: -30px;
    right: 0;
    max-width: 350px;
}

.hero-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-card {
    background: var(--surface-1);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    padding: 24px;
    width: 100%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

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

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.demo-badge {
    background: var(--primary-500);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.demo-status {
    color: var(--primary-500);
    font-size: 0.875rem;
    font-weight: 600;
}

.demo-plate {
    background: var(--bg-subtle);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.demo-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.demo-row:last-child {
    border-bottom: none;
}

.demo-value {
    font-weight: 600;
    color: var(--text);
}

.demo-value.success {
    color: var(--primary-500);
}

/* ===========================
   Features Section
   =========================== */
.features {
    padding: 80px 0;
    background: var(--bg-subtle);
}

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

.feature-card {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(17, 24, 39, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px var(--primary-200);
    border-color: var(--primary-500);
}

.feature-icon {
    margin-bottom: 16px;
    color: var(--primary-500);
}

.icon-large {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.icon-medium {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===========================
   Pricing Section
   =========================== */
.pricing-preview {
    padding: 80px 0;
    background: var(--bg);
}

/* Billing Toggle */
.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 40px 0;
}

.billing-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}

.billing-label.active {
    color: var(--primary-500);
}

.billing-badge {
    display: inline-block;
    background: var(--primary-500);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 4px;
}

.billing-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

.billing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.billing-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--neutral-300);
    transition: var(--transition);
    border-radius: 28px;
}

.billing-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

.billing-toggle input:checked + .billing-toggle-slider {
    background-color: var(--primary-500);
}

.billing-toggle input:checked + .billing-toggle-slider:before {
    transform: translateX(24px);
}

.price-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    justify-items: center;
}

.pricing-card {
    background: var(--surface-1);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 8px rgba(17, 24, 39, 0.08);
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--primary-200);
}

.pricing-card.featured {
    border-color: var(--primary-500);
    box-shadow: 0 8px 24px var(--primary-200);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-500);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-500);
}

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

.pricing-features {
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    width: 16px;
    height: 16px;
    color: var(--success);
    flex-shrink: 0;
}

.x-icon {
    width: 16px;
    height: 16px;
    color: var(--neutral-400);
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    font-size: 1.125rem;
    color: var(--primary-500);
    font-weight: 600;
}

/* ===========================
   Use Cases Section
   =========================== */
.use-cases {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--neutral-950) 0%, var(--neutral-800) 50%, var(--neutral-950) 100%);
    border-top: 2px solid var(--primary-500);
    border-bottom: 2px solid var(--primary-500);
}

.use-cases .section-header h2 {
    color: white;
}

.use-cases .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

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

.use-case-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--primary-300);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-500);
}

.use-case-icon {
    margin-bottom: 16px;
    color: var(--primary-400);
}

.use-case-icon i {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 8px var(--primary-400));
}

.use-case-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.use-case-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: 80px 0;
    background: var(--bg-subtle);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.125rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    background: var(--primary-500);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.about-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.9rem;
    margin: 0;
}


/* ===========================
   CTA Section
   =========================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: white;
}

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

.cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-method-icon {
    color: var(--primary-500);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

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

.contact-method a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--bg-subtle);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--surface-1);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.form-group textarea {
    resize: vertical;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    max-height: 40px;
    height: auto;
    width: auto;
}

.footer-col p {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary-400);
}

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

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 24px;
    }
    
    .nav-link {
        font-size: 0.9375rem;
    }
    
    .btn-sm {
        padding: 7px 14px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        min-width: 44px; /* Touch-friendly */
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link,
    .nav-menu .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        min-height: 44px; /* Touch-friendly */
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }
    
    .nav-link:hover {
        background: var(--bg-subtle);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0;
    }
    
    .nav-wrapper {
        padding: 12px 15px;
    }
    
    .logo-img {
        max-height: 40px;
    }
    
    .mobile-menu-toggle {
        padding: 6px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
    }
    
    .nav-menu {
        padding: 15px;
        gap: 12px;
    }
    
    .nav-link,
    .nav-menu .btn {
        padding: 10px 16px;
        font-size: 0.9375rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
}

@media (max-width: 360px) {
    .nav-wrapper {
        padding: 10px 12px;
    }
    
    .logo-img {
        max-height: 36px;
    }
    
    .mobile-menu-toggle {
        min-width: 36px;
        min-height: 36px;
    }
    
    .nav-link,
    .nav-menu .btn {
        padding: 8px 12px;
        font-size: 0.875rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .cta h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
}
