/* ═══════════════════════════════════════════════════════════
   Codexe Technologies — Design System & Styles
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Colors - Unio Deep Black & Pure White */
  --bg-primary: #000000;
  --bg-secondary: #050505;
  --bg-card: #0a0a0a;
  --bg-card-hover: #111111;
  --bg-glass: rgba(255, 255, 255, 0.03);

  --text-primary: #ffffff;
  --text-secondary: #a1a1a1;
  --text-muted: #666666;

  --accent-start: #ffffff;
  --accent-mid: #e5e5e5;
  --accent-end: #d4d4d4;
  --accent-gradient: linear-gradient(135deg, var(--accent-start), var(--accent-mid), var(--accent-end));
  --accent-glow: rgba(255, 255, 255, 0.1);

  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  /* Typography - Extreme Weight & Contrast */
  --font-heading: 'Outfit', sans-serif;
  /* For Geist-like geometric feel */
  --font-body: 'Inter', sans-serif;

  /* Spacing - Airy & Spacious */
  --section-padding: 80px 0;
  --container-width: 1320px;
  --card-radius: 24px;
  --card-radius-lg: 40px;

  /* Animations - Fluid "Liquid" Motion */
  --transition-fast: 0.2s cubic-bezier(0.2, 0, 0, 1);
  --transition-smooth: 0.6s cubic-bezier(0.2, 0, 0, 1);
  --transition-spring: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 10px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

html {
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ── Container ── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Base ── */
section {
  padding: var(--section-padding);
  position: relative;
}

/* ── Section Header ── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-gradient);
  border-radius: 50%;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── Gradient Text ── */
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #4ade80;
  color: #000000;
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #22c55e;
  box-shadow: 0 8px 30px rgba(74, 222, 128, 0.3);
}

.btn-secondary {
  background: #121212;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: #1a1a1a;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: all 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ── Cards Base ── */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 32px;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-glow);
}

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
/* ── Navbar: Obsidian Dock ── */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  min-width: 650px;
  max-width: 90%;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 14px 48px;
  z-index: 1000;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-cta {
  background: white !important;
  color: black !important;
  padding: 12px 28px !important;
  border-radius: 100px !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar.scrolled {
  top: 16px;
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 160px 0 80px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

/* Mega-Logo Backdrop */
.mega-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(10rem, 30vw, 40rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 1;
  text-transform: lowercase;
  white-space: nowrap;
}

/* CSS 3D Glass Sphere */
.glass-sphere {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 60%);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  top: 20%;
  right: -100px;
  z-index: 2;
  animation: float-sphere 20s infinite ease-in-out;
}

.glass-sphere::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset -20px -20px 60px rgba(0, 0, 0, 0.5),
    inset 20px 20px 60px rgba(255, 255, 255, 0.05);
}



.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #a1a1a1;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  text-align: left;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
  margin-top: 6px;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: white;
  margin-bottom: 32px;
}



@keyframes float-sphere {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(50px, -20px) scale(1.1);
    opacity: 0.5;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  animation: float-sphere 15s infinite ease-in-out;
}

.hero::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 30%;
  width: 1000px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.15), transparent);
  filter: blur(10px);
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
  animation: bg-trail 20s infinite linear;
}

@keyframes bg-trail {
  0% {
    transform: translate(-50%, -50%) rotate(-15deg);
  }

  100% {
    transform: translate(50%, 50%) rotate(-15deg);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #a1a1a1;
  max-width: 750px;
  margin: 0 0 56px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 80px;
}

.hero-clients {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  width: 100%;
}

.hero-clients p {
  font-size: 0.85rem;
  color: #a1a1a1;
  margin-bottom: 24px;
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 10px;
  overflow: hidden;
}

.client-logos span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.client-logos span:nth-child(even) {
  opacity: 0.7;
}

.client-logos span:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero {
    align-items: center;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .client-logos {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}


/* ══════════════════════════════════════════
   ABOUT / MISSION
   ══════════════════════════════════════════ */
.about {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text .section-subtitle {
  margin: 0 auto 32px;
}

.about-values {
  display: grid;
  gap: 16px;
  text-align: left;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 12px 0;
}

.value-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: white;
  border-radius: 50%;
  margin-top: 8px;
}

.value-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.about-visual {
  position: relative;
}

.about-card-stack {
  display: grid;
  gap: 16px;
}

.about-metric-card {
  padding: 32px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
}

.about-metric-card .metric-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: white;
}

.about-metric-card .metric-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════ */
.stats-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-primary);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  text-align: center;
  align-items: center;
}

.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 4px;
  white-space: nowrap;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════
   CASE STUDIES / RESULTS
   ══════════════════════════════════════════ */
.case-studies {
  background: var(--bg-secondary);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.case-card {
  padding: 56px;
  border-radius: var(--card-radius-lg);
}

.case-card .case-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.case-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.case-results {
  display: grid;
  gap: 12px;
}

.case-results li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.case-results li::before {
  content: '↗';
  font-size: 0.85rem;
  color: #22c55e;
  font-weight: 700;
}

/* ══════════════════════════════════════════
   HOW WE WORK
   ══════════════════════════════════════════ */
.how-we-work {
  background: var(--bg-primary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.process-card {
  padding: 40px 32px;
  text-align: left;
  position: relative;
}

.process-number {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.process-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.process-bullets {
  display: grid;
  gap: 10px;
}

.process-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.process-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-gradient);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   FEATURES / BENEFITS
   ══════════════════════════════════════════ */
.features {
  background: var(--bg-secondary);
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition-smooth);
}

.benefit-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.benefit-item .benefit-icon {
  font-size: 1.2rem;
  min-width: 24px;
  text-align: center;
}

.saas-feature-block {
  padding: 36px;
  border-radius: var(--card-radius-lg);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.saas-feature-block h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.saas-features {
  display: grid;
  gap: 14px;
}

.saas-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.saas-features li .check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  flex-shrink: 0;
}

/* ── Services: Split Layout ── */
.services {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Reduced gap between split items */
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 48px;
  /* Reduced gap */
  align-items: start;
}

.service-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-item h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: white;
  margin: 0;
}

.service-content {
  max-width: 500px;
}

.service-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ══════════════════════════════════════════
   PORTFOLIO
   ══════════════════════════════════════════ */
.portfolio {
  background: var(--bg-secondary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  padding: 0;
  overflow: hidden;
}

/* Removed decorative images for hyper-minimalism */

.project-image .project-icon {
  font-size: 3rem;
  opacity: 0.5;
  transition: all var(--transition-smooth);
}

.project-card:hover .project-icon {
  opacity: 0.9;
  transform: scale(1.1);
}

.project-info {
  padding: 28px;
}

.project-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.project-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════ */
/* ── Plans: Dual Card Layout ── */
.pricing {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  /* Reduced spacing */
  margin-bottom: 32px;
}

.pricing-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 48px;
  text-align: left;
}

.pricing-header {
  background: #111111;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.pricing-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.plan-features {
  margin-bottom: 0;
}

.plan-features li {
  font-size: 1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.plan-features li::before {
  content: '✓';
  font-size: 0.9rem;
  color: white;
}

.pricing-footer {
  text-align: center;
  margin-top: 64px;
}

.pricing-footer p {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 32px;
  font-weight: 500;
}

.book-btn {
  background: #4ade80 !important;
  color: black !important;
  padding: 16px 40px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
/* ── Testimonials: Infinite Marquee ── */
.testimonials {
  padding: var(--section-padding);
  background: var(--bg-primary);
  overflow: hidden;
  position: relative;
}

.testimonial-marquee {
  display: flex;
  gap: 32px;
  /* Increased gap */
  width: max-content;
  animation: marquee 30s linear infinite;
  /* Increased speed */
  padding: 24px 0;
  will-change: transform;
}

.testimonial-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marquee-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.testimonial-marquee.reverse {
  animation: marquee-right 30s linear infinite;
}

.testimonial-card {
  width: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 32px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition-fast);
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.user-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.testimonial-stars {
  color: white;
  font-size: 0.8rem;
  display: flex;
  gap: 2px;
}

.testimonial-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  flex-grow: 1;
}

.testimonial-footer {
  text-align: right;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
/* ── FAQ: Minimalist List ── */
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  transition: transform var(--transition-fast);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 24px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════ */
.final-cta {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content .section-badge {
  margin-bottom: 32px;
}

.cta-content .section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 32px;
}

.cta-content .section-subtitle {
  margin-bottom: 40px;
  text-align: center;
  color: #a1a1a1;
  max-width: 650px;
  line-height: 1.6;
  font-size: 1.15rem;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 0;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  padding: 40px 0 32px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-brand .nav-logo {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 40px;
  opacity: 0.1;
  transition: opacity var(--transition-smooth);
}

.footer-brand .nav-logo:hover {
  opacity: 1;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--border-hover);
}

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {

  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .portfolio-grid,
  .cases-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-layout {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .stat-item:nth-child(3)::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  /* Mobile nav */
  /* Navbar: Mobile Obsidian */
  .navbar {
    min-width: 0;
    width: calc(100% - 32px);
    padding: 10px 20px;
    border-radius: 20px;
    top: 12px;
  }

  .nav-links:not(.open) {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: #050505;
    flex-direction: column;
    padding: 100px 32px;
    gap: 24px;
    transition: right var(--transition-smooth);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    z-index: 1000;
  }

  .nav-links .nav-cta {
    display: flex !important;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }

  .nav-links.open {
    right: 0;
    display: flex;
  }

  .hamburger {
    display: flex;
    z-index: 1100;
  }

  /* Services: Mobile Stack */
  .service-item {
    grid-template-columns: 1fr;
    padding: 48px 0;
    gap: 24px;
  }

  .service-item h3 {
    font-size: 1.8rem;
  }

  /* Plans: Mobile Stack */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  /* Stats: Mobile Grid */
  .stats-grid,
  .cases-grid,
  .process-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card {
    width: calc(100vw - 48px);
    max-width: 300px;
    padding: 24px;
    flex-shrink: 0;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  /* Hero: Mobile scaling */
  .mega-logo {
    font-size: 8rem;
    opacity: 0.02;
  }

  .glass-sphere {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -50px;
    opacity: 0.5;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    text-align: center;
  }

  .hero-badge {
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
    text-align: center;
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 60px;
    align-items: center;
    justify-content: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  .hero-clients {
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
  }

  .client-logos {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .glass-card {
    padding: 32px 20px;
  }

  .section-badge {
    font-size: 0.75rem;
  }
}