/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
   --bg-base: #050505;
   --bg-panel: #111111;
   --bg-glass: rgba(17, 17, 17, 0.6);
   --ruby: #FF3366;
   --ruby-glow: rgba(255, 51, 102, 0.3);
   --indigo: #4361EE;
   --indigo-glow: rgba(67, 97, 238, 0.3);
   --text-main: #FFFFFF;
   --text-muted: #888888;
   --border-light: rgba(255, 255, 255, 0.08);
   --font-primary: 'Plus Jakarta Sans', sans-serif;
   --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
   --transition-slow: 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* =========================================
   BASE RESET & TYPOGRAPHY
========================================= */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
   font-size: 16px;
   overflow-x: hidden;
}

body {
   font-family: var(--font-primary);
   background-color: var(--bg-base);
   color: var(--text-main);
   line-height: 1.6;
   overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-weight: 800;
   line-height: 1.1;
   margin-bottom: 1rem;
   color: var(--text-main);
   letter-spacing: -0.02em;
}

p {
   margin-bottom: 1.5rem;
   color: var(--text-muted);
   font-size: 1.1rem;
}

a {
   text-decoration: none;
   color: inherit;
   transition: var(--transition-fast);
}

ul {
   list-style: none;
}

img {
   max-width: 100%;
   display: block;
}

/* Scrollbar */
::-webkit-scrollbar {
   width: 8px;
}

::-webkit-scrollbar-track {
   background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
   background: var(--border-light);
   border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
   background: var(--ruby);
}

/* Background Blur Elements */
.ambient-glow {
   position: absolute;
   border-radius: 50%;
   filter: blur(150px);
   opacity: 0.4;
   pointer-events: none;
   z-index: 0;
}

.glow-1 {
   top: -10%;
   left: -10%;
   width: 50vw;
   height: 50vw;
   background: var(--indigo-glow);
}

.glow-2 {
   bottom: -10%;
   right: -10%;
   width: 40vw;
   height: 40vw;
   background: var(--ruby-glow);
}

/* =========================================
   STRICT GLOBAL HEADER
========================================= */
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   background: transparent;
   z-index: 1000;
   transition: var(--transition-fast);
   padding: 1.5rem 0;
   border-bottom: 1px solid transparent;
}

.site-header.scrolled {
   background: rgba(5, 5, 5, 0.85);
   backdrop-filter: blur(16px);
   -webkit-backdrop-filter: blur(16px);
   padding: 1rem 0;
   border-bottom: 1px solid var(--border-light);
}

.header-container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.logo-container img {
   height: 55px;
}

.nav-links {
   display: flex;
   gap: 2.5rem;
   align-items: center;
}

.nav-links a {
   font-size: 0.95rem;
   font-weight: 600;
   color: #ccc;
   text-transform: uppercase;
   letter-spacing: 1px;
   position: relative;
   padding: 0.5rem 0;
}

.nav-links a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 2px;
   background: linear-gradient(90deg, var(--indigo), var(--ruby));
   transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
   color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
   width: 100%;
}

.btn-primary {
   background: linear-gradient(135deg, var(--indigo), var(--ruby));
   color: #fff;
   border: none;
   padding: 0.9rem 2rem;
   font-family: var(--font-primary);
   font-weight: 700;
   font-size: 0.95rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   border-radius: 50px;
   cursor: pointer;
   position: relative;
   overflow: hidden;
   z-index: 1;
   transition: var(--transition-fast);
   box-shadow: 0 10px 20px rgba(255, 51, 102, 0.2);
}

.btn-primary::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, var(--ruby), var(--indigo));
   z-index: -1;
   transition: opacity 0.3s ease;
   opacity: 0;
}

.btn-primary:hover::before {
   opacity: 1;
}

.btn-primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 15px 25px rgba(67, 97, 238, 0.4);
   color: #fff;
}

.btn-outline {
   background: transparent;
   color: #fff;
   border: 1px solid var(--border-light);
   padding: 0.9rem 2rem;
   border-radius: 50px;
   font-weight: 600;
   cursor: pointer;
   transition: var(--transition-fast);
}

.btn-outline:hover {
   background: #fff;
   color: var(--bg-base);
}

/* Mobile Menu Toggle */
.menu-toggle {
   display: none;
   background: none;
   border: none;
   cursor: pointer;
   width: 30px;
   height: 20px;
   position: relative;
   z-index: 1001;
}

.menu-toggle span {
   display: block;
   position: absolute;
   width: 100%;
   height: 2px;
   background: #fff;
   transition: 0.3s;
}

.menu-toggle span:nth-child(1) {
   top: 0;
}

.menu-toggle span:nth-child(2) {
   top: 9px;
}

.menu-toggle span:nth-child(3) {
   top: 18px;
}

.menu-toggle.active span:nth-child(1) {
   top: 9px;
   transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
   opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
   top: 9px;
   transform: rotate(-45deg);
}

/* =========================================
   STRICT GLOBAL FOOTER
========================================= */
.site-footer {
   background: #020202;
   padding: 6rem 0 2rem;
   border-top: 1px solid var(--border-light);
   position: relative;
   overflow: hidden;
}

.footer-container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2rem;
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
   gap: 4rem;
   position: relative;
   z-index: 2;
}

.footer-brand p {
   margin-top: 1.5rem;
   font-size: 1rem;
   color: var(--text-muted);
   max-width: 350px;
}

.footer-title {
   font-size: 1.2rem;
   color: #fff;
   margin-bottom: 2rem;
   position: relative;
}

.footer-title::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: -8px;
   width: 30px;
   height: 2px;
   background: var(--ruby);
}

.footer-links li {
   margin-bottom: 1rem;
}

.footer-links a {
   color: var(--text-muted);
   display: flex;
   align-items: center;
}

.footer-links a::before {
   content: '→';
   margin-right: 10px;
   color: var(--indigo);
   opacity: 0;
   transform: translateX(-10px);
   transition: var(--transition-fast);
}

.footer-links a:hover {
   color: #fff;
}

.footer-links a:hover::before {
   opacity: 1;
   transform: translateX(0);
}

.footer-contact li {
   display: flex;
   align-items: flex-start;
   gap: 1rem;
   margin-bottom: 1.5rem;
   color: var(--text-muted);
}

.footer-contact i {
   background: rgba(255, 51, 102, 0.1);
   color: var(--ruby);
   padding: 8px;
   border-radius: 5px;
   font-style: normal;
   font-size: 1.2rem;
}

.footer-bottom {
   max-width: 1400px;
   margin: 4rem auto 0;
   padding: 2rem 2rem 0;
   border-top: 1px solid var(--border-light);
   text-align: center;
   color: var(--text-muted);
   font-size: 0.9rem;
}

/* =========================================
   LAYOUT UTILITIES
========================================= */
.section {
   padding: 8rem 0;
   position: relative;
   z-index: 1;
}

.container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2rem;
}

.section-head {
   text-align: center;
   margin-bottom: 5rem;
   max-width: 800px;
   margin-inline: auto;
}

.badge {
   display: inline-block;
   padding: 0.5rem 1.5rem;
   background: rgba(67, 97, 238, 0.1);
   color: var(--indigo);
   border: 1px solid rgba(67, 97, 238, 0.3);
   border-radius: 50px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 1.5rem;
   font-size: 0.85rem;
}

.section-head h2 {
   font-size: 3.5rem;
   line-height: 1.1;
   margin-bottom: 1.5rem;
}

.section-head p {
   font-size: 1.2rem;
}

/* =========================================
   SECTION 1: HERO & 3D FUNNEL
========================================= */
.hero {
   min-height: 100vh;
   display: flex;
   align-items: center;
   padding-top: 100px;
   position: relative;
   overflow: hidden;
}

.hero-grid {
   display: grid;
   grid-template-columns: 1.1fr 0.9fr;
   gap: 3rem;
   align-items: center;
}

.hero-content h1 {
   font-size: 5rem;
   font-weight: 800;
   line-height: 1.05;
   margin-bottom: 1.5rem;
}

.hero-content h1 span.gradient-text {
   background: linear-gradient(135deg, var(--indigo), var(--ruby));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.hero-content p {
   font-size: 1.25rem;
   margin-bottom: 2.5rem;
   max-width: 90%;
   color: #aaa;
}

.hero-actions {
   display: flex;
   gap: 1.5rem;
   align-items: center;
}

/* Pure CSS 3D Marketing Funnel */
.funnel-container {
   perspective: 1000px;
   width: 100%;
   height: 500px;
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
}

.funnel {
   width: 200px;
   height: 300px;
   position: relative;
   transform-style: preserve-3d;
   animation: rotateFunnel 12s linear infinite;
   transform: rotateX(-20deg);
}

.funnel-layer {
   position: absolute;
   left: 50%;
   transform: translateX(-50%) rotateX(90deg);
   border-radius: 50%;
   border: 2px solid;
   display: flex;
   justify-content: center;
   align-items: center;
   color: #fff;
   font-weight: bold;
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 2px;
}

.fl-1 {
   top: 0;
   width: 300px;
   height: 300px;
   border-color: rgba(67, 97, 238, 0.8);
   background: rgba(67, 97, 238, 0.1);
   box-shadow: 0 0 30px rgba(67, 97, 238, 0.4);
   transform: translateX(-50%) translateY(-150px) rotateX(90deg);
}

.fl-2 {
   top: 100px;
   width: 220px;
   height: 220px;
   border-color: rgba(160, 60, 200, 0.8);
   background: rgba(160, 60, 200, 0.1);
   box-shadow: 0 0 30px rgba(160, 60, 200, 0.4);
   transform: translateX(-50%) translateY(-50px) rotateX(90deg);
}

.fl-3 {
   top: 200px;
   width: 140px;
   height: 140px;
   border-color: rgba(255, 51, 102, 0.8);
   background: rgba(255, 51, 102, 0.1);
   box-shadow: 0 0 30px rgba(255, 51, 102, 0.4);
   transform: translateX(-50%) translateY(50px) rotateX(90deg);
}

.fl-4 {
   top: 300px;
   width: 60px;
   height: 60px;
   border-color: #fff;
   background: rgba(255, 255, 255, 0.2);
   box-shadow: 0 0 30px #fff;
   transform: translateX(-50%) translateY(150px) rotateX(90deg);
}

.funnel::after {
   content: '';
   position: absolute;
   top: -150px;
   left: 50%;
   width: 2px;
   height: 600px;
   background: linear-gradient(to bottom, transparent, var(--ruby), transparent);
   transform: translateX(-50%);
}

@keyframes rotateFunnel {
   0% {
      transform: rotateX(-20deg) rotateY(0deg);
   }

   100% {
      transform: rotateX(-20deg) rotateY(360deg);
   }
}

/* =========================================
   SECTION 2: INFINITE LOGO MARQUEE
========================================= */
.marquee-wrap {
   padding: 3rem 0;
   border-top: 1px solid var(--border-light);
   border-bottom: 1px solid var(--border-light);
   background: rgba(255, 255, 255, 0.01);
   display: flex;
   overflow: hidden;
   position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
   content: '';
   position: absolute;
   top: 0;
   width: 150px;
   height: 100%;
   z-index: 2;
}

.marquee-wrap::before {
   left: 0;
   background: linear-gradient(to right, var(--bg-base), transparent);
}

.marquee-wrap::after {
   right: 0;
   background: linear-gradient(to left, var(--bg-base), transparent);
}

.marquee-content {
   display: flex;
   align-items: center;
   gap: 5rem;
   padding-right: 5rem;
   animation: scrollLeft 30s linear infinite;
   white-space: nowrap;
}

.marquee-text {
   font-size: 2rem;
   font-weight: 800;
   color: transparent;
   -webkit-text-stroke: 1px var(--border-light);
   text-transform: uppercase;
   transition: var(--transition-fast);
}

.marquee-text:hover {
   color: var(--ruby);
   -webkit-text-stroke: 0px;
   text-shadow: 0 0 20px var(--ruby-glow);
}

@keyframes scrollLeft {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(-100%);
   }
}

/* =========================================
   SECTION 3: THE METHOD (ABOUT)
========================================= */
.method-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.method-img {
   border-radius: 20px;
   overflow: hidden;
   position: relative;
   border: 1px solid var(--border-light);
   padding: 2rem;
   background: var(--bg-panel);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.code-block {
   font-family: monospace;
   color: var(--indigo);
   font-size: 0.9rem;
   line-height: 1.8;
}

.code-block span.c1 {
   color: var(--ruby);
}

.code-block span.c2 {
   color: #fff;
}

.method-content h2 {
   font-size: 3rem;
   margin-bottom: 1.5rem;
}

/* =========================================
   SECTION 4: BENTO BOX SERVICES
========================================= */
.bento-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-auto-rows: minmax(250px, auto);
   gap: 1.5rem;
}

.bento-item {
   background: var(--bg-panel);
   border: 1px solid var(--border-light);
   border-radius: 24px;
   padding: 2.5rem;
   position: relative;
   overflow: hidden;
   transition: var(--transition-fast);
}

.bento-item:hover {
   border-color: var(--indigo);
   box-shadow: 0 15px 30px rgba(67, 97, 238, 0.15);
   transform: translateY(-5px);
}

.bento-item.large {
   grid-column: span 2;
   background: linear-gradient(135deg, var(--bg-panel), #1a1a1a);
}

.bento-icon {
   width: 50px;
   height: 50px;
   background: var(--bg-base);
   border: 1px solid var(--border-light);
   border-radius: 12px;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-bottom: 1.5rem;
   color: var(--ruby);
   font-size: 1.5rem;
   transition: var(--transition-fast);
}

.bento-item:hover .bento-icon {
   background: var(--indigo);
   border-color: var(--indigo);
   color: #fff;
   transform: rotate(10deg);
}

.bento-item h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
}

.bento-item p {
   font-size: 1rem;
   margin-bottom: 0;
}

/* =========================================
   SECTION 5: INTERACTIVE LIVE REPORTS
========================================= */
.reports-bg {
   background: #0a0a0a;
   border-top: 1px solid var(--border-light);
   border-bottom: 1px solid var(--border-light);
}

.reports-layout {
   display: grid;
   grid-template-columns: 300px 1fr;
   gap: 3rem;
   background: var(--bg-panel);
   padding: 3rem;
   border-radius: 24px;
   border: 1px solid var(--border-light);
}

.tabs-col {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.tab-btn {
   background: var(--bg-base);
   color: var(--text-muted);
   border: 1px solid var(--border-light);
   padding: 1.2rem;
   border-radius: 12px;
   text-align: left;
   font-weight: 600;
   font-family: var(--font-primary);
   cursor: pointer;
   transition: var(--transition-fast);
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.tab-btn:hover {
   border-color: var(--text-muted);
   color: #fff;
}

.tab-btn.active {
   background: var(--indigo);
   border-color: var(--indigo);
   color: #fff;
}

.panel-col {
   position: relative;
   min-height: 400px;
}

.report-panel {
   display: none;
   animation: fadeUp 0.5s ease forwards;
}

.report-panel.active {
   display: block;
}

/* CSS Horizontal Bar Chart */
.h-chart {
   margin-top: 2rem;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.bar-row {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.bar-label {
   width: 80px;
   font-weight: 600;
   font-size: 0.9rem;
}

.bar-track {
   flex: 1;
   height: 24px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 12px;
   overflow: hidden;
   position: relative;
}

.bar-fill {
   height: 100%;
   border-radius: 12px;
   position: relative;
   width: 0;
   animation: fillBar 1.5s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
   display: flex;
   align-items: center;
   justify-content: flex-end;
   padding-right: 10px;
   font-weight: bold;
   font-size: 0.8rem;
   color: #fff;
}

.bar-fill.ruby {
   background: linear-gradient(90deg, transparent, var(--ruby));
   box-shadow: 0 0 10px var(--ruby);
}

.bar-fill.indigo {
   background: linear-gradient(90deg, transparent, var(--indigo));
   box-shadow: 0 0 10px var(--indigo);
}

.bar-fill.white {
   background: linear-gradient(90deg, transparent, #fff);
   box-shadow: 0 0 10px #fff;
   color: #000;
}

@keyframes fillBar {
   to {
      width: var(--target-width);
   }
}

@keyframes fadeUp {
   from {
      opacity: 0;
      transform: translateY(20px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* =========================================
   SECTION 6: VERTICAL PROCESS TIMELINE
========================================= */
.timeline {
   max-width: 800px;
   margin: 0 auto;
   position: relative;
}

.timeline::before {
   content: '';
   position: absolute;
   left: 30px;
   top: 0;
   bottom: 0;
   width: 2px;
   background: var(--border-light);
}

.tl-step {
   display: flex;
   gap: 3rem;
   margin-bottom: 4rem;
   position: relative;
}

.tl-step:last-child {
   margin-bottom: 0;
}

.tl-marker {
   width: 62px;
   height: 62px;
   background: var(--bg-base);
   border: 2px solid var(--indigo);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   font-weight: 800;
   font-size: 1.2rem;
   color: var(--indigo);
   z-index: 2;
   transition: var(--transition-fast);
}

.tl-step:hover .tl-marker {
   background: var(--indigo);
   color: #fff;
   box-shadow: 0 0 20px var(--indigo-glow);
}

.tl-content {
   background: var(--bg-panel);
   border: 1px solid var(--border-light);
   padding: 2.5rem;
   border-radius: 20px;
   flex: 1;
   transition: var(--transition-fast);
}

.tl-step:hover .tl-content {
   border-color: var(--indigo);
   transform: translateX(10px);
}

/* =========================================
   SECTION 7: INDUSTRIES HOVER CARDS
========================================= */
.ind-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.ind-card {
   position: relative;
   height: 250px;
   border-radius: 20px;
   overflow: hidden;
   border: 1px solid var(--border-light);
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   background: var(--bg-panel);
   cursor: pointer;
   transition: var(--transition-fast);
}

.ind-card::before {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, var(--ruby-glow), transparent);
   opacity: 0;
   transition: var(--transition-fast);
}

.ind-card:hover {
   transform: translateY(-10px);
   border-color: var(--ruby);
}

.ind-card:hover::before {
   opacity: 1;
}

.ind-icon {
   font-size: 3rem;
   color: #fff;
   margin-bottom: 1rem;
   position: relative;
   z-index: 2;
   transition: var(--transition-fast);
}

.ind-card:hover .ind-icon {
   transform: scale(1.2);
}

.ind-card h4 {
   position: relative;
   z-index: 2;
   font-size: 1.2rem;
}

/* =========================================
   SECTION 8: TESTIMONIALS SLIDER (CSS GRID)
========================================= */
.test-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.test-card {
   background: rgba(255, 255, 255, 0.02);
   border: 1px solid var(--border-light);
   padding: 3rem;
   border-radius: 24px;
   position: relative;
}

.test-quote {
   font-size: 5rem;
   font-family: serif;
   color: var(--border-light);
   position: absolute;
   top: 1rem;
   left: 1.5rem;
   line-height: 1;
}

.test-text {
   position: relative;
   z-index: 2;
   font-size: 1.1rem;
   font-style: italic;
   margin-bottom: 2rem;
   color: #ccc;
}

.test-author {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.avatar {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background: linear-gradient(135deg, var(--indigo), var(--ruby));
   display: flex;
   justify-content: center;
   align-items: center;
   font-weight: bold;
}

/* =========================================
   SECTION 9: VIDEO REEL TEASER
========================================= */
.video-section {
   text-align: center;
   padding: 10rem 0;
   position: relative;
   background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(#grid)"/></svg>') center/cover;
   border-top: 1px solid var(--border-light);
   border-bottom: 1px solid var(--border-light);
}

.play-btn {
   width: 100px;
   height: 100px;
   background: rgba(67, 97, 238, 0.2);
   border: 2px solid var(--indigo);
   border-radius: 50%;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   cursor: pointer;
   position: relative;
   transition: var(--transition-fast);
   z-index: 2;
}

.play-btn::after {
   content: '';
   border-style: solid;
   border-width: 15px 0 15px 25px;
   border-color: transparent transparent transparent #fff;
   margin-left: 5px;
}

.play-btn:hover {
   background: var(--indigo);
   transform: scale(1.1);
   box-shadow: 0 0 40px var(--indigo-glow);
}

.pulse {
   position: absolute;
   inset: -20px;
   border: 1px solid var(--indigo);
   border-radius: 50%;
   animation: pulseAnim 2s infinite;
   pointer-events: none;
}

@keyframes pulseAnim {
   0% {
      transform: scale(1);
      opacity: 1;
   }

   100% {
      transform: scale(1.5);
      opacity: 0;
   }
}

/* =========================================
   SECTION 10: CTA PRE-FOOTER
========================================= */
.cta-box {
   background: linear-gradient(135deg, var(--bg-panel) 0%, rgba(255, 51, 102, 0.1) 100%);
   border: 1px solid var(--ruby);
   border-radius: 30px;
   padding: 6rem 2rem;
   text-align: center;
   box-shadow: 0 20px 50px var(--ruby-glow);
}

.cta-box h2 {
   font-size: 3.5rem;
   margin-bottom: 1rem;
}

/* =========================================
   FORMS & CONTACT PAGE
========================================= */
.page-hero {
   padding: 12rem 0 6rem;
   text-align: center;
   border-bottom: 1px solid var(--border-light);
   background: radial-gradient(circle at top, rgba(67, 97, 238, 0.1), transparent 70%);
}

.page-hero h1 {
   font-size: 4rem;
   margin-bottom: 1rem;
}

.contact-layout {
   display: grid;
   grid-template-columns: 1fr 1.5fr;
   gap: 4rem;
}

.contact-info-card {
   background: var(--bg-panel);
   border: 1px solid var(--border-light);
   border-radius: 20px;
   padding: 3rem;
}

.info-item {
   display: flex;
   align-items: center;
   gap: 1.5rem;
   margin-bottom: 2rem;
}

.info-icon {
   font-size: 2rem;
   color: var(--ruby);
}

.form-container {
   background: var(--bg-panel);
   border: 1px solid var(--border-light);
   border-radius: 20px;
   padding: 4rem;
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;
   margin-bottom: 2rem;
}

.form-group {
   position: relative;
}

.form-group.full {
   grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   background: transparent;
   border: none;
   border-bottom: 2px solid var(--border-light);
   padding: 1rem 0;
   color: #fff;
   font-family: var(--font-primary);
   font-size: 1.05rem;
   transition: border-color 0.3s;
}

.form-group textarea {
   resize: vertical;
   min-height: 120px;
}

.form-group select option {
   background: var(--bg-panel);
   color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-bottom-color: var(--indigo);
}

.form-group label {
   position: absolute;
   left: 0;
   top: 1rem;
   color: var(--text-muted);
   pointer-events: none;
   transition: 0.3s;
}

.form-group input:focus~label,
.form-group input:valid~label,
.form-group textarea:focus~label,
.form-group textarea:valid~label {
   top: -15px;
   font-size: 0.8rem;
   color: var(--indigo);
}

/* =========================================
   LEGAL PAGES
========================================= */
.legal-content {
   max-width: 900px;
   margin: 0 auto;
   background: var(--bg-panel);
   border: 1px solid var(--border-light);
   padding: 4rem;
   border-radius: 20px;
}

.legal-content h2 {
   color: var(--ruby);
   margin-top: 3rem;
   margin-bottom: 1rem;
   font-size: 1.8rem;
   border-bottom: 1px solid var(--border-light);
   padding-bottom: 0.5rem;
}

.legal-content p {
   color: #ccc;
   margin-bottom: 1.5rem;
}

.legal-content ul {
   margin-left: 2rem;
   margin-bottom: 2rem;
}

.legal-content ul li {
   color: #ccc;
   margin-bottom: 0.5rem;
   list-style-type: disc;
}

/* =========================================
   SCROLL REVEAL UTILITY
========================================= */
.reveal {
   opacity: 0;
   transform: translateY(40px);
   transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
   opacity: 1;
   transform: translateY(0);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 1024px) {

   .hero-grid,
   .method-grid,
   .contact-layout {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .hero-content h1 {
      font-size: 3.5rem;
   }

   .hero-actions {
      justify-content: center;
   }

   .funnel-container {
      height: 400px;
      margin-top: 2rem;
   }

   .bento-grid,
   .test-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .bento-item.large {
      grid-column: span 1;
   }

   .reports-layout {
      grid-template-columns: 1fr;
   }

   .tabs-col {
      flex-direction: row;
      overflow-x: auto;
      padding-bottom: 1rem;
   }

   .tab-btn {
      flex: 1;
      justify-content: center;
      white-space: nowrap;
   }

   .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
   }
}

@media (max-width: 768px) {
   .nav-links {
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      background: var(--bg-base);
      flex-direction: column;
      padding: 2rem 0;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
      transform: translateY(-150%);
      transition: 0.4s ease;
      z-index: 999;
   }

   .nav-links.active {
      transform: translateY(0);
   }

   .menu-toggle {
      display: block;
   }

   .btn-primary.hide-mobile {
      display: none;
   }

   .bento-grid,
   .test-grid,
   .form-row {
      grid-template-columns: 1fr;
   }

   .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .footer-title::after {
      left: 50%;
      transform: translateX(-50%);
   }

   .footer-contact li {
      justify-content: center;
   }

   .legal-content {
      padding: 2rem;
   }

   .section-head h2 {
      font-size: 2.5rem;
   }

   .timeline::before {
      left: 31px;
   }
}