:root {
    /* Light Theme */
    --bg-primary: #f8fafc;
    --bg-secondary: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --accent-color: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-secondary: #f59e0b;
    --accent-secondary-hover: #d97706;
    
    /* Liquid Glass Light */
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    
    /* Dynamic Component Variables */
    --card-bg-start: rgba(255, 255, 255, 0.9);
    --card-bg-end: rgba(255, 255, 255, 0.5);
    --card-value-start: rgba(241, 245, 249, 0.95);
    --card-value-end: rgba(226, 232, 240, 0.85);
    --card-border: rgba(0, 0, 0, 0.1);
    --input-bg: rgba(255, 255, 255, 0.8);
    
    /* Hero Section Variables â€” deep blue so white text is always legible */
    --hero-bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1e40af 100%);
    --hero-overlay-start: rgba(248, 250, 252, 0.9);
    --hero-overlay-end: rgba(226, 232, 240, 0.8);
    --hero-title-color: #ffffff;
    --hero-subtitle-color: rgba(226, 232, 240, 0.9);
    --hero-glow: rgba(37, 99, 235, 0.3);
    --hero-grid-line: rgba(148, 163, 184, 0.12);
    --value-card-border: rgba(15, 23, 42, 0.1);
    --value-card-title: #0f172a;
    --value-card-text: #334155;
    --value-card-bg-hover: rgba(37, 99, 235, 0.05);
    --value-card-shadow: none;
    
    /* Orb Colors */
    --orb-1: rgba(37, 99, 235, 0.2);
    --orb-2: rgba(245, 158, 11, 0.2);
    --orb-3: rgba(147, 51, 234, 0.15);
}

[data-theme="dark"] {
    /* Dark Theme */
    --bg-primary: #020617;
    --bg-secondary: #0f172a;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --accent-color: #3b82f6;
    --accent-hover: #60a5fa;
    --accent-secondary: #f59e0b;
    --accent-secondary-hover: #fbbf24;
    
    /* Liquid Glass Dark */
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    
    /* Dynamic Component Variables */
    --card-bg-start: rgba(30, 41, 59, 0.5);
    --card-bg-end: rgba(15, 23, 42, 0.9);
    --card-value-start: rgba(30, 41, 59, 0.95);
    --card-value-end: rgba(15, 23, 42, 0.8);
    --card-border: rgba(255, 255, 255, 0.08);
    --input-bg: rgba(0, 0, 0, 0.3);

    /* Hero Section Variables */
    --hero-bg-gradient: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    --hero-overlay-start: rgba(2,6,23,0.95);
    --hero-overlay-end: rgba(15,23,42,0.7);
    --hero-title-color: #ffffff;
    --hero-subtitle-color: #cbd5e1;
    --hero-glow: rgba(37,99,235,0.25);
    --hero-grid-line: rgba(59, 130, 246, 0.1);
    --value-card-border: rgba(255, 255, 255, 0.15);
    --value-card-title: #ffffff;
    --value-card-text: rgba(226, 232, 240, 0.85);
    --value-card-bg-hover: rgba(59, 130, 246, 0.05);
    --value-card-shadow: 0 2px 10px rgba(0,0,0,0.4);
    
    /* Orb Colors Darker */
    --orb-1: rgba(37, 99, 235, 0.5);
    --orb-2: rgba(245, 158, 11, 0.3);
    --orb-3: rgba(147, 51, 234, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

html, body { max-width: 100vw; overflow-x: hidden; }

body { font-family: 'Inter', sans-serif; background-color: var(--bg-primary); color: var(--text-primary); transition: background-color 0.5s ease, color 0.5s ease; }

/* 3D Animated Background Orbs */
.bg-orb { position: fixed; border-radius: 50%; z-index: -1; opacity: 0.6; pointer-events: none; will-change: transform; animation: floatOrb 20s infinite alternate ease-in-out; }
.orb-1 { width: 60vw; height: 60vw; background: radial-gradient(circle, var(--orb-1) 0%, transparent 60%); top: -20%; left: -10%; }
.orb-2 { width: 50vw; height: 50vw; background: radial-gradient(circle, var(--orb-2) 0%, transparent 60%); bottom: -10%; right: -10%; animation-delay: -5s; animation-duration: 25s; }
.orb-3 { width: 40vw; height: 40vw; background: radial-gradient(circle, var(--orb-3) 0%, transparent 60%); top: 30%; left: 30%; animation-delay: -10s; animation-duration: 30s; }
@keyframes floatOrb {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(5vw, 5vh, 0) scale(1.1); }
    100% { transform: translate3d(-5vw, 10vh, 0) scale(1.2); }
}

h1, h2, h3, h4, h5, h6, .logo { font-family: 'Outfit', sans-serif; }
a { text-decoration: none; color: inherit; }

/* Typography */
h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem; color: var(--hero-title-color); letter-spacing: -1.5px; font-weight: 800; text-shadow: 0 10px 30px rgba(0,0,0,0.15); transition: color 0.5s; }
h2 { font-size: 3rem; line-height: 1.2; margin-bottom: 1.5rem; letter-spacing: -0.5px; }
h3 { font-size: 1.75rem; line-height: 1.3; margin-bottom: 1rem; }
h4 { font-size: 1.35rem; margin-bottom: 0.8rem; color: var(--text-primary); font-weight: 600; }
h5 { font-size: 1.1rem; color: var(--text-primary); margin-bottom: 0.2rem; }
p { font-size: 1.1rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 1.5rem; }

.block { display: block; overflow: hidden; }

/* Advanced Text Effects */
.text-gradient {
    background: linear-gradient(90deg, #60a5fa, #c084fc, #60a5fa);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.logo img {
    max-width: 86px;
}

.animated-gradient { animation: shineText 6s linear infinite; }
@keyframes shineText { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

.text-accent { color: var(--accent-secondary); }
.text-glow { text-shadow: 0 0 15px var(--accent-secondary); }

.icon-gradient {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.section-title { text-align: center; position: relative; margin-bottom: 3rem; }
.section-title::after { content: ''; display: block; width: 60px; height: 5px; background: linear-gradient(90deg, var(--accent-secondary), var(--accent-color)); margin: 1rem auto 0; border-radius: 5px; }
.section-title.left-align { text-align: left; }
.section-title.left-align::after { margin-left: 0; }
.subtitle { text-align: center; max-width: 800px; margin: 0 auto 4rem; font-size: 1.2rem; }

/* Button Styles - Advanced Slide Hover */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem;
    padding: 1rem 2.5rem; border-radius: 50px; font-weight: 600; font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 1px;
    position: relative; overflow: hidden;
}
.btn-primary { background: var(--accent-color); color: white; box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3); }
.btn-secondary { background: var(--accent-secondary); color: white; box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3); }

.btn-slide span { position: relative; z-index: 2; transition: color 0.3s ease; }
.btn-slide::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.btn-primary.btn-slide::before { background: var(--accent-hover); }
.btn-secondary.btn-slide::before { background: var(--accent-secondary-hover); }
.btn:hover { transform: translateY(-5px); }
.btn-slide:hover::before { transform: scaleX(1); }
.btn-primary:hover { box-shadow: 0 15px 30px rgba(37, 99, 235, 0.5); }
.btn-secondary:hover { box-shadow: 0 15px 30px rgba(245, 158, 11, 0.5); }

/* Form Validation Logic States */
.btn-success { background: #10b981 !important; color: white !important; box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3) !important; pointer-events: none; }
.btn-error { background: #ef4444 !important; color: white !important; box-shadow: 0 15px 30px rgba(239, 68, 68, 0.3) !important; pointer-events: none; }
.btn-success span, .btn-error span { display: block; width: 100%; transition: none; }

/* Liquid Glass Navbar */
.liquid-glass-nav { background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--glass-border); }

/* Base Liquid Glass (For plain containers) */
.liquid-glass { background: var(--glass-bg); backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%); border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow); border-radius: 24px; position: relative; overflow: hidden; }

/* Premium Elegant Card System (Dynamic Theme Adapting) */
.premium-card {
    background: linear-gradient(145deg, var(--card-bg-start) 0%, var(--card-bg-end) 100%);
    border-radius: 20px; position: relative; box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease, background 0.5s ease;
    overflow: hidden;
}
.premium-card::after {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(600px circle at var(--mouse-x, -1000px) var(--mouse-y, -1000px), rgba(96, 165, 250, 0.15), transparent 40%);
    pointer-events: none; opacity: 0; transition: opacity 0.5s ease;
}
.premium-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px -15px rgba(59, 130, 246, 0.25); }
.premium-card:hover::after { opacity: 1; }
.premium-image-border { border: 1px solid var(--card-border); box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255,255,255,0.2); }

/* Hero Section Advanced Effects */
.hero { position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 0 5%; }
.hero::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 900px; height: 900px; background: radial-gradient(circle, var(--hero-glow) 0%, transparent 60%);
    z-index: 1; filter: blur(60px); pointer-events: none; transition: background 0.5s ease;
}
/* Deep Clean Pure CSS Environment (Theme Adaptive) */
.hero-3d-scene { position: absolute; inset: 0; z-index: 0; background: var(--hero-bg-gradient); overflow: hidden; perspective: 1000px; }

/* Slow Moving 3D Tech Floor Map */
.hero-3d-grid {
    position: absolute; bottom: -50%; left: -50%; width: 200%; height: 200%;
    background-image: linear-gradient(var(--hero-grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--hero-grid-line) 1px, transparent 1px);
    background-size: 60px 60px; transform: rotateX(75deg); pointer-events: none;
    animation: gridScroll 50s linear infinite;
}
@keyframes gridScroll { 0% { transform: rotateX(75deg) translateY(0); } 100% { transform: rotateX(75deg) translateY(60px); } }

/* Flying 3D Objects Array */
.flying-obj { position: absolute; z-index: 1; transform-style: preserve-3d; opacity: 0.6; pointer-events: none; }
.obj-1 { top: 15%; left: 8%; animation: flyFloat1 18s infinite alternate ease-in-out; }
@keyframes flyFloat1 { 0% { transform: translate(0, 0) scale(0.8) rotateZ(0deg); } 100% { transform: translate(120px, -60px) scale(1.1) rotateZ(15deg); } }

.cube-3d { width: 80px; height: 80px; transform-style: preserve-3d; animation: spinCube 14s infinite linear; }
.cube-3d .face { position: absolute; width: 80px; height: 80px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.4); backdrop-filter: blur(4px); box-shadow: inset 0 0 15px rgba(59,130,246,0.2); }
.cube-3d .front { transform: translateZ(40px); }
.cube-3d .back { transform: rotateY(180deg) translateZ(40px); }
.cube-3d .right { transform: rotateY(90deg) translateZ(40px); }
.cube-3d .left { transform: rotateY(-90deg) translateZ(40px); }
.cube-3d .top { transform: rotateX(90deg) translateZ(40px); }
.cube-3d .bottom { transform: rotateX(-90deg) translateZ(40px); }
@keyframes spinCube { 0% { transform: rotateX(0) rotateY(0) rotateZ(0); } 100% { transform: rotateX(360deg) rotateY(720deg) rotateZ(360deg); } }

.obj-2 { top: 65%; right: 12%; animation: flyFloat2 22s infinite alternate ease-in-out; }
@keyframes flyFloat2 { 0% { transform: translate(0, 0) scale(1.2); } 100% { transform: translate(-100px, -100px) scale(0.8); } }

.ring-3d { width: 120px; height: 120px; transform-style: preserve-3d; animation: spinRing 18s infinite linear reverse; }
.ring-3d .circle { position: absolute; inset: 0; border-radius: 50%; border: 2px dashed rgba(245, 158, 11, 0.4); }
.ring-3d .c1 { transform: rotateX(70deg) rotateY(0deg); }
.ring-3d .c2 { transform: rotateX(70deg) rotateY(60deg); }
.ring-3d .c3 { transform: rotateX(70deg) rotateY(120deg); }
@keyframes spinRing { 0% { transform: rotateX(0) rotateY(0) rotateZ(0); } 100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); } }

/* Ambient Parallax Sky Orbs (Removed by request) */

.hero-content { position: relative; z-index: 10; text-align: center; max-width: 1100px; margin-top: 5rem; perspective: 1000px; transition: color 0.5s ease; text-shadow: 0 4px 20px rgba(0,0,0,0.6); }
.hero-subtitle { color: var(--hero-subtitle-color); font-size: 1.35rem; font-weight: 300; margin: 2rem auto 3rem; max-width: 850px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero-buttons { display: flex; gap: 2rem; justify-content: center; position: relative; z-index: 15; }

/* Hero Value Monolithic Transparent Grid Design */
.value-strip { position: relative; margin-top: -60px; z-index: 20; padding: 0; width: 100%; }
.value-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    width: 100%; max-width: 100%; margin: 0;
    background: transparent;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    box-shadow: none;
    border-top: 1px solid var(--value-card-border);
    border-bottom: 1px solid var(--value-card-border);
}

.hero-value-card {
    padding: 3.5rem 2.5rem; text-align: center;
    border-right: 1px solid var(--value-card-border); /* Internal dividers */
    border-radius: 0;
    background: transparent;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    position: relative; overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: none;
}
.hero-value-card:last-child { border-right: none; }
.hero-value-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.hero-value-card:hover { background: var(--value-card-bg-hover); border-color: rgba(59, 130, 246, 0.4); transform: translateY(-5px); }
.hero-value-card:hover::before { opacity: 1; }
.hero-value-card .icon-wrapper {
    width: 55px; height: 55px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin: 0 auto 1.5rem auto;
    border: 1px solid var(--accent-secondary); 
    background: rgba(245, 158, 11, 0.05); /* Slight amber tint backing */
    box-shadow: inset 0 0 15px rgba(245, 158, 11, 0.1), 0 0 20px rgba(245, 158, 11, 0.15);
    transition: all 0.4s ease;
}
.hero-value-card:hover .icon-wrapper {
    background: rgba(245, 158, 11, 0.15);
    box-shadow: inset 0 0 20px rgba(245, 158, 11, 0.2), 0 0 30px rgba(245, 158, 11, 0.3);
    transform: translateY(-5px);
}
.hero-value-card .icon-wrapper i { color: var(--accent-secondary); transition: transform 0.4s ease; }
.hero-value-card:hover .icon-wrapper i { transform: scale(1.1); }
.hero-value-card h3 { font-size: 1.7rem; margin-bottom: 1rem; color: var(--value-card-title); font-weight: 700; line-height: 1.25; transition: color 0.5s, text-shadow 0.5s; text-shadow: var(--value-card-shadow); }
.hero-value-card p { font-size: 0.95rem; color: var(--value-card-text); line-height: 1.7; margin: 0 auto; max-width: 280px; transition: color 0.5s; }

/* General Layout */
.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.section { padding: 8rem 0; }
.container-flex { display: flex; align-items: center; gap: 6rem; }
.container-flex.row-reverse { flex-direction: row-reverse; }
.content-left, .content-right { flex: 1; min-width: 0; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.w-100 { width: 100%; }
.relative { position: relative; }
.z-10 { z-index: 10; }

/* Navbar Layout */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1.2rem 5%; display: flex; justify-content: space-between; align-items: center; transition: all 0.4s ease; }
.logo a { font-size: 1.6rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); text-transform: uppercase; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--accent-color); }
.theme-btn, .mobile-menu-btn { background: transparent; border: none; font-size: 1.4rem; color: var(--text-primary); cursor: pointer; transition: transform 0.3s; }
.theme-btn:hover { transform: rotate(45deg) scale(1.1); color: var(--accent-secondary); }
.mobile-menu-btn { display: none; }

/* Image Wrappers */
.image-wrapper { position: relative; width: 100%; max-width: 600px; margin: 0 auto; }
.image-frame { border-radius: 30px; overflow: hidden; position: relative; transform-style: preserve-3d; background-color: var(--bg-secondary); }
.image-frame img { width: 100%; height: auto; display: block; transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.image-frame:hover img { transform: scale(1.1); }

/* Features & Services Grid */
.features-wrapper, .services-wrapper { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; }
.feature-item, .service-card { flex: 1 1 calc(33.333% - 1.67rem); min-width: 320px; max-width: 450px; padding: 3rem 2.5rem; text-align: center; }
.feature-item i, .service-icon i { font-size: 3.5rem; margin-bottom: 2rem; display: inline-block; }

/* Contact Form */
.contact-section { position: relative; padding: 8rem 0; }
.contact-wrapper { padding: 4rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info-col h2 { line-height: 1.1; margin-bottom: 1rem; }
.contact-item { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.icon-circle { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.5rem; flex-shrink: 0; border: 1px solid var(--card-border); }
.contact-item span { color: var(--text-secondary); font-size: 1.05rem; }

.liquid-form { display: flex; flex-direction: column; gap: 1.5rem; }
.liquid-form h3 { margin-bottom: 1rem; font-size: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-left: 0.5rem; }
.liquid-form input, .liquid-form textarea { width: 100%; padding: 1.2rem; background: var(--input-bg); border: 1px solid var(--card-border); border-radius: 16px; color: var(--text-primary); font-family: inherit; font-size: 1.1rem; transition: all 0.4s ease; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.liquid-form textarea { resize: vertical; min-height: 120px; }
.liquid-form input:focus, .liquid-form textarea:focus { outline: none; border-color: var(--accent-color); box-shadow: 0 0 20px rgba(37, 99, 235, 0.2); background: var(--glass-bg); transform: translateY(-2px); }

/* Footer */
.footer { border-radius: 30px 30px 0 0; border-bottom: none; padding: 4rem 0 2rem; text-align: center; }
.footer-links { margin-bottom: 2rem; display: flex; justify-content: center; gap: 3rem; }
.footer-links a { font-size: 1rem; font-weight: 600; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent-secondary); }

/* Scroll Animations */
.reveal-up { opacity: 0; transform: translateY(60px) translate3d(0,0,0); transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal-left { opacity: 0; transform: translateX(-80px) translate3d(0,0,0); transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal-right { opacity: 0; transform: translateX(80px) translate3d(0,0,0); transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal-scale { opacity: 0; transform: scale(0.8) translate3d(0,0,0); transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.text-slide-up { display: inline-block; transform: translateY(100%); opacity: 0; transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.active .text-slide-up { transform: translateY(0); opacity: 1; }
.reveal-up.active, .reveal-left.active, .reveal-right.active, .reveal-scale.active { opacity: 1; transform: translate(0, 0) scale(1) translate3d(0,0,0); }
.delay-1 { transition-delay: 0.15s; } .delay-2 { transition-delay: 0.3s; } .delay-3 { transition-delay: 0.45s; } .delay-4 { transition-delay: 0.6s; }

/* 3D Tilt */
.tilt-card { transform-style: preserve-3d; perspective: 1500px; }
.card-content-3d { transform: translateZ(30px); transition: transform 0.3s ease; position: relative; z-index: 2; }

@media (max-width: 1200px) { .contact-wrapper { padding: 3rem; } .contact-grid { gap: 3rem; } }
@media (max-width: 1024px) { .value-grid { grid-template-columns: repeat(2, 1fr); } h1 { font-size: 3.5rem; letter-spacing: -1px; } }
@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--bg-primary); flex-direction: column; padding: 8rem 0; gap: 2rem; z-index: -1; }
    .nav-links.active { display: flex; } .nav-links a { font-size: 1.5rem; } .mobile-menu-btn { display: block; }
    .container-flex { flex-direction: column; gap: 4rem; } .container-flex.row-reverse { flex-direction: column; }
    .value-grid { grid-template-columns: 1fr; } .feature-item, .service-card { flex: 1 1 100%; max-width: 100%; }
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; } .value-strip { margin-top: 2rem; padding: 0; }
    h1 { font-size: 2.8rem; letter-spacing: -0.5px; } h2 { font-size: 2.2rem; } .hero-buttons { flex-direction: column; gap: 1rem; }
    .contact-wrapper { padding: 2rem 1.5rem; }
}

@media (min-width: 320px) and (max-width: 600px) {

h1.hero-title.reveal-up.active {
    padding-top: 161px !important;
}

}