/* 
========================================================================
   UNBOX SITE — PREMIUM DESIGN SYSTEM (VANILLA CSS)
========================================================================
   Designed for Awwwards-level digital experiences.
   Utilizes fluid scaling, glassmorphism, and hardware-accelerated motion.
========================================================================
*/

/* --- 1. DESIGN VARIABLES & THEME TOKENS --- */
:root {
  /* Colors (OKLCH Native Scheme) */
  --background: oklch(16% 0.01 250);          /* #121315 */
  --foreground: oklch(97% 0.01 100);          /* #f5f6f6 */
  --surface: oklch(21% 0.012 250);            /* #1a1c1e */
  --surface-foreground: oklch(97% 0.01 100);
  
  --primary: oklch(88% 0.22 130);             /* #a6f236 - Vibrant Lime */
  --primary-foreground: oklch(16% 0.01 250);
  --lime: oklch(88% 0.22 130);
  
  --muted: oklch(24% 0.012 250);              /* #202326 */
  --muted-foreground: oklch(70% 0.02 250);     /* #a1aab2 */
  
  --border: oklch(100% 0 0 / 0.1);            /* Translucent white border */
  --border-glow: oklch(88% 0.22 130 / 0.25);
  --input: oklch(100% 0 0 / 0.12);
  --ring: oklch(88% 0.22 130);
  
  --destructive: oklch(65% 0.22 25);
  --destructive-foreground: oklch(98% 0 0);

  /* Glassmorphism Presets */
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-bg-hover: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 16px;

  /* Typography Stack */
  --font-display: "Space Grotesk", "Outfit", system-ui, -apple-system, sans-serif;
  --font-sans: "Inter", "Geist", system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Grid & Spacing scale */
  --spacing: 0.25rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transition timings */
  --transition-smooth: cubic-bezier(0.16, 1, 0.30, 1);
  --duration-default: 400ms;
}

/* --- 2. RESET & BASE ELEMENTS --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Touch Targets ── */
a, button, [role="button"], input[type="submit"] {
  min-height: 44px;
  min-width: 44px;
}

/* ── Fluid Images & Media ── */
img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Responsive Tables ── */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  /* Ambient glowing meshes in the background */
  background-image: 
    radial-gradient(60% 50% at 50% 0%, oklch(88% 0.22 130 / 0.08) 0%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(40% 30% at 100% 100%, oklch(88% 0.22 130 / 0.04) 0%, rgba(0, 0, 0, 0) 70%);
  background-attachment: fixed;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--foreground);
}

p {
  color: var(--muted-foreground);
  line-height: 1.625;
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--duration-default) var(--transition-smooth);
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}

/* --- 3. LAYOUT & GRID UTILITIES --- */
.container {
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-48 { padding-top: 12rem; padding-bottom: 12rem; }

.w-full { width: 100%; }
.h-full { height: 100%; }

/* Ambient background blur blobs */
.parallax-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.7;
}

/* --- 4. GLASSMORPHISM & CARD STYLING --- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-3xl);
  transition: border-color var(--duration-default) var(--transition-smooth),
              background var(--duration-default) var(--transition-smooth),
              transform var(--duration-default) var(--transition-smooth);
}

.glass:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

.glass-strong {
  background: rgba(18, 19, 21, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
}

.noise {
  position: relative;
}
.noise::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.02;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  z-index: 1;
}

/* Primary Action Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--lime);
  color: var(--primary-foreground);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 30px -5px oklch(88% 0.22 130 / 0.4);
  transition: opacity 0.2s ease, transform 0.2s var(--transition-smooth), box-shadow 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.95;
  box-shadow: 0 0 40px -2px oklch(88% 0.22 130 / 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

/* --- 5. HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 72rem; /* max-w-6xl */
  height: 4.5rem;
  z-index: 1000;
  border-radius: var(--radius-full);
  background: rgba(166, 242, 54, 0.95); /* Website Green #A6F236 */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid oklch(88% 0.22 130 / 0.3);
  transition: all 0.3s var(--transition-smooth);
}

header.scrolled {
  background: rgba(166, 242, 54, 0.98); /* Website Green #A6F236 */
  border-color: oklch(88% 0.22 130 / 0.5);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  height: 4rem;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: oklch(16% 0.01 250); /* Dark grey text for readability */
}

.logo-dot {
  color: oklch(16% 0.01 250); /* Dark dot on green background */
}

.logo-icon-wrapper {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 6px;
  background-color: oklch(16% 0.01 250); /* Dark background */
  color: oklch(88% 0.22 130); /* Website green icon */
  transition: transform 0.3s var(--transition-smooth);
}

.logo:hover .logo-icon-wrapper {
  transform: rotate(15deg);
}

nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  color: oklch(35% 0.02 250); /* Darker gray links */
  padding: 0.5rem 1rem;
}

.nav-link:hover {
  color: oklch(10% 0.01 250); /* Darkest text on hover */
}

.nav-underline {
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: oklch(16% 0.01 250); /* Dark underline */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--transition-smooth);
}

.nav-link:hover .nav-underline,
.nav-link.active .nav-underline {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: oklch(10% 0.01 250); /* Darkest text active */
}

header .btn-primary {
  background-color: oklch(16% 0.01 250); /* Dark background */
  color: oklch(88% 0.22 130); /* Website green text */
  box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.4);
}

header .btn-primary:hover {
  background-color: oklch(25% 0.01 250); /* Slightly lighter on hover */
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.5);
  opacity: 1; /* Reset default hover opacity rule */
}

/* Mobile Responsive Header */
@media (max-width: 850px) {
  header {
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 1.5rem;
  }
  header.scrolled {
    height: auto;
  }
  .header-container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    order: 3;
    gap: 0.25rem;
  }
  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  .hero-section {
    padding-top: 13rem !important;
  }
}

/* --- 6. HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 6rem;
  z-index: 10;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .hero-section {
    display: grid;
    grid-template-rows: 7.5rem 1fr;
    min-height: 100vh;
    padding: 0;
  }

  .hero-section > .hero-slider-container {
    grid-row: 2;
    align-self: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 2rem;
    box-sizing: border-box;
  }

  .hero-section > .container {
    grid-row: 2;
    align-self: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }
}

.hero-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-slider-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.hero-slider-track {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 380px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.8s var(--transition-smooth), visibility 0.8s;
}

.hero-slide-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
  padding-left: clamp(2rem, 8vw, 12rem);
  padding-right: clamp(2rem, 8vw, 12rem);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
}

.hero-slide-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-slide-grid {
    height: 100%;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.hero-badge-dot {
  position: relative;
  display: flex;
  width: 0.5rem;
  height: 0.5rem;
}

.hero-badge-ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--lime);
  opacity: 0.75;
  animation: ping 1.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge-core {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--lime);
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.shimmer-text {
  background: linear-gradient(90deg, var(--foreground) 0%, var(--muted-foreground) 50%, var(--foreground) 100%);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shimmer 5s linear infinite;
  position: relative;
}

.title-underline {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
}

.title-underline path {
  stroke-dasharray: 300;
  stroke-dashoffset: 0;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-bottom: 2.5rem;
  max-w: 36rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 320px;
}

@media (min-width: 1024px) {
  .hero-visual {
    height: 100%;
    min-height: 400px;
  }
}

.hero-decoration-img {
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 35px rgba(166, 242, 54, 0.12));
}

/* Slider Controls */
.slider-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  gap: 2rem;
}

.slider-controls.container {
  max-width: 100%;
  padding-left: clamp(2rem, 8vw, 12rem);
  padding-right: clamp(2rem, 8vw, 12rem);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s var(--transition-smooth);
}

.slider-dot.active {
  background: var(--lime);
  transform: scale(1.3);
}

.slider-buttons {
  display: flex;
  gap: 0.5rem;
}

.slider-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--foreground);
  transition: all 0.2s ease;
}

.slider-btn:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Visualizer / Chart Card */
.visualizer-card {
  margin-top: 6rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.visualizer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.visualizer-title {
  font-size: 1.75rem;
  margin-top: 0.25rem;
}

.visualizer-cost-ticker {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.visualizer-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lime);
  font-weight: 500;
}

.chart-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  height: 16rem;
  align-items: end;
}

.chart-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 0.75rem;
}

.chart-bar-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--foreground);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.chart-bar {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.chart-bar.lime-bar {
  background: var(--lime);
  box-shadow: 0 0 40px oklch(88% 0.22 130 / 0.3);
}

.chart-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* --- 7. MARQUEE TICKER --- */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
  background: rgba(26, 28, 30, 0.3);
}

.marquee-container {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.marquee-icon {
  color: var(--lime);
}

/* --- 8. SOCIAL PROOF & KEY METRICS --- */
.social-proof-section {
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.social-proof-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
}

.partner-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: rgba(245, 246, 246, 0.4);
  transition: color 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover {
  color: var(--foreground);
  transform: translateY(-2px);
}

/* KPI Metrics Grid */
.floating-kpis-wrapper {
  z-index: 20;
  order: -1;
  width: 100%;
}
@media (min-width: 1024px) {
  .floating-kpis-wrapper {
    width: auto;
    order: 0;
  }
}

.kpis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--border);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.kpi-card {
  background-color: var(--background);
  padding: 2.5rem;
  text-align: left;
}

.kpi-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
}

.kpi-label {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* --- 9. TARGET INDUSTRIES (HORIZONTAL EXPANDING ACCORDION) --- */
.industries-section {
  border-bottom: 1px solid var(--border);
}

.section-header {
  max-width: 45rem;
  margin-bottom: 4rem;
}

.section-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.section-title span {
  color: var(--muted-foreground);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background-color: var(--border);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.industry-card {
  background-color: var(--background);
  padding: 2.5rem;
  text-align: left;
  transition: background-color 0.4s var(--transition-smooth);
  cursor: default;
}

.industry-card:hover {
  background-color: var(--surface);
}

.industry-icon {
  color: var(--lime);
  margin-bottom: 1.5rem;
}

.industry-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.industry-desc {
  font-size: 0.875rem;
}

.industry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--lime);
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s var(--transition-smooth);
}

.industry-card:hover .industry-link {
  opacity: 1;
  transform: translateX(0);
}

/* --- 10. TIMELINE & PROCESS --- */
.process-section {
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--border);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.process-card {
  background-color: var(--background);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.process-card:hover {
  background-color: var(--surface);
}

.process-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, oklch(88% 0.22 130 / 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.process-card:hover .process-card-glow {
  opacity: 1;
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.process-step {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lime);
}

.process-num {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.2);
}

.process-icon {
  color: var(--lime);
  margin-bottom: 1.5rem;
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.process-desc {
  font-size: 0.875rem;
}

/* Detailed 7-Day Timeline Map */
.timeline-section {
  border-top: 1px solid var(--border);
  position: relative;
}

.timeline-container {
  position: relative;
  margin-top: 6rem;
  padding-left: 2rem;
}

.timeline-line {
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, oklch(88% 0.22 130 / 0.4) 10%, oklch(88% 0.22 130 / 0.4) 90%, transparent);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  padding-left: 3rem;
  margin-bottom: 3.5rem;
}

.timeline-node {
  position: absolute;
  left: calc(2rem - 6px);
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--background);
  border: 2px solid var(--lime);
}

.timeline-content-card {
  max-width: 32rem;
  padding: 1.5rem;
}

.timeline-day {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.875rem;
}

/* --- 11. COMPARISON & MATRIX --- */
.comparison-section {
  border-top: 1px solid var(--border);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
}

table.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 1.5rem 2rem;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
  font-family: var(--font-display);
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--foreground);
}

.comparison-table td:nth-child(2) {
  color: var(--lime);
  font-weight: 500;
}

.comparison-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.02);
}

.comparison-table td svg {
  display: inline;
  vertical-align: middle;
}

/* Core Value Cards */
.value-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 5rem;
}

.value-card {
  padding: 2rem;
  height: 100%;
}

.value-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background-color: oklch(88% 0.22 130 / 0.1);
  color: var(--lime);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon-box {
  transform: scale(1.1);
}

.value-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.value-desc {
  font-size: 0.875rem;
}

/* --- 12. PORTFOLIO SHOWCASE --- */
.portfolio-section {
  border-top: 1px solid var(--border);
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.portfolio-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  height: 100%;
}

.portfolio-image-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
}

.portfolio-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.45;
  transition: opacity 0.5s ease, transform 0.5s var(--transition-smooth);
}

.portfolio-card:hover .portfolio-image-wrapper img {
  opacity: 0.75;
  transform: scale(1.03);
}

.card-bg-icon {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 8rem;
  height: 8rem;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.browser-header-mockup {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.browser-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}

.browser-url {
  margin-left: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.portfolio-card-title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.portfolio-info {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-tags {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.portfolio-tag-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
}

.portfolio-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--lime);
  font-weight: 500;
}

/* --- 13. INCLUDED FEATURES & TECH --- */
.features-section {
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.5rem;
  position: relative;
}

.feature-icon {
  color: var(--lime);
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
}

/* --- 14. TECHNICAL STACK --- */
.tech-section {
  border-top: 1px solid var(--border);
}

.tech-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: center;
}

.tech-left {
  display: flex;
  flex-direction: column;
}

.tech-right-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.tech-span-2 {
  grid-column: span 2;
}

.tech-card {
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.tech-icon {
  color: var(--lime);
  margin-bottom: 1rem;
}

.tech-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.tech-desc {
  font-size: 0.875rem;
}

/* --- 15. SAVINGS CALCULATOR --- */
.calculator-section {
  border-top: 1px solid var(--border);
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: var(--border);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  border: 1px solid var(--border);
  backdrop-filter: blur(var(--glass-blur));
}

.calc-inputs-pane {
  background-color: rgba(18, 19, 21, 0.4);
  padding: 2.5rem;
}

.calc-pane-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.calc-pane-header svg {
  color: var(--lime);
}

.calc-group {
  margin-bottom: 2.5rem;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.calc-label {
  color: var(--muted-foreground);
}

.calc-val {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--lime);
  font-weight: 600;
}

/* Ranges */
input[type="range"].calc-range {
  width: 100%;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.1);
  height: 6px;
  border-radius: var(--radius-full);
  outline: none;
}

input[type="range"].calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  cursor: pointer;
  box-shadow: 0 0 10px oklch(88% 0.22 130 / 0.5);
  transition: transform 0.1s ease;
}

input[type="range"].calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-results-pane {
  background-color: rgba(26, 28, 30, 0.5);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--border);
}

.calc-blob {
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 16rem;
  height: 16rem;
  background-color: oklch(88% 0.22 130 / 0.08);
  filter: blur(50px);
  border-radius: 50%;
}

.calc-results-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.calc-savings-total {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 2rem;
  line-height: 1;
}

.calc-rows {
  margin-bottom: 2rem;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 0.875rem;
}

.calc-row-border {
  border-bottom: 1px solid var(--border);
}

.calc-row-label {
  color: var(--muted-foreground);
}

.calc-row-val.traditional {
  text-decoration: line-through;
  opacity: 0.6;
}

.calc-row-val.unboxsite {
  color: var(--lime);
  font-weight: 600;
}

/* --- 16. PRICING SECTION --- */
.pricing-section {
  /* border-top removed */
}

.pricing-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.pricing-header-desc {
  max-width: 24rem;
  color: var(--muted-foreground);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.pricing-plan-name {
  font-size: 1.5rem;
}

.pricing-plan-range {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.pricing-desc {
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.pricing-highlight-box {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.pricing-cost-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-item-label {
  color: var(--muted-foreground);
}

/* Featured pricing card custom style */
.pricing-card.featured {
  background-color: var(--lime);
  color: var(--primary-foreground);
  border-color: var(--lime);
  box-shadow: 0 30px 80px -20px oklch(88% 0.22 130 / 0.35);
}

.pricing-card.featured .pricing-plan-range {
  color: rgba(18, 19, 21, 0.7);
}

.pricing-card.featured .pricing-desc {
  color: rgba(18, 19, 21, 0.8);
}

.pricing-card.featured .pricing-highlight-box {
  background-color: rgba(18, 19, 21, 0.1);
}

.pricing-card.featured .pricing-cost-label {
  color: rgba(18, 19, 21, 0.7);
}

.pricing-card.featured .pricing-price {
  color: var(--primary-foreground);
}

.pricing-card.featured .pricing-period {
  color: rgba(18, 19, 21, 0.7);
}

.pricing-card.featured .pricing-item {
  border-bottom-color: rgba(18, 19, 21, 0.1);
}

.pricing-card.featured .pricing-item-label {
  color: rgba(18, 19, 21, 0.8);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background-color: var(--background);
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--lime);
}

.btn-pricing-featured {
  background-color: var(--primary-foreground);
  color: var(--lime);
  justify-content: center;
}

.btn-pricing-featured:hover {
  opacity: 0.95;
}

/* Add-ons Section */
.addons-section {
  border-top: 1px solid var(--border);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.addon-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.addon-icon {
  color: var(--lime);
  margin-bottom: 1.25rem;
}

.addon-title {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.addon-desc {
  font-size: 0.875rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.addon-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.addon-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--lime);
}

.addon-meta {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* --- 17. CLIENT GUARANTEES --- */
.guarantees-section {
  /* border-top removed */
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.guarantee-card {
  padding: 2rem;
  border-radius: var(--radius-3xl);
}

.guarantee-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.guarantee-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  font-weight: 600;
}

.guarantee-icon {
  color: var(--muted-foreground);
  transition: transform 0.3s ease, color 0.3s ease;
}

.guarantee-card:hover .guarantee-icon {
  transform: rotate(12deg) scale(1.1);
  color: var(--lime);
}

.guarantee-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.guarantee-desc {
  font-size: 0.875rem;
}

/* --- 18. TESTIMONIALS --- */
.testimonials-section {
  border-top: 1px solid var(--border);
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.stars-list {
  display: flex;
  color: var(--lime);
}

.stars-list svg {
  fill: var(--lime);
}

.testimonials-marquee-wrapper {
  display: flex;
  gap: 1.5rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 2rem 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-marquee-track {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
  animation: testimonialMarquee 25s linear infinite;
}

.testimonials-marquee-wrapper:hover .testimonials-marquee-track {
  animation-play-state: paused;
}

.testimonial-card-wrapper {
  width: 400px;
  flex-shrink: 0;
}

@keyframes testimonialMarquee {
  0% { transform: translateX(0); }
  /* Shift left by exactly 100% of the track + the 1.5rem gap between the tracks */
  100% { transform: translateX(calc(-100% - 1.5rem)); }
}

.testimonial-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.testimonial-quote-icon {
  color: var(--lime);
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.4;
  font-style: italic;
  flex-grow: 1;
  color: var(--foreground);
}

.testimonial-author-box {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-title {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* --- 19. PHILOSOPHY & VALUES --- */
.philosophy-section {
  border-top: 1px solid var(--border);
  position: relative;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}

.philosophy-item {
  display: flex;
  gap: 1.5rem;
}

.philosophy-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(166, 242, 54, 0.2);
  line-height: 1;
  transition: color 0.3s ease;
}

.philosophy-item:hover .philosophy-num {
  color: var(--lime);
}

.philosophy-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* --- 20. FAQ ACCORDION --- */
.faq-section {
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 3rem;
}

.faq-left {
  display: flex;
  flex-direction: column;
}

.faq-email-link {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-accordion-box {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background: rgba(18, 19, 21, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-3xl);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.faq-item {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-xl);
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-left 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth), background-color 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--lime);
  border-left: 4px solid var(--lime);
  background-color: rgba(166, 242, 54, 0.04);
  box-shadow: 0 0 20px rgba(166, 242, 54, 0.1);
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.faq-btn:hover .faq-question,
.faq-item.active .faq-question {
  color: var(--lime);
}

.faq-icon-wrapper {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--foreground);
  background-color: rgba(255, 255, 255, 0.03);
  flex-shrink: 0;
  transition: all 0.3s var(--transition-smooth);
}

.faq-icon-wrapper.active {
  background-color: var(--lime);
  color: var(--primary-foreground);
  border-color: var(--lime);
  transform: rotate(180deg);
}

.faq-content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.4s var(--transition-smooth), opacity 0.4s ease, margin-top 0.4s ease;
}

.faq-content-wrapper.active {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.faq-answer-container {
  overflow: hidden;
}

.faq-answer {
  color: oklch(90% 0.01 250);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 42rem;
}

/* --- 21. CONTACT & FOOTER --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 8rem;
}

.contact-card {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-icon-box {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-2xl);
  background-color: rgba(166, 242, 54, 0.1);
  color: var(--lime);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-box {
  background-color: var(--lime);
  color: var(--primary-foreground);
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
}

.contact-arrow {
  color: var(--muted-foreground);
  margin-left: auto;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-card:hover .contact-arrow {
  transform: rotate(45deg);
  color: var(--lime);
}

/* Call To Action Box */
.cta-banner {
  background-color: var(--lime);
  color: var(--primary-foreground);
  border-radius: var(--radius-3xl);
  padding: 5rem;
  position: relative;
  overflow: hidden;
}

.cta-banner .calc-blob {
  background-color: rgba(18, 19, 21, 0.15);
  width: 24rem;
  height: 24rem;
}

.cta-banner-content {
  position: relative;
  z-index: 10;
}

.cta-banner-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(18, 19, 21, 0.7);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-banner-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 50rem;
  margin-bottom: 3rem;
  color: var(--primary-foreground);
}

.cta-banner-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta-dark {
  background-color: var(--primary-foreground);
  color: var(--lime);
}

.btn-cta-outline {
  border: 1px solid rgba(18, 19, 21, 0.3);
  background: transparent;
  color: var(--primary-foreground);
}

.btn-cta-outline:hover {
  background-color: rgba(18, 19, 21, 0.05);
}

/* Footer elements */
footer {
  margin-top: 5rem;
  padding-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-icon {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 4px;
  background-color: var(--lime);
  color: var(--primary-foreground);
}

/* Floating WhatsApp Widget */
.floating-widgets {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.whatsapp-popup {
  padding: 1.25rem;
  width: 18rem;
  transform: scale(0.9);
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom right;
  transition: all 0.3s var(--transition-smooth);
}

.whatsapp-popup.active {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

.wa-popup-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.wa-popup-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.btn-wa-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--lime);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  transition: opacity 0.2s ease;
}

.btn-wa-chat:hover {
  opacity: 0.9;
}

.whatsapp-trigger-btn {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--lime);
  color: var(--primary-foreground);
  box-shadow: 0 10px 40px -5px oklch(88% 0.22 130 / 0.6);
  transition: transform 0.2s ease;
}

.whatsapp-trigger-btn:hover {
  transform: scale(1.1);
}

/* Custom Cursor Trail */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid oklch(88% 0.22 130 / 0.3);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  display: none;
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--lime);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  display: none;
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  .custom-cursor, .custom-cursor-dot {
    display: block;
  }
}

.custom-cursor.cursor-hover {
  width: 3.5rem;
  height: 3.5rem;
  background-color: oklch(88% 0.22 130 / 0.1);
  border-color: var(--lime);
}

.custom-cursor-dot.cursor-hover-dot {
  transform: translate(-50%, -50%) scale(0.5);
}

/* --- 22. ANIMATION KEYFRAMES --- */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.animate-float {
  animation: float-y 6s ease-in-out infinite;
}

.animate-float-slow-1 {
  animation: float-y 8s ease-in-out infinite;
}

.animate-float-slow-2 {
  animation: float-y 10s ease-in-out infinite;
}

.animate-float-slow-3 {
  animation: float-y 12s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.animate-spin-slow {
  animation: spin 20s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-blob {
  animation: blob-bounce 12s ease-in-out infinite;
}

@keyframes blob-bounce {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -40px) scale(1.08);
  }
  66% {
    transform: translate(-25px, 20px) scale(0.95);
  }
}

/* Stagger Reveal System */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- 23. MEDIA QUERIES & RESPONSIVENESS --- */
@media (max-width: 1024px) {
  .hero-slide-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-visual {
    min-height: 280px;
  }
  
  .social-proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .kpis-grid, .industries-grid, .process-grid, .value-cards-grid, .pricing-grid, .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    top: 1rem;
    width: calc(100% - 2rem);
  }
  
  .header-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  
  nav {
    display: none; /* Hide top nav links on mobile for simplicity */
  }
  
  .visualizer-card {
    padding: 1.5rem;
  }
  
  .chart-container {
    gap: 0.75rem;
    height: 12rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .kpis-grid, .industries-grid, .process-grid, .value-cards-grid, .pricing-grid, .addons-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-span-2 {
    grid-column: span 1;
  }
  
  .tech-right-grid {
    grid-template-columns: 1fr;
  }
  
  .calculator-grid {
    grid-template-columns: 1fr;
  }
  
  .calc-results-pane {
    border-left: none;
    border-top: 1px solid var(--border);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-banner {
    padding: 2.5rem;
  }
  
  footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .slider-controls {
    flex-wrap: nowrap;
    gap: 1rem;
  }
}

/* ============================================================
   ADDITIONAL ANIMATIONS
   ============================================================ */

/* --- Scroll Progress Bar --- */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), oklch(75% 0.25 150));
  z-index: 9999;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px var(--primary), 0 0 20px oklch(88% 0.22 130 / 0.4);
  transition: width 0.05s linear;
  pointer-events: none;
}

/* --- Page Transition Overlay --- */
#page-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--background);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
}

/* --- 3D Card Tilt --- */
.feature-card,
.value-card,
.tech-card,
.kpi-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.3s ease;
}

.feature-card:hover,
.value-card:hover,
.tech-card:hover,
.kpi-card:hover {
  box-shadow: 0 20px 50px oklch(88% 0.22 130 / 0.15), 0 8px 20px rgba(0,0,0,0.4);
}

/* --- Hero Parallax (handled by GSAP, just prevent overflow) --- */
.hero-visual {
  will-change: transform;
}

/* --- FAQ GSAP override: disable CSS height transition so GSAP owns it --- */
.faq-content-wrapper {
  overflow: hidden;
  transition: opacity 0.35s ease;
}
.faq-content-wrapper.active {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

/* ============================================================
   MOBILE NAVIGATION (hamburger menu)
   ============================================================ */
.nav-toggle { display: none; }

@media (max-width: 850px) {
  #main-header { position: relative; }

  /* Hide Kickoff button on small screens */
  header .btn-primary { display: none; }

  /* Hamburger button — sits right of logo */
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    background: transparent;
    border: none;
    cursor: pointer;
    order: 4;
    margin-left: auto;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: oklch(16% 0.01 250); /* dark — readable on lime header */
    border-radius: 2px;
    transition: transform 0.3s var(--transition-smooth), opacity 0.2s ease;
  }
  header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Nav becomes a slide-down dropdown panel */
  nav {
    display: flex;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    width: auto;
    order: initial;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.25rem;
    padding: 0.5rem;
    background: oklch(18% 0.012 250 / 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s var(--transition-smooth), visibility 0.3s;
    z-index: 60;
  }
  header.menu-open nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  nav .nav-link {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    color: var(--foreground);
    border-radius: 0.6rem;
    text-align: left;
  }
  nav .nav-link:hover,
  nav .nav-link.active {
    background: rgba(255, 255, 255, 0.06);
  }
  nav .nav-link.active { color: var(--primary); }
  nav .nav-underline { display: none; }
}
