/* ======================== RESET & BASE ======================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #705df2;
  --accent: #842cf2;
  --bg-deep: #150c21;
  --bg-base: #0f0e11;
  --white: #FFFFFF;
  --gray-100: #f0f0f5;
  --gray-200: #c8c8d4;
  --gray-300: #9b9baf;
  --gray-400: #6b6b80;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glow-primary: rgba(112, 93, 242, 0.4);
  --glow-accent: rgba(132, 44, 242, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-base);
  color: var(--gray-200);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent), #b86ef7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 14px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px var(--glow-primary), 0 0 60px rgba(112, 93, 242, 0.15);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--glow-primary), 0 0 80px rgba(112, 93, 242, 0.25);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span, .btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  background: var(--glass-bg);
  color: var(--gray-200);
  padding: 14px 28px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-xl {
  padding: 20px 40px;
  font-size: 18px;
  border-radius: var(--radius-lg);
}

/* ======================== NAVBAR ======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(15, 14, 17, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.navbar.scrolled .logo-img {
  height: 32px;
}

.logo-accent {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  padding: 10px 20px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

/* ======================== HERO ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
  opacity: 0.2;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  bottom: -100px;
  left: -100px;
  opacity: 0.15;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--glow-primary);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray-300);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: 14px;
  color: var(--gray-400);
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  border: 2px solid var(--bg-base);
  margin-right: -8px;
}

/* ======================== ANIMATIONS ======================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================== SECTION HEADERS ======================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(112, 93, 242, 0.1);
  border: 1px solid rgba(112, 93, 242, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ======================== VIDEO ======================== */
.video-section {
  padding-top: 80px;
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.video-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  border-radius: inherit;
  z-index: 0;
  opacity: 0.6;
  filter: blur(1px);
}

.video-player {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius-xl) - 2px);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-deep), #1a1030, var(--bg-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.4));
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(112, 93, 242, 0.8);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
  box-shadow: 0 0 40px var(--glow-primary);
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--primary);
  box-shadow: 0 0 60px var(--glow-primary);
}

.play-btn svg {
  margin-left: 4px;
}

/* ======================== VALUE CARDS ======================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(112, 93, 242, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(112, 93, 242, 0.08);
}

.value-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(112, 93, 242, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ======================== DIFFERENTIAL ======================== */
.diff-section {
  background: linear-gradient(180deg, var(--bg-base), var(--bg-deep), var(--bg-base));
}

.diff-flow {
  display: flex;
  align-items: stretch;
  gap: 32px;
  justify-content: center;
}

.diff-column {
  flex: 1;
  max-width: 400px;
}

.diff-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  transition: var(--transition);
}

.diff-card:hover {
  transform: translateY(-4px);
}

.diff-lab {
  border-color: rgba(112, 93, 242, 0.15);
}

.diff-lab:hover {
  box-shadow: 0 0 40px rgba(112, 93, 242, 0.1);
  border-color: rgba(112, 93, 242, 0.3);
}

.diff-cfo {
  border-color: rgba(132, 44, 242, 0.15);
}

.diff-cfo:hover {
  box-shadow: 0 0 40px rgba(132, 44, 242, 0.1);
  border-color: rgba(132, 44, 242, 0.3);
}

.diff-card-icon {
  margin-bottom: 16px;
  color: var(--primary);
}

.diff-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.diff-card li {
  font-size: 14px;
  color: var(--gray-300);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.diff-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.diff-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 60px;
}

.connector-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, transparent, var(--primary), transparent);
}

.connector-center {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(112, 93, 242, 0.15);
  border: 1px solid rgba(112, 93, 242, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 0 20px var(--glow-primary);
}

.diff-result {
  max-width: 700px;
  margin: 48px auto 0;
  text-align: center;
  padding: 28px 40px;
  background: var(--glass-bg);
  border: 1px solid rgba(112, 93, 242, 0.15);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.result-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary);
  filter: blur(80px);
  opacity: 0.08;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.result-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-200);
  position: relative;
  z-index: 1;
}

/* ======================== SERVICES ======================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(112, 93, 242, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(112, 93, 242, 0.05);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(112, 93, 242, 0.15), rgba(132, 44, 242, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ======================== CASES ======================== */
.cases-section {
  background: linear-gradient(180deg, var(--bg-base), var(--bg-deep));
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}

.case-card:hover {
  border-color: rgba(112, 93, 242, 0.2);
  transform: translateY(-4px);
}

.case-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(112, 93, 242, 0.12);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.case-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.metric-value {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 13px;
  color: var(--gray-400);
}

/* ======================== CLIENTS MARQUEE ======================== */
.clients-section {
  padding-bottom: 80px;
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  margin-top: 16px;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-400);
  opacity: 0.5;
  white-space: nowrap;
  padding: 16px 32px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  transition: var(--transition);
  user-select: none;
}

.client-logo:hover {
  opacity: 1;
  color: var(--white);
  border-color: rgba(112, 93, 242, 0.2);
}

/* ======================== PROCESS ======================== */
.process-section {
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-base));
}

.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent), transparent);
}

.process-step {
  position: relative;
  padding: 0 0 48px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.step-number {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  box-shadow: 0 0 15px rgba(112, 93, 242, 0.2);
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ======================== TEAM ======================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  border-color: rgba(112, 93, 242, 0.2);
  transform: translateY(-4px);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-avatar-strategy {
  border: 2px solid rgba(132, 44, 242, 0.4);
  box-shadow: 0 0 30px rgba(132, 44, 242, 0.2);
}

.team-avatar-tech {
  border: 2px solid rgba(112, 93, 242, 0.4);
  box-shadow: 0 0 30px rgba(112, 93, 242, 0.2);
}

.team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.team-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.team-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 20px;
}

.team-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-tags span {
  padding: 4px 12px;
  background: rgba(112, 93, 242, 0.08);
  border: 1px solid rgba(112, 93, 242, 0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-300);
}

/* ======================== CTA FINAL ======================== */
.cta-section {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.cta-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.12;
}

.cta-glow-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 30%;
  right: 10%;
  opacity: 0.08;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-desc {
  font-size: 18px;
  color: var(--gray-300);
  max-width: 550px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  margin-bottom: 20px;
}

.cta-note {
  font-size: 14px;
  color: var(--gray-400);
}

/* ======================== BOOKING FORM ======================== */
.booking-form-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  text-align: left;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
}

.form-lead-info,
.form-calendar-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.form-section-title svg {
  color: var(--primary);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(112, 93, 242, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group textarea {
  resize: vertical;
  min-height: 72px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Platform selector */
.platform-selector {
  display: flex;
  gap: 10px;
}

.platform-option {
  flex: 1;
  cursor: pointer;
}

.platform-option input {
  display: none;
}

.platform-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  transition: all 0.3s;
}

.platform-option input:checked + .platform-badge {
  border-color: var(--primary);
  background: rgba(112, 93, 242, 0.1);
  color: var(--white);
  box-shadow: 0 0 20px rgba(112, 93, 242, 0.15);
}

/* Calendar Widget */
.calendar-widget {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cal-month-year {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: capitalize;
}

.cal-nav {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  cursor: pointer;
  transition: all 0.2s;
}

.cal-nav:hover {
  border-color: var(--primary);
  color: var(--white);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}

.calendar-weekdays span {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-align: center;
  padding: 4px;
  text-transform: uppercase;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  border-radius: 8px;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.2s;
}

.cal-day:hover:not(.cal-day--disabled):not(.cal-day--empty) {
  background: rgba(112, 93, 242, 0.15);
  color: var(--white);
}

.cal-day--selected {
  background: var(--primary) !important;
  color: var(--white) !important;
  box-shadow: 0 0 16px rgba(112, 93, 242, 0.4);
}

.cal-day--today {
  border: 1px solid rgba(112, 93, 242, 0.4);
}

.cal-day--disabled {
  color: var(--gray-600);
  cursor: not-allowed;
  opacity: 0.4;
}

.cal-day--empty {
  cursor: default;
}

/* Time Slots */
.time-slots-wrapper {
  margin-top: 4px;
}

.time-slots-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 8px;
  display: block;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.time-slot {
  padding: 8px 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-300);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.time-slot:hover {
  border-color: var(--primary);
  color: var(--white);
}

.time-slot--selected {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 12px rgba(112, 93, 242, 0.3);
}

.time-slot--busy {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}

/* Loading state */
.time-slots-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 0;
  color: var(--gray-400);
  font-size: 13px;
}

.slot-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(112, 93, 242, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: slotSpin 0.7s linear infinite;
}

@keyframes slotSpin {
  to { transform: rotate(360deg); }
}

.time-slots-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray-400);
  font-size: 13px;
  padding: 20px 0;
  margin: 0;
}

/* Submit row */
.form-submit-row {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-submit {
  width: 100%;
  max-width: 420px;
  justify-content: center;
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Success */
.booking-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.success-icon {
  margin-bottom: 20px;
}

.booking-success h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.booking-success p {
  color: var(--gray-300);
  font-size: 16px;
  line-height: 1.6;
}

.success-note {
  margin-top: 16px;
  font-size: 14px !important;
  color: var(--gray-400) !important;
}

/* Form validation */
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Responsive form */
@media (max-width: 768px) {
  .booking-form {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }
  .platform-selector {
    flex-direction: column;
  }
}

/* ======================== FOOTER ======================== */
.footer {
  border-top: 1px solid var(--glass-border);
  padding-top: 56px;
  padding-bottom: 0;
  background: var(--bg-base);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-400);
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-links, .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Mobile menu */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 14, 17, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px;
  }

  .nav-links.active a {
    font-size: 24px;
    color: var(--white);
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-social-proof {
    flex-direction: column;
    gap: 8px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .diff-flow {
    flex-direction: column;
    align-items: center;
  }

  .diff-column {
    max-width: 100%;
  }

  .diff-connector {
    flex-direction: row;
    min-width: unset;
    width: 100%;
    min-height: 60px;
  }

  .connector-line {
    height: 2px;
    width: auto;
    flex: 1;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    padding-left: 48px;
  }

  .step-number {
    left: -48px;
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .process-timeline::before {
    left: 19px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 32px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 15px;
  }

  .btn-xl {
    padding: 16px 28px;
    font-size: 16px;
  }

  .cta-section {
    padding: 100px 0;
  }
}
