/*
Theme Name:  Ingenious Thoughts
Theme URI:   https://www.ingeniousthoughts.com
Author:      Ingenious Thoughts
Description: Custom AI Consultancy theme — Precision AI for the Real World
Version:     1.0
License:     Private
Text Domain: ingenious-thoughts
*/

/* ================================================================
   INGENIOUS THOUGHTS v2 — Ultra Premium AI Consultancy
   ================================================================ */

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

:root {
  --bg:        #04040e;
  --bg-card:   #0b0b1a;
  --bg-surf:   #111128;
  --border:    rgba(255,255,255,0.07);
  --indigo:    #4F46E5;
  --cyan:      #06B6D4;
  --gold:      #D4AF37;
  --green:     #10B981;
  --white:     #FFFFFF;
  --grey:      #94A3B8;
  --grey-d:    #475569;
  --fh:        'Space Grotesk', sans-serif;
  --fb:        'Inter', sans-serif;
  --fm:        'Space Mono', monospace;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --r:         14px;
  --r-lg:      22px;
}

html { scroll-behavior: smooth; font-size: 18px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--fb);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

/* WordPress admin bar offset */
.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .nav { top: 46px; } }

/* ── Utility ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--fm);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
  flex-shrink: 0;
}

.section-h {
  font-family: var(--fh);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.section-p {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

/* ── Ambient orbs ───────────────────────────────────────── */
.orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}
.orb--indigo { background: var(--indigo); }
.orb--cyan   { background: var(--cyan); }
.orb--gold   { background: var(--gold); opacity: 0.07; }

/* ── Custom Cursor ──────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(79,70,229,0.8), 0 0 20px rgba(6,182,212,0.4);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(79,70,229,0.6);
  background: transparent;
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s, opacity 0.3s;
}
.cursor-ring.hover {
  width: 56px; height: 56px;
  border-color: var(--cyan);
  background: rgba(6,182,212,0.06);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary, .btn-ghost, .btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  border-radius: 8px;
  font-family: var(--fh);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--indigo) 0%, #6366f1 100%);
  color: #fff;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { box-shadow: 0 0 40px rgba(79,70,229,0.55), 0 0 80px rgba(79,70,229,0.2); }
.btn-ghost {
  background: transparent; color: var(--white); border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); }
.btn-nav {
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, var(--indigo), #6366f1);
  color: #fff !important;
}
.btn-nav:hover { box-shadow: 0 0 30px rgba(79,70,229,0.5); }
.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow, .btn-ghost:hover .btn-arrow { transform: translateX(4px); }

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(4,4,14,0.8);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 0.85rem;
  text-decoration: none; color: var(--white); cursor: none;
}
.logo-svg { width: 40px; height: 40px; flex-shrink: 0; }
.logo-wordmark { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: var(--fh); font-size: 0.85rem;
  letter-spacing: 0.04em; color: var(--grey); text-transform: uppercase;
}
.logo-name strong { color: var(--white); }
.logo-tagline {
  font-family: var(--fm); font-size: 0.75rem;
  letter-spacing: 0.15em; color: var(--cyan); text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav-links a {
  color: var(--grey); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s; cursor: none;
}
.nav-links a:hover { color: var(--white); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: 0.3s; }
.mobile-menu {
  display: none; flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  background: rgba(4,4,14,0.95); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border); gap: 0.5rem;
}
.mobile-menu a {
  color: var(--grey); text-decoration: none; font-size: 1rem; font-weight: 500;
  padding: 0.75rem 0; border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu.open { display: flex; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 9rem 2rem 5rem;
}
#galaxyCanvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(4,4,14,0.95) 0%, transparent 100%),
    radial-gradient(ellipse 30% 40% at 0% 50%, rgba(4,4,14,0.7) 0%, transparent 100%),
    radial-gradient(ellipse 30% 40% at 100% 50%, rgba(4,4,14,0.7) 0%, transparent 100%);
  pointer-events: none; z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }
.headline-meets {
  font-weight: 300; font-size: 0.55em; letter-spacing: 0.25em;
  color: var(--grey); text-transform: uppercase; display: block; margin: 0.1em 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--fm); font-size: 0.65rem; letter-spacing: 0.18em; color: var(--cyan);
  border: 1px solid rgba(6,182,212,0.25); background: rgba(6,182,212,0.05);
  padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 2rem;
}
.badge-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 0 0 rgba(6,182,212,0.5); }
  50% { opacity:0.6; transform:scale(0.85); box-shadow: 0 0 0 6px rgba(6,182,212,0); }
}
.hero-headline {
  font-family: var(--fh); font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.03em;
  margin-bottom: 1.75rem; max-width: 820px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem); color: var(--grey);
  max-width: 560px; line-height: 1.8; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4.5rem; }
.hero-stats { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.hstat { display: flex; flex-direction: column; gap: 0.25rem; }
.hstat-num { font-family: var(--fm); font-size: 2.2rem; font-weight: 700; line-height: 1; color: var(--white); }
.hstat-unit { font-size: 1rem; color: var(--cyan); margin-left: 2px; }
.hstat-label { font-size: 0.72rem; color: var(--grey); letter-spacing: 0.04em; }
.hstat-sep { width: 1px; height: 44px; background: var(--border); }
.scroll-hint {
  position: absolute; bottom: 2.5rem; right: 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem; z-index: 2;
}
.scroll-hint span {
  font-family: var(--fm); font-size: 0.58rem; letter-spacing: 0.2em;
  color: var(--grey-d); writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
  animation: scrollDrop 2.5s ease infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Trust bar ──────────────────────────────────────────── */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.015); padding: 1.2rem 0; }
.trust-bar .container { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-label { font-family: var(--fm); font-size: 0.6rem; letter-spacing: 0.18em; color: var(--grey-d); white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.trust-logos span { font-family: var(--fh); font-size: 0.9rem; font-weight: 700; color: var(--grey-d); letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.trust-logos span:hover { color: var(--grey); }
.trust-logos .sep { color: var(--border); font-size: 1rem; }

/* ── Sections ───────────────────────────────────────────── */
.section { position: relative; padding: 8rem 0; overflow: hidden; }
.section--dark { background: rgba(255,255,255,0.012); }

/* ── Tilt cards ─────────────────────────────────────────── */
.tilt-card { transform-style: preserve-3d; will-change: transform; transition: transform 0.08s linear, box-shadow 0.3s; }
.tilt-inner { transform: translateZ(0); transition: transform 0.08s linear; }

/* ── Pillar cards ───────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.pillar { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; position: relative; overflow: hidden; }
.pillar::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--indigo), var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.pillar:hover::after { transform: scaleX(1); }
.pillar:hover { border-color: rgba(79,70,229,0.35); }
.pillar-icon { width: 48px; height: 48px; margin-bottom: 1.25rem; }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar h3 { font-family: var(--fh); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.65rem; }
.pillar p { font-size: 0.88rem; color: var(--grey); line-height: 1.75; }

/* ── Services grid ──────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.svc-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.5rem; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.svc-card:hover { border-color: rgba(79,70,229,0.35); }
.svc-card--hero { border-color: rgba(79,70,229,0.4); background: linear-gradient(145deg, rgba(79,70,229,0.1) 0%, var(--bg-card) 60%); }
.svc-badge { position: absolute; top: 1.5rem; right: 1.5rem; font-family: var(--fm); font-size: 0.55rem; letter-spacing: 0.14em; color: var(--cyan); border: 1px solid rgba(6,182,212,0.3); padding: 0.25rem 0.7rem; border-radius: 100px; background: rgba(6,182,212,0.06); }
.svc-tier { font-family: var(--fm); font-size: 0.62rem; letter-spacing: 0.22em; color: var(--indigo); margin-bottom: 0.7rem; }
.svc-name { font-family: var(--fh); font-size: 1.45rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.45rem; }
.svc-tag { font-size: 0.85rem; color: var(--cyan); margin-bottom: 1rem; }
.svc-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.svc-pills span { font-family: var(--fm); font-size: 0.62rem; letter-spacing: 0.08em; color: var(--grey); background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 0.2rem 0.65rem; border-radius: 100px; }
.svc-desc { font-size: 0.875rem; color: var(--grey); line-height: 1.75; margin-bottom: 1.25rem; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; margin-bottom: 0; }
.svc-list li { font-size: 0.875rem; color: var(--grey); padding-left: 1.2rem; position: relative; }
.svc-list li::before { content: '→'; position: absolute; left: 0; color: var(--indigo); font-size: 0.75rem; }
.svc-btn { margin-top: 1.75rem; width: fit-content; }

/* ── Sectors ────────────────────────────────────────────── */
.sectors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.sector { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; position: relative; overflow: hidden; }
.sector:hover { border-color: rgba(79,70,229,0.35); }
.sector-num { font-family: var(--fm); font-size: 0.65rem; letter-spacing: 0.18em; color: var(--grey-d); margin-bottom: 1rem; }
.sector h3 { font-family: var(--fh); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 0.75rem; }
.sector p { font-size: 0.875rem; color: var(--grey); line-height: 1.75; margin-bottom: 1.25rem; }
.sector-usecase { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.8rem; color: var(--grey); line-height: 1.5; }
.uc-label { display: block; font-family: var(--fm); font-size: 0.58rem; letter-spacing: 0.14em; color: var(--cyan); text-transform: uppercase; margin-bottom: 0.3rem; }

/* ── Process ────────────────────────────────────────────── */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; position: relative; }
.process::before { content: ''; position: absolute; top: 2rem; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--indigo), var(--cyan), transparent); opacity: 0.3; }
.proc-step { padding: 1rem 2rem 1rem 0; position: relative; }
.proc-num { font-family: var(--fm); font-size: 0.65rem; letter-spacing: 0.18em; margin-bottom: 1.5rem; display: block; background: linear-gradient(135deg, var(--indigo), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.proc-step h3 { font-family: var(--fh); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.65rem; }
.proc-step p { font-size: 0.875rem; color: var(--grey); line-height: 1.75; margin-bottom: 0.75rem; }
.proc-time { font-family: var(--fm); font-size: 0.65rem; letter-spacing: 0.1em; color: var(--cyan); background: rgba(6,182,212,0.08); border: 1px solid rgba(6,182,212,0.2); padding: 0.25rem 0.75rem; border-radius: 100px; display: inline-block; }

/* ── About ──────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text p { font-size: 0.95rem; color: var(--grey); line-height: 1.85; margin-bottom: 1rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.astat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 1.75rem; }
.astat:hover { border-color: rgba(79,70,229,0.35); }
.astat-num { font-family: var(--fm); font-size: 2.6rem; font-weight: 700; background: linear-gradient(135deg, var(--white) 40%, var(--grey) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.5rem; }
.astat-label { font-size: 0.78rem; color: var(--grey); line-height: 1.4; }

/* ── Quote section ──────────────────────────────────────── */
.quote-section { padding: 6rem 0; background: linear-gradient(135deg, rgba(79,70,229,0.07) 0%, rgba(6,182,212,0.04) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.quote-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-badge { display: inline-block; font-family: var(--fm); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--gold); border: 1px solid rgba(212,175,55,0.3); background: rgba(212,175,55,0.05); padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 2.5rem; }
blockquote { font-family: var(--fh); font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 500; line-height: 1.55; color: var(--white); margin-bottom: 1.25rem; font-style: normal; letter-spacing: -0.01em; }
cite { display: block; font-family: var(--fm); font-size: 0.72rem; color: var(--grey); letter-spacing: 0.1em; margin-bottom: 3rem; }
.quote-points { display: flex; flex-direction: column; gap: 0.85rem; text-align: left; }
.qp { display: flex; gap: 1rem; align-items: flex-start; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.25rem; font-size: 0.88rem; color: var(--grey); line-height: 1.65; }
.qp-arrow { color: var(--cyan); font-weight: 700; flex-shrink: 0; }

/* ── Contact ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 5rem; align-items: start; }
.contact-text p { font-size: 0.95rem; color: var(--grey); line-height: 1.8; margin-bottom: 1.25rem; }
.contact-detail { font-size: 0.875rem; display: flex; align-items: baseline; gap: 1rem; }
.cd-label { font-family: var(--fm); font-size: 0.6rem; letter-spacing: 0.14em; color: var(--grey-d); text-transform: uppercase; min-width: 60px; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: var(--fm); font-size: 0.62rem; letter-spacing: 0.14em; color: var(--grey); text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 8px; padding: 0.8rem 1rem; color: var(--white); font-family: var(--fb); font-size: 0.9rem; outline: none; width: 100%; -webkit-appearance: none; transition: border-color 0.2s, background 0.2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey-d); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--indigo); background: rgba(79,70,229,0.06); }
.form-group select option { background: #0b0b1a; }
.form-group textarea { resize: vertical; }
.btn-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 0.95rem; }
.form-note { font-size: 0.72rem; color: var(--grey-d); text-align: center; }

/* ── Footer ─────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 4rem 0 2rem; background: rgba(255,255,255,0.008); }
.footer-top { display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap; margin-bottom: 3rem; }
.footer-strapline { margin-top: 1rem; font-size: 0.8rem; color: var(--grey-d); font-style: italic; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.fcol { display: flex; flex-direction: column; gap: 0.6rem; }
.fcol h4 { font-family: var(--fm); font-size: 0.6rem; letter-spacing: 0.16em; color: var(--grey-d); text-transform: uppercase; margin-bottom: 0.4rem; }
.fcol a { font-size: 0.875rem; color: var(--grey); text-decoration: none; cursor: none; transition: color 0.2s; }
.fcol a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 1rem; }
.footer-bottom span, .footer-legal a { font-size: 0.72rem; color: var(--grey-d); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { text-decoration: none; cursor: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--grey); }

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal, .reveal-grid > * { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal-grid > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-grid > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-grid > *:nth-child(4) { transition-delay: 0.3s; }
.reveal.in, .reveal-grid.in > * { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .scroll-hint { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 7rem 1.5rem 4rem; }
  .container { padding: 0 1.5rem; }
  .section { padding: 5rem 0; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr; }
  .process::before { display: none; }
  .hstat-sep { display: none; }
  .trust-bar .container { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-top { flex-direction: column; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}
