/* ============================================================
   ABBOTT DIGITAL SOLUTIONS — Master Stylesheet
   Premium Dark Agency Design System
   ============================================================ */

/* ----------------------------------------------------------
   1. DESIGN SYSTEM (Custom Properties)
   ---------------------------------------------------------- */
:root {
  --bg: #050510;
  --surface: #0A0F1E;
  --surface-2: #111827;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --accent: #0096E8;
  --accent-glow: #00D4FF;
  --accent-secondary: #7C3AED;
  --text: #E2E8F0;
  --text-dim: #64748B;
  --text-bright: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --glow-sm: 0 0 15px rgba(0, 150, 232, 0.15);
  --glow-md: 0 0 30px rgba(0, 150, 232, 0.2);
  --glow-lg: 0 0 60px rgba(0, 150, 232, 0.25);
}

/* ----------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

/* Selection */
::selection {
  background: rgba(0, 150, 232, 0.3);
  color: var(--text-bright);
}

::-moz-selection {
  background: rgba(0, 150, 232, 0.3);
  color: var(--text-bright);
}

/* ----------------------------------------------------------
   3. CUSTOM CURSOR
   ---------------------------------------------------------- */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent-glow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.15s ease, opacity 0.15s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-outline {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
  transform: translate(-50%, -50%);
}

.cursor-dot.hovering {
  transform: translate(-50%, -50%) scale(2.5);
  background: rgba(0, 212, 255, 0.6);
}

.cursor-outline.hovering {
  width: 60px;
  height: 60px;
  border-color: rgba(0, 212, 255, 0.2);
}

@media (pointer: coarse) {
  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

/* ----------------------------------------------------------
   4. NAVIGATION
   ---------------------------------------------------------- */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  z-index: 1000;
  background: rgba(10, 15, 30, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0 24px;
  transition: var(--transition-base);
}

.nav.scrolled {
  border-bottom-color: rgba(0, 150, 232, 0.2);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background: rgba(10, 15, 30, 0.9);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  height: 36px;
  width: auto;
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-bright);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  color: var(--text-dim);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-bright);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  background: var(--accent);
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  background: #0080CC;
  box-shadow: var(--glow-sm);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition-fast);
  display: block;
  border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 16, 0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ----------------------------------------------------------
   5. HERO
   ---------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 60px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: blobMorph 8s ease-in-out infinite;
  z-index: 0;
  background: conic-gradient(
    from 0deg,
    var(--accent),
    var(--accent-glow),
    var(--accent-secondary),
    var(--accent)
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes blobMorph {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(-45%, -55%) scale(1.1) rotate(120deg);
  }
  66% {
    transform: translate(-55%, -45%) scale(0.9) rotate(240deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(0, 150, 232, 0.1);
  border: 1px solid rgba(0, 150, 232, 0.2);
  font-size: 14px;
  color: var(--accent-glow);
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-glow);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-bright);
  margin-bottom: 24px;
}

.hero-typewriter {
  background: linear-gradient(135deg, var(--accent), var(--accent-glow), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typewriter-cursor {
  color: var(--accent-glow);
  animation: blink 1s step-end infinite;
  font-weight: 300;
  -webkit-text-fill-color: var(--accent-glow);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-subtext {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-dim);
  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;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-base);
  font-family: var(--font-body);
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: #0080CC;
  box-shadow: var(--glow-md);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--border-hover);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* Hero Trust */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bobbing 2s ease-in-out infinite;
  color: var(--text-dim);
  opacity: 0.5;
  z-index: 1;
}

@keyframes bobbing {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ----------------------------------------------------------
   6. MARQUEE
   ---------------------------------------------------------- */
.marquee {
  padding: 20px 0;
  background: rgba(10, 15, 30, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.marquee-dot {
  color: var(--accent);
  font-size: 18px;
}

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

/* ----------------------------------------------------------
   7. SECTION HEADERS
   ---------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-dim);
  line-height: 1.7;
}

/* ----------------------------------------------------------
   8. DEMOS CAROUSEL
   ---------------------------------------------------------- */
.demos-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.demos-carousel::-webkit-scrollbar {
  display: none;
}

.demo-card {
  min-width: 320px;
  max-width: 360px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.demo-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--glow-sm);
}

.demo-card-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-gradient, linear-gradient(135deg, rgba(0, 150, 232, 0.1), rgba(124, 58, 237, 0.1)));
  position: relative;
  overflow: hidden;
}

.demo-emoji {
  font-size: 64px;
  line-height: 1;
}

.demo-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.demo-card-tier {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
}

.demo-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-bright);
  margin: 8px 0 12px;
}

.demo-card-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.demo-card-link {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.demo-card-link:hover {
  color: var(--accent-glow);
  gap: 10px;
}

/* Demos Navigation */
.demos-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.demos-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: var(--transition-fast);
  background: transparent;
}

.demos-nav-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.demos-dots {
  display: flex;
  gap: 8px;
}

.demos-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-hover);
  transition: var(--transition-fast);
  cursor: pointer;
}

.demos-dots .dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.demos-browse-all {
  display: block;
  text-align: center;
  margin-top: 24px;
  color: var(--accent);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-fast);
}

.demos-browse-all:hover {
  color: var(--accent-glow);
}

/* ----------------------------------------------------------
   9. SERVICES GRID
   ---------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-base);
  pointer-events: none;
}

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

.service-card:hover {
  transform: translateY(-2px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(0, 150, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 24px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-price {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}

.service-cta {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-cta:hover {
  color: var(--accent);
  gap: 10px;
}

/* Services Grid — Two-card variant */
.services-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

/* Service Card — Large variant */
.service-card-lg {
  padding: 40px;
}

.service-card-lg .service-icon {
  width: 64px;
  height: 64px;
  font-size: 28px;
}

.service-card-lg .service-title {
  font-size: 24px;
}

.service-card-lg .service-desc {
  font-size: 15px;
}

/* ----------------------------------------------------------
   10. PRICING CONFIGURATOR
   ---------------------------------------------------------- */
.pricing-configurator {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-step {
  margin-bottom: 48px;
}

.pricing-step-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 150, 232, 0.15);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Tier Grid */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tier-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  background: var(--surface);
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  cursor: pointer;
}

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

.tier-card.active {
  border-color: var(--accent);
  transform: scale(1.02);
  box-shadow: var(--glow-md);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-bright);
  display: block;
  margin-bottom: 8px;
}

.tier-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.tier-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

.tier-monthly {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent, #6366F1);
  letter-spacing: 0.02em;
}

/* Addons Grid */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.addon-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.addon-toggle:hover {
  border-color: var(--border-hover);
}

.addon-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.addon-switch {
  width: 44px;
  height: 24px;
  background: var(--surface-2);
  border-radius: var(--radius-full);
  position: relative;
  flex-shrink: 0;
  transition: var(--transition-fast);
  border: 1px solid var(--border);
}

.addon-switch::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--text-dim);
  top: 2px;
  left: 2px;
  transition: var(--transition-fast);
}

.addon-checkbox:checked + .addon-switch {
  background: var(--accent);
  border-color: var(--accent);
}

.addon-checkbox:checked + .addon-switch::after {
  transform: translateX(20px);
  background: white;
}

.addon-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.addon-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-bright);
}

.addon-price {
  font-size: 13px;
  color: var(--accent);
}

/* Hosting Grid */
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hosting-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  background: var(--surface);
  text-align: center;
  transition: var(--transition-base);
  cursor: pointer;
}

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

.hosting-card.active {
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
}

.hosting-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-bright);
  margin-bottom: 4px;
  display: block;
}

.hosting-desc {
  font-size: 13px;
  color: var(--text-dim);
}

/* Pricing Total */
.pricing-total {
  background: var(--surface);
  border: 1px solid rgba(0, 150, 232, 0.2);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
}

.pricing-total-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pricing-total-label {
  font-size: 16px;
  color: var(--text-dim);
}

.pricing-monthly {
  font-size: 13px;
  color: var(--accent);
  margin-top: 4px;
  display: block;
}

.pricing-total-amount {
  display: flex;
  align-items: baseline;
}

.pricing-currency {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-glow);
  font-family: var(--font-heading);
}

.pricing-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-glow);
  font-family: var(--font-heading);
  transition: var(--transition-fast);
}

/* ----------------------------------------------------------
   11. PROCESS TIMELINE
   ---------------------------------------------------------- */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-connector {
  position: absolute;
  top: 30px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.timeline-connector::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-glow));
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-connector.active::after {
  width: 100%;
}

.timeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.timeline-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  transition: var(--transition-base);
}

.timeline-step.revealed .timeline-marker {
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 150px;
  line-height: 1.5;
}

/* ----------------------------------------------------------
   12. STATS
   ---------------------------------------------------------- */
.stats {
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}

.grain-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-bright);
  display: inline;
}

.stat-prefix {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-bright);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-bright);
  display: inline;
}

.stat-label {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 8px;
  display: block;
}

/* ----------------------------------------------------------
   13. CONTACT SECTION
   ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0, 150, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 18px;
}

.contact-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 4px;
  display: block;
}

.contact-card-value {
  font-size: 14px;
  color: var(--text-bright);
  transition: var(--transition-fast);
}

a.contact-card-value:hover {
  color: var(--accent);
}

.contact-quote-summary {
  background: var(--surface);
  border: 1px solid rgba(0, 150, 232, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 8px;
}

/* Contact Form */
.contact-form {
  background: rgba(10, 15, 30, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 8px;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition-fast);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 150, 232, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-dim);
  opacity: 0.6;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

select option {
  background: var(--surface);
  color: var(--text);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  position: relative;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit.loading .btn-text {
  display: none;
}

.btn-submit.loading .btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-loading .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.success-checkmark {
  animation: scaleUp 0.5s ease;
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

@keyframes scaleUp {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------------------------------------------------------
   14. FOOTER
   ---------------------------------------------------------- */
.footer {
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 32px;
  height: 32px;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-bright);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-division {
  font-size: 12px;
  color: var(--text-dim);
  opacity: 0.7;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

/* ----------------------------------------------------------
   15. SCROLL REVEAL ANIMATIONS
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children delays */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger > .reveal:nth-child(8) { transition-delay: 0.4s; }

/* Reveal from different directions */
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ----------------------------------------------------------
   16. ADDITIONAL ANIMATIONS
   ---------------------------------------------------------- */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.shimmer {
  background: linear-gradient(
    90deg,
    var(--surface) 25%,
    var(--surface-2) 50%,
    var(--surface) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 2s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--surface-2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Utility Classes */
.text-accent {
  color: var(--accent);
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-glow), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ----------------------------------------------------------
   17. RESPONSIVE — Mobile-first breakpoints
   ---------------------------------------------------------- */

/* ≤ 1200px */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ≤ 1024px */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ≤ 768px — Primary mobile breakpoint */
@media (max-width: 768px) {
  /* Navigation */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: rgba(5, 5, 16, 0.98);
    z-index: 999;
    padding: 24px;
  }

  .nav-links.active .nav-link {
    font-size: 24px;
    padding: 12px 24px;
  }

  .nav-links.active .nav-cta {
    display: inline-flex;
    font-size: 18px;
    padding: 12px 32px;
  }

  /* Hero */
  .hero {
    padding: 100px 20px 60px;
    min-height: 90vh;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-gradient-blob {
    width: 350px;
    height: 350px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid-two {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .tier-grid {
    grid-template-columns: 1fr;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }

  .hosting-grid {
    grid-template-columns: 1fr;
  }

  .pricing-number {
    font-size: 40px;
  }

  .pricing-currency {
    font-size: 22px;
  }

  /* Timeline */
  .timeline {
    flex-direction: column;
    gap: 32px;
    padding-left: 56px;
  }

  .timeline-connector {
    left: 24px;
    top: 0;
    width: 2px;
    height: 100%;
  }

  .timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }

  .timeline-content p {
    max-width: none;
  }

  .timeline-marker {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    margin-top: 32px;
  }

  /* Section spacing */
  .section {
    padding: clamp(60px, 8vw, 100px) 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  /* Demos */
  .demo-card {
    min-width: 280px;
  }
}

/* ≤ 480px — Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav {
    width: calc(100% - 16px);
    padding: 0 16px;
  }

  .hero-headline {
    font-size: 1.75rem;
  }

  .hero-subtext {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .service-card {
    padding: 24px;
  }

  .tier-card {
    padding: 20px;
  }

  .pricing-total {
    padding: 24px 16px;
  }

  .pricing-number {
    font-size: 36px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number,
  .stat-prefix,
  .stat-suffix {
    font-size: 2rem;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ----------------------------------------------------------
   18. PREFERS REDUCED MOTION
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .hero-gradient-blob {
    animation: none;
  }

  .marquee-track {
    animation: none;
  }
}

/* ----------------------------------------------------------
   19. PRINT STYLES
   ---------------------------------------------------------- */
@media print {
  body {
    background: white;
    color: #111;
  }

  .nav,
  .cursor-dot,
  .cursor-outline,
  .scroll-indicator,
  .hero-gradient-blob,
  .hero-canvas,
  .grain-overlay {
    display: none !important;
  }

  .section {
    padding: 32px 0;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}
