/* ===== Reset & base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0F;
  --bg-alt: #0E0E15;
  --surface: #14141C;
  --surface-2: #191922;
  --border: #24242F;
  --text: #F3F3F1;
  --text-muted: #A3A3AF;
  --text-dim: #6E6E7A;
  --accent-a: #00E5C7;
  --accent-b: #FF3D8F;
  --grad: linear-gradient(120deg, var(--accent-a), var(--accent-b));
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1180px;
}

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3 {
  font-family: "League Spartan", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

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

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Background FX ===== */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 90%);
}

.blob {
  position: absolute;
  border-radius: 50%;
}

.blob-a {
  width: 560px; height: 560px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, var(--accent-a) 0%, rgba(0,229,199,0) 70%);
  opacity: 0.28;
}

.blob-b {
  width: 620px; height: 620px;
  top: 200px; right: -220px;
  background: radial-gradient(circle, var(--accent-b) 0%, rgba(255,61,143,0) 70%);
  opacity: 0.22;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #0A0A0F;
  box-shadow: 0 8px 24px -8px rgba(0, 229, 199, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(255, 61, 143, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent-a);
  color: var(--accent-a);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.main-nav a:hover { color: var(--text); }

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width 0.25s ease;
}

.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding: 168px 24px 100px;
  min-height: 90vh;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 24px;
}

.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 22px;
}

.hero .lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.platform-row span {
  font-size: 13px;
  color: var(--text-dim);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone {
  position: absolute;
  width: 240px;
  height: 460px;
  border-radius: 36px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
}

.phone-back {
  transform: rotate(-9deg) translate(-30px, 10px);
  opacity: 0.6;
}

.phone-glow {
  position: absolute;
  inset: 20px;
  border-radius: 26px;
  background: var(--grad);
  opacity: 0.15;
  filter: blur(20px);
}

.phone-front {
  transform: rotate(6deg) translate(20px, -6px);
  box-shadow: 0 40px 80px -24px rgba(0,0,0,0.6);
  overflow: hidden;
}

.phone-notch {
  width: 70px; height: 18px;
  background: var(--bg);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
}

.phone-screen {
  position: relative;
  margin: 14px;
  height: calc(100% - 60px);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(0,229,199,0.25), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(255,61,143,0.25), transparent 55%),
    var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 20, 28, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5);
  animation: float 5s ease-in-out infinite;
}

.float-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--accent-a);
}

.card-1 { top: 8%; left: -4%; animation-delay: 0s; }
.card-2 { bottom: 18%; right: -6%; animation-delay: 1.2s; }
.card-3 { top: 46%; right: -10%; animation-delay: 2.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== Value strip ===== */
.value-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-num {
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-a);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  flex-shrink: 0;
}

.value-item p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== Sections ===== */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-a);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  max-width: 640px;
  margin-bottom: 20px;
}

.section-lead {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ===== Miks Võte comparison ===== */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.compare-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}

.compare-card.dim {
  background: var(--surface);
}

.compare-card.hi {
  background: var(--surface-2);
  border-color: rgba(0, 229, 199, 0.35);
  position: relative;
  overflow: hidden;
}

.compare-card.hi::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-b), transparent 70%);
  opacity: 0.25;
}

.compare-label {
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  position: relative;
}

.compare-card.dim .compare-label { color: var(--text-dim); }

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.compare-list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  align-items: flex-start;
}

.compare-list .ico { flex-shrink: 0; margin-top: 1px; }

.compare-card.dim .compare-list li { color: var(--text-dim); }
.compare-card.dim .compare-list .ico { color: var(--text-dim); }

.compare-card.hi .compare-list li { color: var(--text); font-weight: 500; }
.compare-card.hi .compare-list .ico { color: var(--accent-a); }

/* ===== Bento services ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 199, 0.4);
}

.bento-icon {
  width: 22px;
  height: 22px;
  color: var(--accent-a);
  margin-bottom: 12px;
}

.bento-icon svg {
  width: 100%;
  height: 100%;
}

.bento-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.bento-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.bento-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--grad);
}

/* ===== Portfolio reel ===== */
.reel-wrap {
  overflow: hidden;
  margin-top: 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.reel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reel-scroll 34s linear infinite;
}

.reel-wrap:hover .reel-track,
.reel-wrap:focus-within .reel-track {
  animation-play-state: paused;
}

@keyframes reel-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .reel-track { animation: none; }
  .reel-wrap { overflow-x: auto; }
}

.reel-card {
  flex: 0 0 auto;
  width: 152px;
}

.reel-thumb {
  position: relative;
  width: 152px;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-thumb.thumb-1 { background: radial-gradient(circle at 30% 20%, rgba(0,229,199,0.35), transparent 60%), linear-gradient(160deg, #14141c, #191922); }
.reel-thumb.thumb-2 { background: radial-gradient(circle at 70% 30%, rgba(255,61,143,0.32), transparent 60%), linear-gradient(160deg, #14141c, #191922); }
.reel-thumb.thumb-3 { background: radial-gradient(circle at 40% 70%, rgba(0,229,199,0.28), transparent 60%), linear-gradient(160deg, #191922, #14141c); }
.reel-thumb.thumb-4 { background: radial-gradient(circle at 60% 20%, rgba(255,61,143,0.3), transparent 60%), linear-gradient(160deg, #14141c, #191922); }
.reel-thumb.thumb-5 { background: radial-gradient(circle at 30% 60%, rgba(0,229,199,0.3), transparent 60%), linear-gradient(160deg, #191922, #14141c); }
.reel-thumb.thumb-6 { background: radial-gradient(circle at 65% 65%, rgba(255,61,143,0.28), transparent 60%), linear-gradient(160deg, #14141c, #191922); }

.reel-play {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -6px rgba(255,61,143,0.5);
}

.reel-bar {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
}

.reel-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--grad);
  border-radius: 2px;
  animation: reel-bar-grow 3.4s ease-in-out infinite;
}

.reel-card:nth-child(2n) .reel-bar-fill { animation-delay: -1.1s; }
.reel-card:nth-child(3n) .reel-bar-fill { animation-delay: -2.2s; }

@keyframes reel-bar-grow {
  0% { width: 0%; }
  90%, 100% { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .reel-bar-fill { animation: none; width: 35%; }
}

.reel-meta {
  padding-top: 10px;
}

.reel-tag {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-a);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Timeline ===== */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 56px;
  counter-reset: step;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--accent-a), var(--accent-b), var(--border));
  opacity: 0.5;
}

.timeline li {
  position: relative;
  z-index: 1;
}

.tl-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}

.timeline li:nth-child(odd) .tl-num {
  border-color: var(--accent-a);
  color: var(--accent-a);
}

.timeline li:nth-child(even) .tl-num {
  border-color: var(--accent-b);
  color: var(--accent-b);
}

.timeline h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.timeline p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== Results ===== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.result-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-a);
  margin-bottom: 14px;
}

.result-icon svg {
  width: 100%;
  height: 100%;
}

.result-card:nth-child(even) .result-icon {
  color: var(--accent-b);
}

.result-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.result-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== Meist (team) ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 199, 0.4);
}

.team-avatar {
  position: relative;
  flex-shrink: 0;
  width: 148px;
  height: 148px;
  border-radius: var(--radius-lg);
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 22px;
}

.team-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-avatar::before {
  opacity: 1;
}

.team-initials {
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  font-size: 46px;
  color: #0A0A0F;
  letter-spacing: -0.02em;
}

.team-card h3 {
  font-size: 23px;
  margin-bottom: 6px;
}

.team-role {
  font-family: "League Spartan", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-a);
  margin-bottom: 18px;
}

.team-bio {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 30ch;
  flex-grow: 1;
}

.team-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.team-contact a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.team-contact a:hover {
  color: var(--accent-a);
}

/* ===== FAQ ===== */
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.faq-intro .btn { margin-top: 8px; }

.quick-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  max-width: 360px;
}

.quick-contact input,
.quick-contact textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  resize: none;
}

.quick-contact input::placeholder,
.quick-contact textarea::placeholder {
  color: var(--text-muted);
}

.quick-contact input:focus,
.quick-contact textarea:focus {
  outline: none;
  border-color: var(--accent-a);
}

.quick-contact .btn {
  align-self: flex-start;
  margin-top: 4px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-size: 16px;
  color: var(--accent-a);
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--grad);
  color: #0A0A0F;
  border-color: transparent;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 22px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 14.5px;
}

/* ===== CTA band ===== */
.cta-band {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.cta-inner {
  max-width: 640px;
}

.cta-band h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 18px;
}

.cta-band p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 34px;
}

.cta-alt {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-dim);
}

.cta-alt a {
  color: var(--accent-a);
  font-weight: 600;
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
}

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

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--accent-a);
  color: var(--accent-a);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-visual { height: 380px; margin-top: 20px; }
  .bento { grid-template-columns: 1fr; }
  .bento-lg { grid-column: auto; }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .timeline::before { display: none; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; gap: 24px; }
  .compare-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 68px; left: 16px; right: 16px;
    background: rgba(14,14,21,0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-actions .btn-primary { display: none; }
  .menu-toggle { display: flex; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .timeline { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .reel-card, .reel-thumb { width: 124px; }
  .bento { margin-top: 28px; gap: 12px; }
  .bento-card { padding: 20px 20px; }
  .bento-card h3 { font-size: 17px; }
  .bento-card p { font-size: 13.5px; margin-bottom: 10px; }
  .timeline { margin-top: 32px; row-gap: 22px; }
  .timeline li {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 14px;
    row-gap: 4px;
  }
  .tl-num {
    width: 32px; height: 32px;
    font-size: 14px;
    margin-bottom: 0;
    grid-row: 1 / 3;
    align-self: start;
  }
  .timeline h3 { grid-column: 2; font-size: 16px; margin-bottom: 0; }
  .timeline p { grid-column: 2; font-size: 13.5px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { padding: 28px 24px; }
  .team-avatar { width: 92px; height: 92px; margin-bottom: 14px; border-radius: var(--radius-md); }
  .team-initials { font-size: 30px; }
  .team-card h3 { font-size: 19px; }
  .team-role { margin-bottom: 12px; }
  .team-bio { font-size: 14px; margin-bottom: 16px; max-width: none; }
  .team-contact {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
  }
}
