@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Syne:wght@400;500;600;700;800&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ─── Variables ─── */
:root {
  --bg-deep:     #020C1A;
  --bg-dark:     #071626;
  --bg-mid:      #0C2240;
  --surface:     rgba(12, 34, 64, 0.55);
  --surface-2:   rgba(18, 48, 88, 0.7);
  --border:      rgba(0, 180, 230, 0.12);
  --border-2:    rgba(0, 180, 230, 0.25);

  --cyan:        #00C8FF;
  --cyan-dim:    rgba(0, 200, 255, 0.15);
  --cyan-glow:   rgba(0, 200, 255, 0.35);
  --gold:        #C9A84C;
  --gold-dim:    rgba(201, 168, 76, 0.2);

  --text:        #E4F0FF;
  --text-2:      #9AB8D4;
  --text-3:      #4A6F8F;

  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Syne', sans-serif;
  --ff-mono:     'Space Mono', monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Dot-grid background texture ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0,200,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.1; font-weight: 600; }
h1 { font-size: clamp(3rem, 7vw, 6.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
p  { font-size: 1.05rem; color: var(--text-2); }

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 30%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #F0D080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Layout ─── */
.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

section { position: relative; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn:hover::after { transform: translateX(100%); }

.btn-primary {
  background: var(--cyan);
  color: var(--bg-deep);
}
.btn-primary:hover {
  background: #22D8FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,200,255,0.35);
}

.btn-ghost {
  border: 1px solid var(--border-2);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  background: var(--cyan-dim);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-deep);
}
.btn-gold:hover {
  background: #DDB855;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}

.btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  padding: 1rem 0;
  background: rgba(2, 12, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cyan);
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(0,200,255,0.25);
}

.logo-text {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--text);
  line-height: 1.2;
}
.logo-text span {
  display: block;
  font-size: 0.6rem;
  color: var(--text-3);
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-2);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { padding: 0.6rem 1.4rem; font-size: 0.82rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

/* ─── Mobile Nav ─── */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(2, 12, 26, 0.98);
  backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--cyan); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero .eyebrow { margin-bottom: 2rem; }

.hero h1 {
  margin-bottom: 1.75rem;
  font-weight: 300;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
}
.hero h1 strong {
  font-weight: 700;
  display: block;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 2.75rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-metrics {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-metric {
  border-left: 1px solid var(--border-2);
  padding-left: 1.25rem;
}
.hero-metric-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero-metric-num .accent { color: var(--cyan); }
.hero-metric-label {
  font-size: 0.75rem;
  font-family: var(--ff-mono);
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
}

/* Decorative right-side hero element */
.hero-visual {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  z-index: 0;
  pointer-events: none;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: rotate linear infinite;
}
.hero-ring:nth-child(1) {
  inset: 0;
  border-color: rgba(0,200,255,0.1);
  animation-duration: 40s;
}
.hero-ring:nth-child(2) {
  inset: 40px;
  border-color: rgba(0,200,255,0.08);
  animation-duration: 28s;
  animation-direction: reverse;
}
.hero-ring:nth-child(3) {
  inset: 80px;
  border-color: rgba(201,168,76,0.12);
  animation-duration: 18s;
}
.hero-ring:nth-child(1)::after,
.hero-ring:nth-child(2)::after,
.hero-ring:nth-child(3)::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 50%;
  right: -3px;
  transform: translateY(-50%);
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.hero-ring:nth-child(2)::after { background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.hero-ring:nth-child(3)::after { background: rgba(0,200,255,0.5); }
.hero-core {
  position: absolute;
  inset: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,0.08) 0%, transparent 70%);
  border: 1px solid rgba(0,200,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
}

/* ─── Section base ─── */
.section-header {
  margin-bottom: 4rem;
}
.section-header .eyebrow { margin-bottom: 1rem; }
.section-header p { margin-top: 1rem; max-width: 540px; }

/* ─── Trust Bar ─── */
.trust-bar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--text-3);
  text-transform: uppercase;
  flex-shrink: 0;
  padding-right: 2rem;
  border-right: 1px solid var(--border);
}
.trust-items {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-3);
  text-transform: uppercase;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.5;
}
.trust-item:hover { color: var(--text-2); }

/* ─── Services ─── */
.services { padding: 7rem 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg-dark);
  padding: 2.75rem 2.25rem;
  position: relative;
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--cyan-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { opacity: 1; }
.service-card:hover { background: var(--bg-mid); transform: translateY(-4px); }

.service-num {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-3);
  margin-bottom: 1.75rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--cyan);
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.75rem;
  font-size: 0.8rem;
  font-family: var(--ff-mono);
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
  transition: gap 0.2s;
  position: relative;
  z-index: 1;
}
.service-link:hover { gap: 0.7rem; }
.service-link svg { width: 14px; height: 14px; }

/* ─── Results / Stats ─── */
.results {
  padding: 7rem 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.results-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.results-content h2 { margin-bottom: 1.5rem; }
.results-content p  { margin-bottom: 2rem; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.stat-cell {
  background: var(--bg-deep);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.stat-cell::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.stat-cell:hover::before { opacity: 0.5; }

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.stat-number .accent { color: var(--cyan); }
.stat-label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ─── How It Works ─── */
.how { padding: 7rem 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan) 0%, rgba(0,200,255,0.1) 100%);
}

.step {
  padding: 0 1.5rem 0 0;
  padding-top: 0;
}
.step-num-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.step-num {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border-2);
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.step:hover .step-num {
  background: var(--cyan);
  color: var(--bg-deep);
  border-color: var(--cyan);
}

.step h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.step p  { font-size: 0.9rem; }

/* ─── Testimonials ─── */
.testimonials { padding: 7rem 0; background: var(--bg-dark); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.testi-card {
  background: var(--bg-deep);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
}
.testi-card:hover { background: var(--bg-mid); }

.testi-quote {
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.4;
}

.testi-text {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-mid);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cyan);
}
.testi-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.testi-role {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-top: 0.15rem;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.testi-stars span {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,200,255,0.06) 0%, transparent 50%),
    linear-gradient(225deg, rgba(201,168,76,0.06) 0%, transparent 50%);
}
.cta-banner-inner {
  border: 1px solid var(--border-2);
  padding: 4rem;
  position: relative;
  background: var(--surface);
  backdrop-filter: blur(20px);
  text-align: center;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p  { margin-bottom: 2.5rem; max-width: 500px; margin-inline: auto auto; }
.cta-banner p + * { margin-top: 2.5rem; }
.cta-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,200,255,0.07) 0%, transparent 70%);
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1rem; }
.page-hero p  { font-size: 1.15rem; max-width: 560px; }
.page-hero .eyebrow { margin-bottom: 1.5rem; }

.page-hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}

/* ─── Services Page ─── */
.services-detail { padding: 6rem 0; }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-block:first-child { padding-top: 0; }
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-num {
  font-family: var(--ff-display);
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(0,200,255,0.06);
  margin-bottom: -1rem;
}

.service-block h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 1.25rem;
}
.service-block p { margin-bottom: 1.25rem; }

.feature-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-2);
}
.feature-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.service-block-visual {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-block-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,200,255,0.08) 0%, transparent 70%);
}

.visual-icon {
  width: 80px;
  height: 80px;
  color: rgba(0,200,255,0.25);
  position: relative;
  z-index: 1;
}

/* ─── About Page ─── */
.about-intro { padding: 6rem 0; }
.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.about-intro h2 { margin-bottom: 1.25rem; }
.about-intro p { margin-bottom: 1rem; }

.values { padding: 5rem 0; background: var(--bg-dark); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.value-card {
  background: var(--bg-deep);
  padding: 2.25rem 2rem;
  transition: background 0.3s;
}
.value-card:hover { background: var(--bg-mid); }
.value-num {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.92rem; }

/* ─── Contact Page ─── */
.contact-section { padding: 6rem 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}
.contact-detail-icon svg { width: 16px; height: 16px; }
.contact-detail-label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.2rem;
}
.contact-detail-value {
  font-size: 0.92rem;
  color: var(--text-2);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,200,255,0.08);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }
.form-field textarea { min-height: 140px; resize: vertical; }

.form-success {
  display: none;
  padding: 1.5rem;
  border: 1px solid rgba(0,200,255,0.3);
  background: rgba(0,200,255,0.05);
  color: var(--cyan);
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-align: center;
}

/* ─── Footer ─── */
footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-dim);
}
.footer-social svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--text-3);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-2); }

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Animations ─── */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

@keyframes scan {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services-grid      { grid-template-columns: 1fr; }
  .results-inner      { grid-template-columns: 1fr; }
  .steps              { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .steps::before      { display: none; }
  .testi-grid         { grid-template-columns: 1fr; }
  .footer-main        { grid-template-columns: 1fr 1fr; }
  .service-block      { grid-template-columns: 1fr; gap: 2rem; }
  .service-block.reverse { direction: ltr; }
  .about-intro-inner  { grid-template-columns: 1fr; }
  .contact-inner      { grid-template-columns: 1fr; }
  .hero-visual        { display: none; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle         { display: flex; }
  .nav-mobile         { display: flex; }
  .steps              { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: 1fr 1fr; }
  .values-grid        { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .footer-main        { grid-template-columns: 1fr; }
  .cta-banner-inner   { padding: 2.5rem 1.5rem; }
  .hero               { padding: 7rem 0 4rem; }
  .hero-metrics       { gap: 1.5rem; }
}
