/* =========================================================================
   LionDigitalTech — Design System
   Style: Cinematic Dark + premium gold  •  Pattern: Enterprise Gateway
   Brand: lion gold #E8B53A · digital blue #2D9CDB · near-black navy #05070D
   ========================================================================= */

/* ----- Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ----- Tokens ----- */
:root {
  /* Surfaces */
  --bg-900: #05070d;
  --bg-850: #070a12;
  --bg-800: #0a0e18;
  --bg-700: #0e1320;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.055);
  --surface-3: rgba(255, 255, 255, 0.08);

  /* Brand */
  --gold-1: #b8860b;
  --gold-2: #e8b53a;
  --gold-3: #f7d98a;
  --blue-1: #1e88e5;
  --blue-2: #2d9cdb;
  --blue-3: #6fc3ff;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #b8860b 0%, #e8b53a 48%, #f7d98a 100%);
  --grad-gold-soft: linear-gradient(135deg, #e8b53a 0%, #f7d98a 100%);
  --grad-blue: linear-gradient(135deg, #1e88e5 0%, #6fc3ff 100%);
  --grad-brand: linear-gradient(110deg, #f7d98a 0%, #e8b53a 35%, #6fc3ff 100%);

  /* Text */
  --text: #eef1f7;
  --text-soft: #c4ccdb;
  --text-muted: #97a1b5;
  --text-dim: #69728699;

  /* Lines & glow */
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-gold: rgba(232, 181, 58, 0.4);
  --glow-gold: 0 0 40px rgba(232, 181, 58, 0.28);
  --glow-blue: 0 0 40px rgba(45, 156, 219, 0.28);

  /* Radii & shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-1: 0 8px 30px rgba(0, 0, 0, 0.35);
  --shadow-2: 0 24px 60px rgba(0, 0, 0, 0.5);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.18s;
  --t-mid: 0.32s;

  /* Layout */
  --maxw: 1200px;
  --nav-h: 76px;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg-900);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

::selection { background: rgba(232, 181, 58, 0.3); color: #fff; }

/* Ambient page background: aurora blobs + circuit grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(closest-side at 78% 12%, rgba(232, 181, 58, 0.16), transparent 70%),
    radial-gradient(closest-side at 12% 30%, rgba(45, 156, 219, 0.16), transparent 70%),
    radial-gradient(closest-side at 65% 88%, rgba(45, 156, 219, 0.1), transparent 70%),
    var(--bg-900);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 30%, transparent 80%);
}

/* =========================================================================
   Layout helpers
   ========================================================================= */
.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(72px, 11vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(54px, 8vw, 90px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-3);
  padding: 7px 15px; border-radius: 100px;
  background: rgba(232, 181, 58, 0.08);
  border: 1px solid var(--border-gold);
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 10px var(--gold-2); }

.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--text-muted); font-size: 1.08rem; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: #fff; }
h2 { font-size: clamp(2rem, 4.3vw, 3.1rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }

.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.text-gold { color: var(--gold-2); }
.text-blue { color: var(--blue-3); }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.96rem;
  padding: 14px 26px; border-radius: 100px;
  min-height: 48px;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-mid) var(--ease), background var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:focus-visible { outline: 2px solid var(--gold-3); outline-offset: 3px; }

.btn--primary {
  background: var(--grad-gold); color: #1a1305;
  box-shadow: 0 10px 30px rgba(232, 181, 58, 0.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(232, 181, 58, 0.42); }

.btn--ghost {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border-strong); backdrop-filter: blur(8px);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--border-gold); background: var(--surface-2); }

.btn--blue {
  background: var(--grad-blue); color: #04121f;
  box-shadow: 0 10px 30px rgba(45, 156, 219, 0.28);
}
.btn--blue:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(45, 156, 219, 0.42); }

.btn--lg { padding: 17px 34px; font-size: 1.02rem; min-height: 56px; }
.btn--block { width: 100%; }

/* =========================================================================
   Navbar
   ========================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 10, 18, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.nav__inner { width: min(100% - 40px, 1280px); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 3px 10px rgba(232, 181, 58, 0.4)); }
.brand__word { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; letter-spacing: -0.01em; line-height: 1; }
.brand__word .l { color: var(--gold-2); }
.brand__word .d { color: var(--blue-3); }
.brand__word .t { color: #fff; }
.brand__tag { display: block; font-family: var(--font-body); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); margin-top: 3px; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu a:not(.btn) {
  font-size: 0.94rem; font-weight: 500; color: var(--text-soft);
  padding: 9px 14px; border-radius: 100px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__menu a:not(.btn):hover { color: #fff; background: var(--surface); }
.nav__menu-cta { display: none; }
.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border-strong); background: var(--surface); align-items: center; justify-content: center; }
.nav__toggle span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; position: relative; transition: transform var(--t-mid) var(--ease), opacity var(--t-fast); }
.nav__toggle span::before, .nav__toggle span::after { content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--t-mid) var(--ease); }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav.open .nav__toggle span { background: transparent; }
.nav.open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.open .nav__toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 96px)); padding-bottom: clamp(60px, 9vw, 110px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(32px, 5vw, 64px); align-items: center; }

.hero__badge { margin-bottom: 26px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; margin-bottom: 22px; }
.hero h1 .line { display: block; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--text-soft); max-width: 560px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 14px 38px; }
.hero__stat .num { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: #fff; line-height: 1; }
.hero__stat .num span { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__stat .lbl { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; }

/* Hero visual — floating glass dashboard */
.hero__visual { position: relative; }
.hero__panel {
  position: relative; border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(20, 26, 40, 0.85), rgba(10, 14, 24, 0.85));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-2);
  padding: 22px;
  backdrop-filter: blur(14px);
  overflow: hidden;
  animation: floaty 7s ease-in-out infinite;
}
.hero__panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(closest-side at 80% 0%, rgba(232, 181, 58, 0.18), transparent); pointer-events: none; }
.panel__bar { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; }
.panel__bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-3); }
.panel__bar i:first-child { background: var(--gold-2); }
.panel__bar span { margin-left: auto; font-size: 0.72rem; color: var(--text-muted); font-family: var(--font-display); letter-spacing: 0.06em; }

.panel__kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.kpi { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 13px 14px; }
.kpi .t { font-size: 0.72rem; color: var(--text-muted); }
.kpi .v { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: #fff; margin-top: 3px; }
.kpi .v.gold { color: var(--gold-2); }
.kpi .v.blue { color: var(--blue-3); }
.kpi .trend { font-size: 0.7rem; color: #5fd08a; margin-top: 2px; }

.panel__chart { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 14px; }
.panel__chart .t { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 12px; display: flex; justify-content: space-between; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 84px; }
.bars i { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(to top, rgba(45,156,219,0.25), var(--blue-2)); transform-origin: bottom; animation: growBar 1.1s var(--ease) both; }
.bars i:nth-child(even) { background: linear-gradient(to top, rgba(232,181,58,0.25), var(--gold-2)); }

.hero__chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: rgba(10, 14, 24, 0.9); border: 1px solid var(--border-strong);
  padding: 11px 15px; border-radius: 14px; box-shadow: var(--shadow-1);
  backdrop-filter: blur(10px);
  font-size: 0.84rem; font-weight: 500;
}
.hero__chip .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.hero__chip .ic svg { width: 16px; height: 16px; }
.hero__chip--ai { top: 8%; left: -26px; animation: floaty 6s ease-in-out infinite; }
.hero__chip--ai .ic { background: rgba(232,181,58,0.16); color: var(--gold-2); }
.hero__chip--lead { bottom: 12%; right: -22px; animation: floaty 6.5s ease-in-out 0.5s infinite; }
.hero__chip--lead .ic { background: rgba(45,156,219,0.16); color: var(--blue-3); }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes growBar { from { transform: scaleY(0); } }

/* Marquee trust strip */
.marquee { border-block: 1px solid var(--border); background: rgba(7,10,18,0.5); overflow: hidden; padding: 22px 0; }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: scrollX 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; gap: 11px; color: var(--text-muted); font-family: var(--font-display); font-weight: 600; font-size: 1rem; white-space: nowrap; }
.marquee__item svg { width: 20px; height: 20px; color: var(--gold-2); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* =========================================================================
   Cards / shared
   ========================================================================= */
.card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px;
  transition: transform var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease), background var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--border-gold); background: var(--surface-2); box-shadow: var(--shadow-2); }

.icon-badge {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(150deg, rgba(232,181,58,0.18), rgba(45,156,219,0.12));
  border: 1px solid var(--border-gold);
  color: var(--gold-2);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.icon-badge svg { width: 28px; height: 28px; }
.card:hover .icon-badge { transform: scale(1.06) rotate(-3deg); box-shadow: var(--glow-gold); }

/* =========================================================================
   Services (bento grid)
   ========================================================================= */
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service h3 { margin-bottom: 10px; }
.service p { color: var(--text-muted); margin-bottom: 18px; font-size: 0.97rem; }
.service__list { display: flex; flex-wrap: wrap; gap: 8px; }
.service__list li { font-size: 0.82rem; color: var(--text-soft); padding: 5px 11px; border-radius: 100px; background: var(--surface); border: 1px solid var(--border); }
.badge-future { position: absolute; top: 22px; right: 22px; font-family: var(--font-display); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-3); padding: 4px 10px; border-radius: 100px; background: rgba(45,156,219,0.12); border: 1px solid rgba(45,156,219,0.35); }

/* =========================================================================
   About / split
   ========================================================================= */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.about p { color: var(--text-soft); margin-bottom: 18px; }
.about__pillars { display: grid; gap: 16px; margin-top: 28px; }
.pillar { display: flex; gap: 16px; padding: 20px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--border); }
.pillar .icon-badge { width: 46px; height: 46px; margin: 0; border-radius: 13px; flex: none; }
.pillar .icon-badge svg { width: 22px; height: 22px; }
.pillar h4 { font-size: 1.02rem; color: #fff; margin-bottom: 5px; }
.pillar p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

.about__visual { position: relative; display: grid; gap: 16px; }
.stat-card { background: linear-gradient(160deg, rgba(20,26,40,0.7), rgba(10,14,24,0.7)); border: 1px solid var(--border-strong); border-radius: var(--r-lg); padding: 26px; }
.stat-card .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3rem); line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card .lbl { color: var(--text-muted); margin-top: 8px; font-size: 0.95rem; }
.about__visual .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =========================================================================
   Why choose us
   ========================================================================= */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { display: flex; gap: 16px; align-items: flex-start; }
.why-card .check { width: 42px; height: 42px; border-radius: 12px; flex: none; display: grid; place-items: center; background: linear-gradient(150deg, rgba(232,181,58,0.2), rgba(232,181,58,0.06)); border: 1px solid var(--border-gold); color: var(--gold-2); }
.why-card .check svg { width: 22px; height: 22px; }
.why-card h4 { font-size: 1.05rem; color: #fff; margin-bottom: 5px; }
.why-card p { color: var(--text-muted); font-size: 0.92rem; }

/* =========================================================================
   Process
   ========================================================================= */
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.85; }
.step h4 { font-size: 1.12rem; margin: 14px 0 8px; }
.step p { color: var(--text-muted); font-size: 0.93rem; }
.step::after { content: ''; position: absolute; top: 24px; left: 62px; right: -20px; height: 1px; background: linear-gradient(90deg, var(--border-gold), transparent); }
.step:last-child::after { display: none; }

/* =========================================================================
   Pricing
   ========================================================================= */
.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.price {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 24px;
  transition: transform var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.price:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-2); }
.price--featured {
  border-color: var(--border-gold);
  background: linear-gradient(170deg, rgba(232,181,58,0.1), rgba(10,14,24,0.4));
  box-shadow: var(--glow-gold);
}
.price--featured:hover { transform: translateY(-10px); }
.price__tag { position: absolute; }
.price__pop { display: inline-block; align-self: flex-start; font-family: var(--font-display); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #1a1305; background: var(--grad-gold); padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }
.price__name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: #fff; }
.price__for { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; min-height: 2.4em; }
.price__cost { margin: 20px 0 6px; display: flex; align-items: baseline; gap: 6px; }
.price__cost .amt { font-family: var(--font-display); font-weight: 800; font-size: 2.5rem; color: #fff; line-height: 1; }
.price__cost .per { color: var(--text-muted); font-size: 0.9rem; }
.price__setup { font-size: 0.82rem; color: var(--gold-3); margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.price__setup b { color: #fff; font-weight: 600; }
.price__list { display: grid; gap: 11px; margin-bottom: 26px; flex: 1; }
.price__list li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--text-soft); }
.price__list li svg { width: 17px; height: 17px; color: var(--gold-2); flex: none; margin-top: 3px; }
.price--featured .price__list li svg { color: var(--gold-3); }

/* =========================================================================
   CTA band
   ========================================================================= */
.cta-band { position: relative; }
.cta-band__inner {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background: linear-gradient(120deg, rgba(232,181,58,0.14), rgba(45,156,219,0.14));
  border: 1px solid var(--border-gold);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
}
.cta-band__inner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(closest-side at 20% 0%, rgba(232,181,58,0.25), transparent 60%), radial-gradient(closest-side at 90% 120%, rgba(45,156,219,0.25), transparent 60%); pointer-events: none; }
.cta-band h2 { margin-bottom: 16px; position: relative; }
.cta-band p { color: var(--text-soft); max-width: 580px; margin: 0 auto 30px; position: relative; font-size: 1.08rem; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* =========================================================================
   Contact
   ========================================================================= */
.contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.contact__info h2 { margin-bottom: 16px; }
.contact__info > p { color: var(--text-muted); margin-bottom: 30px; }
.contact__methods { display: grid; gap: 14px; margin-bottom: 30px; }
.method { display: flex; gap: 14px; align-items: center; padding: 16px 18px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--border); transition: border-color var(--t-fast), background var(--t-fast); }
.method:hover { border-color: var(--border-gold); background: var(--surface-2); }
.method .icon-badge { width: 44px; height: 44px; margin: 0; border-radius: 12px; flex: none; }
.method .icon-badge svg { width: 21px; height: 21px; }
.method .k { font-size: 0.78rem; color: var(--text-muted); }
.method .v { font-weight: 600; color: #fff; font-size: 0.98rem; }
.contact__benefits { display: grid; gap: 10px; }
.contact__benefits li { display: flex; gap: 10px; color: var(--text-soft); font-size: 0.92rem; }
.contact__benefits svg { width: 18px; height: 18px; color: var(--gold-2); flex: none; margin-top: 3px; }

.form { background: linear-gradient(160deg, rgba(20,26,40,0.6), rgba(10,14,24,0.6)); border: 1px solid var(--border-strong); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow-2); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-soft); margin-bottom: 8px; }
.field label .req { color: var(--gold-2); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 0.95rem; color: #fff;
  background: rgba(0, 0, 0, 0.25); border: 1px solid var(--border-strong); border-radius: var(--r-sm);
  padding: 13px 15px; min-height: 48px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2397a1b5' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-2); box-shadow: 0 0 0 3px rgba(232,181,58,0.18); background: rgba(0,0,0,0.35); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #e5685f; }
.field .err { display: none; color: #f0938b; font-size: 0.78rem; margin-top: 6px; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e5685f; }
.form__note { font-size: 0.8rem; color: var(--text-muted); margin-top: 14px; text-align: center; }
.form__success { display: none; text-align: center; padding: 20px 0; }
.form__success.show { display: block; animation: fadeUp 0.5s var(--ease) both; }
.form__success .ok { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; background: rgba(95,208,138,0.14); border: 1px solid rgba(95,208,138,0.4); color: #5fd08a; }
.form__success .ok svg { width: 32px; height: 32px; }
.form__success h3 { margin-bottom: 8px; }
.form__success p { color: var(--text-muted); }

/* =========================================================================
   Footer
   ========================================================================= */
.footer { border-top: 1px solid var(--border); background: rgba(5,7,13,0.6); padding-top: clamp(56px, 8vw, 90px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer__brand p { color: var(--text-muted); font-size: 0.92rem; margin: 18px 0 22px; max-width: 320px; }
.footer__tag { font-family: var(--font-display); font-style: italic; color: var(--gold-3); font-size: 0.95rem; }
.footer__col h5 { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { color: var(--text-soft); font-size: 0.92rem; transition: color var(--t-fast); }
.footer__col a:hover { color: var(--gold-2); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); color: var(--text-soft); transition: all var(--t-fast); }
.footer__social a:hover { color: var(--gold-2); border-color: var(--border-gold); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom { border-top: 1px solid var(--border); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__bottom p { color: var(--text-muted); font-size: 0.86rem; }
.footer__bottom .links { display: flex; gap: 22px; }
.footer__bottom a { color: var(--text-muted); font-size: 0.86rem; }
.footer__bottom a:hover { color: var(--gold-2); }

/* =========================================================================
   Scroll progress + reveal
   ========================================================================= */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: var(--grad-gold); box-shadow: 0 0 12px rgba(232,181,58,0.6); transition: width 0.1s linear; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } }

/* Toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px); z-index: 300; background: rgba(10,14,24,0.95); border: 1px solid var(--border-gold); color: #fff; padding: 14px 20px; border-radius: 100px; box-shadow: var(--shadow-2); display: flex; align-items: center; gap: 10px; font-size: 0.92rem; transition: transform var(--t-mid) var(--ease); }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: var(--gold-2); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 480px; margin: 8px auto 0; }
  .hero__chip--ai { left: 0; }
  .hero__chip--lead { right: 0; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .step::after { display: none; }
}

@media (max-width: 720px) {
  .nav__cta .btn { display: none; }
  .brand__tag { display: none; }
  .nav__menu-cta { display: flex; }
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: rgba(7,10,18,0.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 18px 20px 26px;
    transform: translateY(-120%); transition: transform var(--t-mid) var(--ease);
    display: flex;
  }
  .nav.open .nav__menu { transform: translateY(0); }
  .nav__menu a { padding: 14px 16px; font-size: 1rem; border-radius: 12px; }
  .nav__menu .btn { margin-top: 10px; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid, .process__grid, .pricing__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .about__visual .row { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 14px 26px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .hero__chip { display: none; }
  .about__visual .row { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__panel, .hero__chip, .marquee__track { animation: none; }
  .cursor-ring { display: none !important; }
}

/* =========================================================================
   Featured Work gallery (browser frames)
   ========================================================================= */
.work__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.work-card { display: flex; flex-direction: column; }
.browser {
  position: relative; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border-strong); background: #0c1018;
  box-shadow: var(--shadow-2);
  transition: transform 0.25s var(--ease), border-color var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
  will-change: transform;
}
.work-card:hover .browser { border-color: var(--border-gold); box-shadow: 0 30px 70px rgba(0,0,0,0.55), var(--glow-gold); }
.browser__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--border); }
.browser__bar i { width: 11px; height: 11px; border-radius: 50%; background: #33384a; }
.browser__bar i:first-child { background: #ff5f57; }
.browser__bar i:nth-child(2) { background: #febc2e; }
.browser__bar i:nth-child(3) { background: #28c840; }
.browser__url { margin-left: 10px; flex: 1; font-size: 12px; color: var(--text-muted); background: rgba(0,0,0,0.3); border-radius: 100px; padding: 5px 14px; text-align: center; }
.browser__shot { position: relative; aspect-ratio: 1440 / 900; overflow: hidden; }
.browser__shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s var(--ease); }
.work-card:hover .browser__shot img { transform: scale(1.05); }
.work-card__overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to top, rgba(5,7,13,0.88), rgba(5,7,13,0.25));
  opacity: 0; transition: opacity var(--t-mid) var(--ease);
}
.work-card:hover .work-card__overlay, .work-card__overlay:focus-visible { opacity: 1; }
.work-card__overlay .view {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 100px; background: var(--grad-gold); color: #1a1305;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  transform: translateY(10px); transition: transform var(--t-mid) var(--ease);
  box-shadow: 0 10px 30px rgba(232,181,58,0.4);
}
.work-card:hover .work-card__overlay .view { transform: none; }
.work-card__overlay .view svg { width: 17px; height: 17px; }
.work-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 18px; }
.work-card__meta h3 { font-size: 1.18rem; }
.work-card__meta p { font-size: 0.86rem; color: var(--text-muted); margin-top: 2px; }
.work-card__tags { display: flex; gap: 7px; flex-wrap: wrap; justify-content: flex-end; }
.work-card__tags span { font-size: 0.72rem; color: var(--text-soft); padding: 4px 10px; border-radius: 100px; background: var(--surface); border: 1px solid var(--border); white-space: nowrap; }

/* =========================================================================
   Interactive flair — custom cursor ring
   ========================================================================= */
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid rgba(232,181,58,0.55); pointer-events: none; z-index: 9999;
  margin: -17px 0 0 -17px; will-change: transform; opacity: 0;
  transition: width 0.25s var(--ease), height 0.25s var(--ease), margin 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), opacity 0.3s var(--ease);
}
.cursor-ring.hover { width: 56px; height: 56px; margin: -28px 0 0 -28px; background: rgba(232,181,58,0.08); border-color: rgba(232,181,58,0.85); }

.tilt { transition: transform 0.3s var(--ease); }

/* Section responsive for new blocks */
@media (max-width: 880px) {
  .work__grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 720px) {
  .work-card__meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .work-card__tags { justify-content: flex-start; }
  .cursor-ring { display: none; }
}
