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

:root {
  --bg: #0a0c10;
  --surface: #111418;
  --border: #1e2530;
  --accent: #e8f04a;
  --accent2: #3dffa0;
  --text: #dde3ec;
  --muted: #8a97a8;
  --heading: #f0f4ff;
  --max: 1100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(10, 12, 16, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--heading);
  text-decoration: none;
}

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

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--heading); }

.nav-cta {
  background: var(--accent);
  color: #0a0c10 !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700 !important;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(232,240,74,0.08) 0%, transparent 72%);
  top: 8%;
  right: -100px;
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}

h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 610px;
  margin-bottom: 2rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.6s 0.35s forwards;
}

.hero-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.45s forwards;
}

.hero-points li {
  color: var(--text);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1rem;
}

.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s 0.55s forwards;
}

.hero-outcome {
  font-weight: 500;
  color: #e5e7eb;
  margin-bottom: 16px;
}

.btn-primary,
.btn-ghost {
  display: inline-block;
  text-decoration: none;
  padding: 0.82rem 1.5rem;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0a0c10;
  font-weight: 700;
}

.highlight {
  color: var(--accent);
  font-weight: 800;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
}

.btn-ghost:hover {
  border-color: var(--muted);
  color: var(--heading);
}

.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.35rem 2.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  background: var(--surface);
}

.trust-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.trust-item {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text);
  letter-spacing: 0.03em;
}

.trust-dot { color: var(--border); }

section,
.section-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 2.5rem;
}

.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--heading);
  margin-bottom: 1.15rem;
}

.section-intro {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 3rem;
  font-weight: 300;
}

#services,
#fit,
#why,
#approach,
#contact {
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  align-items: stretch;
}

.service-card {
  background: var(--surface);
  padding: 2rem;
  transition: background 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover { background: #151a22; }

.service-icon {
  font-size: 1.35rem;
  display: block;
  margin-bottom: 0.9rem;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 0.55rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
}

.service-price {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  opacity: 0.85;
  white-space: nowrap;
}

.pricing-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.fit-panel {
  background: var(--surface);
  padding: 2rem;
}

.fit-panel h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 1rem;
}

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.fit-list li {
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
  font-size: 0.95rem;
  font-weight: 300;
}

.fit-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.72rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--accent);
  min-width: 24px;
  padding-top: 0.2rem;
  letter-spacing: 0.06em;
}

.why-item h4 {
  font-family: 'Syne', sans-serif;
  color: var(--heading);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
}

.stat-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.stat-block {
  background: var(--surface);
  padding: 2rem;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.step {
  background: var(--surface);
  padding: 2rem 1.4rem;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  color: var(--heading);
  margin-bottom: 0.45rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232,240,74,0.06) 0%, transparent 72%);
  pointer-events: none;
}

.contact-card p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  font-weight: 300;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.email-link {
  color: var(--accent);
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.email-link:hover { border-color: var(--accent); }

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo-img {
  display: block;
  text-decoration: none;
  flex-shrink: 0;
}

.footer-logo-img img {
  height: 56px;
  width: auto;
  display: block;
  opacity: 0.88;
  transition: opacity 0.2s;
}

.footer-logo-img:hover img { opacity: 1; }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-social:hover { color: var(--text); }

.footer-social svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .fit-grid,
  .why-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }

  .hero,
  section,
  .section-shell,
  footer,
  .trust-bar {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

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

  .contact-card {
    padding: 2rem;
  }
}

/* ── Inner page hero ── */
.page-hero {
  padding: 7rem 2.5rem 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(232,240,74,0.06) 0%, transparent 72%);
  top: 0;
  right: -60px;
  pointer-events: none;
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  opacity: 1;
  animation: none;
}

/* ── Breadcrumb ── */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: 0.4; }

/* ── Content grid (main + sidebar) ── */
.content-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── Sidebar card ── */
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: sticky;
  top: 6rem;
}

.sidebar-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 1rem;
}

.sidebar-card p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.sidebar-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 0.25rem;
}

.sidebar-price-note {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.5rem !important;
}

/* ── Service link cards (services.html) ── */
.service-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.service-link-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s ease;
}

.service-link-card:hover {
  border-color: rgba(232, 240, 74, 0.35);
  background: #151a22;
  transform: translateY(-2px);
}

.service-link-card .service-icon {
  margin-bottom: 1rem;
}

.service-link-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.service-link-card p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  flex: 1;
}

.card-arrow {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}

/* ── Detail feature list ── */
.detail-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.25rem 0 2rem;
}

.detail-features li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
}

.detail-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Credential cards ── */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin: 2rem 0 3rem;
}

.cred-card {
  background: var(--surface);
  padding: 2rem;
}

.cred-badge {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cred-name {
  font-size: 0.85rem;
  color: var(--heading);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.cred-desc {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── Footer links ── */
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── Contact page grid ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}

.contact-info h3:first-child { margin-top: 0; }

.contact-info p,
.contact-info li {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
}

.contact-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.contact-info li {
  padding-left: 1.2rem;
  position: relative;
}

.contact-info li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-standalone {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  position: sticky;
  top: 6rem;
}

.contact-standalone h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

.contact-standalone p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.email-display {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
  transition: opacity 0.2s;
}

.email-display:hover { opacity: 0.8; }

/* ── Related services section ── */
.related-services {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.related-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.related-link:hover {
  border-color: rgba(232, 240, 74, 0.3);
  color: var(--heading);
}

.related-link span { color: var(--accent); font-size: 0.8rem; }

/* ── Responsive additions ── */
@media (max-width: 900px) {
  .content-grid,
  .contact-grid,
  .cred-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-card,
  .contact-standalone {
    position: static;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 6.5rem 1.25rem 3rem;
  }

  .service-link-grid {
    grid-template-columns: 1fr;
  }
}
