/* ==========================================================================
   Base Variables & Reset (Neon Mint & Obsidian Theme)
   ========================================================================== */
:root {
    --bg-base: #050507;
    --bg-surface: rgba(18, 20, 24, 0.7);
    --bg-glass: rgba(25, 28, 35, 0.4);
    --mint: #00E676;
    --mint-glow: rgba(0, 230, 118, 0.4);
    --cyan: #00E5FF;
    --cyan-glow: rgba(0, 229, 255, 0.4);
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --border-light: rgba(255, 255, 255, 0.06);
    --border-mint: rgba(0, 230, 118, 0.3);
    --font-heading: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --transition-fast: 0.3s ease;
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-base);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Grid Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(var(--border-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    pointer-events: none;
    opacity: 0.5;
}

/* Glowing Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--mint);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--cyan);
    bottom: 10%;
    right: -5%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--mint), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* Cyber Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.btn-primary {
    background: rgba(0, 230, 118, 0.1);
    color: var(--mint);
    border-color: var(--mint);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.1) inset, 0 0 20px rgba(0, 230, 118, 0.2);
    backdrop-filter: blur(5px);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.4), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 150%;
}

.btn-primary:hover {
    background: var(--mint);
    color: var(--bg-base);
    box-shadow: 0 0 30px var(--mint-glow);
}

/* Glass Card Component */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 3rem;
}

/* ==========================================================================
   STRICT HEADER CONSISTENCY
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    padding: 0.75rem 0;
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 50px;
    filter: invert(1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    position: relative;
}

.nav-links a:not(.btn)::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mint);
    transition: var(--transition-fast);
}

.nav-links a:not(.btn):hover::before {
    width: 100%;
    box-shadow: 0 0 10px var(--mint);
}

.nav-links a:not(.btn):hover {
    color: var(--mint);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   Index Section 1: Cyber Hero
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    border-left: 2px solid var(--mint);
    padding-left: 1rem;
}

.typewriter-text {
    display: inline-block;
    min-height: 1.2em;
    border-right: 3px solid var(--mint);
    animation: blink 0.8s infinite;
    color: var(--mint);
    text-shadow: 0 0 10px var(--mint-glow);
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Floating UI in Hero */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.floating-ui {
    width: 350px;
    background: rgba(10, 15, 20, 0.8);
    border: 1px solid var(--border-mint);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px var(--mint-glow);
    transform: rotateY(-15deg) rotateX(10deg);
    animation: floatUI 6s ease-in-out infinite;
}

.ui-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.ui-title {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.ui-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mint);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.ui-stat span {
    font-size: 1rem;
    color: var(--text-main);
}

.ui-chart-line {
    width: 100%;
    height: 60px;
    margin-top: 1rem;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.ui-chart-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--mint), transparent);
    clip-path: polygon(0 100%, 20% 80%, 40% 90%, 60% 40%, 80% 60%, 100% 10%);
    animation: slideChart 3s linear infinite;
    opacity: 0.5;
}

@keyframes floatUI {

    0%,
    100% {
        transform: translateY(0) rotateY(-15deg) rotateX(10deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-10deg) rotateX(15deg);
    }
}

@keyframes slideChart {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ==========================================================================
   Index Section 2: Logo Marquee
   ========================================================================== */
.marquee-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-surface);
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scrollMarquee 25s linear infinite;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    margin: 0 4rem;
    text-transform: uppercase;
    opacity: 0.4;
    transition: 0.3s;
}

.marquee-item:hover {
    opacity: 1;
    color: var(--mint);
    text-shadow: 0 0 10px var(--mint-glow);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   Index Section 3: About / Data
   ========================================================================== */
.about-section {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.data-node {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-glass);
    border-left: 3px solid var(--cyan);
    border-radius: 0 8px 8px 0;
}

.node-icon {
    font-size: 2rem;
    color: var(--cyan);
}

/* ==========================================================================
   Index Section 4: Metrics Counters
   ========================================================================== */
.metrics-section {
    padding: 4rem 0 8rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.metric-box {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.metric-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.metric-val {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.metric-label {
    color: var(--mint);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ==========================================================================
   Index Section 5: Services (3D Glass Cards)
   ========================================================================== */
.services-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent, rgba(0, 230, 118, 0.03), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    perspective: 1000px;
}

.srv-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 3rem 2rem;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    transform-style: preserve-3d;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.srv-card:hover::before {
    left: 150%;
}

.srv-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid var(--border-mint);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--mint);
    margin-bottom: 1.5rem;
    transform: translateZ(30px);
}

.srv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transform: translateZ(20px);
}

.srv-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    transform: translateZ(10px);
}

/* ==========================================================================
   Index Section 6: ROI Calculator
   ========================================================================== */
.calc-section {
    padding: 8rem 0;
}

.calc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.calc-controls {
    background: var(--bg-surface);
    padding: 4rem;
    backdrop-filter: blur(10px);
}

.calc-output {
    background: rgba(0, 230, 118, 0.05);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-left: 1px solid var(--border-mint);
}

.calc-output::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--mint-glow) 0%, transparent 70%);
    opacity: 0.2;
}

.range-group {
    margin-bottom: 3rem;
}

.range-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
}

.range-val {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan-glow);
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--cyan);
    cursor: pointer;
    margin-top: -8px;
    box-shadow: 0 0 15px var(--cyan);
}

.result-box {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.result-val {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.result-val.highlight {
    color: var(--mint);
    text-shadow: 0 0 20px var(--mint-glow);
}

/* ==========================================================================
   Index Section 7: CSS Data Report Chart
   ========================================================================== */
.report-section {
    padding: 8rem 0;
}

.chart-wrapper {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    margin-top: 3rem;
}

.css-line-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 300px;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.chart-bar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
    height: 100%;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.chart-bar {
    width: 10px;
    background: var(--mint);
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 15px var(--mint-glow);
    transition: height 1.5s ease;
    position: relative;
}

.chart-bar::before {
    content: attr(data-val);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.chart-month {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Simulated Line via SVG background */
.chart-bg-line {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,80 L20,60 L40,40 L60,50 L80,20 L100,10" fill="none" stroke="%2300E5FF" stroke-width="2"/></svg>') no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    opacity: 0.6;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
}

/* ==========================================================================
   Index Section 8: Industries Grid
   ========================================================================== */
.industries-section {
    padding: 8rem 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.ind-item {
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.ind-item:hover {
    border-color: var(--cyan);
    background: rgba(0, 229, 255, 0.05);
    transform: translateY(-5px);
}

.ind-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(1);
    transition: 0.3s;
}

.ind-item:hover .ind-icon {
    filter: grayscale(0);
}

.ind-item h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Index Section 9: Testimonials
   ========================================================================== */
.testi-section {
    padding: 8rem 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testi-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--mint);
    padding: 3rem;
    border-radius: 12px;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 1;
}

.testi-txt {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testi-author strong {
    display: block;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.testi-author span {
    color: var(--cyan);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Index Section 10: CTA / Newsletter
   ========================================================================== */
.cta-section {
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(0, 229, 255, 0.1));
    border: 1px solid var(--border-mint);
    border-radius: 20px;
    padding: 5rem 2rem;
    backdrop-filter: blur(10px);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-input {
    flex: 1;
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-body);
    outline: none;
    transition: 0.3s;
}

.cta-input:focus {
    border-color: var(--mint);
    box-shadow: 0 0 10px var(--mint-glow);
}

/* ==========================================================================
   STRICT FOOTER CONSISTENCY
   ========================================================================== */
.site-footer {
    background: #020203;
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--border-light);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand img {
    height: 45px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-links span {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--mint);
    padding-left: 5px;
    text-shadow: 0 0 8px var(--mint-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Inner Pages (Contact, Privacy, Terms, Disclaimer)
   ========================================================================== */
.page-header {
    padding: 12rem 0 6rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    background: radial-gradient(circle at top, rgba(0, 230, 118, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-info-card h3 {
    color: var(--cyan);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.cyber-form {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-light);
    color: #fff;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    font-family: var(--font-body);
    outline: none;
    transition: 0.3s;
}

.form-control:focus {
    border-bottom-color: var(--mint);
    box-shadow: 0 10px 10px -10px var(--mint-glow);
}

.form-label {
    position: absolute;
    top: 0.5rem;
    left: 0;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s ease all;
    font-size: 1.1rem;
}

.form-control:focus~.form-label,
.form-control:not(:placeholder-shown)~.form-label {
    top: -1.5rem;
    font-size: 0.85rem;
    color: var(--mint);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

textarea.form-control {
    resize: none;
    min-height: 100px;
}

/* Legal Pages Content */
.legal-wrapper {
    padding: 6rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.legal-content h2 {
    color: #fff;
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    border-left: 3px solid var(--cyan);
    padding-left: 1rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1024px) {

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-visual {
        height: 400px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calc-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-base);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        position: relative;
    }

    .services-grid,
    .testi-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .calc-controls,
    .calc-output,
    .cyber-form {
        padding: 2rem;
    }

    .cta-form {
        flex-direction: column;
    }

    .css-line-chart {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 2rem;
    }
}