/* ==========================================================================
   AWWWARDS STYLE DESIGN SYSTEM - PREMIUM LIGHT THEME
   ========================================================================== */

:root {
  /* Colors */
  --bg-color: #f8f9fa;
  --bg-surface: #ffffff;
  --bg-dark: #0a0a0b;

  --text-main: #111111;
  --text-muted: #6b7280;
  --text-light: #ffffff;

  --accent-1: #4338ca; /* Deep Indigo */
  --accent-2: #f43f5e; /* Rose */
  --accent-glow: rgba(67, 56, 202, 0.15);

  /* Typography */
  --font-heading: "Syne", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  /* Spacing & Layout */
  --container-width: 1320px;
  --section-pad: clamp(4rem, 8vw, 8rem);

  /* Animation Easing (Apple/AWWWARDS style) */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 30px 60px rgba(67, 56, 202, 0.08);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto; /* Handled by JS for smooth feel */
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* Custom cursor */
}

a {
  text-decoration: none;
  color: inherit;
  cursor: none;
}
ul {
  list-style: none;
}
img,
svg {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: none;
  border: none;
  background: none;
}

/* Custom Selection */
::selection {
  background: var(--accent-1);
  color: var(--text-light);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.huge-text {
  font-size: clamp(3rem, 6vw, 6rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}
p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  display: inline-block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-1);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: var(--section-pad) 0;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-large {
  padding-bottom: 8rem;
}
.pt-header {
  padding-top: 10rem;
}

.flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 2rem;
}
.bg-light {
  background-color: var(--bg-surface);
}
.bg-dark {
  background-color: var(--bg-dark);
}
.text-light h2,
.text-light p {
  color: var(--text-light);
}
.text-light .subtitle {
  color: var(--accent-2);
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-1);
  transition:
    width 0.2s,
    height 0.2s;
}
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(67, 56, 202, 0.5);
  transition:
    width 0.2s,
    height 0.2s,
    background-color 0.2s;
}
body.hovering .cursor-dot {
  width: 0;
  height: 0;
}
body.hovering .cursor-outline {
  width: 60px;
  height: 60px;
  background-color: var(--accent-glow);
  border-color: transparent;
  mix-blend-mode: multiply;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-surface);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s var(--ease-out-expo);
}
.preloader.hidden {
  transform: translateY(-100%);
}
.preloader-content {
  text-align: center;
}
.preloader-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  opacity: 0;
  animation: pulse 2s infinite;
}
.preloader-text .dot {
  color: var(--accent-1);
}
.preloader-progress {
  width: 200px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar {
  width: 0%;
  height: 100%;
  background: var(--accent-1);
  transition: width 0.5s ease;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  overflow: hidden;
  transition:
    color 0.3s ease,
    transform 0.2s ease;
}
.btn-text {
  position: relative;
  z-index: 2;
}
.btn-primary {
  background: var(--text-main);
  color: var(--text-light);
}
.btn-primary .btn-fill {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-1);
  border-radius: 50%;
  z-index: 1;
  transition:
    top 0.4s var(--ease-out-expo),
    border-radius 0.4s var(--ease-out-expo);
}
.btn-primary:hover .btn-fill {
  top: 0;
  border-radius: 0;
}
.btn-outline {
  border: 1px solid var(--text-main);
  color: var(--text-main);
}
.btn-outline:hover {
  background: var(--text-main);
  color: var(--text-light);
}
.btn-full {
  width: 100%;
}
.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
}

/* ==========================================================================
   HEADER / NAVIGATION (Strict consistency)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition:
    padding 0.3s ease,
    background 0.3s ease;
}
.header.scrolled {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Logo Handling */
.logo {
  display: block;
  position: relative;
  z-index: 1001;
}
.logo-img-wrapper, .logo {
  height: 60px;
  display: flex;
  align-items: center;
}
.logo-img-wrapper img , .logo img {
  height: 100%;
  filter: invert(1);
  object-fit: contain;
}
.logo-text-fallback {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.nav-link::before {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--accent-1);
  transition: top 0.3s var(--ease-out-expo);
}
.nav-link:hover::before {
  top: 0;
}
.nav-link:hover {
  color: transparent;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 1001;
}
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  background: var(--bg-surface);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}
.menu-toggle .line {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 2px;
  background: var(--text-main);
  transition: 0.3s ease;
}
.line-1 {
  top: 16px;
}
.line-2 {
  top: 22px;
}
.menu-toggle.active .line-1 {
  transform: rotate(45deg);
  top: 19px;
}
.menu-toggle.active .line-2 {
  transform: rotate(-45deg);
  top: 19px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-surface);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  clip-path: circle(0% at 100% 0);
  transition: clip-path 0.8s var(--ease-out-expo);
}
.mobile-menu.active {
  clip-path: circle(150% at 100% 0);
}
.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
  color: var(--text-main);
  transform: translateY(30px);
  opacity: 0;
  transition: 0.4s ease;
}
.mobile-menu.active .mobile-nav-links a {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.active .mobile-nav-links a:nth-child(1) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-nav-links a:nth-child(2) {
  transition-delay: 0.3s;
}
.mobile-menu.active .mobile-nav-links a:nth-child(3) {
  transition-delay: 0.4s;
}
.mobile-menu.active .mobile-nav-links a:nth-child(4) {
  transition-delay: 0.5s;
}
.mobile-menu.active .mobile-nav-links a:nth-child(5) {
  transition-delay: 0.6s;
}
.mobile-contact {
  margin-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg-surface);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.hero-title {
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 90%;
}
.hero-btns {
  display: flex;
  gap: 1rem;
}

/* Abstract Visual */
.hero-visual {
  position: relative;
  height: 500px;
}
.abstract-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  z-index: -1;
  animation: float 10s infinite alternate;
}
.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-1);
  top: 10%;
  right: 10%;
}
.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-2);
  bottom: 10%;
  left: 10%;
  animation-delay: -5s;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
}
.float-anim {
  animation: floatY 6s infinite ease-in-out;
}
.card-header {
  display: flex;
  gap: 6px;
  margin-bottom: 1.5rem;
}
.card-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red {
  background: #ff5f56;
}
.dot.yellow {
  background: #ffbd2e;
}
.dot.green {
  background: #27c93f;
}
.card-body .label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}
.card-body .metric {
  font-size: 3rem;
  color: var(--accent-1);
  margin: 0.5rem 0 1.5rem;
}
.chart-mockup {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 80px;
}
.chart-mockup .bar {
  width: 100%;
  background: var(--text-main);
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  animation: growUp 1.5s var(--ease-out-expo) forwards;
}
.h-40 {
  height: 40%;
}
.h-60 {
  height: 60%;
}
.h-30 {
  height: 30%;
}
.h-80 {
  height: 80%;
}
.h-100 {
  height: 100%;
  background: var(--accent-1);
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee-section {
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: var(--bg-surface);
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}
.marquee-content span {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 2rem;
  -webkit-text-stroke: 1px var(--text-main);
  color: transparent;
  transition: 0.3s;
}
.marquee-content span:hover {
  color: var(--text-main);
}
.marquee-content .separator {
  color: var(--accent-1);
  -webkit-text-stroke: 0;
}

/* ==========================================================================
   INTRO / STATS
   ========================================================================== */
.intro-wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.intro h2 {
  margin-bottom: 4rem;
  line-height: 1.3;
}
.intro-stats {
  justify-content: center;
  gap: 4rem;
}
.stat-item h4 {
  display: inline-block;
  font-size: 4rem;
  color: var(--accent-1);
}
.stat-item span {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
}

/* ==========================================================================
   SERVICES BENTO GRID
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.bento-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.bento-card.large {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-card.wide {
  grid-column: span 3;
}

.icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(67, 56, 202, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-1);
  margin-bottom: 1.5rem;
  transition:
    background 0.3s,
    color 0.3s;
}
.bento-card:hover .icon-wrap {
  background: var(--accent-1);
  color: white;
}
.bento-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.bento-card p {
  font-size: 1rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 2rem;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
.link-arrow svg {
  width: 20px;
  transition: 0.3s;
}
.link-arrow:hover {
  color: var(--accent-1);
  border-color: var(--accent-1);
}
.link-arrow:hover svg {
  transform: translateX(5px);
}

/* Visuals inside Bento */
.card-bg-visual {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}
.wave-line {
  height: 100px;
  width: 100%;
  border: 2px solid var(--accent-1);
  border-radius: 50%;
  margin-top: -50px;
}
.card-content {
  position: relative;
  z-index: 1;
}
.flex-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.text-part {
  flex: 1;
}
.visual-part {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.mock-article {
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  width: 80%;
}
.mock-article .line {
  height: 8px;
  background: #e5e7eb;
  margin-bottom: 10px;
  border-radius: 4px;
}
.mock-article .w-80 {
  width: 80%;
}
.mock-article .w-100 {
  width: 100%;
}
.mock-article .w-60 {
  width: 60%;
}

/* ==========================================================================
   INDUSTRIES ACCORDION
   ========================================================================== */
.industry-accordion {
  margin-top: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
  cursor: none;
}
.acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.acc-header h3 {
  font-size: 2rem;
  transition: color 0.3s;
}
.accordion-item:hover .acc-header h3 {
  color: var(--accent-1);
}
.acc-header .icon {
  font-size: 2rem;
  font-weight: 300;
  transition: transform 0.3s;
}
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}
.acc-content p {
  padding-top: 1rem;
  padding-right: 4rem;
}
.accordion-item.active .acc-content {
  max-height: 200px;
}
.accordion-item.active .icon {
  transform: rotate(45deg);
  color: var(--accent-2);
}

/* ==========================================================================
   ROI CALCULATOR
   ========================================================================== */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: var(--radius-lg);
}
.input-group {
  margin-bottom: 2rem;
  position: relative;
}
.input-group label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.875rem;
}
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: var(--accent-2);
  cursor: none;
  margin-top: -10px;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.5);
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
.val-display {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 700;
  color: var(--accent-1);
  font-family: var(--font-heading);
}
.results-panel {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}
.result-item span {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}
.result-item h4 {
  font-size: 2.5rem;
}
.small-text {
  font-size: 0.875rem;
  opacity: 0.6;
}

/* ==========================================================================
   WORK / REPORTS
   ========================================================================== */
.reports-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
.report-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-surface);
}
.img-wrapper {
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.mock-dashboard {
  width: 80%;
  height: 80%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s;
}
.mock-dashboard.dark {
  background: var(--bg-dark);
}
.mock-dashboard .header {
  width: 40%;
  height: 20px;
  background: #f3f4f6;
  border-radius: 4px;
  margin-bottom: 2rem;
}
.mock-dashboard .chart.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 15px solid var(--accent-1);
  border-right-color: var(--accent-2);
  margin: 0 auto;
}
.mock-dashboard .chart.bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
}
.mock-dashboard .chart.bars .b {
  width: 100%;
  background: var(--accent-1);
  border-radius: 4px 4px 0 0;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 11, 0.9);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.report-item:hover .overlay {
  opacity: 1;
}
.report-item:hover .mock-dashboard {
  transform: scale(0.9);
}
.overlay h4 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-2);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testimonial-slider::-webkit-scrollbar {
  display: none;
}
.test-card {
  min-width: 400px;
  background: var(--bg-surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}
.quote-icon {
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 0;
  color: rgba(67, 56, 202, 0.1);
  margin-top: 2rem;
}
.quote {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 2rem;
  font-style: italic;
}
.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.bg-gradient {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
}
.client-info h5 {
  font-size: 1.125rem;
}
.client-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.process-timeline {
  position: relative;
  margin-top: 4rem;
  max-width: 800px;
  margin: 4rem auto 0;
}
.line-path {
  position: absolute;
  top: 0;
  left: 25px;
  width: 2px;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.process-step {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
}
.step-num {
  width: 50px;
  height: 50px;
  background: var(--bg-surface);
  border: 2px solid var(--accent-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-1);
  z-index: 2;
  flex-shrink: 0;
}
.step-content h3 {
  margin-bottom: 1rem;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-box {
  background: var(--bg-dark);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-content h2 {
  margin-bottom: 1rem;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
}

/* ==========================================================================
   FOOTER (Strict consistency)
   ========================================================================== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}
.footer-brand p {
  font-size: 1rem;
  max-width: 300px;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-main);
  transition: 0.3s;
}
.social-links a:hover {
  background: var(--accent-1);
  color: white;
  border-color: var(--accent-1);
}
.social-links svg {
  width: 18px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}
.footer-links ul li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}
.footer-links a:hover {
  color: var(--accent-1);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}
.contact-list svg {
  width: 20px;
  color: var(--accent-1);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-list a {
  transition: 0.3s;
}
.contact-list a:hover {
  color: var(--accent-1);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 4rem;
  padding: 2rem 0;
}
.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.legal-links {
  display: flex;
  gap: 2rem;
}
.legal-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: 0.3s;
}
.legal-links a:hover {
  color: var(--text-main);
}

/* ==========================================================================
   LIVE CHAT
   ========================================================================== */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}
.chat-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--text-main);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.chat-btn svg {
  width: 24px;
}
.chat-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  transform: scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: bottom right;
}
.chat-panel.active {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}
.chat-header {
  background: var(--text-main);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header h5 {
  margin: 0;
  font-size: 1.1rem;
}
.chat-header span {
  font-size: 0.75rem;
  opacity: 0.7;
}
.close-chat {
  color: white;
  font-size: 1.5rem;
}
.chat-body {
  padding: 1.5rem;
  height: 250px;
  background: #f9fafb;
  overflow-y: auto;
}
.msg.received {
  background: white;
  padding: 1rem;
  border-radius: 12px 12px 12px 0;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.chat-input-area {
  padding: 1rem;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1rem;
}
.chat-input-area input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.9rem;
}
.chat-input-area button {
  color: var(--accent-1);
}

/* ==========================================================================
   CONTACT PAGE SPECIFICS
   ========================================================================== */
.contact-layout {
  align-items: stretch;
}
.contact-info-panel {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}
.contact-form-panel {
  flex: 1.5;
  min-width: 350px;
  background: var(--bg-surface);
  box-shadow: var(--shadow-soft);
  border-color: rgba(0, 0, 0, 0.05);
}

.info-details {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
}
.detail-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.icon-sq {
  width: 50px;
  height: 50px;
  background: rgba(67, 56, 202, 0.05);
  color: var(--accent-1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.icon-sq svg {
  width: 24px;
}
.detail-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.hover-link {
  position: relative;
  display: inline-block;
}
.hover-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--accent-1);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}
.hover-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.premium-form .form-row {
  display: flex;
  gap: 2rem;
}
.input-wrap {
  position: relative;
  margin-bottom: 2rem;
  width: 100%;
}
.input-wrap input,
.input-wrap textarea,
.input-wrap select {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 0;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-main);
  outline: none;
  resize: none;
  appearance: none;
}
.input-wrap label {
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--text-muted);
  transition: 0.3s ease;
  pointer-events: none;
}
.input-wrap .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.input-wrap .line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--text-main);
  transition: 0.3s ease;
}

.input-wrap input:focus ~ label,
.input-wrap input:not(:placeholder-shown) ~ label,
.input-wrap textarea:focus ~ label,
.input-wrap textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  font-size: 0.75rem;
  color: var(--text-main);
  font-weight: 600;
}
.input-wrap input:focus ~ .line::after,
.input-wrap textarea:focus ~ .line::after,
.input-wrap select:focus ~ .line::after {
  width: 100%;
}

.select-wrap .dropdown-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  pointer-events: none;
  color: var(--text-muted);
}
.select-wrap select {
  color: var(--text-main);
}
.select-wrap select:invalid {
  color: var(--text-muted);
}

/* ==========================================================================
   LEGAL PAGES SPECIFICS
   ========================================================================== */
.legal-header {
  background: var(--bg-dark);
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
}
.legal-container {
  max-width: 900px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 4rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-soft);
}
.rich-text h2 {
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
  color: var(--text-main);
}
.rich-text h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}
.rich-text p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}
.rich-text ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.rich-text li {
  margin-bottom: 0.5rem;
  position: relative;
  color: var(--text-muted);
}
.rich-text li::before {
  content: "→";
  position: absolute;
  left: -1.5rem;
  color: var(--accent-1);
  font-weight: bold;
}
.rich-text strong {
  color: var(--text-main);
}

/* ==========================================================================
   ANIMATIONS & UTILS
   ========================================================================== */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}
@keyframes floatY {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -55%);
  }
}
@keyframes growUp {
  from {
    height: 0;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}
.fade-in.in-view {
  opacity: 1;
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

.split-text .line-wrap {
  overflow: hidden;
  display: block;
}
.split-text .line-inner {
  display: block;
  transform: translateY(100%);
  transition: transform 1s var(--ease-out-expo);
}
.split-text.in-view .line-inner {
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card.wide {
    grid-column: span 2;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-visual {
    height: 400px;
    margin-top: 3rem;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .header-actions .btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card.large,
  .bento-card.wide {
    grid-column: span 1;
  }
  .flex-row {
    flex-direction: column;
    text-align: center;
  }
  .visual-part {
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
  }
  .reports-gallery {
    grid-template-columns: 1fr;
  }
  .process-step {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .line-path {
    left: 50%;
  }
  .step-num {
    margin: 0 auto;
  }
  .premium-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  .legal-container {
    padding: 2rem;
    margin-top: 0;
    border-radius: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .bottom-flex {
    flex-direction: column;
    text-align: center;
  }
  .test-card {
    min-width: 300px;
    padding: 2rem;
  }

  /* Hide custom cursor on mobile */
  .cursor-dot,
  .cursor-outline {
    display: none !important;
  }
  * {
    cursor: auto !important;
  }
}
