/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-darker: #07080b;
    --bg-main: #0c0e14;
    --bg-lighter: #131722;
    --border-color: rgba(26, 232, 96, 0.1);
    --border-hover: rgba(26, 232, 96, 0.35);
    
    /* Neon Green / Emerald Theme */
    --accent: hsl(140, 83%, 52%);
    --accent-glow: hsla(140, 83%, 52%, 0.15);
    --accent-glow-strong: hsla(140, 83%, 52%, 0.35);
    --accent-dark: #0b6623;
    
    /* Text colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Gradients */
    --gradient-neon: linear-gradient(135deg, #1ae860 0%, #05a3ff 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-main) 100%);
    
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Fluid Typography (clamp-based for smooth responsiveness) */
    --font-size-h1: clamp(2.2rem, 5vw, 3.5rem);
    --font-size-h2: clamp(1.8rem, 4vw, 2.5rem);
    --font-size-h3: clamp(1.2rem, 2.5vw, 1.4rem);
    --font-size-h4: clamp(1.05rem, 2vw, 1.15rem);
    
    /* Layout */
    --container-max-width: 1200px;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-lg: 16px;
    --radius-md: 8px;
}

/* ==========================================================================
   RESET & GLOBAL LAYOUT
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   AMBIENT GLOWS & BACKGROUNDS
   ========================================================================== */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.45;
}

.bg-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent) 0%, rgba(26,232,96,0) 70%);
    top: -100px;
    left: -150px;
}

.bg-glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #05a3ff 0%, rgba(5,163,255,0) 70%);
    top: 30%;
    right: -200px;
}

.bg-glow-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent) 0%, rgba(26,232,96,0) 70%);
    bottom: 10%;
    left: 20%;
}

/* ==========================================================================
   REUSABLE UI COMPONENTS / UTILITIES
   ========================================================================== */
.glass-card {
    background: rgba(12, 14, 20, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px 0 rgba(26, 232, 96, 0.08);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
    border: 1px solid var(--accent);
    box-shadow: 0 4px 20px var(--accent-glow-strong);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px hsla(140, 83%, 52%, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Gradients & Text */
.accent-text {
    color: var(--accent);
}

.neon-text {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(26, 232, 96, 0.3);
}

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

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(7, 8, 11, 0.85);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(255, 255, 255, 0.05);
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.2rem;
    text-shadow: 0 0 8px var(--accent);
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

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

.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    box-shadow: 0 0 6px var(--accent);
}

.nav-btn .btn {
    padding: 8px 18px;
}

/* Mobile Menu Overlay Backdrop */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 5, 7, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    z-index: 99;
    transition: var(--transition-smooth);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 160px 0 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(26, 232, 96, 0.08);
    border: 1px solid rgba(26, 232, 96, 0.2);
    border-radius: 100px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
    box-shadow: 0 0 0 0 rgba(26, 232, 96, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(26, 232, 96, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(26, 232, 96, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(26, 232, 96, 0);
    }
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
}

.hero-title {
    font-size: var(--font-size-h1);
    line-height: 1.15;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

/* Hero Canvas / Cyber Grid Representation */
.hero-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-canvas-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(12, 14, 20, 0.4);
    border: 1px solid var(--border-color);
}

.cyber-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        linear-gradient(rgba(26, 232, 96, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 232, 96, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(600px) rotateX(60deg) translateY(-80px);
    animation: grid-slide 20s linear infinite;
}

@keyframes grid-slide {
    0% { transform: perspective(600px) rotateX(60deg) translateY(-80px); }
    100% { transform: perspective(600px) rotateX(60deg) translateY(0); }
}

.glowing-orb {
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, var(--accent) 0%, rgba(26,232,96,0) 70%);
    top: 30%;
    left: 40%;
    filter: blur(12px);
    opacity: 0.6;
    animation: orb-move 8s ease-in-out infinite alternate;
}

@keyframes orb-move {
    0% { transform: translate(-30px, -20px); }
    100% { transform: translate(40px, 35px); }
}

.tech-card {
    position: absolute;
    width: min(280px, 90vw);
    padding: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--radius-md);
    background: rgba(12, 14, 20, 0.85);
    border: 1.5px solid var(--accent);
    box-shadow: 0 0 20px var(--accent-glow-strong);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #f59e0b; }
.dot.green { background-color: #10b981; }

.card-title-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
    margin-left: 4px;
}

.card-code {
    font-family: monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.line.keyword { color: #f43f5e; }
.line.variable { color: #38bdf8; }
.line.string { color: #10b981; }
.line.number { color: #f59e0b; }

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    max-width: 650px;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: var(--font-size-h2);
    color: var(--text-primary);
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

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

.service-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(26, 232, 96, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent);
}

.service-icon {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: var(--font-size-h3);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex-grow: 1;
}

.card-footer-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.card-footer-link .arrow {
    transition: var(--transition-smooth);
}

.service-card:hover .card-footer-link {
    color: var(--accent);
}

.service-card:hover .card-footer-link .arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   ABOUT / TRUST FACTORS
   ========================================================================== */
.about-section {
    padding: 100px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.benefit-check {
    width: 24px;
    height: 24px;
    background: rgba(26, 232, 96, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid rgba(26, 232, 96, 0.2);
}

.benefit-item h4 {
    font-size: var(--font-size-h4);
    margin-bottom: 4px;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.about-stats-panel {
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.stat-card {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow-strong);
}

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

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

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

.contact-pitch {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 16px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(26, 232, 96, 0.08);
    border: 1px solid rgba(26, 232, 96, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
}

.detail-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-form-wrapper {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.contact-form.hidden {
    opacity: 0;
    pointer-events: none;
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(7, 8, 11, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(26, 232, 96, 0.15);
    background: rgba(7, 8, 11, 0.8);
}

option {
    background-color: var(--bg-main);
    color: var(--text-primary);
}

.error-msg {
    display: none;
    font-size: 0.8rem;
    color: #ef4444;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #ef4444;
}

.form-group.has-error .error-msg {
    display: block;
}

/* Submit Spinner */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Success Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 5;
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 232, 96, 0.1);
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 0 15px var(--accent-glow-strong);
    animation: scale-up 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scale-up {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.form-success-overlay h3 {
    font-size: 1.8rem;
}

.form-success-overlay p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 360px;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-pitch {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-container h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-email, .footer-email, .contact-phone, .footer-phone {
    transition: var(--transition-smooth);
}

.contact-email:hover, .footer-email:hover, .contact-phone:hover, .footer-phone:hover {
    color: var(--accent);
}

/* ==========================================================================
   SCROLL REVEAL CLASS & MEDIA QUERIES
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-description {
        margin: 0 auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-grid .service-card:nth-child(3) {
        grid-column: span 2;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    /* Navigation Menu Toggle */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(12, 14, 20, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 100;
        padding: 100px 40px;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid .service-card:nth-child(3) {
        grid-column: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
