/* ============================================================
   Simply Rise
   Global stylesheet
   ============================================================ */

:root {
  --bg: #08090b;
  --bg-elev: #101217;
  --bg-elev-2: #16181f;
  --fg: #f6f5f2;
  --muted: #9c9ba3;
  --muted-2: #6f6e77;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --accent: #ff7a33;
  --accent-2: #ff4d6d;
  --accent-3: #ffc267;
  --accent-soft: rgba(255, 122, 51, 0.12);
  --gradient: linear-gradient(120deg, #ffc267 0%, #ff7a33 45%, #ff4d6d 100%);
  --gradient-soft: linear-gradient(120deg, rgba(255, 194, 103, 0.16) 0%, rgba(255, 122, 51, 0.14) 45%, rgba(255, 77, 109, 0.14) 100%);

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  touch-action: pan-y;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, p, ul, figure { margin: 0; }

ul { padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* ---------- Background texture ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20px 20px, rgba(255,255,255,0.035) 1px, transparent 0),
    radial-gradient(1px 1px at 60px 70px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 90px 90px;
  opacity: 0.6;
}

/* Film-grain texture — keeps flat dark sections from feeling cheap/flat */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Cursor spotlight — soft light following the pointer on desktop */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 166, 89, 0.4), transparent 70%);
  pointer-events: none;
  z-index: 90;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s ease;
  mix-blend-mode: soft-light;
  will-change: transform;
}
.cursor-glow.is-active { opacity: 1; }

/* ---------- Typography helpers ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-3);
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
}

.eyebrow-line {
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted-2);
}

h1, .h1 {
  font-size: clamp(40px, 6.4vw, 84px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

h3, .h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--muted);
  font-weight: 400;
  line-height: 1.65;
}

.text-gradient {
  background: var(--gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
@media (max-width: 900px) { .section { padding: 88px 0; } }
@media (max-width: 560px) { .section { padding: 64px 0; } }

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .kicker { margin-bottom: 18px; }
.section-head h2 { margin-top: 18px; }
.section-head .lede { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--gradient);
  color: #120a05;
  box-shadow: 0 12px 30px -10px rgba(255, 106, 61, 0.55);
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(255, 106, 61, 0.7);
}
.btn-primary:hover::after { left: 130%; }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.btn-block { width: 100%; }
.btn-sm { padding: 12px 22px; font-size: 14px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), padding 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 14px 0;
  background: rgba(8, 9, 11, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 16px 2px rgba(255, 122, 51, 0.7);
}
.brand span.rise { color: var(--fg); }
.brand span.no { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(8,9,11,0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.mobile-menu.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.mobile-menu a { font-size: 26px; font-weight: 700; color: var(--fg); }
.mobile-menu a.active { color: var(--accent); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 200px 0 140px;
  overflow: hidden;
  isolation: isolate;
}
.hero-visual {
  position: absolute;
  z-index: -2;
  top: -60px;
  left: 50%;
  width: min(1400px, 150%);
  aspect-ratio: 16 / 9;
  --tilt-x: 0px;
  --tilt-y: 0px;
  --tilt-rx: 0deg;
  --tilt-ry: 0deg;
  transform: perspective(1000px) translateX(calc(-50% + var(--tilt-x))) translateY(var(--tilt-y)) rotateX(var(--tilt-rx)) rotateY(var(--tilt-ry));
  transition: transform 0.4s ease-out;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 68% 65% at 50% 32%, black 0%, black 35%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse 68% 65% at 50% 32%, black 0%, black 35%, transparent 82%);
}
.hero-visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: saturate(1.1) brightness(1.05);
  opacity: 0;
  transition: opacity 1.1s linear;
}
.hero-visual video.is-active {
  /* hv-a carries this class in the HTML too, so it's visible from first paint — no JS required */
  opacity: 0.75;
}
@media (max-width: 640px) {
  .hero-visual {
    top: -10px;
    width: 180%;
    mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, black 0%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, black 0%, black 30%, transparent 80%);
  }
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: -280px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 900px;
  background: radial-gradient(closest-side, rgba(255, 122, 51, 0.28), rgba(255, 77, 109, 0.12) 45%, transparent 70%);
  filter: blur(10px);
  animation: drift-centered 14s ease-in-out infinite;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 0%, black 40%, transparent 85%);
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero .kicker { justify-content: center; margin-bottom: 28px; }
.hero h1 { margin-bottom: 26px; }
.hero .lede { max-width: 640px; margin: 0 auto 42px; }
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.hero-meta .stat-num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-meta .stat-label {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--muted-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Tiles (services) ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tile {
  position: relative;
  min-height: 460px;
  padding: 46px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--line);
  overflow: hidden;
  transition: background 0.5s var(--ease);
}
.tile:last-child { border-right: none; }
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tile-glow, radial-gradient(circle at 30% 20%, rgba(255,122,51,0.16), transparent 60%));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.tile:hover::before { opacity: 1; }
.tile:hover { background: var(--bg-elev); }
.tile-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev-2);
  border: 1px solid var(--line-strong);
  margin-bottom: auto;
  position: relative;
  z-index: 1;
}
.tile-icon svg { width: 24px; height: 24px; stroke: var(--accent-3); }
.tile-num {
  position: absolute;
  top: 40px; right: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted-2);
}
.tile h3 { position: relative; z-index: 1; margin-bottom: 12px; }
.tile p { position: relative; z-index: 1; color: var(--muted); font-size: 15px; }
.tile-link {
  position: relative; z-index: 1;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-3);
}
.tile-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.tile:hover .tile-link svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .tiles { grid-template-columns: 1fr; }
  .tile { border-right: none; border-bottom: 1px solid var(--line); min-height: 320px; }
}

/* ---------- Cards / Grid ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  display: block;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  margin-bottom: 22px;
}
.card-icon svg { width: 22px; height: 22px; stroke: var(--accent-3); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15px; }

/* ---------- Pills / tags ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-elev);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pill:hover { color: var(--fg); border-color: var(--accent); }

/* ---------- Belief / checklist rows ---------- */
.check-list { display: flex; flex-direction: column; gap: 18px; }
.check-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.check-row:first-child { border-top: none; }
.check-badge {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-badge svg { width: 15px; height: 15px; stroke: #120a05; }
.check-row h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.check-row p { font-size: 14.5px; color: var(--muted); }

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 48px; } }

/* ---------- Package / pricing cards ---------- */
.plans {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plans::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18% -6%;
  background: radial-gradient(ellipse 55% 60% at 50% 15%, rgba(255, 122, 51, 0.14), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  animation: drift 13s ease-in-out infinite;
}
@media (max-width: 1080px) { .plans { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .plans { grid-template-columns: 1fr; } }

.plan {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 110px;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease), outline-color 0.6s var(--ease);
}
.plan > * { position: relative; z-index: 1; }
.plan.is-highlighted { outline: 2px solid rgba(255, 122, 51, 0.85); outline-offset: 5px; }
.plan::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 26% 0%, rgba(255, 194, 103, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.plan::after {
  content: "";
  position: absolute;
  top: 0; left: 14%; right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0.5;
  pointer-events: none;
}
.plan:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 54px -22px rgba(255, 122, 51, 0.4);
}
.plan:hover::before { opacity: 1; }
.plan.featured {
  border-color: rgba(255, 122, 51, 0.5);
  background: linear-gradient(180deg, rgba(255,122,51,0.08), var(--bg-elev) 40%);
  animation: pulse-glow 3.2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255, 122, 51, 0.3), 0 20px 45px -22px rgba(255, 122, 51, 0.35); }
  50% { box-shadow: 0 0 0 1px rgba(255, 122, 51, 0.55), 0 24px 60px -18px rgba(255, 122, 51, 0.55); }
}
.plan.featured:hover {
  box-shadow: 0 28px 60px -20px rgba(255, 77, 109, 0.45);
}
.plan-badge {
  position: absolute;
  top: -13px; left: 30px;
  background: var(--gradient);
  color: #120a05;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.plan-name { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.plan-for { font-size: 13.5px; color: var(--muted-2); min-height: 40px; margin-bottom: 22px; }
.plan-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; flex: 1; }
.plan-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--muted);
  line-height: 1.5;
}
.plan-features svg { flex-shrink: 0; width: 16px; height: 16px; stroke: var(--accent-3); margin-top: 3px; }
.plan-outcome {
  font-size: 13px;
  color: var(--muted-2);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-bottom: 22px;
  line-height: 1.55;
}
.plan-outcome strong { color: var(--muted); display: block; margin-bottom: 4px; font-weight: 700;}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 84px 48px;
  text-align: center;
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute; inset: -40%;
  z-index: -1;
  background: var(--gradient-soft);
  filter: blur(60px);
  animation: drift 11s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2.5%, -3%) scale(1.06); }
}
@keyframes drift-centered {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-50%) translateY(-3%) scale(1.05); }
}
.cta-band h2 { max-width: 640px; margin: 0 auto 18px; }
.cta-band .lede { max-width: 520px; margin: 0 auto 36px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 72px 0 32px;
  position: relative; z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
}
@media (max-width: 780px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand p { margin-top: 16px; color: var(--muted); font-size: 14px; max-width: 280px; }
.footer h5 {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 18px;
}
.footer ul { display: flex; flex-flow: row wrap; align-items: center; gap: 10px 20px; }
.footer a { font-size: 14.5px; color: var(--muted); transition: color 0.25s var(--ease); }
.footer a:hover { color: var(--fg); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted-2); flex-wrap: wrap; gap: 12px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 16px; height: 16px; stroke: var(--muted); }
.footer-social a:hover { border-color: var(--accent); }
.footer-social a:hover svg { stroke: var(--accent-3); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 176px 0 88px;
  position: relative;
  overflow: hidden;
}
.page-hero .kicker { margin-bottom: 22px; }
.page-hero h1 { font-size: clamp(36px, 5.2vw, 62px); }
.page-hero .lede { max-width: 620px; margin-top: 20px; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Form ---------- */
.form-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
}
@media (max-width: 560px) { .form-card { padding: 28px 22px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; gap: 0; } }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 13px; font-weight: 700;
  letter-spacing: 0.03em; color: var(--muted); margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--fg);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-note { font-size: 12.5px; color: var(--muted-2); margin-top: 8px; }
.field-error { font-size: 12.5px; color: var(--accent-2); margin-top: 14px; display: none; }
.field-error.is-visible { display: block; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.is-visible { display: block; }
.form-success .check-badge { margin: 0 auto 22px; width: 56px; height: 56px; }
.form-success .check-badge svg { width: 26px; height: 26px; }

.contact-info-list { display: flex; flex-direction: column; gap: 26px; }
.contact-info-item { display: flex; gap: 16px; }
.contact-info-item .card-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-info-item h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14.5px; color: var(--muted); }
.contact-info-item a:hover { color: var(--accent-3); }

/* ---------- Touch "tap-punch" 3D response (mobile) ---------- */
@keyframes tap-punch {
  0% { transform: perspective(700px) rotateX(0) rotateY(0) scale(1); }
  35% { transform: perspective(700px) rotateX(6deg) rotateY(-8deg) scale(0.97); }
  100% { transform: perspective(700px) rotateX(0) rotateY(0) scale(1); }
}
.tap-punch { animation: tap-punch 0.5s var(--ease); }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--line); border: none; margin: 0; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
