/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Colors */
    --primary-dark: #050a14;
    --secondary-dark: #0f172a;
    --accent-purple: #7000ff;
    --accent-cyan: #00f0ff;
    --accent-pink: #ff0055;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Fonts */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 20px rgba(112, 0, 255, 0.3);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   2. UTILITIES & ANIMATIONS
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-purple), #5500aa);
    color: white;
    border: none;
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(112, 0, 255, 0.6);
    transform: translateY(-2px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    100% {
        left: 200%;
    }
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-secondary:hover {
    background: var(--accent-cyan);
    color: var(--primary-dark);
    box-shadow: 0 0 15px var(--accent-cyan);
}

/* Scroll Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    transition-delay: 0.1s;
    animation-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

.float-anim-delayed {
    animation: float 7s ease-in-out infinite 1s;
}

/* Background Noise & Orbs */
.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMDAlJyBoZWlnaHQ9JzIwMCUnPjxmaWx0ZXIgaWQ9J25vaXNlJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC42NScgbnVtT2N0YXZlcz0nMScgc3RpdGNoVGlsZXM9J3N0aXRjaCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnIGZpbHRlcj0ndXJsKCNub2lzZSknIG9wYWNpdHk9JzAuNScvPjwvc3ZnPg==');
    z-index: 0;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.2;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    top: -100px;
    left: -100px;
    animation: pulse 10s infinite alternate;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-cyan);
    bottom: -50px;
    right: -50px;
    animation: pulse 8s infinite alternate-reverse;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

/* =========================================
   3. HEADER
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.3s;
}

.header.scrolled {
    background: rgba(5, 10, 20, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 50px;
    width: auto;
    filter: invert(1);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-main);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 1002;
}

.bar {
    position: absolute;
    width: 100%;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.bar-top {
    top: 0;
}

.bar-middle {
    top: 50%;
    transform: translateY(-50%);
}

.bar-bottom {
    bottom: 0;
}

.mobile-toggle.active .bar-top {
    transform: rotate(45deg);
    top: 11px;
}

.mobile-toggle.active .bar-middle {
    opacity: 0;
}

.mobile-toggle.active .bar-bottom {
    transform: rotate(-45deg);
    bottom: 11px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-content ul {
    text-align: center;
}

.mobile-link {
    display: block;
    font-size: 2rem;
    font-family: var(--font-heading);
    margin: 20px 0;
    color: white;
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 2;
}

.hero-text-wrapper {
    max-width: 600px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(0, 240, 255, 0.1);
}

.hero-text-wrapper h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text-wrapper p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-card);
}

.stats-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 250px;
}

.stats-card:nth-child(1) {
    top: 20%;
    left: 0;
}

.stats-card:nth-child(2) {
    bottom: 20%;
    right: 0;
    background: rgba(112, 0, 255, 0.15);
}

.icon-glow {
    font-size: 2rem;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 10px var(--accent-cyan));
}

.stats-info {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.stats-info small {
    display: block;
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* =========================================
   5. SECTIONS GENERAL
   ========================================= */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header {
    margin-bottom: 60px;
}

.center-text {
    text-align: center;
}

.tag {
    color: var(--accent-purple);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.align-center {
    align-items: center;
}

.col-half {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

/* About Section Specifics */
.image-stack {
    position: relative;
    height: 400px;
}

.img-box {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.main-img {
    width: 80%;
    height: 300px;
    top: 0;
    left: 0;
    z-index: 2;
}

.decoration-img {
    width: 60%;
    height: 250px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.placeholder-img-dark,
.placeholder-img-purple {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.placeholder-img-dark {
    background: #1a2236;
}

.placeholder-img-purple {
    background: var(--accent-purple);
}

.check-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.check-list i {
    color: var(--accent-cyan);
    margin-right: 10px;
}

/* =========================================
   6. SERVICES GRID (Flip Cards)
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
}

.card-front {
    z-index: 2;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-purple), #220055);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.3);
}

.card-front h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #1a0b33, #0a0f1c);
    border: 1px solid var(--accent-purple);
}

.card-back ul {
    text-align: left;
    margin: 20px 0;
}

.card-back li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.card-back li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

.btn-link {
    color: var(--accent-cyan);
    font-weight: 600;
    margin-top: auto;
}

/* =========================================
   7. CALCULATOR SECTION
   ========================================= */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.calc-header {
    margin-bottom: 30px;
    text-align: center;
}

.calc-body {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.calc-inputs,
.calc-results {
    flex: 1;
    min-width: 300px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-muted);
}

.input-group input[type="number"] {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
    padding: 12px;
    color: white;
    border-radius: 8px;
    font-family: var(--font-heading);
}

.input-group input[type="range"] {
    width: 100%;
    margin-top: 10px;
    accent-color: var(--accent-cyan);
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.result-box {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-box.highlight {
    background: rgba(112, 0, 255, 0.15);
    border-color: var(--accent-purple);
    grid-column: span 2;
}

.result-box span {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 5px;
}

.result-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.result-box.highlight h3 {
    font-size: 2rem;
    color: white;
    text-shadow: 0 0 10px var(--accent-purple);
}

/* =========================================
   8. REPORTING TABS & MOCKUP
   ========================================= */
.tab-controls {
    display: flex;
    gap: 10px;
    margin: 30px 0;
}

.tab-btn {
    background: transparent;
    border: 1px solid #334155;
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.05);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mockup-window {
    padding: 0;
    overflow: hidden;
}

.window-header {
    background: #1e293b;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.window-body {
    padding: 20px;
    background: #0f172a;
    height: 300px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
}

.chart-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent-purple), var(--accent-cyan));
    opacity: 0.7;
    border-radius: 4px 4px 0 0;
    transition: height 1s;
}

.bar-1 {
    height: 30%;
    animation: growBar 1s forwards 0.1s;
}

.bar-2 {
    height: 50%;
    animation: growBar 1s forwards 0.2s;
}

.bar-3 {
    height: 45%;
    animation: growBar 1s forwards 0.3s;
}

.bar-4 {
    height: 70%;
    animation: growBar 1s forwards 0.4s;
}

.bar-5 {
    height: 60%;
    animation: growBar 1s forwards 0.5s;
}

.bar-6 {
    height: 85%;
    animation: growBar 1s forwards 0.6s;
}

@keyframes growBar {
    from {
        transform: scaleY(0);
        transform-origin: bottom;
    }

    to {
        transform: scaleY(1);
    }
}

.line-graph {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.graph-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 5px var(--accent-cyan));
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 2s forwards 1s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* =========================================
   9. TESTIMONIALS (Static) & CTA
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-purple);
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.client-details h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
}

.client-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(to right, #050a14, #1a0b33);
    position: relative;
    overflow: hidden;
}

.cta-bg-anim {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 20px,
            rgba(112, 0, 255, 0.05) 20px,
            rgba(112, 0, 255, 0.05) 40px);
    animation: bgSlide 20s linear infinite;
}

@keyframes bgSlide {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    margin-top: 30px;
}

/* =========================================
   10. FOOTER
   ========================================= */
.footer {
    background: #02040a;
    border-top: 1px solid #1e293b;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-logo img {
    height: 50px;
    filter: invert(1);
}

.branding-col p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent-purple);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: white;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
}

.contact-list i {
    color: var(--accent-purple);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 20px 0;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* =========================================
   11. SUBPAGE STYLES
   ========================================= */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(to bottom, #0f172a, #050a14);
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumbs {
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--accent-cyan);
}

.legal-content {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 80px;
}

.legal-content h2 {
    margin: 30px 0 15px;
    color: var(--accent-cyan);
}

.legal-content p,
.legal-content ul {
    margin-bottom: 15px;
    color: #cbd5e1;
}

.legal-content ul {
    padding-left: 20px;
    list-style: disc;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(112, 0, 255, 0.1);
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #334155;
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* =========================================
   12. MEDIA QUERIES
   ========================================= */
@media (max-width: 992px) {
    .hero-text-wrapper h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-wrapper {
        margin-bottom: 50px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 15px;
    }

    .hero-visual {
        width: 100%;
        height: 300px;
        display: flex;
        justify-content: center;
    }

    .stats-card {
        position: relative;
        width: 90%;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-bottom: 20px;
    }

    .stats-card:nth-child(2) {
        margin-left: auto;
    }

    .col-half {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .calc-body {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }
}