/* ==========================================================================
   Variables & Base Setup
   ========================================================================== */
:root {
   --bg-main: #030508;
   --bg-card: #0a0f16;
   --bg-card-hover: #111a26;
   --neon-cyan: #00f3ff;
   --neon-cyan-glow: rgba(0, 243, 255, 0.4);
   --neon-green: #39ff14;
   --neon-green-glow: rgba(57, 255, 20, 0.3);
   --text-light: #e0e6ed;
   --text-dim: #8892b0;
   --font-primary: 'Inter', system-ui, sans-serif;
   --header-h: 85px;
   --transition-fast: 0.3s ease;
   --transition-slow: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
   overflow-x: hidden;
}

body {
   font-family: var(--font-primary);
   background-color: var(--bg-main);
   color: var(--text-light);
   line-height: 1.7;
   overflow-x: hidden;
}

a {
   text-decoration: none;
   color: inherit;
   transition: var(--transition-fast);
}

ul {
   list-style: none;
}

/* ==========================================================================
   Typography & Reusables
   ========================================================================== */
h1,
h2,
h3,
h4 {
   font-weight: 800;
   line-height: 1.1;
   margin-bottom: 1rem;
   color: #fff;
}

h1 {
   font-size: 4.5rem;
   letter-spacing: -1px;
}

h2 {
   font-size: 3rem;
   text-align: center;
}

p {
   color: var(--text-dim);
   margin-bottom: 1.5rem;
   font-size: 1.1rem;
}

.container {
   max-width: 1300px;
   margin: 0 auto;
   padding: 0 2rem;
}

.py-section {
   padding: 8rem 0;
}

.text-center {
   text-align: center;
}

.highlight-cyan {
   color: var(--neon-cyan);
   text-shadow: 0 0 15px var(--neon-cyan-glow);
}

.highlight-green {
   color: var(--neon-green);
   text-shadow: 0 0 15px var(--neon-green-glow);
}

.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 1rem 2.5rem;
   font-size: 1rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   border-radius: 4px;
   cursor: pointer;
   transition: var(--transition-fast);
   position: relative;
   overflow: hidden;
   z-index: 1;
   border: 1px solid transparent;
}

.btn-neon {
   background: transparent;
   color: var(--neon-cyan);
   border-color: var(--neon-cyan);
   box-shadow: 0 0 10px var(--neon-cyan-glow) inset, 0 0 10px var(--neon-cyan-glow);
}

.btn-neon:hover {
   background: var(--neon-cyan);
   color: var(--bg-main);
   box-shadow: 0 0 30px var(--neon-cyan-glow) inset, 0 0 30px var(--neon-cyan-glow);
}

.btn-solid {
   background: var(--neon-green);
   color: var(--bg-main);
   box-shadow: 0 0 20px var(--neon-green-glow);
}

.btn-solid:hover {
   background: #fff;
   color: var(--bg-main);
   box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes spin3D {
   0% {
      transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
   }

   100% {
      transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
   }
}

@keyframes pulse {

   0%,
   100% {
      opacity: 1;
   }

   50% {
      opacity: 0.5;
   }
}

@keyframes slideUpFade {
   from {
      opacity: 0;
      transform: translateY(40px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes scanline {
   0% {
      top: -100%;
   }

   100% {
      top: 200%;
   }
}

.animate-on-scroll {
   opacity: 0;
   transform: translateY(40px);
   transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
   opacity: 1;
   transform: translateY(0);
}

/* ==========================================================================
   Strict Header (Identical across all pages)
   ========================================================================== */
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: var(--header-h);
   z-index: 9999;
   background: rgba(3, 5, 8, 0.8);
   backdrop-filter: blur(15px);
   border-bottom: 1px solid rgba(0, 243, 255, 0.1);
   transition: var(--transition-fast);
}

.site-header.scrolled {
   height: 70px;
   background: rgba(3, 5, 8, 0.95);
   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
   border-bottom: 1px solid rgba(0, 243, 255, 0.3);
}

.header-inner {
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 100%;
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2rem;
}

.logo-box img {
   height: 50px;
   filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
   transition: var(--transition-fast);
}

.site-header.scrolled .logo-box img {
   height: 45px;
}

.nav-links {
   display: flex;
   gap: 2.5rem;
   align-items: center;
}

.nav-item {
   font-size: 0.9rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   position: relative;
   color: var(--text-light);
}

.nav-item::before {
   content: '';
   position: absolute;
   bottom: -5px;
   left: 0;
   width: 0%;
   height: 2px;
   background: var(--neon-cyan);
   transition: var(--transition-fast);
   box-shadow: 0 0 10px var(--neon-cyan);
}

.nav-item:hover::before,
.nav-item.active::before {
   width: 100%;
}

.menu-toggle {
   display: none;
   background: transparent;
   border: none;
   color: var(--neon-cyan);
   font-size: 2rem;
   cursor: pointer;
}

/* ==========================================================================
   Hero Section (3D Data Core)
   ========================================================================== */
.hero {
   min-height: 100vh;
   display: flex;
   align-items: center;
   position: relative;
   padding-top: var(--header-h);
   background: radial-gradient(circle at center, #0a1128 0%, var(--bg-main) 70%);
   overflow: hidden;
}

.hero::after {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   background: linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
   background-size: 50px 50px;
   z-index: 0;
   pointer-events: none;
}

.hero-content {
   position: relative;
   z-index: 2;
   width: 55%;
}

.hero-content h1 {
   animation: slideUpFade 1s ease 0.2s both;
}

.hero-content p {
   font-size: 1.3rem;
   animation: slideUpFade 1s ease 0.4s both;
   color: #a1aabf;
}

.hero-btns {
   display: flex;
   gap: 1.5rem;
   margin-top: 2.5rem;
   animation: slideUpFade 1s ease 0.6s both;
}

.hero-visual {
   position: absolute;
   right: 5%;
   top: 50%;
   transform: translateY(-50%);
   width: 40%;
   height: 500px;
   z-index: 1;
   perspective: 1200px;
   display: flex;
   justify-content: center;
   align-items: center;
}

/* 3D Rings Animation */
.ring-container {
   width: 300px;
   height: 300px;
   transform-style: preserve-3d;
   animation: spin3D 15s linear infinite;
}

.ring {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: 2px dashed var(--neon-cyan);
   border-radius: 50%;
   opacity: 0.6;
   box-shadow: 0 0 20px var(--neon-cyan-glow);
}

.ring:nth-child(1) {
   transform: rotateX(45deg) rotateY(45deg);
   border-color: var(--neon-green);
}

.ring:nth-child(2) {
   transform: rotateX(-45deg) rotateY(45deg);
}

.ring:nth-child(3) {
   transform: rotateX(90deg) rotateY(0deg);
   border-style: solid;
   border-width: 1px;
}

.core {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 60px;
   height: 60px;
   background: var(--neon-cyan);
   border-radius: 50%;
   box-shadow: 0 0 50px 20px var(--neon-cyan-glow);
   animation: pulse 2s infinite;
}

/* ==========================================================================
   Trust Banner (Marquee)
   ========================================================================== */
.trust-banner {
   border-top: 1px solid rgba(0, 243, 255, 0.1);
   border-bottom: 1px solid rgba(0, 243, 255, 0.1);
   background: var(--bg-card);
   padding: 2rem 0;
   overflow: hidden;
   display: flex;
   white-space: nowrap;
}

.trust-track {
   display: flex;
   animation: marquee 20s linear infinite;
}

.trust-item {
   margin: 0 3rem;
   font-size: 1.5rem;
   font-weight: 800;
   color: rgba(255, 255, 255, 0.1);
   text-transform: uppercase;
   letter-spacing: 2px;
}

@keyframes marquee {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(-50%);
   }
}

/* ==========================================================================
   Stats / About Section
   ========================================================================== */
.stats-wrap {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
   margin-top: 3rem;
}

.stat-box {
   background: var(--bg-card);
   border: 1px solid rgba(255, 255, 255, 0.05);
   padding: 3rem 2rem;
   text-align: center;
   border-radius: 8px;
   position: relative;
   overflow: hidden;
   transition: var(--transition-fast);
}

.stat-box::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 2px;
   background: var(--neon-green);
   transform: scaleX(0);
   transform-origin: left;
   transition: var(--transition-slow);
}

.stat-box:hover {
   background: var(--bg-card-hover);
   transform: translateY(-5px);
}

.stat-box:hover::after {
   transform: scaleX(1);
}

.stat-box h3 {
   font-size: 3.5rem;
   color: var(--neon-green);
   margin-bottom: 0.5rem;
   text-shadow: 0 0 15px var(--neon-green-glow);
}

.stat-box p {
   font-size: 1rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin: 0;
}

/* ==========================================================================
   Services Section (3D Tilt Cards)
   ========================================================================== */
.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 3rem;
   margin-top: 4rem;
   perspective: 1000px;
}

.tilt-card {
   background: var(--bg-card);
   border: 1px solid rgba(0, 243, 255, 0.1);
   border-radius: 12px;
   padding: 3rem 2rem;
   transform-style: preserve-3d;
   transition: transform 0.1s ease, box-shadow 0.3s ease;
   position: relative;
   cursor: pointer;
   display: flex;
   flex-direction: column;
   height: 100%;
}

.tilt-card:hover {
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px var(--neon-cyan-glow);
   border-color: var(--neon-cyan);
}

.tilt-content {
   transform: translateZ(40px);
   /* Pushes content forward for 3D effect */
}

.service-icon {
   width: 50px;
   height: 50px;
   background: rgba(0, 243, 255, 0.1);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 1.5rem;
   border: 1px solid var(--neon-cyan);
   color: var(--neon-cyan);
   font-size: 1.5rem;
}

.tilt-card h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
}

.tilt-card ul {
   margin-top: auto;
   padding-top: 1.5rem;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tilt-card li {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 0.9rem;
   margin-bottom: 0.5rem;
   color: var(--text-dim);
}

.tilt-card li::before {
   content: '→';
   color: var(--neon-cyan);
}

/* ==========================================================================
   Industry Specific (Tabs/Grid)
   ========================================================================== */
.industry-section {
   background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23030508"/><path d="M0 100L100 0M-50 50L50 -50M50 150L150 50" stroke="rgba(0,243,255,0.03)" stroke-width="2"/></svg>');
}

.industry-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   margin-top: 3rem;
}

.ind-card {
   background: rgba(10, 15, 22, 0.8);
   backdrop-filter: blur(10px);
   padding: 2.5rem;
   border-left: 4px solid var(--neon-green);
   border-radius: 0 8px 8px 0;
   transition: var(--transition-fast);
}

.ind-card:hover {
   transform: translateX(10px);
   background: rgba(10, 15, 22, 1);
}

/* ==========================================================================
   ROI Calculator (Neon Sliders)
   ========================================================================== */
.calc-container {
   background: var(--bg-card);
   border: 1px solid rgba(57, 255, 20, 0.2);
   border-radius: 16px;
   padding: 4rem;
   max-width: 900px;
   margin: 0 auto;
   box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.calc-controls {
   display: flex;
   flex-direction: column;
   gap: 2rem;
}

.range-group {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.range-header {
   display: flex;
   justify-content: space-between;
   font-weight: 600;
   color: #fff;
}

.val-display {
   color: var(--neon-cyan);
   text-shadow: 0 0 10px var(--neon-cyan-glow);
}

input[type=range] {
   -webkit-appearance: none;
   width: 100%;
   height: 6px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 3px;
   outline: none;
}

input[type=range]::-webkit-slider-thumb {
   -webkit-appearance: none;
   width: 20px;
   height: 20px;
   border-radius: 50%;
   background: var(--neon-green);
   cursor: pointer;
   box-shadow: 0 0 15px var(--neon-green);
   transition: 0.2s;
}

input[type=range]::-webkit-slider-thumb:hover {
   transform: scale(1.3);
}

.calc-output {
   background: var(--bg-main);
   padding: 3rem;
   border-radius: 50%;
   width: 300px;
   height: 300px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   border: 2px dashed var(--neon-green);
   position: relative;
   margin: 0 auto;
}

.calc-output::before {
   content: '';
   position: absolute;
   inset: -10px;
   border: 1px solid var(--neon-cyan);
   border-radius: 50%;
   animation: spin3D 10s linear infinite;
   opacity: 0.5;
}

.calc-output h4 {
   color: var(--text-dim);
   text-transform: uppercase;
   font-size: 0.9rem;
   margin-bottom: 1rem;
}

.calc-output .final-revenue {
   font-size: 3rem;
   color: var(--neon-green);
   font-weight: 800;
   text-shadow: 0 0 20px var(--neon-green-glow);
}

/* ==========================================================================
   Live Campaign Reports (CSS Data Viz)
   ========================================================================== */
.report-box {
   background: var(--bg-card);
   padding: 3rem;
   border-radius: 12px;
   border: 1px solid rgba(255, 255, 255, 0.05);
   margin-top: 3rem;
}

.graph-container {
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   height: 250px;
   padding-bottom: 2rem;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   position: relative;
}

.graph-col {
   width: 12%;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 1rem;
   position: relative;
}

.graph-bar {
   width: 100%;
   background: linear-gradient(to top, rgba(0, 243, 255, 0.1), var(--neon-cyan));
   border-radius: 4px 4px 0 0;
   height: 0;
   transition: height 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   position: relative;
}

.graph-bar::after {
   content: attr(data-val);
   position: absolute;
   top: -30px;
   left: 50%;
   transform: translateX(-50%);
   font-weight: bold;
   color: #fff;
   font-size: 0.9rem;
   opacity: 0;
   transition: 0.3s;
}

.graph-col:hover .graph-bar::after {
   opacity: 1;
   top: -40px;
}

.graph-label {
   position: absolute;
   bottom: -30px;
   color: var(--text-dim);
   font-size: 0.85rem;
   text-transform: uppercase;
}

/* ==========================================================================
   Live Chat Mockup
   ========================================================================== */
.chat-section {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.chat-window {
   background: var(--bg-card);
   border-radius: 12px;
   border: 1px solid rgba(0, 243, 255, 0.2);
   overflow: hidden;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.chat-header {
   background: rgba(0, 243, 255, 0.1);
   padding: 1rem 1.5rem;
   display: flex;
   align-items: center;
   gap: 1rem;
   border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.status-dot {
   width: 10px;
   height: 10px;
   background: var(--neon-green);
   border-radius: 50%;
   box-shadow: 0 0 10px var(--neon-green);
}

.chat-body {
   padding: 2rem;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
   height: 300px;
   overflow-y: auto;
}

.msg {
   padding: 1rem;
   border-radius: 8px;
   max-width: 80%;
   font-size: 0.95rem;
}

.msg.client {
   background: rgba(255, 255, 255, 0.05);
   align-self: flex-start;
   border-left: 2px solid var(--text-dim);
}

.msg.agency {
   background: rgba(0, 243, 255, 0.1);
   align-self: flex-end;
   border-right: 2px solid var(--neon-cyan);
   color: #fff;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.review-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   margin-top: 3rem;
}

.review-card {
   background: var(--bg-card);
   padding: 2.5rem;
   border-radius: 8px;
   position: relative;
   border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-card::before {
   content: '“';
   position: absolute;
   top: 10px;
   right: 20px;
   font-size: 5rem;
   color: rgba(255, 255, 255, 0.03);
   line-height: 1;
   font-family: serif;
}

.reviewer {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-top: 2rem;
}

.r-avatar {
   width: 50px;
   height: 50px;
   background: var(--bg-main);
   border: 1px solid var(--neon-cyan);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: bold;
   color: var(--neon-cyan);
}

.r-info h4 {
   margin: 0;
   font-size: 1rem;
}

.r-info p {
   margin: 0;
   font-size: 0.8rem;
   color: var(--neon-green);
   text-transform: uppercase;
   letter-spacing: 1px;
}

/* ==========================================================================
   Strict Footer (Identical across all pages)
   ========================================================================== */
.site-footer {
   background: #020305;
   padding: 6rem 0 2rem;
   border-top: 1px solid rgba(0, 243, 255, 0.1);
   position: relative;
   overflow: hidden;
}

.footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
   gap: 4rem;
   margin-bottom: 4rem;
   position: relative;
   z-index: 2;
}

.f-logo img {
   width: 180px;
   margin-bottom: 1.5rem;
   filter: brightness(0) invert(1);
}

.f-desc {
   color: var(--text-dim);
   font-size: 0.95rem;
   line-height: 1.8;
}

.f-title {
   color: #fff;
   font-size: 1.2rem;
   margin-bottom: 1.5rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   position: relative;
   display: inline-block;
}

.f-title::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: -5px;
   width: 50%;
   height: 2px;
   background: var(--neon-cyan);
}

.f-links li {
   margin-bottom: 0.8rem;
}

.f-links a {
   color: var(--text-dim);
   font-size: 0.95rem;
}

.f-links a:hover {
   color: var(--neon-cyan);
   padding-left: 8px;
}

.f-contact li {
   display: flex;
   align-items: flex-start;
   gap: 1rem;
   margin-bottom: 1.2rem;
   color: var(--text-dim);
   font-size: 0.95rem;
}

.f-contact i {
   color: var(--neon-green);
   font-style: normal;
   font-weight: bold;
}

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.05);
   padding-top: 2rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   position: relative;
   z-index: 2;
   color: var(--text-dim);
   font-size: 0.9rem;
}

.f-legal a {
   margin-left: 1.5rem;
}

.f-legal a:hover {
   color: #fff;
}

/* ==========================================================================
   Legal Pages Specifics
   ========================================================================== */
.legal-header {
   padding: 12rem 0 4rem;
   background: radial-gradient(circle at top, #0a1128 0%, var(--bg-main) 100%);
   text-align: center;
   border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.legal-container {
   max-width: 900px;
   margin: 0 auto;
   background: var(--bg-card);
   padding: 4rem;
   border-radius: 12px;
   margin-top: -3rem;
   position: relative;
   z-index: 10;
   border: 1px solid rgba(255, 255, 255, 0.05);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.legal-container h2 {
   font-size: 1.8rem;
   color: var(--neon-cyan);
   text-align: left;
   margin: 2.5rem 0 1rem;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   padding-bottom: 0.5rem;
}

.legal-container p {
   font-size: 1rem;
   color: var(--text-light);
   margin-bottom: 1.2rem;
}

.legal-container ul {
   list-style-type: square;
   padding-left: 2rem;
   margin-bottom: 1.5rem;
   color: var(--text-light);
}

.legal-container li {
   margin-bottom: 0.5rem;
}

/* ==========================================================================
   Contact Page Form
   ========================================================================== */
.contact-form-box {
   background: var(--bg-card);
   padding: 4rem;
   border-radius: 12px;
   border: 1px solid rgba(0, 243, 255, 0.2);
   box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
   max-width: 800px;
   margin: 0 auto;
}

.input-group {
   position: relative;
   margin-bottom: 2rem;
}

.input-group input,
.input-group select,
.input-group textarea {
   width: 100%;
   background: transparent;
   border: none;
   border-bottom: 1px solid rgba(255, 255, 255, 0.2);
   padding: 10px 0;
   color: #fff;
   font-size: 1rem;
   font-family: inherit;
   outline: none;
   transition: var(--transition-fast);
}

.input-group label {
   position: absolute;
   top: 10px;
   left: 0;
   color: var(--text-dim);
   pointer-events: none;
   transition: var(--transition-fast);
}

.input-group input:focus,
.input-group textarea:focus {
   border-bottom-color: var(--neon-cyan);
}

.input-group input:focus~label,
.input-group input:valid~label,
.input-group textarea:focus~label,
.input-group textarea:valid~label {
   top: -20px;
   font-size: 0.8rem;
   color: var(--neon-cyan);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
   h1 {
      font-size: 3.5rem;
   }

   .hero-visual {
      display: none;
   }

   .hero-content {
      width: 100%;
      text-align: center;
   }

   .hero-btns {
      justify-content: center;
   }

   .stats-wrap,
   .industry-grid,
   .review-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .calc-container {
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 2rem;
   }

   .chat-section {
      grid-template-columns: 1fr;
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr;
   }
}

@media (max-width: 768px) {
   .menu-toggle {
      display: block;
   }

   .nav-links {
      position: fixed;
      top: var(--header-h);
      left: -100%;
      width: 100%;
      height: calc(100vh - var(--header-h));
      background: var(--bg-main);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: var(--transition-slow);
      gap: 2rem;
   }

   .nav-links.active {
      left: 0;
   }

   .stats-wrap,
   .industry-grid,
   .review-grid {
      grid-template-columns: 1fr;
   }

   .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
   }

   .f-legal a {
      margin: 0 0.5rem;
   }

   h1 {
      font-size: 2.5rem;
   }

   h2 {
      font-size: 2rem;
   }

   .legal-container {
      padding: 2rem;
   }
}