/* ============================================
   AroraLabs — style.css  (v2 — Full Redesign)
   ============================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* === VARIABLES === */
:root {
  --bg:           #07070f;
  --bg-alt:       #0c0c18;
  --surface:      #111120;
  --surface-2:    #181828;
  --surface-hover:#1e1e32;
  --glass:        rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --glass-hover:  rgba(255,255,255,0.07);

  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);

  --text:         #f0f0f8;
  --text-muted:   #8080a8;
  --text-faint:   #404060;

  --accent:       #7b6cf6;
  --accent-2:     #a78bfa;
  --accent-3:     #c4b5fd;
  --accent-glow:  rgba(123,108,246,0.35);
  --accent-light: rgba(123,108,246,0.12);
  --accent-mid:   rgba(123,108,246,0.2);

  --green:        #4ade80;
  --amber:        #f59e0b;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.5);
  --shadow:       0 4px 24px rgba(0,0,0,0.6);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.7);
  --shadow-glow:  0 0 40px rgba(123,108,246,0.2);

  --radius-sm:    6px;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --transition:   0.25s ease;
  --transition-slow: 0.45s ease;
  --font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

[data-theme="light"] {
  --bg:           #f4f4fc;
  --bg-alt:       #eaeaf4;
  --surface:      #ffffff;
  --surface-2:    #f0f0fa;
  --surface-hover:#e8e8f5;
  --glass:        rgba(255,255,255,0.6);
  --glass-border: rgba(0,0,0,0.08);
  --glass-hover:  rgba(255,255,255,0.8);

  --border:       rgba(0,0,0,0.07);
  --border-hover: rgba(0,0,0,0.15);

  --text:         #12122a;
  --text-muted:   #5a5a80;
  --text-faint:   #9999b8;

  --accent:       #6254d4;
  --accent-2:     #8b7cf6;
  --accent-3:     #a78bfa;
  --accent-glow:  rgba(98,84,212,0.2);
  --accent-light: rgba(98,84,212,0.1);
  --accent-mid:   rgba(98,84,212,0.15);

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow:       0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.12);
  --shadow-glow:  0 0 40px rgba(98,84,212,0.12);
}

/* === GLOBAL TRANSITIONS === */
body, .navbar, .service-card, .project-card, .btn-glow, .btn-ghost-glow,
input, textarea, .footer, .process-step {
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

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

/* === SCROLL PROGRESS BAR === */
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.025em; color: var(--text); }
h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { color: var(--text-muted); line-height: 1.75; }
a  { color: inherit; text-decoration: none; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-title { margin-bottom: 14px; }
.section-sub { font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ============================================
   BUTTONS
   ============================================ */

/* --- Glowing gradient button (uiverse.io inspired) --- */
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
  box-shadow: 0 0 0 0 var(--accent-glow);
  white-space: nowrap;
}
.btn-glow::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.btn-glow:hover::before { left: 100%; }
.btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px var(--accent-glow), 0 0 0 1px rgba(123,108,246,0.4);
}
.btn-glow:active { transform: translateY(0) scale(0.98); }

.btn-glow.btn-sm  { padding: 10px 20px; font-size: 0.85rem; }
.btn-glow.btn-lg  { padding: 18px 36px; font-size: 1rem; }

/* Spinner inside submit button */
.btn-glow .btn-spinner { display: none; animation: spin 0.8s linear infinite; }
.btn-glow.loading .btn-text { opacity: 0.5; }
.btn-glow.loading .btn-spinner { display: block; }
.btn-glow:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* --- Ghost glow button --- */
.btn-ghost-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-ghost-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-light), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-ghost-glow:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-ghost-glow:hover::after { opacity: 1; }

/* --- Navbar hire button --- */
.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  font-weight: 700;
  font-family: var(--font);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-nav:hover {
  background: var(--accent-2);
  box-shadow: 0 0 16px var(--accent-glow);
  transform: translateY(-1px);
}

/* ============================================
   THEME TOGGLE (Thinko pill style)
   ============================================ */
.theme-check { display: none; }

.toggle-wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.toggle-track {
  width: 50px;
  height: 26px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
.toggle-wrap:hover .toggle-track {
  background: var(--surface-hover);
  border-color: var(--border-hover);
}
.toggle-ball {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), background 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px var(--accent-glow);
}
.toggle-ball-icon { font-size: 10px; color: #fff; line-height: 1; user-select: none; }

[data-theme="light"] .toggle-ball {
  transform: translateX(24px);
  background: var(--amber);
  box-shadow: 0 0 12px rgba(245,158,11,0.5);
}
[data-theme="light"] .toggle-track {
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.3);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(7,7,15,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
[data-theme="light"] .navbar.scrolled {
  background: rgba(244,244,252,0.85);
}

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

.logo {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.logo span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

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

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 66px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 80px 0 120px;
}

/* Particle canvas */
.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px;
  top: -20%; left: 30%;
  background: radial-gradient(circle, rgba(123,108,246,0.18) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  bottom: 5%; left: 5%;
  background: radial-gradient(circle, rgba(167,139,250,0.12) 0%, transparent 70%);
  animation: orbFloat 9s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  top: 20%; right: 5%;
  background: radial-gradient(circle, rgba(196,181,253,0.1) 0%, transparent 70%);
  animation: orbFloat 14s ease-in-out infinite 2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Availability badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  padding: 7px 16px;
  border-radius: 999px;
  animation: fadeDown 0.6s ease 0.1s both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

/* Hero title */
.hero-title {
  animation: fadeUp 0.7s ease 0.2s both;
  line-height: 1.05;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* Typewriter */
.typewriter-wrap {
  display: inline-block;
  min-width: 280px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cursor {
  -webkit-text-fill-color: var(--accent-2);
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 540px;
  line-height: 1.75;
  animation: fadeUp 0.7s ease 0.35s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s ease 0.5s both;
}

/* Stats */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 16px;
  animation: fadeUp 0.7s ease 0.65s both;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.proof-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
}
.proof-plus { font-size: 1.4rem; font-weight: 900; color: var(--accent); }
.proof-label { font-size: 0.72rem; color: var(--text-faint); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.proof-div { width: 1px; height: 40px; background: var(--border); }

/* Scroll mouse indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeUp 0.7s ease 1s both;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid var(--text-faint);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: var(--accent);
  border-radius: 999px;
  animation: scrollWheel 2s ease infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Glassmorphism card — uiverse.io style */
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: default;
}

/* Shimmer sweep on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -100%;
  width: 60%; height: calc(100% + 4px);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-15deg);
  transition: left 0.6s ease;
}
.service-card:hover::before { left: 160%; }

/* Glow border on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent, var(--accent-mid), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover {
  transform: translateY(-6px);
  background: var(--glass-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-glow);
  border-color: rgba(123,108,246,0.2);
}

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  z-index: 1;
}
.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 20px var(--accent-glow);
}
.service-icon { font-size: 1.5rem; line-height: 1; }
.service-card h3 { color: var(--text); position: relative; z-index: 1; }
.service-card p  { font-size: 0.875rem; line-height: 1.7; position: relative; z-index: 1; }

.service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.service-tags li {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  color: var(--accent-3);
}

/* CTA card variant */
.service-card-cta {
  background: linear-gradient(135deg, rgba(123,108,246,0.12), rgba(167,139,250,0.08));
  border-color: rgba(123,108,246,0.25);
  justify-content: center;
  text-align: center;
  align-items: center;
}
.cta-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: -4px;
}
.service-card-cta h3 { font-size: 1.3rem; }

/* ============================================
   PROJECTS
   ============================================ */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.project-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.project-glow {
  position: absolute;
  top: -60%; left: -20%;
  width: 140%; height: 140%;
  background: radial-gradient(circle at 30% 30%, var(--accent-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.project-card.featured { border-color: rgba(123,108,246,0.2); }
.project-card.featured:hover { border-color: rgba(123,108,246,0.45); box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--shadow-glow); transform: translateY(-5px); }
.project-card.featured:hover .project-glow { opacity: 1; }

.project-next { opacity: 0.6; }
.project-next:hover { opacity: 1; transform: translateY(-3px); }

.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.project-icon { font-size: 2.8rem; line-height: 1; }
.project-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.badge-live    { background: rgba(74,222,128,0.12); color: var(--green); border: 1px solid rgba(74,222,128,0.25); }
.badge-platform{ background: var(--surface-2); color: var(--text-muted); border: 1px solid var(--border); }
.badge-soon    { background: rgba(245,158,11,0.12); color: var(--amber); border: 1px solid rgba(245,158,11,0.2); }

.project-name  { color: var(--text); font-size: 1.5rem; position: relative; z-index: 1; }
.project-desc  { font-size: 0.9rem; line-height: 1.75; position: relative; z-index: 1; flex: 1; }
.project-tags  {
  display: flex; flex-wrap: wrap; gap: 8px;
  position: relative; z-index: 1;
}
.project-tags span {
  font-size: 0.7rem; font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  position: relative; z-index: 1;
  width: fit-content;
}
.project-link:hover { gap: 10px; color: var(--accent-2); }

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

.process-step {
  padding: 32px 28px;
  position: relative;
  transition: all 0.35s ease;
}
.process-step:hover { transform: translateY(-4px); }

/* Connector line */
.process-line {
  position: absolute;
  top: 46px;
  left: 60%;
  right: -10%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-mid), transparent);
}
.process-step:last-child .process-line { display: none; }

.step-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.process-step h3 { color: var(--text); margin-bottom: 10px; }
.process-step p  { font-size: 0.875rem; line-height: 1.7; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123,108,246,0.12), rgba(167,139,250,0.06));
  border-top: 1px solid var(--accent-mid);
  border-bottom: 1px solid var(--accent-mid);
}
.cta-band-bg::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-text h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 8px; }
.cta-band-text p  { font-size: 1rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-intro { font-size: 1.05rem; margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.contact-detail-row:hover { color: var(--accent); }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.contact-detail-row:hover .contact-detail-icon {
  background: var(--accent-light);
  border-color: var(--accent);
}

.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
input, textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
input::placeholder, textarea::placeholder { color: var(--text-faint); }
input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
  background: var(--surface);
}
.btn-submit { width: 100%; justify-content: center; }
.form-status {
  font-size: 0.875rem;
  font-weight: 600;
  min-height: 20px;
  text-align: center;
}
.form-status.success { color: var(--green); }
.form-status.error   { color: #f87171; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.8rem; color: var(--text-faint); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.34,1.56,.64,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Entry animations */
@keyframes fadeUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }
@keyframes spin     { to { transform: rotate(360deg); } }

/* ============================================
   INLINE LINK
   ============================================ */
.inline-link {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.inline-link:hover { border-bottom-color: var(--accent); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  h1 { font-size: 3.2rem; }

  /* Navbar */
  .menu-toggle { display: flex; }
  .btn-nav { display: none; }
  .nav-links {
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 16px;
    display: none;
    z-index: 99;
  }
  [data-theme="light"] .nav-links { background: var(--bg); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }

  /* Hero */
  .hero-proof { gap: 20px; }
  .proof-num { font-size: 1.8rem; }
  .typewriter-wrap { min-width: 200px; }

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

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band-inner { flex-direction: column; text-align: center; }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-proof { flex-direction: column; gap: 16px; }
  .proof-div { width: 48px; height: 1px; }
}
