@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

/* ==========================================================================
   Variables & Root Setup
   ========================================================================== */
:root {
   --bg-base: #050505;
   --bg-panel: #0d0d12;
   --bg-panel-light: #16161e;

   --neon-violet: #B026FF;
   --neon-cyan: #00F2FE;
   --grad-primary: linear-gradient(135deg, var(--neon-cyan), var(--neon-violet));

   --text-main: #FFFFFF;
   --text-muted: #8A93A6;

   --border-subtle: rgba(255, 255, 255, 0.05);
   --border-glow: rgba(0, 242, 254, 0.3);

   --font-sys: 'Outfit', sans-serif;
   --header-h: 90px;
   --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
   font-size: 16px;
   overflow-x: hidden;
}

body {
   font-family: var(--font-sys);
   background-color: var(--bg-base);
   color: var(--text-main);
   line-height: 1.6;
   overflow-x: hidden;
}

body::-webkit-scrollbar {
   width: 10px;
}

body::-webkit-scrollbar-track {
   background: var(--bg-base);
}

body::-webkit-scrollbar-thumb {
   background: var(--bg-panel-light);
   border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
   background: var(--neon-violet);
}

a {
   text-decoration: none;
   color: inherit;
   transition: var(--transition);
}

ul {
   list-style: none;
}

/* ==========================================================================
   Typography & Globals
   ========================================================================== */
h1,
h2,
h3,
h4 {
   font-weight: 800;
   line-height: 1.1;
   margin-bottom: 1rem;
}

h1 {
   font-size: 4.8rem;
   letter-spacing: -2px;
}

h2 {
   font-size: 3.5rem;
   text-align: center;
   letter-spacing: -1px;
}

h3 {
   font-size: 1.8rem;
}

p {
   color: var(--text-muted);
   margin-bottom: 1.5rem;
   font-size: 1.15rem;
   font-weight: 300;
}

.container {
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 2rem;
   position: relative;
   z-index: 2;
}

.section-pad {
   padding: 8rem 0;
   position: relative;
}

.text-center {
   text-align: center;
}

.gradient-text {
   background: var(--grad-primary);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 1.2rem 2.8rem;
   font-size: 1.1rem;
   font-weight: 600;
   border-radius: 4px;
   cursor: pointer;
   transition: var(--transition);
   border: 1px solid transparent;
   position: relative;
   overflow: hidden;
   z-index: 1;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.btn-cyber {
   background: transparent;
   color: var(--neon-cyan);
   border-color: var(--neon-cyan);
   box-shadow: 0 0 15px rgba(0, 242, 254, 0.1) inset;
}

.btn-cyber::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: rgba(0, 242, 254, 0.2);
   transition: var(--transition);
   z-index: -1;
   transform: skewX(-15deg);
}

.btn-cyber:hover::before {
   left: 0;
   transform: skewX(0);
}

.btn-cyber:hover {
   box-shadow: 0 0 30px rgba(0, 242, 254, 0.4);
   color: #fff;
   border-color: #fff;
}

.btn-violet {
   background: var(--neon-violet);
   color: #fff;
   box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
}

.btn-violet:hover {
   background: #fff;
   color: var(--bg-base);
   box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes spin3D {
   0% {
      transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
   }

   100% {
      transform: rotateX(360deg) rotateY(360deg) rotateZ(180deg);
   }
}

@keyframes pulseGlow {

   0%,
   100% {
      box-shadow: 0 0 20px var(--border-glow);
   }

   50% {
      box-shadow: 0 0 50px rgba(0, 242, 254, 0.6);
   }
}

@keyframes slideUpFade {
   from {
      opacity: 0;
      transform: translateY(60px);
      filter: blur(5px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
   }
}

.reveal {
   opacity: 0;
   transform: translateY(50px);
   transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
   opacity: 1;
   transform: translateY(0);
}

/* ==========================================================================
   Header (Strictly Identical on All Pages)
   ========================================================================== */
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: var(--header-h);
   z-index: 1000;
   background: rgba(5, 5, 5, 0.85);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   border-bottom: 1px solid var(--border-subtle);
   transition: var(--transition);
}

.site-header.scrolled {
   height: 75px;
   background: rgba(5, 5, 5, 0.98);
   box-shadow: 0 5px 30px rgba(0, 0, 0, 0.8);
   border-bottom-color: rgba(0, 242, 254, 0.2);
}

.header-wrapper {
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 100%;
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2.5rem;
}

.logo-box img {
   height: 50px;
   filter: invert(1);
   transition: var(--transition);
}

.nav-menu {
   display: flex;
   gap: 3rem;
   align-items: center;
}

.nav-link {
   font-size: 0.95rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   color: var(--text-muted);
   position: relative;
   padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
   color: var(--text-main);
}

.nav-link::before {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 2px;
   background: var(--grad-primary);
   transform: scaleX(0);
   transform-origin: right;
   transition: transform 0.4s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
   transform: scaleX(1);
   transform-origin: left;
}

.mobile-btn {
   display: none;
   background: transparent;
   border: none;
   color: var(--neon-cyan);
   font-size: 2.2rem;
   cursor: pointer;
}

/* ==========================================================================
   Hero Section (3D Data Core)
   ========================================================================== */
.hero {
   min-height: 100vh;
   display: flex;
   align-items: center;
   position: relative;
   overflow: hidden;
   padding-top: var(--header-h);
   background: radial-gradient(circle at center, #111 0%, var(--bg-base) 100%);
}

.hero-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.hero-content h1 {
   animation: slideUpFade 1s both;
}

.hero-content p {
   font-size: 1.3rem;
   margin-bottom: 2.5rem;
   animation: slideUpFade 1s 0.2s both;
}

.hero-actions {
   display: flex;
   gap: 1.5rem;
   animation: slideUpFade 1s 0.4s both;
}

/* 3D Wireframe Cube */
.hero-visual {
   height: 500px;
   display: flex;
   justify-content: center;
   align-items: center;
   perspective: 1200px;
   animation: slideUpFade 1s 0.6s both;
}

.cube-wrap {
   width: 200px;
   height: 200px;
   position: relative;
   transform-style: preserve-3d;
   animation: spin3D 20s linear infinite;
}

.cube-face {
   position: absolute;
   width: 200px;
   height: 200px;
   border: 2px solid var(--neon-cyan);
   background: rgba(0, 242, 254, 0.05);
   box-shadow: inset 0 0 40px rgba(176, 38, 255, 0.2), 0 0 20px rgba(0, 242, 254, 0.2);
}

.cube-face.front {
   transform: translateZ(100px);
}

.cube-face.back {
   transform: rotateY(180deg) translateZ(100px);
}

.cube-face.right {
   transform: rotateY(90deg) translateZ(100px);
}

.cube-face.left {
   transform: rotateY(-90deg) translateZ(100px);
}

.cube-face.top {
   transform: rotateX(90deg) translateZ(100px);
}

.cube-face.bottom {
   transform: rotateX(-90deg) translateZ(100px);
}

.cube-core {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 80px;
   height: 80px;
   background: var(--neon-violet);
   transform: translate(-50%, -50%);
   border-radius: 50%;
   filter: blur(20px);
   box-shadow: 0 0 60px var(--neon-violet);
}

/* ==========================================================================
   Data Stats
   ========================================================================== */
.stats-bar {
   border-top: 1px solid var(--border-subtle);
   border-bottom: 1px solid var(--border-subtle);
   background: rgba(13, 13, 18, 0.8);
   backdrop-filter: blur(10px);
   padding: 4rem 0;
}

.stats-container {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 2rem;
}

.stat-box {
   flex: 1;
   text-align: center;
   border-right: 1px solid var(--border-subtle);
   padding: 0 1rem;
}

.stat-box:last-child {
   border-right: none;
}

.stat-box h3 {
   font-size: 4rem;
   background: var(--grad-primary);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   margin-bottom: 0;
   line-height: 1;
   text-shadow: 0 0 30px rgba(0, 242, 254, 0.2);
}

.stat-box p {
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--text-main);
   margin-top: 1rem;
   margin-bottom: 0;
}

/* ==========================================================================
   Services Section (Neon Tracing Cards)
   ========================================================================== */
.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2.5rem;
   margin-top: 5rem;
}

.service-card {
   background: var(--bg-panel);
   border-radius: 8px;
   padding: 4rem 3rem;
   position: relative;
   z-index: 1;
   transition: var(--transition);
   border: 1px solid var(--border-subtle);
   overflow: hidden;
}

/* Neon Trace Effect */
.service-card::before,
.service-card::after {
   content: '';
   position: absolute;
   width: 0;
   height: 2px;
   background: var(--neon-cyan);
   transition: var(--transition);
}

.service-card::before {
   top: 0;
   left: 0;
}

.service-card::after {
   bottom: 0;
   right: 0;
   background: var(--neon-violet);
}

.service-card:hover::before,
.service-card:hover::after {
   width: 100%;
   box-shadow: 0 0 15px var(--neon-cyan);
}

.service-card:hover {
   transform: translateY(-10px);
   background: var(--bg-panel-light);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.sc-icon {
   font-size: 3.5rem;
   margin-bottom: 2rem;
   display: block;
   color: var(--neon-violet);
   text-shadow: 0 0 20px rgba(176, 38, 255, 0.5);
}

.service-card h3 {
   font-size: 1.8rem;
   margin-bottom: 1.5rem;
}

.service-card p {
   font-size: 1.05rem;
   margin-bottom: 2rem;
}

.sc-link {
   color: var(--neon-cyan);
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-size: 0.9rem;
}

.sc-link:hover {
   gap: 15px;
   color: #fff;
   text-shadow: 0 0 10px var(--neon-cyan);
}

/* ==========================================================================
   Industry Matrices
   ========================================================================== */
.industry-section {
   background: url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><path d="M0 40 L40 0 M0 0 L40 40" stroke="rgba(255,255,255,0.02)" stroke-width="1" fill="none"/></svg>');
}

.ind-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   margin-top: 4rem;
}

.ind-box {
   background: rgba(13, 13, 18, 0.9);
   padding: 3rem;
   border: 1px solid var(--border-subtle);
   border-radius: 4px;
   transition: var(--transition);
   border-top: 3px solid var(--neon-violet);
}

.ind-box:hover {
   transform: scale(1.05);
   border-color: var(--neon-cyan);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   ROI Calculator (Donut Chart UI)
   ========================================================================== */
.calc-module {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 5rem;
   background: var(--bg-panel);
   border: 1px solid var(--border-subtle);
   border-radius: 12px;
   padding: 5rem;
   margin-top: 4rem;
   box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
   position: relative;
}

.sliders-wrap {
   display: flex;
   flex-direction: column;
   gap: 3rem;
   justify-content: center;
}

.slide-group {
   position: relative;
}

.slide-meta {
   display: flex;
   justify-content: space-between;
   margin-bottom: 1.5rem;
   font-weight: 600;
   font-size: 1.1rem;
}

.slide-meta span:last-child {
   color: var(--neon-cyan);
   text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

input[type=range] {
   -webkit-appearance: none;
   width: 100%;
   height: 4px;
   background: var(--border-subtle);
   outline: none;
   border-radius: 2px;
}

input[type=range]::-webkit-slider-thumb {
   -webkit-appearance: none;
   width: 20px;
   height: 20px;
   background: var(--neon-violet);
   border-radius: 50%;
   cursor: pointer;
   box-shadow: 0 0 15px var(--neon-violet);
   transition: 0.2s;
   border: 2px solid #fff;
}

input[type=range]::-webkit-slider-thumb:hover {
   transform: scale(1.4);
}

/* Circular Output Chart */
.chart-output {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
}

.circle-svg {
   width: 300px;
   height: 300px;
   transform: rotate(-90deg);
}

.circle-bg {
   fill: none;
   stroke: var(--bg-panel-light);
   stroke-width: 15;
}

.circle-progress {
   fill: none;
   stroke: url(#gradient);
   stroke-width: 15;
   stroke-linecap: round;
   stroke-dasharray: 800;
   stroke-dashoffset: 200;
   transition: stroke-dashoffset 1s ease-out;
}

.chart-inner {
   position: absolute;
   text-align: center;
}

.chart-inner h4 {
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--text-muted);
   margin-bottom: 0.5rem;
}

.revenue-display {
   font-size: 3.5rem;
   font-weight: 800;
   color: #fff;
   text-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
   line-height: 1;
}

/* ==========================================================================
   Campaign Analytics Report (CSS Grid Graph)
   ========================================================================== */
.report-section {
   background: linear-gradient(to bottom, var(--bg-base), var(--bg-panel));
}

.graph-ui {
   background: var(--bg-base);
   border: 1px solid var(--border-subtle);
   border-radius: 8px;
   padding: 4rem;
   margin-top: 4rem;
   height: 400px;
   display: flex;
   align-items: flex-end;
   justify-content: space-around;
   position: relative;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Grid lines */
.graph-ui::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
   background-size: 100% 20%;
   pointer-events: none;
}

.g-col {
   display: flex;
   flex-direction: column;
   align-items: center;
   width: 15%;
   position: relative;
   z-index: 2;
}

.g-bar {
   width: 100%;
   background: var(--grad-primary);
   height: 0;
   transition: height 1.5s cubic-bezier(0.23, 1, 0.32, 1);
   position: relative;
   box-shadow: 0 0 20px rgba(176, 38, 255, 0.2);
   border-radius: 4px 4px 0 0;
}

.g-val {
   position: absolute;
   top: -35px;
   color: #fff;
   font-weight: 800;
   opacity: 0;
   transition: 0.3s;
   text-shadow: 0 0 10px var(--neon-cyan);
}

.g-col:hover .g-bar {
   filter: brightness(1.2);
}

.g-col:hover .g-val {
   opacity: 1;
   transform: translateY(-5px);
}

.g-label {
   margin-top: 1.5rem;
   color: var(--text-muted);
   font-size: 1rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
}

/* ==========================================================================
   Live Chat / Support Protocol
   ========================================================================== */
.support-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 5rem;
   align-items: center;
   margin-top: 4rem;
}

.terminal-window {
   background: var(--bg-base);
   border: 1px solid var(--border-subtle);
   border-radius: 8px;
   overflow: hidden;
   font-family: monospace;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.term-header {
   background: var(--bg-panel-light);
   padding: 1rem;
   display: flex;
   gap: 0.5rem;
   border-bottom: 1px solid var(--border-subtle);
}

.dot {
   width: 12px;
   height: 12px;
   border-radius: 50%;
}

.dot-r {
   background: #ff5f56;
}

.dot-y {
   background: #ffbd2e;
}

.dot-g {
   background: #27c93f;
}

.term-body {
   padding: 2rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.term-msg {
   color: var(--neon-cyan);
   font-size: 1rem;
   line-height: 1.5;
}

.term-msg.system {
   color: var(--text-muted);
}

.term-msg.client {
   color: var(--neon-violet);
}

.type-cursor {
   display: inline-block;
   width: 10px;
   height: 15px;
   background: var(--neon-cyan);
   animation: blink 1s step-end infinite;
}

@keyframes blink {
   50% {
      opacity: 0;
   }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.client-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   margin-top: 4rem;
}

.client-card {
   background: var(--bg-panel);
   border: 1px solid var(--border-subtle);
   padding: 3rem;
   border-radius: 4px;
   position: relative;
   transition: var(--transition);
}

.client-card:hover {
   border-color: var(--neon-violet);
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(176, 38, 255, 0.15);
}

.c-quote {
   color: #fff;
   font-size: 1.1rem;
   line-height: 1.7;
   font-style: italic;
   margin-bottom: 2rem;
}

.c-profile {
   display: flex;
   align-items: center;
   gap: 1rem;
   border-top: 1px solid var(--border-subtle);
   padding-top: 1.5rem;
}

.c-avatar {
   width: 50px;
   height: 50px;
   background: var(--bg-panel-light);
   border: 2px solid var(--neon-cyan);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: bold;
   color: var(--neon-cyan);
}

.c-info h4 {
   margin: 0;
   font-size: 1.1rem;
}

.c-info span {
   color: var(--text-muted);
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 1px;
}

/* ==========================================================================
   Strict Footer (Identical on All Pages)
   ========================================================================== */
.site-footer {
   background: #020202;
   padding: 6rem 0 2rem;
   border-top: 1px solid var(--border-subtle);
   position: relative;
}

.footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
   gap: 4rem;
   margin-bottom: 4rem;
}

.f-logo img {
   height: 50px;
   filter: invert(1);
   margin-bottom: 1.5rem;
}

.f-desc {
   color: var(--text-muted);
   font-size: 1rem;
   line-height: 1.8;
   padding-right: 2rem;
}

.f-title {
   color: #fff;
   font-size: 1.2rem;
   margin-bottom: 1.5rem;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   position: relative;
   padding-bottom: 0.5rem;
}

.f-title::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 30px;
   height: 2px;
   background: var(--neon-cyan);
}

.f-links li {
   margin-bottom: 1rem;
}

.f-links a {
   color: var(--text-muted);
   font-size: 1rem;
   transition: var(--transition);
}

.f-links a:hover {
   color: var(--neon-violet);
   padding-left: 8px;
}

.f-contact li {
   display: flex;
   gap: 1rem;
   color: var(--text-muted);
   margin-bottom: 1rem;
   align-items: flex-start;
}

.f-contact i {
   color: var(--neon-cyan);
   font-style: normal;
   font-weight: bold;
}

.footer-bottom {
   border-top: 1px solid var(--border-subtle);
   padding-top: 2rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   color: var(--text-muted);
   font-size: 0.9rem;
}

.f-legal {
   display: flex;
   gap: 2rem;
}

.f-legal a:hover {
   color: #fff;
   text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Legal Pages Specifics
   ========================================================================== */
.legal-header {
   padding: 12rem 0 5rem;
   text-align: center;
   background: radial-gradient(circle at top, var(--bg-panel-light), var(--bg-base));
   border-bottom: 1px solid var(--border-subtle);
}

.legal-box {
   max-width: 900px;
   margin: 4rem auto;
   background: var(--bg-panel);
   border: 1px solid var(--border-subtle);
   padding: 5rem;
   border-radius: 8px;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
   position: relative;
}

.legal-box::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 4px;
   background: var(--grad-primary);
   border-radius: 8px 8px 0 0;
}

.legal-box h2 {
   font-size: 2rem;
   text-align: left;
   color: var(--neon-cyan);
   margin: 3rem 0 1.5rem;
}

.legal-box p {
   margin-bottom: 1.5rem;
   font-size: 1.1rem;
   color: #ddd;
}

.legal-box ul {
   padding-left: 2rem;
   margin-bottom: 1.5rem;
}

.legal-box li {
   color: #ddd;
   margin-bottom: 0.8rem;
   list-style: square;
}

/* ==========================================================================
   Contact Page Specifics
   ========================================================================== */
.contact-wrap {
   max-width: 800px;
   margin: 4rem auto;
   background: var(--bg-panel);
   padding: 4rem;
   border-radius: 8px;
   border: 1px solid var(--border-subtle);
   position: relative;
   box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.contact-wrap::before {
   content: '';
   position: absolute;
   top: -1px;
   left: -1px;
   right: -1px;
   bottom: -1px;
   background: var(--grad-primary);
   z-index: -1;
   border-radius: 9px;
   opacity: 0.5;
}

.form-row {
   display: flex;
   gap: 2rem;
   margin-bottom: 2rem;
}

.form-grp {
   flex: 1;
}

.form-ctrl {
   width: 100%;
   background: var(--bg-base);
   border: 1px solid var(--border-subtle);
   padding: 1.2rem;
   color: #fff;
   font-family: var(--font-sys);
   font-size: 1rem;
   border-radius: 4px;
   transition: var(--transition);
   outline: none;
}

.form-ctrl:focus {
   border-color: var(--neon-cyan);
   box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

textarea.form-ctrl {
   resize: vertical;
   min-height: 150px;
}

select.form-ctrl option {
   background: var(--bg-base);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
   h1 {
      font-size: 4rem;
   }

   .hero-grid {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .hero-actions {
      justify-content: center;
   }

   .hero-visual {
      display: none;
   }

   .calc-module {
      grid-template-columns: 1fr;
      padding: 3rem;
      gap: 3rem;
   }

   .support-grid {
      grid-template-columns: 1fr;
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
   }

   .ind-grid,
   .client-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 768px) {
   .nav-menu {
      position: fixed;
      top: var(--header-h);
      left: -100%;
      width: 100%;
      height: calc(100vh - var(--header-h));
      background: rgba(5, 5, 5, 0.98);
      flex-direction: column;
      justify-content: center;
      transition: var(--transition);
      backdrop-filter: blur(20px);
   }

   .nav-menu.active {
      left: 0;
   }

   .mobile-btn {
      display: block;
   }

   h1 {
      font-size: 3rem;
   }

   h2 {
      font-size: 2.5rem;
   }

   .stats-container {
      flex-direction: column;
   }

   .stat-box {
      border-right: none;
      border-bottom: 1px solid var(--border-subtle);
      padding: 2rem 0;
   }

   .stat-box:last-child {
      border-bottom: none;
   }

   .form-row {
      flex-direction: column;
      gap: 2rem;
   }

   .footer-grid {
      grid-template-columns: 1fr;
   }

   .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
   }

   .ind-grid,
   .client-grid {
      grid-template-columns: 1fr;
   }

   .graph-ui {
      padding: 1.5rem;
      overflow-x: auto;
      justify-content: flex-start;
      gap: 2rem;
   }

   .g-col {
      min-width: 50px;
   }

   .legal-box {
      padding: 2.5rem;
   }

   .contact-wrap {
      padding: 2.5rem;
   }
}