/* ==========================================================================
   DIGITAL MARKETING V7 - AURORA GLASS & LIQUID 3D
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
   --bg-dark: #05050a;
   --glass-bg: rgba(255, 255, 255, 0.03);
   --glass-border: rgba(255, 255, 255, 0.08);
   --glass-highlight: rgba(255, 255, 255, 0.15);

   --aurora-1: #4f46e5;
   /* Indigo */
   --aurora-2: #0ea5e9;
   /* Sky Blue */
   --aurora-3: #db2777;
   /* Pink/Magenta */

   --text-pure: #ffffff;
   --text-muted: #a1a1aa;

   --font-main: 'Plus Jakarta Sans', system-ui, sans-serif;

   --ease-fluid: 0.25, 1, 0.5, 1;
   --transition-fast: 0.3s cubic-bezier(var(--ease-fluid));
   --transition-slow: 0.6s cubic-bezier(var(--ease-fluid));
}

/* ==========================================================================
   RESET & BASE TYPOGRAPHY
   ========================================================================== */
*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
   font-size: 16px;
   background-color: var(--bg-dark);
}

body {
   font-family: var(--font-main);
   color: var(--text-pure);
   background-color: var(--bg-dark);
   overflow-x: hidden;
   line-height: 1.6;
   -webkit-font-smoothing: antialiased;
   position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-weight: 700;
   line-height: 1.15;
   letter-spacing: -0.03em;
}

a {
   text-decoration: none;
   color: inherit;
}

ul {
   list-style: none;
}

img {
   max-width: 100%;
   display: block;
}

::selection {
   background: var(--aurora-1);
   color: var(--text-pure);
}

::-webkit-scrollbar {
   width: 8px;
}

::-webkit-scrollbar-track {
   background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
   background: rgba(255, 255, 255, 0.2);
   border-radius: 10px;
}

/* ==========================================================================
   LIQUID AURORA BACKGROUND (GLOBAL)
   ========================================================================== */
.aurora-bg {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   z-index: -1;
   overflow: hidden;
   pointer-events: none;
   background: var(--bg-dark);
}

.aurora-blob {
   position: absolute;
   border-radius: 50%;
   filter: blur(120px);
   opacity: 0.5;
   animation: floatBlob 20s infinite alternate ease-in-out;
}

.blob-1 {
   width: 600px;
   height: 600px;
   background: var(--aurora-1);
   top: -200px;
   left: -100px;
   animation-delay: 0s;
}

.blob-2 {
   width: 500px;
   height: 500px;
   background: var(--aurora-2);
   bottom: -100px;
   right: -100px;
   animation-delay: -5s;
}

.blob-3 {
   width: 400px;
   height: 400px;
   background: var(--aurora-3);
   top: 40%;
   left: 50%;
   transform: translate(-50%, -50%);
   animation-delay: -10s;
   opacity: 0.3;
}

/* ==========================================================================
   GLOBAL HEADER (STRICTLY IDENTICAL ACCROSS ALL PAGES)
   ========================================================================== */
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   background: rgba(5, 5, 10, 0.4);
   border-bottom: 1px solid transparent;
   transition: var(--transition-slow);
   padding: 1.5rem 0;
}

.site-header.scrolled {
   padding: 0.8rem 0;
   background: rgba(5, 5, 10, 0.75);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   border-bottom: 1px solid var(--glass-border);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.logo-wrap img {
   height: 55px;
   filter: brightness(0) invert(1);
}

.nav-menu {
   display: flex;
   gap: 2.5rem;
   align-items: center;
}

.nav-menu li a {
   font-size: 0.95rem;
   font-weight: 500;
   color: var(--text-muted);
   transition: var(--transition-fast);
   position: relative;
}

.nav-menu li a:hover {
   color: var(--text-pure);
}

.nav-menu li a::after {
   content: '';
   position: absolute;
   bottom: -5px;
   left: 50%;
   transform: translateX(-50%);
   width: 4px;
   height: 4px;
   border-radius: 50%;
   background: var(--aurora-2);
   opacity: 0;
   transition: var(--transition-fast);
   box-shadow: 0 0 10px var(--aurora-2);
}

.nav-menu li a:hover::after {
   opacity: 1;
}

.btn-glass {
   background: var(--glass-bg);
   border: 1px solid var(--glass-border);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   color: var(--text-pure) !important;
   padding: 0.6rem 1.8rem;
   border-radius: 30px;
   font-weight: 600;
   transition: var(--transition-fast);
   position: relative;
   overflow: hidden;
}

.btn-glass::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
   transform: translateX(-100%);
   transition: 0.5s;
}

.btn-glass:hover {
   background: rgba(255, 255, 255, 0.1);
   border-color: var(--glass-highlight);
   transform: translateY(-2px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-glass:hover::before {
   transform: translateX(100%);
}

.btn-glass::after {
   display: none !important;
}

.mobile-toggle {
   display: none;
   background: none;
   border: none;
   color: var(--text-pure);
   font-size: 2rem;
   cursor: pointer;
}

/* ==========================================================================
   GLOBAL FOOTER (STRICTLY IDENTICAL ACCROSS ALL PAGES)
   ========================================================================== */
.site-footer {
   background: rgba(5, 5, 10, 0.8);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   border-top: 1px solid var(--glass-border);
   padding: 6rem 0 2rem;
   position: relative;
   z-index: 10;
}

.footer-container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2rem;
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
   gap: 4rem;
}

.f-brand img {
   height: 42px;
   margin-bottom: 1.5rem;
}

.f-brand p {
   color: var(--text-muted);
   font-size: 0.95rem;
   line-height: 1.8;
   max-width: 350px;
}

.f-col h4 {
   font-size: 1.1rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 1.5rem;
   color: var(--text-pure);
}

.f-col ul {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.f-col ul a {
   color: var(--text-muted);
   transition: var(--transition-fast);
   font-size: 0.95rem;
}

.f-col ul a:hover {
   color: var(--aurora-2);
   padding-left: 5px;
}

.f-contact {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
}

.f-contact p {
   display: flex;
   align-items: center;
   gap: 1rem;
   color: var(--text-muted);
   font-size: 0.95rem;
}

.f-contact svg {
   width: 20px;
   height: 20px;
   fill: var(--aurora-1);
   flex-shrink: 0;
}

.footer-bottom {
   max-width: 1400px;
   margin: 4rem auto 0;
   padding: 2rem 2rem 0;
   border-top: 1px solid var(--glass-border);
   display: flex;
   justify-content: space-between;
   align-items: center;
   color: var(--text-muted);
   font-size: 0.85rem;
}

.f-legal a {
   color: var(--text-muted);
   margin-left: 2rem;
   transition: var(--transition-fast);
}

.f-legal a:hover {
   color: var(--text-pure);
}

/* ==========================================================================
   GLOBAL SECTION COMPONENTS
   ========================================================================== */
.section-pad {
   padding: 8rem 0;
   position: relative;
   z-index: 2;
}

.container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2rem;
   position: relative;
}

.sec-head {
   text-align: center;
   margin-bottom: 5rem;
}

.sec-head h2 {
   font-size: 3.5rem;
   margin-bottom: 1rem;
}

.sec-head h2 span {
   background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2), var(--aurora-3));
   -webkit-background-clip: text;
   color: transparent;
}

.sec-head p {
   max-width: 600px;
   margin: 0 auto;
   font-size: 1.1rem;
   color: var(--text-muted);
}

/* Standard Glass Card */
.glass-card {
   background: var(--glass-bg);
   border: 1px solid var(--glass-border);
   backdrop-filter: blur(16px);
   -webkit-backdrop-filter: blur(16px);
   border-radius: 20px;
   padding: 3rem;
   transition: var(--transition-slow);
}

.glass-card:hover {
   border-color: var(--glass-highlight);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
   background: rgba(255, 255, 255, 0.05);
}

/* Gradient Button */
.btn-gradient {
   display: inline-block;
   background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
   color: #fff;
   font-weight: 600;
   padding: 1rem 2.5rem;
   border-radius: 30px;
   border: none;
   cursor: pointer;
   transition: var(--transition-fast);
   box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-gradient:hover {
   transform: translateY(-3px);
   box-shadow: 0 15px 30px rgba(14, 165, 233, 0.4);
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero-section {
   min-height: 100vh;
   display: flex;
   align-items: center;
   padding-top: 6rem;
   position: relative;
   z-index: 2;
}

.hero-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.hero-text h1 {
   font-size: 5rem;
   line-height: 1.05;
   margin-bottom: 1.5rem;
   letter-spacing: -2px;
}

.hero-text h1 .gradient-text {
   background: linear-gradient(90deg, #fff, var(--text-muted));
   -webkit-background-clip: text;
   color: transparent;
}

.hero-text p {
   font-size: 1.25rem;
   color: var(--text-muted);
   margin-bottom: 2.5rem;
   max-width: 500px;
}

.hero-btns {
   display: flex;
   gap: 1rem;
   align-items: center;
}

/* 3D Floating Glass Elements */
.hero-visual {
   position: relative;
   height: 600px;
   perspective: 1000px;
   display: flex;
   justify-content: center;
   align-items: center;
}

.float-panel {
   position: absolute;
   background: rgba(255, 255, 255, 0.02);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   border: 1px solid var(--glass-highlight);
   border-radius: 24px;
   padding: 2rem;
   transform-style: preserve-3d;
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.panel-main {
   width: 350px;
   height: 400px;
   transform: rotateY(-15deg) rotateX(5deg) translateZ(0);
   animation: float1 8s infinite ease-in-out;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.panel-sub {
   width: 250px;
   height: 180px;
   bottom: 50px;
   right: 0;
   transform: rotateY(15deg) rotateX(-5deg) translateZ(100px);
   animation: float2 6s infinite ease-in-out;
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(14, 165, 233, 0.1));
}

.v-metric {
   font-size: 3.5rem;
   font-weight: 800;
   background: linear-gradient(90deg, var(--aurora-2), var(--aurora-3));
   -webkit-background-clip: text;
   color: transparent;
   line-height: 1;
   margin-bottom: 10px;
}

.v-label {
   color: var(--text-muted);
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 1px;
}

/* Chart inside main panel */
.hero-chart {
   display: flex;
   align-items: flex-end;
   gap: 10px;
   height: 150px;
   margin-top: 30px;
   border-bottom: 1px solid var(--glass-border);
   padding-bottom: 10px;
}

.h-bar {
   flex: 1;
   background: var(--aurora-1);
   border-radius: 4px 4px 0 0;
   animation: growBar 2s ease-out forwards;
   opacity: 0;
}

.h-bar:nth-child(2) {
   background: var(--aurora-2);
   animation-delay: 0.2s;
}

.h-bar:nth-child(3) {
   background: var(--aurora-3);
   animation-delay: 0.4s;
}

/* ==========================================================================
   2. MARQUEE SECTION
   ========================================================================== */
.marquee-wrapper {
   border-y: 1px solid var(--glass-border);
   background: rgba(0, 0, 0, 0.2);
   padding: 2.5rem 0;
   overflow: hidden;
   backdrop-filter: blur(10px);
}

.marquee-track {
   display: flex;
   width: max-content;
   animation: scrollMarquee 30s linear infinite;
}

.marquee-item {
   font-size: 1.5rem;
   font-weight: 700;
   color: rgba(255, 255, 255, 0.2);
   margin: 0 4rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   transition: var(--transition-fast);
}

.marquee-item:hover {
   color: var(--text-pure);
}

/* ==========================================================================
   3. ABOUT / PHILOSOPHY
   ========================================================================== */
.about-grid {
   display: grid;
   grid-template-columns: 1.2fr 1fr;
   gap: 5rem;
   align-items: center;
}

.about-stats {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;
}

.stat-box {
   padding: 2.5rem;
   text-align: center;
}

.stat-box h3 {
   font-size: 3rem;
   color: var(--text-pure);
   margin-bottom: 0.5rem;
}

.stat-box p {
   color: var(--text-muted);
   font-size: 0.9rem;
   text-transform: uppercase;
}

.about-text h2 {
   font-size: 2.5rem;
   margin-bottom: 1.5rem;
}

.about-text p {
   color: var(--text-muted);
   font-size: 1.1rem;
   margin-bottom: 2rem;
}

.feature-list li {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-bottom: 1rem;
   font-weight: 500;
}

.feature-list svg {
   width: 24px;
   height: 24px;
   fill: var(--aurora-2);
}

/* ==========================================================================
   4. CORE SERVICES (3D TILT GLASS CARDS)
   ========================================================================== */
.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;
   perspective: 1000px;
}

.svc-card {
   transform-style: preserve-3d;
   display: flex;
   flex-direction: column;
}

.svc-icon {
   width: 65px;
   height: 65px;
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid var(--glass-border);
   border-radius: 16px;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-bottom: 2rem;
   transform: translateZ(30px);
   transition: var(--transition-fast);
}

.svc-icon svg {
   width: 30px;
   height: 30px;
   fill: var(--text-pure);
}

.svc-card:hover .svc-icon {
   background: var(--aurora-1);
   border-color: var(--aurora-1);
}

.svc-card h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
   transform: translateZ(20px);
}

.svc-card p {
   color: var(--text-muted);
   margin-bottom: 2rem;
   transform: translateZ(10px);
   flex-grow: 1;
}

.svc-link {
   color: var(--aurora-2);
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 5px;
   transform: translateZ(20px);
}

/* ==========================================================================
   5. INTERACTIVE ROI CALCULATOR
   ========================================================================== */
.calc-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.calc-inputs {
   display: flex;
   flex-direction: column;
   gap: 2.5rem;
}

.calc-group {
   position: relative;
}

.calc-header {
   display: flex;
   justify-content: space-between;
   margin-bottom: 1rem;
   font-weight: 500;
}

.calc-val {
   color: var(--aurora-2);
   font-weight: 700;
   font-size: 1.2rem;
}

input[type=range] {
   -webkit-appearance: none;
   width: 100%;
   height: 4px;
   background: var(--glass-border);
   border-radius: 2px;
   outline: none;
}

input[type=range]::-webkit-slider-thumb {
   -webkit-appearance: none;
   width: 20px;
   height: 20px;
   background: var(--text-pure);
   border: 2px solid var(--aurora-2);
   border-radius: 50%;
   cursor: pointer;
   box-shadow: 0 0 10px var(--aurora-2);
   transition: transform 0.1s;
}

input[type=range]::-webkit-slider-thumb:hover {
   transform: scale(1.2);
}

.calc-output {
   text-align: center;
   padding: 4rem 2rem;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   position: relative;
   overflow: hidden;
}

.calc-output::before {
   content: '';
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 200px;
   height: 200px;
   background: var(--aurora-3);
   filter: blur(80px);
   opacity: 0.3;
   z-index: -1;
}

.calc-output h4 {
   color: var(--text-muted);
   text-transform: uppercase;
   letter-spacing: 2px;
   margin-bottom: 1rem;
   font-size: 0.9rem;
}

.result-val {
   font-size: 4.5rem;
   font-weight: 800;
   color: var(--text-pure);
   margin-bottom: 1rem;
   line-height: 1;
}

.result-badge {
   background: rgba(14, 165, 233, 0.1);
   border: 1px solid var(--aurora-2);
   color: var(--aurora-2);
   padding: 0.5rem 1.5rem;
   border-radius: 30px;
   font-weight: 600;
   font-size: 0.85rem;
   text-transform: uppercase;
}

/* ==========================================================================
   6. SAMPLE ANALYTICS DASHBOARD (CSS TABS & GRAPHS)
   ========================================================================== */
.dash-wrapper {
   padding: 0;
   overflow: hidden;
   display: flex;
   flex-direction: column;
}

.dash-nav {
   display: flex;
   border-bottom: 1px solid var(--glass-border);
   background: rgba(0, 0, 0, 0.2);
}

.dash-tab {
   flex: 1;
   text-align: center;
   padding: 1.5rem;
   background: none;
   border: none;
   color: var(--text-muted);
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   transition: var(--transition-fast);
   position: relative;
}

.dash-tab.active {
   color: var(--text-pure);
   background: rgba(255, 255, 255, 0.02);
}

.dash-tab.active::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 2px;
   background: var(--aurora-1);
   box-shadow: 0 0 10px var(--aurora-1);
}

.dash-body {
   padding: 3rem;
   display: none;
}

.dash-body.active {
   display: block;
   animation: fadeUp 0.4s ease forwards;
}

.dash-kpis {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
   margin-bottom: 3rem;
}

.kpi-box {
   border-left: 2px solid var(--glass-border);
   padding-left: 1.5rem;
}

.kpi-box span {
   display: block;
   color: var(--text-muted);
   font-size: 0.85rem;
   text-transform: uppercase;
   margin-bottom: 0.5rem;
}

.kpi-box strong {
   font-size: 2rem;
   font-weight: 700;
   color: var(--text-pure);
}

.trend {
   font-size: 0.9rem;
   font-weight: 600;
   margin-left: 10px;
}

.trend.pos {
   color: #10b981;
}

.trend.neg {
   color: #ef4444;
}

.css-graph-area {
   height: 250px;
   display: flex;
   align-items: flex-end;
   gap: 15px;
   border-bottom: 1px solid var(--glass-border);
   padding-bottom: 10px;
}

.c-bar {
   flex: 1;
   background: linear-gradient(180deg, var(--aurora-2), transparent);
   border-top: 2px solid var(--aurora-2);
   border-radius: 4px 4px 0 0;
   position: relative;
   opacity: 0;
   animation: riseBar 1s ease forwards;
}

.c-bar:nth-child(even) {
   background: linear-gradient(180deg, var(--aurora-3), transparent);
   border-color: var(--aurora-3);
}

.c-bar::after {
   content: attr(data-lbl);
   position: absolute;
   bottom: -30px;
   left: 50%;
   transform: translateX(-50%);
   font-size: 0.8rem;
   color: var(--text-muted);
}

/* ==========================================================================
   7. INDUSTRIES
   ========================================================================== */
.ind-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
}

.ind-card {
   text-align: center;
   border: 1px solid transparent;
   background: transparent;
   padding: 2rem;
   border-radius: 16px;
   transition: var(--transition-fast);
   cursor: pointer;
}

.ind-card:hover {
   background: var(--glass-bg);
   border-color: var(--glass-border);
   transform: translateY(-10px);
}

.ind-icon {
   width: 50px;
   height: 50px;
   fill: var(--aurora-2);
   margin: 0 auto 1.5rem;
   transition: var(--transition-fast);
}

.ind-card:hover .ind-icon {
   transform: scale(1.1);
   fill: var(--aurora-3);
}

.ind-card h4 {
   font-size: 1.2rem;
   margin-bottom: 1rem;
}

.ind-card p {
   color: var(--text-muted);
   font-size: 0.95rem;
}

/* ==========================================================================
   8. PROCESS TIMELINE
   ========================================================================== */
.timeline-wrap {
   position: relative;
   max-width: 900px;
   margin: 0 auto;
}

.timeline-wrap::before {
   content: '';
   position: absolute;
   top: 0;
   left: 30px;
   width: 2px;
   height: 100%;
   background: linear-gradient(180deg, var(--aurora-1), var(--aurora-3));
   opacity: 0.3;
}

.t-step {
   display: flex;
   gap: 3rem;
   margin-bottom: 4rem;
   position: relative;
}

.t-step:last-child {
   margin-bottom: 0;
}

.t-node {
   width: 60px;
   height: 60px;
   background: var(--bg-dark);
   border: 2px solid var(--aurora-1);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   font-weight: 700;
   font-size: 1.2rem;
   color: var(--text-pure);
   flex-shrink: 0;
   z-index: 2;
   box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
}

.t-content {
   background: var(--glass-bg);
   border: 1px solid var(--glass-border);
   padding: 2.5rem;
   border-radius: 16px;
   flex-grow: 1;
   transition: var(--transition-fast);
}

.t-step:hover .t-content {
   border-color: var(--aurora-2);
   transform: translateX(10px);
   background: rgba(255, 255, 255, 0.05);
}

.t-content h4 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
}

.t-content p {
   color: var(--text-muted);
}

/* ==========================================================================
   9. TESTIMONIALS
   ========================================================================== */
.testi-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.testi-card {
   position: relative;
   padding: 3rem;
   border-radius: 20px;
   overflow: hidden;
}

.testi-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
   z-index: 0;
}

.testi-quote {
   font-family: serif;
   font-size: 5rem;
   color: var(--glass-highlight);
   position: absolute;
   top: 10px;
   right: 20px;
   line-height: 1;
   z-index: 1;
}

.testi-card p {
   font-size: 1.1rem;
   color: var(--text-pure);
   margin-bottom: 2rem;
   position: relative;
   z-index: 2;
   font-style: italic;
}

.t-author {
   display: flex;
   align-items: center;
   gap: 1rem;
   position: relative;
   z-index: 2;
   border-top: 1px solid var(--glass-border);
   padding-top: 1.5rem;
}

.t-avatar {
   width: 50px;
   height: 50px;
   background: var(--glass-border);
   border-radius: 50%;
}

.t-info h5 {
   font-size: 1rem;
   margin-bottom: 0.2rem;
}

.t-info span {
   font-size: 0.85rem;
   color: var(--aurora-2);
   text-transform: uppercase;
   font-weight: 600;
}

/* ==========================================================================
   10. GLOBAL CTA
   ========================================================================== */
.cta-section {
   text-align: center;
   padding: 10rem 0;
   position: relative;
   overflow: hidden;
   border-top: 1px solid var(--glass-border);
}

.cta-section::before {
   content: '';
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 600px;
   height: 600px;
   background: var(--aurora-1);
   filter: blur(150px);
   opacity: 0.2;
   z-index: -1;
}

.cta-section h2 {
   font-size: 4rem;
   margin-bottom: 1.5rem;
}

.cta-section p {
   font-size: 1.2rem;
   color: var(--text-muted);
   max-width: 600px;
   margin: 0 auto 3rem;
}

/* ==========================================================================
   CONTACT PAGE SPECIFIC
   ========================================================================== */
.page-hero {
   padding: 12rem 0 6rem;
   text-align: center;
   border-bottom: 1px solid var(--glass-border);
   position: relative;
}

.page-hero h1 {
   font-size: 4.5rem;
   margin-bottom: 1rem;
}

.page-hero p {
   font-size: 1.2rem;
   color: var(--text-muted);
   max-width: 600px;
   margin: 0 auto;
}

.contact-layout {
   display: grid;
   grid-template-columns: 1fr 1.5fr;
   gap: 4rem;
   margin-top: -3rem;
   position: relative;
   z-index: 10;
   margin-bottom: 8rem;
}

.c-info-panel {
   padding: 4rem;
}

.c-info-panel h3 {
   font-size: 2.5rem;
   margin-bottom: 3rem;
   background: linear-gradient(90deg, var(--aurora-2), var(--aurora-3));
   -webkit-background-clip: text;
   color: transparent;
}

.c-item {
   display: flex;
   gap: 1.5rem;
   margin-bottom: 2.5rem;
}

.c-item svg {
   width: 28px;
   height: 28px;
   fill: var(--text-pure);
   flex-shrink: 0;
}

.c-text h5 {
   font-size: 1.1rem;
   color: var(--text-muted);
   margin-bottom: 0.5rem;
   text-transform: uppercase;
   font-weight: 600;
   letter-spacing: 1px;
}

.c-text p {
   font-size: 1.1rem;
   color: var(--text-pure);
   font-weight: 500;
}

.c-form-panel {
   padding: 4rem;
}

.form-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;
   margin-bottom: 2rem;
}

.form-full {
   grid-column: 1 / -1;
}

.f-group {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
}

.f-group label {
   font-size: 0.9rem;
   font-weight: 600;
   color: var(--text-muted);
   text-transform: uppercase;
   letter-spacing: 1px;
}

.f-group input,
.f-group select,
.f-group textarea {
   background: rgba(0, 0, 0, 0.2);
   border: 1px solid var(--glass-border);
   padding: 1.2rem;
   color: var(--text-pure);
   font-family: var(--font-main);
   font-size: 1rem;
   border-radius: 8px;
   transition: var(--transition-fast);
   outline: none;
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
   border-color: var(--aurora-2);
   box-shadow: 0 0 15px rgba(14, 165, 233, 0.2);
   background: rgba(255, 255, 255, 0.05);
}

.f-group select option {
   background: var(--bg-dark);
}

.submit-btn {
   width: 100%;
   border: none;
   font-size: 1.1rem;
   padding: 1.5rem;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-wrapper {
   max-width: 900px;
   margin: 4rem auto 8rem;
   padding: 4rem;
}

.legal-wrapper h2 {
   font-size: 2rem;
   margin: 3rem 0 1.5rem;
   color: var(--aurora-2);
}

.legal-wrapper p {
   font-size: 1.1rem;
   color: var(--text-muted);
   margin-bottom: 1.5rem;
}

.legal-wrapper ul {
   margin-left: 2rem;
   margin-bottom: 1.5rem;
   color: var(--text-muted);
   font-size: 1.1rem;
}

.legal-wrapper li {
   margin-bottom: 0.8rem;
}

/* ==========================================================================
   LIVE CHAT WIDGET
   ========================================================================== */
.chat-widget {
   position: fixed;
   bottom: 30px;
   right: 30px;
   z-index: 9999;
}

.chat-btn {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: linear-gradient(135deg, var(--aurora-1), var(--aurora-3));
   border: none;
   color: #fff;
   display: flex;
   justify-content: center;
   align-items: center;
   cursor: pointer;
   box-shadow: 0 10px 20px rgba(219, 39, 119, 0.4);
   transition: var(--transition-fast);
}

.chat-btn:hover {
   transform: scale(1.1);
}

.chat-btn svg {
   width: 30px;
   height: 30px;
   fill: currentColor;
}

.chat-window {
   position: absolute;
   bottom: 80px;
   right: 0;
   width: 360px;
   background: rgba(10, 10, 15, 0.95);
   backdrop-filter: blur(20px);
   border: 1px solid var(--glass-border);
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
   opacity: 0;
   pointer-events: none;
   transform: translateY(20px) scale(0.95);
   transition: var(--transition-fast);
   transform-origin: bottom right;
}

.chat-window.active {
   opacity: 1;
   pointer-events: all;
   transform: translateY(0) scale(1);
}

.chat-head {
   background: rgba(255, 255, 255, 0.03);
   padding: 1.5rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-bottom: 1px solid var(--glass-border);
}

.chat-head h4 {
   font-size: 1.1rem;
}

.chat-close {
   background: none;
   border: none;
   color: var(--text-muted);
   font-size: 1.5rem;
   cursor: pointer;
}

.chat-body {
   height: 320px;
   padding: 1.5rem;
   overflow-y: auto;
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.msg {
   max-width: 85%;
   padding: 1rem;
   border-radius: 12px;
   font-size: 0.95rem;
}

.msg-bot {
   background: rgba(255, 255, 255, 0.05);
   align-self: flex-start;
   border-bottom-left-radius: 2px;
}

.msg-user {
   background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
   align-self: flex-end;
   border-bottom-right-radius: 2px;
}

.chat-foot {
   display: flex;
   border-top: 1px solid var(--glass-border);
   padding: 1rem;
   gap: 10px;
}

.chat-foot input {
   flex: 1;
   background: rgba(0, 0, 0, 0.3);
   border: 1px solid var(--glass-border);
   border-radius: 8px;
   padding: 0.8rem;
   color: var(--text-pure);
   outline: none;
}

.chat-foot button {
   background: var(--aurora-1);
   color: #fff;
   border: none;
   padding: 0 1.2rem;
   border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes floatBlob {
   0% {
      transform: translate(0, 0) scale(1);
   }

   100% {
      transform: translate(100px, 100px) scale(1.2);
   }
}

@keyframes float1 {

   0%,
   100% {
      transform: rotateY(-15deg) rotateX(5deg) translateY(0);
   }

   50% {
      transform: rotateY(-15deg) rotateX(5deg) translateY(-20px);
   }
}

@keyframes float2 {

   0%,
   100% {
      transform: rotateY(15deg) rotateX(-5deg) translateZ(100px) translateY(0);
   }

   50% {
      transform: rotateY(15deg) rotateX(-5deg) translateZ(100px) translateY(20px);
   }
}

@keyframes growBar {
   from {
      height: 0;
      opacity: 0;
   }

   to {
      opacity: 1;
   }
}

@keyframes scrollMarquee {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(-50%);
   }
}

@keyframes fadeUp {
   from {
      opacity: 0;
      transform: translateY(15px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes riseBar {
   to {
      opacity: 1;
   }
}

.reveal {
   opacity: 0;
   transform: translateY(30px);
   transition: 0.8s cubic-bezier(var(--ease-fluid));
}

.reveal.active {
   opacity: 1;
   transform: translateY(0);
}

@media (max-width: 1024px) {

   .hero-grid,
   .about-grid,
   .calc-grid,
   .contact-layout {
      grid-template-columns: 1fr;
      gap: 4rem;
   }

   .hero-text h1 {
      font-size: 4rem;
   }

   .hero-visual {
      height: 450px;
   }

   .dash-kpis,
   .ind-grid,
   .testi-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
   }
}

@media (max-width: 768px) {
   .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: rgba(5, 5, 10, 0.95);
      backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 2rem;
      border-bottom: 1px solid var(--glass-border);
   }

   .nav-menu.show {
      display: flex;
   }

   .mobile-toggle {
      display: block;
   }

   .sec-head h2 {
      font-size: 2.8rem;
   }

   .about-stats,
   .dash-kpis,
   .ind-grid,
   .testi-grid,
   .form-grid,
   .footer-container {
      grid-template-columns: 1fr;
   }

   .t-step {
      flex-direction: column;
      gap: 1.5rem;
   }

   .timeline-wrap::before {
      left: 30px;
   }

   .calc-output {
      padding: 3rem 1rem;
   }

   .result-val {
      font-size: 3.5rem;
   }
}