@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --indigo:       #5046E5;
  --indigo-lt:    #7B73F0;
  --indigo-dk:    #3B32C4;
  --violet:       #8B5CF6;
  --violet-lt:    #A78BFA;
  --cyan:         #06B6D4;
  --emerald:      #059669;
  --amber:        #D97706;
  --rose:         #E11D48;
  --teal:         #0891B2;
  --blue:         #2563EB;

  --bg:           #FFFFFF;
  --bg-soft:      #F7F8FE;
  --bg-section:   #F2F4FB;
  --bg-card:      #FFFFFF;
  --bg-hover:     #FAFAFE;

  --text:         #0F0E1A;
  --text-2:       #3A3754;
  --text-muted:   #6E6C85;
  --text-subtle:  #A0A0B8;

  --border:       #E4E4EF;
  --border-soft:  #EEEEF8;
  --border-brand: rgba(80,70,229,.18);

  --grad:         linear-gradient(135deg, #5046E5 0%, #8B5CF6 100%);
  --grad-vivid:   linear-gradient(135deg, #4338CA 0%, #7C3AED 60%, #5046E5 100%);
  --grad-soft:    linear-gradient(135deg, rgba(80,70,229,.07) 0%, rgba(139,92,246,.05) 100%);
  --grad-text:    linear-gradient(135deg, #5046E5 0%, #8B5CF6 100%);

  --shadow-xs:    0 1px 2px rgba(15,14,26,.04);
  --shadow-sm:    0 1px 3px rgba(15,14,26,.06), 0 1px 2px rgba(15,14,26,.03);
  --shadow-md:    0 4px 16px rgba(15,14,26,.08), 0 1px 4px rgba(15,14,26,.04);
  --shadow-lg:    0 8px 32px rgba(15,14,26,.09), 0 2px 8px rgba(15,14,26,.04);
  --shadow-xl:    0 20px 56px rgba(15,14,26,.10), 0 4px 16px rgba(15,14,26,.05);
  --shadow-brand: 0 4px 20px rgba(80,70,229,.38), 0 1px 4px rgba(80,70,229,.18);
  --shadow-card:  0 1px 1px rgba(15,14,26,.04), 0 2px 8px rgba(15,14,26,.06);

  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  20px;
  --r-2xl: 28px;
  --r-3xl: 36px;

  --t:     .25s cubic-bezier(.4,0,.2,1);
  --t-lg:  .4s  cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

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

img, svg { display: block; max-width: 100%; }

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

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--text);
  text-wrap: balance;
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--indigo);
  background: rgba(80,70,229,.07);
  border: 1px solid rgba(80,70,229,.18);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.chip::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 108px 0; }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 68px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.78;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-lg);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(80,70,229,.48), 0 2px 8px rgba(80,70,229,.25);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-brand);
}

.btn-outline {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.btn-outline:hover {
  border-color: rgba(80,70,229,.3);
  background: var(--bg-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-white {
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-white:hover {
  background: rgba(255,255,255,.28);
  transform: translateY(-1px);
}

.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-ghost-white:hover {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--t);
}

.navbar.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(15,14,26,.05), var(--shadow-xs);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(80,70,229,.35);
  flex-shrink: 0;
  transition: box-shadow var(--t), transform var(--t);
}
.logo:hover .logo-mark {
  box-shadow: 0 4px 24px rgba(80,70,229,.52);
  transform: scale(1.06);
}

.logo-mark svg { color: #fff; }

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .06em;
  color: var(--text);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--indigo);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: var(--r-md);
  transition: var(--t);
}

.nav-links a:hover { color: var(--text); background: var(--bg-section); }
.nav-links a.active { color: var(--indigo); background: rgba(80,70,229,.08); font-weight: 600; }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}

/* ─────────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  padding: 96px 28px 40px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 13px 16px;
  border-radius: var(--r-md);
  transition: var(--t);
}
.mobile-menu a:hover { background: var(--bg-section); color: var(--indigo); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero-orb-1 {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(80,70,229,.09) 0%, transparent 70%);
  top: -180px; right: -120px;
}
.hero-orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(139,92,246,.07) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(6,182,212,.06) 0%, transparent 70%);
  top: 40%; right: 30%;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(80,70,229,.055) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(80,70,229,.06);
  border: 1px solid rgba(80,70,229,.14);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 28px;
}

.hero-eyebrow-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-eyebrow-dot svg { width: 12px; height: 12px; }

.hero-eyebrow span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--indigo);
  letter-spacing: .04em;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.04em;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.78;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 28px;
}
.hero-trust-item + .hero-trust-item {
  padding-left: 28px;
  border-left: 1px solid var(--border);
}
.hero-trust-item:last-child {
  padding-right: 0;
}
.hero-trust-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  flex-shrink: 0;
}
.hero-trust-item strong {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  line-height: 1.1;
}
.hero-trust-item span {
  font-size: .72rem;
  color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-glow {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(80,70,229,.12) 0%, rgba(139,92,246,.08) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Main performance card */
.perf-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 28px;
  width: 320px;
  box-shadow: var(--shadow-xl);
  animation: float1 6s ease-in-out infinite;
}

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

.perf-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.perf-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--grad-soft);
  border: 1px solid var(--border-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
}

.perf-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.2;
}
.perf-subtitle {
  font-size: .72rem;
  color: var(--text-muted);
}

.perf-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--emerald);
  background: rgba(5,150,105,.08);
  border: 1px solid rgba(5,150,105,.18);
  padding: 3px 9px;
  border-radius: 100px;
}
.perf-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.perf-score-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}
.perf-score-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.perf-score-label {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.perf-bars { display: flex; flex-direction: column; gap: 10px; }

.perf-bar-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}
.perf-bar-left { display: flex; flex-direction: column; gap: 4px; }
.perf-bar-name { font-size: .72rem; font-weight: 500; color: var(--text-2); }
.perf-bar-track {
  height: 5px;
  background: var(--bg-section);
  border-radius: 100px;
  overflow: hidden;
}
.perf-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--grad);
  transition: width 1s ease;
}
.perf-bar-val {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
  min-width: 28px;
  text-align: right;
}

.perf-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  font-size: .72rem;
  font-weight: 500;
  color: var(--emerald);
}

/* Floating mini cards */
.hero-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.hero-float-1 {
  top: -20px; right: -30px;
  animation: float2 7s ease-in-out infinite;
}

.hero-float-2 {
  bottom: 10px; left: -40px;
  animation: float3 8s ease-in-out infinite;
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-8px) rotate(-2deg); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50%       { transform: translateY(-7px) rotate(1deg); }
}

.float-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-icon-box {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-icon-indigo { background: rgba(80,70,229,.1);  color: var(--indigo); }
.float-icon-emerald { background: rgba(5,150,105,.1); color: var(--emerald); }
.float-icon-amber   { background: rgba(217,119,6,.1); color: var(--amber); }

.float-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.float-lbl {
  font-size: .68rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Trend badge */
.trend-up {
  font-size: .65rem;
  font-weight: 600;
  color: var(--emerald);
  background: rgba(5,150,105,.08);
  border: 1px solid rgba(5,150,105,.15);
  padding: 2px 6px;
  border-radius: 100px;
  margin-top: 2px;
  display: inline-block;
}

/* ─────────────────────────────────────────────
   SERVICES SECTION
───────────────────────────────────────────── */
.services-section { background: var(--bg-section); }

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

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 30px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transition: var(--t);
  transform-origin: left;
}

.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--border-brand);
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid transparent;
  transition: transform var(--t);
}
.svc-card:hover .svc-icon,
.svc-nav-chip:hover .svc-icon {
  transform: scale(1.1);
}

/* Per-service icon colors */
.icon-indigo  { background: rgba(80,70,229,.08);  border-color: rgba(80,70,229,.15);  color: var(--indigo); }
.icon-blue    { background: rgba(37,99,235,.08);   border-color: rgba(37,99,235,.15);  color: var(--blue); }
.icon-emerald { background: rgba(5,150,105,.08);   border-color: rgba(5,150,105,.15);  color: var(--emerald); }
.icon-amber   { background: rgba(217,119,6,.08);   border-color: rgba(217,119,6,.15);  color: var(--amber); }
.icon-rose    { background: rgba(225,29,72,.08);   border-color: rgba(225,29,72,.15);  color: var(--rose); }
.icon-teal    { background: rgba(8,145,178,.08);   border-color: rgba(8,145,178,.15);  color: var(--teal); }
.icon-violet  { background: rgba(139,92,246,.08);  border-color: rgba(139,92,246,.15); color: var(--violet); }

.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.01rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.svc-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--indigo);
  transition: var(--t);
}
.svc-link svg { transition: var(--t); }
.svc-card:hover .svc-link { gap: 8px; }
.svc-card:hover .svc-link svg { transform: translateX(3px); }

/* ─────────────────────────────────────────────
   STATS
───────────────────────────────────────────── */
.stats-band {
  padding: 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.stats-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: 52px 40px;
  text-align: center;
  position: relative;
}
.stat-cell + .stat-cell::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--border-soft);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   WHY US / FEATURES
───────────────────────────────────────────── */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-left h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.why-left p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 16px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-item {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--t);
}
.why-item:hover {
  border-color: var(--border-brand);
  box-shadow: var(--shadow-sm);
  background: var(--bg-hover);
}

.why-item-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.why-item p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────── */
.process-section { background: var(--bg-soft); }

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

.process-grid::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border-brand) 0, var(--border-brand) 6px, transparent 6px, transparent 14px);
}

.process-step {
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-brand);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────── */
.cta-section {
  background: var(--grad-vivid);
  position: relative;
  overflow: hidden;
  padding: 108px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(255,255,255,.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 100% 100%, rgba(6,182,212,.15) 0%, transparent 50%);
}

.cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner .chip {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
}
.cta-inner .chip::before { background: #fff; }

.cta-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.ph-orb-1 {
  width: 500px; height: 500px;
  background: rgba(80,70,229,.07);
  top: -150px; right: -100px;
}
.ph-orb-2 {
  width: 350px; height: 350px;
  background: rgba(139,92,246,.05);
  bottom: -100px; left: -80px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -.035em;
}
.page-hero p {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 520px;
}

/* ─────────────────────────────────────────────
   PHOTO UTILITIES
───────────────────────────────────────────── */

/* About page – photo hero */
.about-photo-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 480px;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.about-photo-wrap:hover .about-photo {
  transform: scale(1.04);
}
.about-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  min-width: 150px;
}
.about-photo-badge-2 {
  position: absolute;
  top: 24px;
  right: 20px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  min-width: 140px;
}

/* Service page – photo visuals */
.svc-vis-photo {
  padding: 0 !important;
  overflow: hidden;
}
.svc-vis-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.svc-vis-photo:hover .svc-vis-img {
  transform: scale(1.04);
}

/* Studio photo strip – homepage */
.studio-section {
  padding: 0;
  overflow: hidden;
}
.studio-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  height: 420px;
}
.studio-img {
  position: relative;
  overflow: hidden;
}
.studio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.studio-img:hover img { transform: scale(1.06); }
.studio-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,14,26,.65) 0%, transparent 100%);
  padding: 32px 22px 18px;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.studio-divider {
  width: 2px;
  background: rgba(255,255,255,.15);
  z-index: 1;
  position: relative;
}

/* ─────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-story-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -.03em;
}
.about-story-text p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 14px;
}

.about-vis {
  position: relative;
  height: 440px;
}

.about-vis-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
}

.avc-main {
  top: 0; left: 0; right: 40px;
  padding: 24px;
  animation: float1 7s ease-in-out infinite;
}
.avc-stat {
  top: 100px; right: -16px;
  padding: 18px 20px;
  min-width: 170px;
  animation: float2 8s ease-in-out infinite;
}
.avc-tech {
  bottom: 20px; left: 16px; right: 60px;
  padding: 18px 20px;
  animation: float3 9s ease-in-out infinite;
}

.avc-label {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-subtle);
  margin-bottom: 10px;
}

.avc-big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.avc-sub {
  font-size: .75rem;
  color: var(--text-muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  color: var(--text-2);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.mv-card {
  border-radius: var(--r-2xl);
  padding: 40px;
  transition: var(--t);
}
.mv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.mv-card.mission {
  background: linear-gradient(135deg, rgba(80,70,229,.07) 0%, rgba(139,92,246,.04) 100%);
  border: 1px solid rgba(80,70,229,.15);
}
.mv-card.vision {
  background: linear-gradient(135deg, rgba(6,182,212,.06) 0%, rgba(80,70,229,.04) 100%);
  border: 1px solid rgba(6,182,212,.15);
}

.mv-emoji {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.mv-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.mv-card p { font-size: .92rem; color: var(--text-2); line-height: 1.82; }

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

.val-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 30px 28px;
  transition: var(--t);
}
.val-card:hover {
  border-color: var(--border-brand);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.val-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .35;
  line-height: 1;
  margin-bottom: 14px;
}
.val-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.val-card p  { font-size: .83rem; color: var(--text-muted); line-height: 1.7; }

/* ─────────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────────── */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-soft);
}
.svc-detail:first-child { padding-top: 0; }
.svc-detail:last-child  { border-bottom: none; }
.svc-detail.rev { direction: rtl; }
.svc-detail.rev > * { direction: ltr; }

.svc-vis {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.svc-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -.03em;
}
.svc-content p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 12px;
}

.feature-list {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--text-2);
}
.feature-list li .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(80,70,229,.09);
  border: 1px solid rgba(80,70,229,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Tech section */
.tech-section {
  background: var(--bg-section);
  padding: 88px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

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

.tech-col h4 {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 16px;
}

.tech-tags { display: flex; flex-wrap: wrap; gap: 7px; }

.tech-tag {
  font-size: .78rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: var(--t);
}
.tech-tag:hover {
  border-color: var(--border-brand);
  color: var(--indigo);
  background: rgba(80,70,229,.04);
}

/* Quick nav chips on services page */
.svc-nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.svc-nav-chip {
  flex: 1 1 calc(25% - 11px);
  min-width: 200px;
  max-width: calc(25% - 11px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}
.svc-nav-chip:hover {
  border-color: var(--border-brand);
  box-shadow: var(--shadow-sm);
  background: rgba(80,70,229,.02);
}
.svc-nav-chip h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
}
.svc-nav-chip p {
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Contact hero with photo */
.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-hero-photo {
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 320px;
}
.contact-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 36px;
  transition: var(--t);
}
.contact-card:hover {
  border-color: var(--border-brand);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.contact-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: var(--shadow-brand);
}

.contact-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card > p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-card a.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--indigo);
  transition: var(--t);
}
.contact-card a.contact-link:hover { gap: 10px; }

.address-lines { list-style: none; }
.address-lines li {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.85;
}
.address-lines strong { color: var(--text); }

.hours-table {
  width: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  margin-top: 14px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 14px;
  font-size: .83rem;
  border-bottom: 1px solid var(--border-soft);
}
.hours-row:last-child { border-bottom: none; }
.hours-row:nth-child(even) { background: var(--bg-soft); }
.hours-day { color: var(--text-muted); }
.hours-time { font-weight: 500; color: var(--text-2); }

/* ─────────────────────────────────────────────
   LEGAL PAGES
───────────────────────────────────────────── */
.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 152px 28px 100px;
}

.legal-wrap h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -.035em;
}

.legal-meta {
  font-size: .82rem;
  color: var(--text-muted);
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-soft);
}

.legal-wrap h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 10px;
}
.legal-wrap h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-2);
  margin-top: 22px;
  margin-bottom: 6px;
}
.legal-wrap p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 12px;
}
.legal-wrap ul, .legal-wrap ol {
  padding-left: 20px;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.95;
  margin-bottom: 12px;
}
.legal-wrap a { color: var(--indigo); }
.legal-wrap a:hover { text-decoration: underline; }

.info-box {
  background: rgba(80,70,229,.05);
  border: 1px solid rgba(80,70,229,.14);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  margin: 20px 0;
}
.info-box p { color: var(--text-2); margin-bottom: 0; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  opacity: .5;
}

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

.footer-brand p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: var(--t);
}
.footer-col ul li a:hover { color: var(--indigo); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px;
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-contact li svg { color: var(--indigo); flex-shrink: 0; margin-top: 2px; }
.footer-contact li a { color: var(--text-muted); transition: var(--t); }
.footer-contact li a:hover { color: var(--indigo); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: .8rem; color: var(--text-subtle); }

.footer-legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: .8rem;
  color: var(--text-subtle);
  transition: var(--t);
}
.footer-legal a:hover { color: var(--text-muted); }

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
[data-r] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-r].in {
  opacity: 1;
  transform: none;
}
[data-r][data-d="1"] { transition-delay: .08s; }
[data-r][data-d="2"] { transition-delay: .16s; }
[data-r][data-d="3"] { transition-delay: .24s; }
[data-r][data-d="4"] { transition-delay: .32s; }
[data-r][data-d="5"] { transition-delay: .40s; }
[data-r][data-d="6"] { transition-delay: .48s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-visual   { display: none; }
  .hero-trust    { flex-wrap: wrap; }
  .svc-grid      { grid-template-columns: repeat(2, 1fr); }
  .stats-band .container { grid-template-columns: repeat(2, 1fr); }
  .stat-cell + .stat-cell::before { display: none; }
  .stat-cell:nth-child(3)::before { display: none; }
  .why-layout    { grid-template-columns: 1fr; gap: 48px; }
  .process-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .tech-grid     { grid-template-columns: repeat(2, 1fr); }
  .svc-nav-chip  { flex: 1 1 calc(50% - 7px); max-width: calc(50% - 7px); min-width: 180px; }
  .about-story       { grid-template-columns: 1fr; gap: 40px; }
  .about-vis         { display: none; }
  .about-photo-wrap  { height: 320px; }
  .studio-grid       { grid-template-columns: 1fr; height: auto; }
  .studio-img        { height: 280px; }
  .mv-grid       { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .svc-detail    { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail.rev { direction: ltr; }
  .contact-grid        { grid-template-columns: 1fr; }
  .contact-hero-inner  { grid-template-columns: 1fr; }
  .contact-hero-photo  { display: none; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .svc-grid  { grid-template-columns: 1fr; }
  .stats-band .container { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal  { justify-content: center; }
  .tech-grid     { grid-template-columns: 1fr 1fr; }
  .svc-nav-chip  { flex: 1 1 100%; max-width: 100%; }
  .values-grid       { grid-template-columns: 1fr; }
  .cta-actions       { flex-direction: column; align-items: center; }
  .hero-trust        { display: none; }
  .studio-grid       { grid-template-columns: 1fr; }
  .studio-img        { height: 240px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .stats-band .container { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { justify-content: center; }
  .tech-grid { grid-template-columns: 1fr; }
}
