/* ═══════════════════════════════════════════════════════════
   SCALEUPSUPPORT.COM — MAIN STYLESHEET
   Font: Syne (headings) + Outfit (body)
   Theme: Dark Luxury — Midnight Navy / Electric Gold
═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:        #0a0a14;
  --bg2:       #0f0f1e;
  --bg3:       #141428;
  --surface:   rgba(255,255,255,0.04);
  --border:    rgba(255,255,255,0.08);

  --gold:      #f0a500;
  --gold-dim:  rgba(240,165,0,0.15);
  --teal:      #00d4aa;
  --teal-dim:  rgba(0,212,170,0.12);
  --violet:    #7b5ea7;

  --text:      #f0eff5;
  --text-2:    #a8a6b8;
  --text-3:    #5c5a72;

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);

  --font-head: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ─── PARTICLE CANVAS ─────────────────────────────────── */
#particleCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ─── CUSTOM CURSOR ─────────────────────────────────────── */
@media (pointer: fine) {
  body { cursor: none; }
  .cursor-dot {
    position: fixed;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: background 0.2s;
  }
  .cursor-ring {
    position: fixed;
    width: 32px; height: 32px;
    border: 1.5px solid rgba(240,165,0,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
  }
  body:has(a:hover) .cursor-ring,
  body:has(button:hover) .cursor-ring { width: 52px; height: 52px; border-color: var(--gold); }
}

/* ─── UTILITY ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em { font-style: normal; color: var(--gold); }
.section-desc { color: var(--text-2); max-width: 540px; font-size: 1.05rem; }
.section-header { margin-bottom: 64px; }
.text-accent { color: var(--gold); }

/* ─── REVEAL ANIMATIONS ─────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.revealed { opacity: 1 !important; transform: none !important; }
.reveal-up:nth-child(2) { transition-delay: 0.1s; }
.reveal-up:nth-child(3) { transition-delay: 0.2s; }
.reveal-up:nth-child(4) { transition-delay: 0.3s; }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--gold);
  color: #0a0a14;
  font-weight: 700;
  box-shadow: 0 0 40px rgba(240,165,0,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 50px rgba(240,165,0,0.4); }
.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; justify-content: center; }
.btn-arrow { transition: transform 0.25s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
  padding: 0 24px;
}
.nav.scrolled {
  background: rgba(10,10,20,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.logo-mark sup { font-size: 0.7em; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.logo-text em { font-style: normal; color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover { color: var(--text); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold);
  color: #0a0a14 !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.875rem;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(240,165,0,0.35); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 24px 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.mesh-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(240,165,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(0,212,170,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 60% 30%, rgba(123,94,167,0.06) 0%, transparent 60%);
}
.grid-overlay {
  position: absolute;
  inset: 0;
  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: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at center, black 20%, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,212,170,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(0,212,170,0); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-2);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(12px);
  overflow: hidden;
  width: fit-content;
  margin: 0 auto;
}
.proof-item {
  padding: 18px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.proof-item strong {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.proof-item span {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── TICKER ─────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: 14px 0;
  position: relative;
  z-index: 2;
}
.ticker {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  color: #0a0a14;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.ticker-dot { opacity: 0.4; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SERVICES ─────────────────────────────────────────── */
.services {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
  cursor: default;
}
.service-card:hover {
  border-color: rgba(240,165,0,0.4);
  transform: translateY(-4px);
}
.service-card:hover .service-card-glow { opacity: 1; }
.service-card-inner {
  padding: 40px;
  position: relative;
  z-index: 2;
}
.service-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 30%, rgba(240,165,0,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
}
.service-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-desc {
  color: var(--text-2);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.service-features li {
  font-size: 0.875rem;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}
.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 1px;
}
.service-cta {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-cta:hover { opacity: 0.8; }

/* ─── ABOUT ─────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--bg2);
  position: relative;
  z-index: 2;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-stat-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.stat-ring {
  position: relative;
  width: 160px; height: 160px;
}
.stat-ring svg { width: 100%; height: 100%; transform: rotate(0deg); }
.ring-fill { transition: stroke-dashoffset 1.5s var(--ease-out); }
.ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ring-label strong {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}
.ring-label span {
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 500;
}
.about-mini-stats {
  display: flex;
  gap: 32px;
}
.mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mini-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
}
.mini-stat span:last-child {
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-float-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--teal);
  color: #0a0a14;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 8px 40px rgba(0,212,170,0.25);
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about-copy p {
  color: var(--text-2);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.75;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.3s;
}
.pillar:hover { border-color: rgba(240,165,0,0.3); }
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pillar strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.pillar span { font-size: 0.8rem; color: var(--text-2); }

/* ─── PROCESS ─────────────────────────────────────────── */
.process {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  padding: 40px 28px 40px;
  position: relative;
  border-top: 1px solid var(--border);
  transition: border-color 0.3s;
}
.process-step:hover { border-color: var(--gold); }
.process-step:hover .step-num { color: var(--gold); }
.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-3);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.process-step h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}
.step-connector {
  position: absolute;
  top: -1px; right: 0;
  width: 1px;
  height: 40px;
  background: var(--border);
}
.process-step:last-child .step-connector { display: none; }

/* ─── INDUSTRIES ─────────────────────────────────────────── */
.industries {
  padding: 80px 0;
  background: var(--bg2);
  position: relative;
  z-index: 2;
}
.industries .section-label { margin-bottom: 28px; }
.industries-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.industry-tag {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--text-2);
  font-weight: 500;
  transition: all 0.25s;
  cursor: default;
}
.industry-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.testi-card:hover { border-color: rgba(240,165,0,0.3); transform: translateY(-3px); }
.featured-testi {
  background: linear-gradient(135deg, rgba(240,165,0,0.08), rgba(240,165,0,0.02));
  border-color: rgba(240,165,0,0.25);
}
.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-card p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), #c47d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #0a0a14;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.testi-author span { display: block; font-size: 0.78rem; color: var(--text-3); }

/* ─── FAQ ─────────────────────────────────────────── */
.faq {
  padding: 120px 0;
  background: var(--bg2);
  position: relative;
  z-index: 2;
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 20px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  line-height: 1;
  width: 24px;
  text-align: center;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > * { overflow: hidden; }
.faq-a p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-bottom: 24px;
}

/* ─── CTA ─────────────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.cta-bg { position: absolute; inset: 0; }
.cta-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 50%, rgba(240,165,0,0.07), transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 50%, rgba(0,212,170,0.05), transparent 60%);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.cta-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-copy h2 em { font-style: normal; color: var(--gold); }
.cta-copy p { color: var(--text-2); margin-bottom: 0; font-size: 1rem; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,165,0,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-note {
  font-size: 0.78rem;
  color: var(--text-3);
  text-align: center;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 40px;
  border: 1px solid rgba(0,212,170,0.3);
  border-radius: var(--radius-lg);
  background: rgba(0,212,170,0.05);
  text-align: center;
}
.success-icon {
  width: 56px; height: 56px;
  background: var(--teal);
  color: #0a0a14;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
}
.form-success h3 { font-family: var(--font-head); font-size: 1.4rem; }
.form-success p { color: var(--text-2); font-size: 0.9rem; }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding: 80px 0 60px;
}
.footer-brand p {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-2);
  font-weight: 600;
  transition: all 0.25s;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-links-group h5 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-group li {
  font-size: 0.875rem;
  color: var(--text-2);
}
.footer-links-group a {
  transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-3);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a { color: var(--text-3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 480px; }
  .cta-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 72px 0 0; background: rgba(10,10,20,0.97); backdrop-filter: blur(20px); align-items: center; justify-content: center; gap: 32px; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-hamburger { display: flex; }

  .hero { padding: 120px 24px 80px; }
  .hero-proof { flex-direction: column; border-radius: var(--radius); width: 100%; }
  .proof-divider { width: 100%; height: 1px; }
  .proof-item { padding: 16px; }

  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-inner { padding: 30px 24px; }

  .about { padding: 80px 0; }
  .about-float-badge { top: -12px; right: -8px; font-size: 0.7rem; }

  .process-steps { grid-template-columns: 1fr 1fr; }

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

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

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

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .about-mini-stats { gap: 16px; }
  .about-pillars { grid-template-columns: 1fr; }
}

/* ─── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }

/* ─── SELECTION ─────────────────────────────────────────── */
::selection { background: var(--gold); color: #0a0a14; }
