/* ============================================
   PROMPTPRENEUR.AI — Main Stylesheet
   ============================================ */

/* ============ RESET & VARIABLES ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #f9f9f8;
  --bg-deep: #f0f0ee;
  --fg: #1a1714;
  --muted: #8a857d;
  --faint: #dedcda;
  --glass: rgba(26, 23, 20, 0.02);
  --glass-border: rgba(26, 23, 20, 0.07);
  --accent: #e05a33;
  --accent-soft: rgba(224, 90, 51, 0.07);
  --accent-mid: rgba(224, 90, 51, 0.15);
  --display: 'Plus Jakarta Sans', sans-serif;
  --mono: 'Space Mono', monospace;
  --body: 'Source Serif 4', Georgia, serif;
}

html { scroll-behavior: auto; cursor: none; }

h1, h2, h3, h4, h5, h6, p, a, span, li, blockquote {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.preloader-logo {
  width: 70px;
  height: auto;
}
.preloader-logo svg {
  width: 100%;
  height: auto;
}
@keyframes preloaderEntry {
  from { opacity: 0; transform: scale(0.5); }
  70% { opacity: 1; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

/* ============ CUSTOM CURSOR ============ */
.cursor {
  position: fixed;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: normal;
  transition: width 0.35s cubic-bezier(0.16,1,0.3,1), height 0.35s cubic-bezier(0.16,1,0.3,1), margin 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.35s;
  margin-left: -7px; margin-top: -7px;
}
.cursor.expand {
  width: 56px; height: 56px;
  margin-left: -28px; margin-top: -28px;
  opacity: 0.18;
}

/* ============ GRAIN ============ */
.grain {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ============ LAYOUT ============ */
.wrap { max-width: 1400px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }

/* ============ NAV ============ */
.nav-outer {
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav-outer.scrolled {
  background: rgba(249,249,248,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 5px 6px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  text-decoration: none;
  padding: 4px 10px 4px 8px;
  position: relative;
}
.nav-logo svg {
  height: 28px;
  width: auto;
  display: block;
}
.nav-logo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 1px;
  align-self: flex-end;
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}
.nav-logo:hover .nav-logo-dot {
  transform: scale(1.4);
}
.nav-div {
  width: 1px;
  height: 18px;
  background: var(--glass-border);
  margin: 0 2px;
}
.nav-pill a.nav-link {
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 100px;
  transition: all 0.25s;
}
.nav-pill a.nav-link:hover {
  background: var(--bg-deep);
  color: var(--fg);
}
.nav-cta {
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 8px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s;
  margin-left: 2px;
}
.nav-cta:hover { background: var(--fg); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  animation: float 22s ease-in-out infinite;
}
.orb-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(224,90,51,0.07), transparent 70%);
  top: -18%; right: -8%;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(224,90,51,0.04), transparent 70%);
  bottom: -12%; left: -4%;
  animation-delay: -8s;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(26,23,20,0.025), transparent 70%);
  top: 35%; left: 42%;
  animation-delay: -15s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content { position: relative; z-index: 2; padding: 160px 0 100px; }

.hero-tag {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  overflow: hidden;
  padding-bottom: 0.15em;
}
.hero-tag span {
  display: inline-block;
  animation: slideUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.15s both;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 52px;
}
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.15em; margin-bottom: -0.15em; }
.hero h1 .line span {
  display: inline-block;
  animation: slideUp 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
.hero h1 .line:nth-child(1) span { animation-delay: 0.28s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.4s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.52s; }
.hero h1 .accent-word {
  color: var(--accent);
  font-style: normal;
}
.hero h1 .cursor-gradient {
  background: radial-gradient(circle 120px at var(--mx, -200px) var(--my, -200px), var(--fg) 0%, transparent 70%),
              linear-gradient(0deg, var(--accent), var(--accent));
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes slideUp {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

.hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
  opacity: 0; animation: fadeIn 0.8s ease 0.85s forwards;
}
.hero-desc {
  font-size: 1.05rem; font-weight: 400;
  color: var(--muted); line-height: 1.75; max-width: 420px;
}
.hero-desc strong { color: var(--fg); font-weight: 500; }

/* Magnetic button */
.btn-magnetic {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 40px;
  background: var(--fg);
  color: var(--bg);
  border: none; border-radius: 100px;
  font-family: var(--display);
  font-size: 0.88rem; font-weight: 700;
  text-decoration: none;
  cursor: none;
  position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.btn-magnetic::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--accent);
  border-radius: 100px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.btn-magnetic:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn-magnetic span { position: relative; z-index: 2; }
.btn-magnetic .arrow {
  position: relative; z-index: 2;
  transition: transform 0.3s; font-size: 1.1rem;
}
.btn-magnetic:hover .arrow { transform: translateX(6px) rotate(-45deg); }

/* Secondary outline button */
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 19px 36px;
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--faint);
  border-radius: 100px;
  font-family: var(--display);
  font-size: 0.88rem; font-weight: 600;
  text-decoration: none;
  cursor: none;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.btn-outline::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--fg);
  border-radius: 100px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.btn-outline:hover { border-color: var(--fg); color: var(--bg); }
.btn-outline:hover::before { transform: scaleY(1); transform-origin: top; }
.btn-outline span { position: relative; z-index: 2; }
.btn-outline .arrow { position: relative; z-index: 2; transition: transform 0.3s; }
.btn-outline:hover .arrow { transform: translateX(5px); }

.hero-buttons { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 0.5s ease 1.3s forwards;
}
.scroll-text {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============ MARQUEE ============ */
.marquee-section {
  padding: 36px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--display);
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
  white-space: nowrap;
  padding: 0 32px;
  display: flex; align-items: center; gap: 32px;
  transition: color 0.3s;
}
.marquee-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SERVICES ============ */
.services { padding: 140px 0; }
.services-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 80px; gap: 48px;
}
.services-top h2 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  max-width: 580px;
}
.services-top h2 .accent-word { color: var(--accent); }
.services-top p {
  font-size: 0.92rem; font-weight: 400;
  color: var(--muted); line-height: 1.7;
  max-width: 340px; padding-top: 10px;
}

.service-cards { display: flex; flex-direction: column; gap: 12px; }

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 44px 52px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative; overflow: hidden;
  cursor: none;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-soft), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
}
.service-card::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  border-radius: 0 2px 2px 0;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(26,23,20,0.06); border-color: var(--accent-mid); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleY(1); transform-origin: top; }

.service-number {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  position: relative; z-index: 2;
}
.service-info { position: relative; z-index: 2; }
.service-info h3 {
  font-family: var(--display);
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.service-card:hover .service-info h3 { color: var(--accent); }
.service-info p {
  font-size: 0.9rem; font-weight: 400;
  color: var(--muted); line-height: 1.7;
  max-width: 500px;
}
.service-tags-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.stag {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 13px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  color: var(--muted);
  transition: all 0.3s;
}
.service-card:hover .stag { border-color: var(--accent-mid); color: var(--fg); }
.service-arrow {
  font-size: 1.5rem;
  color: var(--faint);
  position: relative; z-index: 2;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover .service-arrow { color: var(--accent); transform: translateX(8px) rotate(-45deg); }

/* ============ PROCESS ============ */
.process {
  padding: 140px 0;
  background: var(--fg);
  color: var(--bg);
  position: relative; overflow: hidden;
}
.process::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(224,90,51,0.06), transparent 60%);
}
.process .wrap { position: relative; z-index: 2; }
.process-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.process h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.process-step {
  padding: 40px 30px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(249,249,248,0.06);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.process-step:first-child { border-radius: 20px 0 0 20px; }
.process-step:last-child { border-radius: 0 20px 20px 0; }
.process-step:hover { background: rgba(224,90,51,0.04); }
.process-step::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.process-step:hover::after { transform: scaleX(1); }
.step-num {
  font-family: var(--display);
  font-size: 3.2rem; font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 28px;
}
.process-step h4 {
  font-family: var(--display);
  font-size: 1.12rem; font-weight: 700;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.85rem; font-weight: 400;
  color: rgba(249,249,248,0.5);
  line-height: 1.7;
}
.step-duration {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-top: 20px;
  text-transform: uppercase;
}

/* ============ METRICS ============ */
.metrics {
  padding: 100px 0;
  border-bottom: 1px solid var(--glass-border);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.metric-val {
  font-family: var(--display);
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 140px 0; }
.testimonials h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
}
.test-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
}
.test-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 44px;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.test-card:hover { border-color: var(--accent-mid); box-shadow: 0 12px 40px rgba(26,23,20,0.04); }
.test-card.featured {
  grid-row: 1 / 3;
  display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(160deg, var(--accent-soft), transparent 40%);
}
.test-quote-mark {
  font-family: var(--display);
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}
.test-quote {
  font-family: var(--body);
  font-size: 1.05rem; font-weight: 400;
  font-style: italic;
  line-height: 1.7; color: var(--fg);
  margin-bottom: 32px;
}
.test-card.featured .test-quote { font-size: 1.15rem; }
.test-footer {
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  display: flex; justify-content: space-between; align-items: flex-end;
}
.test-name { font-weight: 600; font-size: 0.88rem; }
.test-role { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.test-stat { text-align: right; }
.test-stat-val {
  font-family: var(--display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--accent);
}
.test-stat-label {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ ABOUT ============ */
.about { padding: 140px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  aspect-ratio: 3/4;
  background: var(--bg-deep);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-img-text {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted); opacity: 0.4;
}
.about-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.about h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.about h2 .accent-word { color: var(--accent); }
.about p {
  font-size: 0.92rem; font-weight: 400;
  color: var(--muted); line-height: 1.7;
  margin-bottom: 14px;
}
.about-creds {
  display: flex; gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--glass-border);
}
.cred-val {
  font-family: var(--display);
  font-size: 1.9rem; font-weight: 700;
  color: var(--accent); line-height: 1;
}
.cred-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 160px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta .orb-cta {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,90,51,0.06), transparent 55%);
  filter: blur(100px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: float 18s ease-in-out infinite;
}
.final-cta .wrap { position: relative; z-index: 2; }
.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.final-cta h2 .accent-word { color: var(--accent); }
.final-cta p {
  font-size: 0.95rem; font-weight: 400;
  color: var(--muted); line-height: 1.7;
  max-width: 420px; margin: 0 auto 44px;
}
.cal-embed-wrap {
  max-width: 680px;
  margin: 0 auto 32px;
}
.final-cta .cta-note {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 24px;
}

/* ============ FOOTER ============ */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--glass-border);
}
.foot-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.foot-copy { font-size: 0.74rem; color: var(--muted); font-weight: 400; }
.foot-links { display: flex; gap: 24px; }
.foot-links a {
  font-family: var(--mono);
  font-size: 0.63rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.foot-links a:hover { color: var(--accent); }

/* ============ SCROLL ANIMATIONS ============ */
.reveal-up {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-up.vis { opacity: 1; transform: translateY(0); }
.stagger-parent.vis .stagger-child { opacity: 1; transform: translateY(0); }
.stagger-child {
  opacity: 0; transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16,1,0.3,1);
}
.stagger-child:nth-child(1) { transition-delay: 0s; }
.stagger-child:nth-child(2) { transition-delay: 0.1s; }
.stagger-child:nth-child(3) { transition-delay: 0.2s; }
.stagger-child:nth-child(4) { transition-delay: 0.3s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .service-card { grid-template-columns: auto 1fr; gap: 24px; }
  .service-arrow { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:first-child { border-radius: 20px 0 0 0; }
  .process-step:nth-child(2) { border-radius: 0 20px 0 0; }
  .process-step:nth-child(3) { border-radius: 0 0 0 20px; }
  .process-step:last-child { border-radius: 0 0 20px 0; }
  .test-grid { grid-template-columns: 1fr; }
  .test-card.featured { grid-row: auto; }
}
@media (max-width: 768px) {
  .cursor { display: none; }
  html { cursor: auto; }
  .nav-pill a.nav-link { display: none; }
  .nav-div { display: none; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.8rem); }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn-magnetic, .btn-outline { width: 100%; justify-content: center; }
  .services-top { flex-direction: column; }
  .service-card { grid-template-columns: 1fr; padding: 32px; }
  .service-number { margin-bottom: -8px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-radius: 0 !important; }
  .process-step:first-child { border-radius: 20px 20px 0 0 !important; }
  .process-step:last-child { border-radius: 0 0 20px 20px !important; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { max-width: 280px; }
  .about-creds { flex-wrap: wrap; gap: 24px; }
  .foot-inner { flex-direction: column; gap: 12px; }
}
