@import url('variables.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ============================================
   GLOBAL ANIMATED BACKGROUND
   Covers the entire page — dark mesh with
   floating gradient orbs
   ============================================ */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg);
}

/* Background orbs — hidden */
.page-bg__orb {
  display: none;
}

/* Glowing stars */
.page-bg__stars {
  position: absolute;
  inset: 0;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: starGlow var(--star-duration, 4s) ease-in-out infinite;
  animation-delay: var(--star-delay, 0s);
}

.star--sm {
  width: 1px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.star--lg {
  width: 3px;
  height: 3px;
  background: rgba(234, 127, 30, 0.5);
  box-shadow: 0 0 6px rgba(234, 127, 30, 0.3);
}

@keyframes starGlow {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* Dot grid overlay */
.page-bg__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}


/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
}

.container--wide {
  max-width: 1500px;
}

.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

/* Subtle section divider line */
.section--divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* ============================================
   GLASS CARD
   ============================================ */
.glass {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.glass:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

/* Animated gradient border on hover */
.glass--glow {
  position: relative;
  overflow: hidden;
}

.glass--glow::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent, var(--accent), transparent, transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
  animation: rotateBorder 4s linear infinite;
}

.glass--glow:hover::before {
  opacity: 1;
}

@keyframes rotateBorder {
  to { transform: rotate(360deg); }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-base);
}

.header--scrolled {
  background: rgba(5, 5, 8, 0.8);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo__img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--text);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.55rem 1.25rem;
  background: var(--accent);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  box-shadow: 0 0 20px rgba(234, 127, 30, 0.2);
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-btn);
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--fs-xs);
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text-muted);
  background: var(--bg-glass);
  transition: all var(--transition-fast);
  margin-right: var(--space-sm);
}

.lang-toggle:hover {
  color: var(--accent-light);
  border-color: var(--border-accent);
  background: var(--bg-glass-hover);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle__bar {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle--open .nav-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle--open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle--open .nav-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem var(--space-xl) var(--space-xl);
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: var(--glass-blur-strong);
    border-left: 1px solid var(--border);
    transition: right var(--transition-slow);
  }

  .nav--open {
    right: 0;
  }

  .nav__link {
    color: var(--text-light);
    font-size: var(--fs-md);
  }

  .nav__link:hover {
    color: var(--accent-light);
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-height) + var(--space-2xl));
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 0;
  }
}

/* Horizon glow line */
.hero__horizon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  box-shadow: 0 0 60px 20px rgba(234, 127, 30, 0.08);
}

/* Scan line */
.hero__scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(234, 127, 30, 0.3), transparent);
  animation: scanline 8s linear infinite;
  opacity: 0.4;
}

@keyframes scanline {
  0% { top: 0; }
  100% { top: 100%; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.4rem 1.1rem;
  background: rgba(234, 127, 30, 0.06);
  border: 1px solid rgba(234, 127, 30, 0.12);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: var(--space-xl);
  font-family: var(--font-mono);
  backdrop-filter: blur(10px);
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero__title {
  font-size: clamp(var(--fs-3xl), 4.5vw, var(--fs-4xl));
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text-bright);
  margin-bottom: var(--space-lg);
}

.hero__title em {
  font-style: normal;
  color: var(--accent-light);
  text-shadow: 0 0 60px var(--accent-glow);
}

.hero__subtitle {
  font-size: var(--fs-lg);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--space-2xl);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero__phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  font-size: var(--fs-sm);
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.hero__phone a {
  color: var(--accent-light);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.hero__phone a:hover {
  color: var(--text-bright);
  text-shadow: 0 0 20px var(--accent-glow);
}

/* Hero two-column layout */
.hero__grid-layout {
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-3xl);
    align-items: center;
  }
}

/* Terminal decoration */
.hero__terminal {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-lg);
  display: none;
}

@media (min-width: 1024px) {
  .hero__terminal {
    display: block;
  }
}

.terminal__header {
  display: flex;
  gap: 6px;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.terminal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal__dot--red { background: #ff5f57; }
.terminal__dot--yellow { background: #ffbd2e; }
.terminal__dot--green { background: #28c840; }

.terminal__line {
  margin-bottom: 6px;
  opacity: 0;
  animation: typeLine 0.3s ease forwards;
}

.terminal__line:nth-child(2) { animation-delay: 0.5s; }
.terminal__line:nth-child(3) { animation-delay: 1s; }
.terminal__line:nth-child(4) { animation-delay: 1.5s; }
.terminal__line:nth-child(5) { animation-delay: 2s; }
.terminal__line:nth-child(6) { animation-delay: 2.5s; }
.terminal__line:nth-child(7) { animation-delay: 3s; }
.terminal__line:nth-child(8) { animation-delay: 3.5s; }
.terminal__line:nth-child(9) { animation-delay: 4s; }

@keyframes typeLine {
  to { opacity: 1; }
}

.terminal__prompt { color: #22c55e; }
.terminal__cmd { color: var(--accent-light); }
.terminal__output { color: var(--text-muted); }
.terminal__success { color: #22c55e; }
.terminal__url { color: var(--accent-light); text-decoration: underline; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  font-size: var(--fs-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid rgba(96, 165, 250, 0.3);
  box-shadow: 0 0 20px rgba(234, 127, 30, 0.2);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-btn-hover);
  background: var(--accent-dark);
}

.btn--outline {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn--glass {
  background: var(--bg-glass);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: var(--glass-blur);
}
.btn--glass:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: var(--fs-md);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats {
  position: relative;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.stat {
  position: relative;
}

/* Vertical dividers between stats */
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: calc(-1 * var(--space-xl) / 2);
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}

.stat__number {
  font-size: var(--fs-3xl);
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: var(--space-xs);
  font-family: var(--font-mono);
  letter-spacing: -0.03em;
  text-shadow: 0 0 30px rgba(234, 127, 30, 0.3);
}

.stat__label {
  font-size: var(--fs-sm);
  color: var(--text-light);
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  .stat::after { display: none; }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--space-md);
  font-family: var(--font-mono);
}

.section__label::before {
  content: '//';
  opacity: 0.4;
}

.section__title {
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-3xl));
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
  color: var(--text-bright);
}

.section__subtitle {
  font-size: var(--fs-md);
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
  line-height: 1.7;
}

/* ============================================
   PROBLEM
   ============================================ */
.problem {
  text-align: center;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.problem__card {
  padding: var(--space-2xl);
  text-align: left;
  position: relative;
}

.problem__card:hover {
  box-shadow: 0 0 40px rgba(234, 127, 30, 0.12), 0 0 80px rgba(234, 127, 30, 0.06);
  border-color: var(--border-accent);
}

.problem__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-subtle);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.problem__card:hover .problem__icon {
  box-shadow: 0 0 25px rgba(234, 127, 30, 0.15);
  background: rgba(234, 127, 30, 0.1);
}

.problem__card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
  color: var(--text-bright);
}

.problem__card p {
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .problem__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

/* Glow line on top */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-accent);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), var(--shadow-glow);
}

.service-card__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-subtle);
  border: 1px solid rgba(234, 127, 30, 0.1);
  border-radius: var(--radius-md);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
  border-color: var(--border-accent);
  box-shadow: 0 0 25px rgba(234, 127, 30, 0.15);
}

.service-card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
  color: var(--text-bright);
}

.service-card p {
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PRICING
   ============================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

.pricing__grid--4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1500px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-xl);
}

.pricing-card--featured {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
  background: rgba(234, 127, 30, 0.03);
}

.pricing-card--featured:hover {
  box-shadow: var(--shadow-glow-lg);
  border-color: var(--border-accent-hover);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1.1rem;
  background: var(--accent);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  box-shadow: 0 4px 20px rgba(234, 127, 30, 0.4);
}

.pricing-card__name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  margin-bottom: var(--space-md);
}

.pricing-card__price {
  font-size: var(--fs-4xl);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-xs);
  color: var(--text-bright);
}

.pricing-card__price span {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0;
}

.pricing-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-light);
  margin-bottom: var(--space-xl);
  line-height: 1.5;
}

.pricing-card__features {
  margin-bottom: var(--space-xl);
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 0.45rem 0;
  font-size: var(--fs-sm);
  color: var(--text);
}

.pricing-card__features li::before {
  content: '\2713';
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--accent-subtle);
  color: var(--accent-light);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
}

/* Scale System card accent */
.pricing-card--scale {
  border-color: rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.03);
}

.pricing-card--scale:hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 0 60px rgba(239, 68, 68, 0.12);
}

.pricing-card__price--contact {
  font-size: var(--fs-2xl);
}

@media (max-width: 1024px) {
  .pricing__grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing__grid,
  .pricing__grid--4 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============================================
   PROCESS
   ============================================ */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg,
    var(--accent),
    rgba(37,99,235,0.2),
    var(--accent),
    rgba(37,99,235,0.2),
    var(--accent));
  z-index: 0;
  box-shadow: 0 0 15px rgba(234, 127, 30, 0.15);
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  background: var(--bg);
  border: 2px solid var(--accent);
  color: var(--accent-light);
  font-size: var(--fs-lg);
  font-weight: 800;
  border-radius: 50%;
  font-family: var(--font-mono);
  position: relative;
  box-shadow: 0 0 25px rgba(234, 127, 30, 0.15);
}

.step__number::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(234, 127, 30, 0.1);
}

.step h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
  color: var(--text-bright);
}

.step p {
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process__steps {
    grid-template-columns: 1fr 1fr;
  }
  .process__steps::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .process__steps {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TESTIMONIALS — Infinite Marquee
   ============================================ */
.testimonials__marquee {
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* Fade edges */
.testimonials__marquee::before,
.testimonials__marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.testimonials__marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.testimonials__marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.testimonials__track {
  display: flex;
  gap: var(--space-xl);
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
}

.testimonials__track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-md);
  right: var(--space-xl);
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(234, 127, 30, 0.06);
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--border-accent);
}

.testimonial-card__stars {
  color: #fbbf24;
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.testimonial-card__text {
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: rgba(234, 127, 30, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--accent-light);
  font-family: var(--font-mono);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--text);
}

.testimonial-card__role {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.testimonial-card__date {
  margin-top: var(--space-md);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-family: var(--font-mono);
  opacity: 0.6;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  text-align: center;
}

.cta__box {
  background: var(--bg-glass-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl) var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.cta__calendar {
  position: relative;
  margin: var(--space-xl) auto;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.cta__calendar iframe {
  width: 100%;
  height: 1100px;
  border: none;
}

/* Inner glow */
.cta__box::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 127, 30, 0.1), transparent 70%);
  pointer-events: none;
}

.cta__box .section__title {
  color: var(--text-bright);
  position: relative;
}

.cta__box .section__subtitle {
  color: var(--text-light);
  position: relative;
}

.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  position: relative;
}

.cta__phone {
  display: block;
  font-size: var(--fs-2xl);
  font-weight: 900;
  color: var(--accent-light);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
  font-family: var(--font-mono);
  position: relative;
  transition: all var(--transition-fast);
  text-shadow: 0 0 30px rgba(234, 127, 30, 0.2);
}

.cta__phone:hover {
  color: var(--text-bright);
  text-shadow: 0 0 50px var(--accent-glow);
}

.cta__contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  font-size: var(--fs-sm);
  font-family: var(--font-mono);
  color: var(--text-muted);
  position: relative;
}

.cta__contact-row a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-shadow: 0 0 20px rgba(234, 127, 30, 0.4);
  transition: all var(--transition-fast);
}

.cta__contact-row a:hover {
  color: var(--text-bright);
  text-shadow: 0 0 30px rgba(234, 127, 30, 0.6);
}

/* ============================================
   FAQ
   ============================================ */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-lg) 0;
  font-size: var(--fs-md);
  font-weight: 600;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--accent-light);
}

.faq-item__icon {
  font-size: var(--fs-xl);
  color: var(--text-light);
  transition: transform var(--transition-base), color var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--space-md);
  font-family: var(--font-mono);
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
  color: var(--accent-light);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item--open .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding-bottom: var(--space-lg);
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  color: var(--text-muted);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer__brand {
  display: flex;
  align-items: center;
}

.footer__logo {
  height: 96px;
  width: auto;
  object-fit: contain;
}

.footer__links {
  display: flex;
  gap: var(--space-xl);
}

.footer__link {
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--text);
}

.footer__contact {
  display: flex;
  gap: var(--space-xl);
  font-size: var(--fs-sm);
  font-family: var(--font-mono);
}

.footer__contact a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-shadow: 0 0 20px rgba(234, 127, 30, 0.4);
  transition: all var(--transition-fast);
}

.footer__contact a:hover {
  color: var(--text-bright);
  text-shadow: 0 0 30px rgba(234, 127, 30, 0.6);
}

.footer__copy {
  width: 100%;
  text-align: center;
  padding-top: var(--space-xl);
  margin-top: var(--space-xl);
  border-top: 1px solid var(--border);
  font-size: var(--fs-xs);
  font-family: var(--font-mono);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
