@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,800&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

:root {
   --bg-dark: #050505;
   --bg-surface: #0f0f0f;
   --text-main: #E0E0E0;
   --text-muted: #666666;
   --accent-red: #FF2A4D;
   --accent-red-glow: rgba(255, 42, 77, 0.3);
   --border-line: rgba(255, 255, 255, 0.1);
   --font-heading: 'Bricolage Grotesque', sans-serif;
   --font-mono: 'Space Mono', monospace;
   --header-height: 100px;
   --section-pad: 150px 0;
   --container-width: 1600px;
}

/* ================= RESET & BASE ================= */
*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   font-size: 16px;
   background: var(--bg-dark);
   scroll-behavior: auto;
}

body {
   font-family: var(--font-heading);
   color: var(--text-main);
   background-color: var(--bg-dark);
   overflow-x: hidden;
   line-height: 1.5;
   cursor: none;
   -webkit-font-smoothing: antialiased;
}

a,
button,
input,
textarea {
   text-decoration: none;
   color: inherit;
   cursor: none;
   font-family: inherit;
}

ul {
   list-style: none;
}

img {
   max-width: 100%;
   display: block;
   object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-weight: 800;
   line-height: 1;
   text-transform: uppercase;
}

.container {
   max-width: var(--container-width);
   margin: 0 auto;
   padding: 0 4vw;
   position: relative;
   z-index: 10;
}

/* ================= CUSTOM CURSOR ================= */
.cursor-dot {
   position: fixed;
   top: 0;
   left: 0;
   width: 8px;
   height: 8px;
   background: var(--accent-red);
   border-radius: 50%;
   pointer-events: none;
   z-index: 9999;
   transform: translate(-50%, -50%);
   transition: width 0.3s, height 0.3s;
}

.cursor-trail {
   position: fixed;
   top: 0;
   left: 0;
   width: 40px;
   height: 40px;
   border: 1px solid var(--accent-red);
   border-radius: 50%;
   pointer-events: none;
   z-index: 9998;
   transform: translate(-50%, -50%);
   transition: width 0.3s, height 0.3s, background 0.3s;
   mix-blend-mode: difference;
}

.cursor-dot.hover {
   width: 0;
   height: 0;
}

.cursor-trail.hover {
   width: 90px;
   height: 90px;
   background: var(--text-main);
   border-color: transparent;
}

/* ================= STRICT HEADER ================= */
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: var(--header-height);
   background: rgba(5, 5, 5, 0.7);
   backdrop-filter: blur(15px);
   border-bottom: 1px solid var(--border-line);
   z-index: 2000;
   display: flex;
   align-items: center;
   transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.site-header .container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
   height: 100%;
}

.header-logo {
   height: 100%;
   display: flex;
   align-items: center;
   padding-right: 40px;
   border-right: 1px solid var(--border-line);
}

.header-logo img {
   height: 35px;
   object-fit: contain;
   position: relative;
   z-index: 2001;
}

.nav-links {
   display: flex;
   height: 100%;
}

.nav-links li {
   border-right: 1px solid var(--border-line);
   display: flex;
   align-items: center;
}

.nav-links a {
   font-family: var(--font-mono);
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   padding: 0 30px;
   position: relative;
   overflow: hidden;
   height: 100%;
   display: flex;
   align-items: center;
   color: var(--text-muted);
   transition: color 0.3s;
}

.nav-links a::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 0;
   background: var(--accent-red);
   transition: height 0.4s cubic-bezier(0.19, 1, 0.22, 1);
   z-index: -1;
}

.nav-links a:hover {
   color: var(--text-main);
}

.nav-links a:hover::before {
   height: 100%;
}

.header-cta {
   display: flex;
   align-items: center;
   justify-content: center;
   height: 100%;
   padding: 0 40px;
   background: var(--text-main);
   color: var(--bg-dark);
   font-family: var(--font-mono);
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
   transition: background 0.3s, color 0.3s;
   font-size: 0.9rem;
}

.header-cta:hover {
   background: var(--accent-red);
   color: var(--text-main);
}

.desktop-cta {
   display: flex;
}

/* ================= HAMBURGER & MOBILE MENU ================= */
.hamburger {
   display: none;
   flex-direction: column;
   justify-content: center;
   gap: 6px;
   width: 60px;
   height: 100%;
   background: transparent;
   border: none;
   border-left: 1px solid var(--border-line);
   z-index: 2001;
   position: relative;
   padding: 0 15px;
   cursor: none;
}

.hamburger span {
   display: block;
   width: 100%;
   height: 2px;
   background: var(--text-main);
   transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
   transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
   opacity: 0;
}

.hamburger.active span:nth-child(3) {
   transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background: var(--bg-dark);
   z-index: 2000;
   display: flex;
   flex-direction: column;
   padding-top: var(--header-height);
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.5s, visibility 0.5s;
}

.mobile-menu.active {
   opacity: 1;
   visibility: visible;
}

.mobile-nav-links {
   display: flex;
   flex-direction: column;
   width: 100%;
}

.mobile-nav-links li {
   border-bottom: 1px solid var(--border-line);
   overflow: hidden;
}

.mobile-nav-links a {
   display: block;
   font-family: var(--font-heading);
   font-size: 4rem;
   padding: 20px 4vw;
   color: var(--text-main);
   transform: translateY(100%);
   transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), color 0.3s;
}

.mobile-menu.active .mobile-nav-links a {
   transform: translateY(0);
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) a {
   transition-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-links li:nth-child(2) a {
   transition-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-links li:nth-child(3) a {
   transition-delay: 0.3s;
}

.mobile-menu.active .mobile-nav-links li:nth-child(4) a {
   transition-delay: 0.4s;
}

.mobile-menu.active .mobile-nav-links li:nth-child(5) a {
   transition-delay: 0.5s;
}

.mobile-nav-links a:hover {
   color: var(--accent-red);
   padding-left: 6vw;
}

.mobile-cta {
   font-family: var(--font-mono);
   font-size: 1.5rem;
   background: var(--accent-red);
   color: var(--text-main);
   padding: 30px 4vw;
   text-align: center;
   margin-top: auto;
   opacity: 0;
   transition: opacity 0.5s 0.6s;
   text-transform: uppercase;
}

.mobile-menu.active .mobile-cta {
   opacity: 1;
}

@media (max-width: 1024px) {

   .nav-links,
   .desktop-cta {
      display: none;
   }

   .hamburger {
      display: flex;
   }

   .header-logo {
      border-right: none;
   }
}

/* ================= HERO SECTION (Monolithic) ================= */
.hero {
   height: 100vh;
   display: flex;
   align-items: center;
   padding-top: var(--header-height);
   border-bottom: 1px solid var(--border-line);
   position: relative;
   overflow: hidden;
}

.hero-bg-blob {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 50vw;
   height: 50vw;
   background: var(--accent-red);
   border-radius: 50%;
   transform: translate(-50%, -50%);
   filter: blur(200px);
   opacity: 0.15;
   animation: breathe 10s infinite alternate ease-in-out;
   z-index: 0;
}

.hero-content {
   display: flex;
   flex-direction: column;
   width: 100%;
   position: relative;
   z-index: 2;
}

.hero-pre {
   font-family: var(--font-mono);
   font-size: 1rem;
   color: var(--accent-red);
   text-transform: uppercase;
   letter-spacing: 4px;
   margin-bottom: 20px;
   overflow: hidden;
}

.hero-pre span {
   display: block;
   transform: translateY(100%);
   animation: slideUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.2s;
}

.hero-title {
   font-size: clamp(5rem, 13vw, 13rem);
   line-height: 0.8;
   letter-spacing: -3px;
}

.hero-title .line {
   display: block;
   overflow: hidden;
   padding-bottom: 10px;
}

.hero-title .line span {
   display: block;
   transform: translateY(110%);
   animation: slideUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-title .line:nth-child(1) span {
   animation-delay: 0.3s;
}

.hero-title .line:nth-child(2) span {
   animation-delay: 0.4s;
   color: transparent;
   -webkit-text-stroke: 2px var(--text-main);
}

.hero-title .line:nth-child(3) span {
   animation-delay: 0.5s;
   margin-left: 10vw;
   color: var(--accent-red);
}

.hero-bottom {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   margin-top: 40px;
   opacity: 0;
   animation: fadeUp 1s ease forwards 0.8s;
   border-top: 1px solid var(--border-line);
   padding-top: 40px;
}

.hero-desc {
   font-family: var(--font-mono);
   font-size: 1rem;
   color: var(--text-muted);
   max-width: 400px;
   text-transform: uppercase;
}

.magnetic-btn {
   width: 160px;
   height: 160px;
   border-radius: 50%;
   border: 1px solid var(--border-line);
   color: var(--text-main);
   font-family: var(--font-mono);
   font-size: 0.9rem;
   text-transform: uppercase;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   transition: border-color 0.3s, background 0.3s;
   cursor: none;
}

.magnetic-btn:hover {
   border-color: var(--accent-red);
   background: rgba(255, 42, 77, 0.1);
}

@keyframes breathe {
   from {
      transform: translate(-50%, -50%) scale(0.8);
   }

   to {
      transform: translate(-50%, -50%) scale(1.2);
   }
}

@keyframes slideUp {
   to {
      transform: translateY(0);
   }
}

@keyframes fadeUp {
   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* ================= MARQUEE ================= */
.marquee {
   padding: 40px 0;
   border-bottom: 1px solid var(--border-line);
   overflow: hidden;
   background: var(--accent-red);
   color: var(--bg-dark);
}

.marquee-track {
   display: flex;
   white-space: nowrap;
   animation: marquee 12s linear infinite;
}

.marquee-text {
   font-family: var(--font-heading);
   font-size: 3rem;
   text-transform: uppercase;
   padding: 0 40px;
   display: flex;
   align-items: center;
   gap: 40px;
}

.marquee-text span {
   font-family: var(--font-mono);
   color: var(--text-main);
}

@keyframes marquee {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(-50%);
   }
}

/* ================= SERVICES (Expanding Grid) ================= */
.services {
   padding: var(--section-pad);
   border-bottom: 1px solid var(--border-line);
   position: relative;
}

.section-head {
   margin-bottom: 100px;
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
}

.section-title {
   font-size: clamp(4rem, 8vw, 8rem);
   line-height: 0.9;
}

.section-mono {
   font-family: var(--font-mono);
   color: var(--accent-red);
   text-transform: uppercase;
   letter-spacing: 2px;
}

.svc-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   border-top: 1px solid var(--border-line);
   border-left: 1px solid var(--border-line);
}

.svc-card {
   border-right: 1px solid var(--border-line);
   border-bottom: 1px solid var(--border-line);
   padding: 80px 60px;
   transition: background 0.4s;
   position: relative;
   overflow: hidden;
}

.svc-card::before {
   content: '';
   position: absolute;
   inset: 0;
   background: var(--accent-red);
   transform: scaleY(0);
   transform-origin: bottom;
   transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
   z-index: 0;
}

.svc-card:hover::before {
   transform: scaleY(1);
}

.svc-card h3 {
   font-size: 3.5rem;
   position: relative;
   z-index: 1;
   transition: color 0.4s;
   margin-bottom: 20px;
}

.svc-card p {
   font-family: var(--font-mono);
   color: var(--text-muted);
   font-size: 1rem;
   position: relative;
   z-index: 1;
   transition: color 0.4s;
}

.svc-card:hover h3,
.svc-card:hover p {
   color: var(--bg-dark);
}

.svc-icon {
   font-family: var(--font-mono);
   font-size: 1.5rem;
   color: var(--accent-red);
   margin-bottom: 40px;
   position: relative;
   z-index: 1;
   transition: color 0.4s;
}

.svc-card:hover .svc-icon {
   color: var(--bg-dark);
}

/* ================= INDUSTRIES (Horizontal Scroll) ================= */
.industries {
   background: var(--bg-surface);
   position: relative;
   border-bottom: 1px solid var(--border-line);
   overflow: hidden;
}

.ind-pin {
   height: 100vh;
   position: sticky;
   top: 0;
   display: flex;
   align-items: center;
   overflow: hidden;
}

.ind-track {
   display: flex;
   gap: 0;
   width: max-content;
   padding-left: 4vw;
}

.ind-intro {
   width: 600px;
   padding-right: 80px;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.ind-intro h2 {
   font-size: 6rem;
   line-height: 0.9;
   margin-bottom: 30px;
}

.ind-intro p {
   font-family: var(--font-mono);
   color: var(--text-muted);
}

.ind-panel {
   width: 500px;
   height: 60vh;
   border: 1px solid var(--border-line);
   margin-right: 40px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   padding: 40px;
   position: relative;
   overflow: hidden;
   background: var(--bg-dark);
}

.ind-panel::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(to bottom, transparent, var(--bg-dark));
   z-index: 1;
   pointer-events: none;
}

.ind-img {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   opacity: 0.3;
   transition: transform 0.5s, opacity 0.5s;
   filter: grayscale(100%);
   z-index: 0;
}

.ind-panel:hover .ind-img {
   transform: scale(1.1);
   opacity: 0.6;
   filter: grayscale(0%);
}

.ind-panel h3 {
   font-size: 2.5rem;
   position: relative;
   z-index: 2;
   color: var(--accent-red);
}

.ind-panel p {
   font-family: var(--font-mono);
   font-size: 0.9rem;
   position: relative;
   z-index: 2;
}

/* ================= CALCULATOR (Cyber Dashboard) ================= */
.calculator {
   padding: var(--section-pad);
   border-bottom: 1px solid var(--border-line);
   position: relative;
}

.calc-box {
   border: 1px solid var(--border-line);
   background: var(--bg-surface);
   padding: 80px;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   position: relative;
   overflow: hidden;
}

.calc-box::before {
   content: '';
   position: absolute;
   right: -10vw;
   bottom: -10vw;
   width: 30vw;
   height: 30vw;
   background: var(--accent-red);
   filter: blur(150px);
   opacity: 0.1;
}

.calc-left h2 {
   font-size: 4rem;
   margin-bottom: 50px;
}

.calc-group {
   margin-bottom: 40px;
}

.calc-group label {
   display: flex;
   justify-content: space-between;
   font-family: var(--font-mono);
   font-size: 0.9rem;
   text-transform: uppercase;
   color: var(--text-muted);
   margin-bottom: 15px;
}

.calc-group label span {
   color: var(--accent-red);
   font-size: 1.1rem;
}

input[type="range"] {
   -webkit-appearance: none;
   width: 100%;
   height: 2px;
   background: var(--border-line);
   outline: none;
}

input[type="range"]::-webkit-slider-thumb {
   -webkit-appearance: none;
   width: 20px;
   height: 20px;
   background: var(--accent-red);
   border-radius: 0;
   cursor: none;
   transition: transform 0.2s;
   box-shadow: 0 0 15px var(--accent-red-glow);
}

input[type="range"]::-webkit-slider-thumb:hover {
   transform: scale(1.5) rotate(45deg);
}

.calc-right {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   border-left: 1px solid var(--border-line);
   text-align: center;
}

.calc-right p {
   font-family: var(--font-mono);
   color: var(--text-muted);
   text-transform: uppercase;
   letter-spacing: 2px;
   margin-bottom: 20px;
}

.calc-val {
   font-size: 6rem;
   color: var(--text-main);
   line-height: 1;
}

/* ================= REPORTS (Liquid/Gooey Graph) ================= */
.reports {
   padding: var(--section-pad);
   border-bottom: 1px solid var(--border-line);
}

.report-grid {
   display: grid;
   grid-template-columns: 1fr 1.5fr;
   gap: 80px;
   align-items: center;
}

.report-text h2 {
   font-size: 5rem;
   margin-bottom: 30px;
   line-height: 0.9;
}

.report-text p {
   font-family: var(--font-mono);
   color: var(--text-muted);
   line-height: 1.6;
}

/* Gooey Effect via CSS */
.gooey-container {
   height: 450px;
   display: flex;
   align-items: flex-end;
   justify-content: space-around;
   padding: 0 20px;
   filter: url('#goo');
   /* Optional SVG filter hook */
   background: var(--bg-surface);
   border: 1px solid var(--border-line);
   overflow: hidden;
   position: relative;
}

/* Pure CSS Alternative to SVG Gooey */
.gooey-container {
   filter: blur(10px) contrast(20);
   background: black;
   border: none;
}

.goo-bar {
   width: 15%;
   background: var(--accent-red);
   border-radius: 100px;
   transition: height 2s cubic-bezier(0.19, 1, 0.22, 1);
   position: relative;
}

.goo-bar::before {
   content: '';
   position: absolute;
   top: -50px;
   left: 50%;
   transform: translateX(-50%);
   width: 100%;
   height: 50px;
   background: var(--accent-red);
   border-radius: 50%;
   opacity: 0;
   transition: opacity 0.5s 1.5s;
}

.gooey-container.active .goo-bar::before {
   opacity: 1;
}

/* Labels outside gooey container */
.goo-labels {
   display: flex;
   justify-content: space-around;
   padding: 20px 20px 0;
   border-top: 1px solid var(--border-line);
   font-family: var(--font-mono);
   color: var(--text-muted);
}

/* ================= TESTIMONIALS ================= */
.testimonials {
   padding: var(--section-pad);
   border-bottom: 1px solid var(--border-line);
   background: var(--bg-surface);
}

.testi-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 40px;
   margin-top: 60px;
}

.testi-card {
   border: 1px solid var(--border-line);
   padding: 60px;
   transition: border-color 0.4s;
}

.testi-card:hover {
   border-color: var(--accent-red);
}

.testi-quote {
   font-size: 2rem;
   line-height: 1.3;
   margin-bottom: 40px;
}

.testi-author {
   border-top: 1px solid var(--border-line);
   padding-top: 20px;
   font-family: var(--font-mono);
   display: flex;
   flex-direction: column;
}

.testi-author span {
   color: var(--accent-red);
   font-weight: 700;
   text-transform: uppercase;
}

.testi-author small {
   color: var(--text-muted);
}

/* ================= LIVE CHAT ================= */
.chat-widget {
   position: fixed;
   bottom: 40px;
   right: 40px;
   z-index: 1000;
}

.chat-btn {
   width: 70px;
   height: 70px;
   background: var(--accent-red);
   border-radius: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   font-family: var(--font-mono);
   font-size: 1.2rem;
   cursor: none;
   border: none;
   transition: transform 0.3s;
   color: var(--text-main);
}

.chat-btn:hover {
   transform: scale(1.1);
}

.chat-box {
   position: absolute;
   bottom: 90px;
   right: 0;
   width: 380px;
   background: var(--bg-surface);
   border: 1px solid var(--border-line);
   clip-path: polygon(100% 100%, 100% 100%, 100% 100%, 100% 100%);
   transition: clip-path 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.chat-box.active {
   clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.chat-header {
   padding: 20px;
   border-bottom: 1px solid var(--border-line);
   font-family: var(--font-mono);
   color: var(--accent-red);
   text-transform: uppercase;
}

.chat-body {
   height: 300px;
   padding: 20px;
   overflow-y: auto;
   display: flex;
   flex-direction: column;
   gap: 15px;
   font-family: var(--font-mono);
   font-size: 0.85rem;
}

.chat-msg {
   background: rgba(255, 255, 255, 0.05);
   padding: 15px;
   border-left: 2px solid var(--accent-red);
   color: var(--text-muted);
}

.chat-input {
   display: flex;
   border-top: 1px solid var(--border-line);
}

.chat-input input {
   flex: 1;
   background: transparent;
   border: none;
   padding: 20px;
   color: white;
   outline: none;
   cursor: none;
   font-family: var(--font-mono);
}

.chat-input button {
   background: var(--text-main);
   border: none;
   padding: 0 20px;
   color: var(--bg-dark);
   font-weight: 700;
   text-transform: uppercase;
   cursor: none;
   font-family: var(--font-mono);
}

/* ================= STRICT FOOTER ================= */
.site-footer {
   background: var(--bg-dark);
   padding: 150px 0 0;
   position: relative;
}

.footer-title {
   font-size: clamp(6rem, 18vw, 18rem);
   text-align: center;
   line-height: 0.8;
   margin-bottom: 80px;
   letter-spacing: -5px;
}

.footer-title span {
   color: transparent;
   -webkit-text-stroke: 1px var(--text-muted);
}

.footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 60px;
   padding-bottom: 80px;
   border-bottom: 1px solid var(--border-line);
}

.footer-logo {
   max-width: 180px;
   margin-bottom: 30px;
}

.footer-col h3 {
   font-family: var(--font-mono);
   font-size: 0.9rem;
   color: var(--text-muted);
   margin-bottom: 30px;
   text-transform: uppercase;
   letter-spacing: 2px;
}

.footer-links li {
   margin-bottom: 15px;
}

.footer-links a {
   font-size: 1.2rem;
   transition: color 0.3s;
}

.footer-links a:hover {
   color: var(--accent-red);
}

.footer-bottom {
   padding: 40px 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-family: var(--font-mono);
   color: var(--text-muted);
   font-size: 0.8rem;
   text-transform: uppercase;
   flex-wrap: wrap;
   gap: 20px;
}

.footer-legal-links {
   display: flex;
   gap: 30px;
}

/* ================= LEGAL / CONTACT PAGES ================= */
.page-hero {
   padding: 250px 0 100px;
   border-bottom: 1px solid var(--border-line);
}

.page-title {
   font-size: clamp(4rem, 9vw, 9rem);
   line-height: 0.9;
   letter-spacing: -2px;
}

.page-title span {
   color: var(--accent-red);
}

.legal-content {
   max-width: 900px;
   margin: 0 auto;
   padding: 100px 0;
}

.legal-content h2 {
   font-size: 3rem;
   margin: 60px 0 20px;
   color: var(--text-main);
}

.legal-content p {
   font-family: var(--font-mono);
   font-size: 1.1rem;
   color: var(--text-muted);
   margin-bottom: 25px;
   line-height: 1.8;
}

.contact-layout {
   padding: var(--section-pad);
   display: grid;
   grid-template-columns: 1fr 1.5fr;
   gap: 80px;
}

.contact-info {
   padding: 60px;
   background: var(--bg-surface);
   border: 1px solid var(--border-line);
}

.contact-info h3 {
   font-size: 3rem;
   margin-bottom: 30px;
   color: var(--accent-red);
}

.contact-info p {
   font-family: var(--font-mono);
   font-size: 1.1rem;
   color: var(--text-muted);
   margin-bottom: 50px;
}

.contact-info h4 {
   font-family: var(--font-mono);
   font-size: 0.9rem;
   letter-spacing: 2px;
   color: var(--text-main);
   margin-bottom: 10px;
   text-transform: uppercase;
}

.contact-form {
   padding: 40px 0;
}

.form-group {
   margin-bottom: 40px;
}

.form-group input,
.form-group textarea {
   width: 100%;
   background: transparent;
   border: none;
   border-bottom: 1px solid var(--border-line);
   padding: 20px 0;
   color: white;
   font-size: 1.2rem;
   font-family: var(--font-mono);
   outline: none;
   transition: border-color 0.3s;
   resize: none;
   cursor: none;
}

.form-group input:focus,
.form-group textarea:focus {
   border-bottom-color: var(--accent-red);
}

.submit-btn {
   width: 100%;
   padding: 25px;
   background: var(--text-main);
   color: var(--bg-dark);
   font-family: var(--font-mono);
   font-size: 1.2rem;
   font-weight: 700;
   text-transform: uppercase;
   border: none;
   cursor: none;
   transition: background 0.3s, color 0.3s;
}

.submit-btn:hover {
   background: var(--accent-red);
   color: var(--text-main);
}

/* ================= ANIMATIONS & UTILS ================= */
.clip-reveal {
   clip-path: inset(100% 0 0 0);
   transform: translateY(30px);
   transition: clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.clip-reveal.active {
   clip-path: inset(0 0 0 0);
   transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
   .hero-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 30px;
      border-top: none;
   }

   .svc-grid {
      grid-template-columns: 1fr;
      border-left: none;
   }

   .svc-card {
      border-left: 1px solid var(--border-line);
      padding: 50px 30px;
   }

   .calc-box,
   .report-grid,
   .testi-grid,
   .contact-layout,
   .footer-grid {
      grid-template-columns: 1fr;
   }

   .calc-box {
      padding: 40px 20px;
   }

   .calc-right {
      border-left: none;
      border-top: 1px solid var(--border-line);
      padding-top: 40px;
   }

   .ind-pin {
      height: auto;
      position: relative;
      overflow-x: auto;
      padding: 60px 0;
   }

   .ind-track {
      flex-direction: column;
      width: 100%;
      padding: 0 4vw;
      gap: 40px;
   }

   .ind-intro {
      width: 100%;
      padding-right: 0;
   }

   .ind-panel {
      width: 100%;
      height: 400px;
      margin-right: 0;
   }

   .footer-title {
      display: none;
   }

   .footer-grid {
      gap: 40px;
   }
}