/* ============================================================
   AROXE SOLUTIONS — Design System & Styles
   Color Palette: Lavender Purple #967BB6 · Creamy White #FFFDD0 · Black
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --brand: #967BB6;
  --brand-light: #b8a2d0;
  --brand-dark: #7a5fa0;
  --brand-glow: rgba(150, 123, 182, 0.25);
  --surface: #FFFDD0;
  --surface-dim: #f5f3c4;
  --ink: #1A1A1A;
  --ink-light: #2d2d2d;
  --white: #ffffff;
  --muted: #6b6b6b;
  --muted-light: #9a9a9a;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --header-h: 72px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --pad-section: clamp(60px, 10vw, 120px);
  --pad-x: clamp(20px, 4vw, 48px);
  --max-w: 1340px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ---------- Typography ---------- */
.font-display { font-family: var(--font-display); }
.font-mono {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.12; letter-spacing: -0.02em; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  padding-block: var(--pad-section);
  padding-inline: var(--pad-x);
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 18px;
  text-transform: lowercase;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.section-head {
  max-width: 70ch;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.text-brand { color: var(--brand); }
.text-muted { color: var(--muted); }

.text-body {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  padding: 17px 32px;
  transition: background-color var(--transition), color var(--transition), transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover { background: var(--brand); }

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
}
.btn-secondary:hover { background: var(--surface-dim); }

.btn-white {
  background: var(--white);
  color: var(--ink);
}
.btn-white:hover { background: var(--surface); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-inline: var(--pad-x);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 36px;
  width: auto;
}

.logo .logo-accent {
  color: var(--brand);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 26px;
}

.nav-link {
  position: relative;
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color var(--transition);
  padding-bottom: 3px;
  text-transform: lowercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }

.header-spacer { margin-left: auto; }

.menu-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--ink);
  border: 0;
  border-radius: var(--radius-full);
  padding: 12px 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding-inline: var(--pad-x);
  padding-block: clamp(40px, 8vw, 80px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(-40px, 30px) scale(1.15); opacity: 0.8; }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 18px;
  text-transform: lowercase;
}

.hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* Hero Illustration */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-illustration {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

/* Floating shapes for hero */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: float 8s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  width: 120px; height: 120px;
  background: var(--brand);
  top: 10%; left: 5%;
  animation-delay: 0s;
}
.floating-shape:nth-child(2) {
  width: 80px; height: 80px;
  background: var(--surface);
  top: 60%; right: 8%;
  animation-delay: -2s;
  border-radius: 30%;
}
.floating-shape:nth-child(3) {
  width: 60px; height: 60px;
  background: var(--brand);
  bottom: 15%; left: 30%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--brand);
  color: var(--white);
}

.services .section-tag {
  color: rgba(255,255,255,0.78);
}

.services .section-tag::before {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: background var(--transition), color var(--transition), transform 0.3s ease;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}

.service-card:hover .service-icon {
  background: var(--brand);
  color: var(--white);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition);
}

.service-card:hover p {
  color: var(--muted);
}

.service-card .card-arrow {
  margin-top: auto;
  font-size: 20px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition), transform var(--transition);
}

.service-card:hover .card-arrow {
  color: var(--brand);
  transform: translateX(4px);
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.why-us-text .text-body {
  margin-bottom: 28px;
}

.why-cta { margin-top: 28px; }

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 26px;
  background: var(--surface);
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition);
}

.feature-card:hover {
  background: var(--surface-dim);
  transform: translateX(4px);
}

.feature-check {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.feature-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0;
  line-height: 1.3;
}

.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   SHOWCASE BANNER
   ============================================================ */
.showcase-banner {
  background: var(--brand);
  color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
  position: relative;
}

.showcase-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%, rgba(255,255,255,0.04) 100%);
  pointer-events: none;
}

.showcase-tag {
  color: rgba(255,255,255,0.78);
  justify-content: center;
}

.showcase-tag::before {
  background: var(--white);
}

.showcase-title {
  max-width: 22ch;
  margin-inline: auto;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.showcase-title .dim { color: rgba(255,255,255,0.55); }

.showcase-desc {
  color: rgba(255,255,255,0.78);
  max-width: 48ch;
  margin: 24px auto 0;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
}

/* Tech icons grid */
.tech-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.tech-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: background var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.tech-pill:hover {
  background: rgba(255,255,255,0.25);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: var(--ink);
  color: var(--white);
}

.process .section-tag {
  color: rgba(255,255,255,0.6);
}

.process .section-tag::before {
  background: var(--brand);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  display: none;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
}

.process-step:hover .step-number {
  border-color: var(--brand);
  background: var(--brand);
}

.process-step h3 {
  color: var(--white);
}

.process-step p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ============================================================
   STATS / EXPERIENCE
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.stat-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--brand);
}

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

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.client-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.client-badge:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
}

.client-badge i {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background: var(--brand);
  border-radius: 3px;
  transform: rotate(45deg);
  transition: background var(--transition);
}

.client-badge:hover i {
  background: var(--white);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--brand);
  color: var(--white);
}

.testimonials .section-tag {
  color: rgba(255,255,255,0.78);
}

.testimonials .section-tag::before {
  background: var(--white);
}

.testimonial-slider {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.testimonial-track-wrapper {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.5, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 280px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.22;
  max-width: 34ch;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.author-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

.author-name {
  font-weight: 600;
  display: block;
}

.author-role {
  display: block;
  font-size: 14.5px;
  color: var(--muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 clamp(20px, 3vw, 30px) clamp(20px, 3vw, 30px);
}

.slider-dots {
  display: flex;
  gap: 10px;
  margin-right: auto;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: var(--surface);
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.dot.active {
  background: var(--brand);
  transform: scale(1.15);
}

.dot:hover:not(.active) {
  background: var(--surface-dim);
}

.slider-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  background: var(--surface);
  transition: background var(--transition), color var(--transition);
}

.slider-btn:hover {
  background: var(--brand);
  color: var(--white);
}

.slider-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form-panel,
.contact-info-panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: lowercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 17px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 2px var(--brand);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b4afaa;
}

.form-group select {
  appearance: none;
  padding-right: 48px;
  cursor: pointer;
}

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

.select-wrapper {
  position: relative;
}

.select-wrapper svg {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  pointer-events: none;
  width: 16px;
  height: 16px;
  stroke: var(--muted);
}

.form-hint {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

/* Contact Info */
.info-table {
  width: 100%;
}

.info-row {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  align-items: start;
  padding-block: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.info-row:last-child { border-bottom: 0; }

.info-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: lowercase;
}

.info-value {
  font-size: 16px;
}

.info-value a {
  transition: color var(--transition);
}

.info-value a:hover {
  color: var(--brand);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: clamp(48px, 7vw, 80px) var(--pad-x) 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 38px;
  max-width: var(--max-w);
  margin-inline: auto;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.footer-brand-name .logo-accent {
  color: var(--brand);
}

.footer-desc {
  margin-top: 16px;
  font-size: 15.5px;
  color: rgba(255,255,255,0.6);
  max-width: 34ch;
  line-height: 1.65;
}

.footer address {
  margin-top: 20px;
  font-style: normal;
  font-size: 15.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
  text-transform: lowercase;
  line-height: 1.4;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  color: rgba(255,255,255,0.82);
  font-size: 15.5px;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--brand-light); }

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-contact li {
  color: rgba(255,255,255,0.82);
  font-size: 15.5px;
}

.footer-contact a {
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--brand-light); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  max-width: var(--max-w);
  margin-inline: auto;
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 85vw);
  height: 100%;
  background: var(--white);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.open .mobile-nav-inner {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.mobile-close-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 0;
  border-radius: 50%;
  font-size: 20px;
  color: var(--ink);
  transition: background var(--transition);
}

.mobile-close-btn:hover { background: var(--surface-dim); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: block;
  padding: 16px 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-link:hover {
  background: var(--surface);
  color: var(--brand);
}

.mobile-nav-cta {
  margin-top: auto;
  padding-top: 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .header .btn-primary { display: none !important; }
  .menu-btn { display: inline-flex; }

  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- Selection / Scrollbar ---------- */
::selection {
  background: var(--brand);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--brand);
}

@media (min-width: 1025px) {
  .process-grid::before {
    display: block;
  }
}
