/* ══════════════════════════════════════════════
   TOWERDESK · DARK THEME · ORIZON-INSPIRED
   ══════════════════════════════════════════════ */

:root {
  --bg:         #080c14;
  --bg-card:    #0d1320;
  --bg-card-2:  rgba(255,255,255,0.04);
  --border:     rgba(255,255,255,0.08);
  --border-hi:  rgba(255,255,255,0.14);
  --text:       #f0f4ff;
  --text-muted: #7a8ba5;
  --text-dim:   #3d5068;
  --blue:       #3b82f6;
  --blue-dark:  #1d4ed8;
  --cyan:       #06b6d4;
  --glow-blue:  rgba(59,130,246,0.35);
  --glow-cyan:  rgba(6,182,212,0.2);
  --gradient:   linear-gradient(135deg, var(--blue), var(--cyan));
  --shadow-card: 0 1px 0 0 rgba(255,255,255,0.06) inset,
                 0 24px 64px rgba(0,0,0,0.5);
}

*, *::before, *::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── TYPOGRAPHY ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.muted-text { color: var(--text-dim); }

/* ── BUTTONS ── */
.btn { border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: all .2s; border: none; }

.td-btn-primary {
  background: var(--gradient);
  color: #fff;
  padding: 12px 22px;
  box-shadow: 0 0 24px rgba(59,130,246,0.4);
}
.td-btn-primary:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 0 36px rgba(59,130,246,0.55); }

.td-btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hi);
  padding: 12px 22px;
}
.td-btn-outline:hover { background: rgba(255,255,255,0.06); color: var(--text); }

.td-btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 22px;
}
.td-btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--text); border-color: var(--border-hi); }

/* ── NAVBAR ── */
.td-nav {
  background: rgba(8,12,20,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
  padding: 14px 0;
}
.td-nav.is-scrolled {
  background: rgba(8,12,20,0.92);
  border-bottom-color: var(--border);
}

.td-brand {
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}

.brand-mark {
  display: inline-grid;
  width: 36px; height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--gradient);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 0 16px var(--glow-blue);
}

.td-link {
  color: var(--text-muted) !important;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.td-link:hover { color: var(--text) !important; background: rgba(255,255,255,0.05); }

.navbar-toggler {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  background: transparent;
  border-radius: 8px;
}

/* ── EYEBROW ── */
.td-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── SECTION ── */
.td-section { padding: 100px 0; }

.td-section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.td-section-sub {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
}

/* ══════════════ HERO ══════════════ */
.td-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  top: -100px; left: -150px;
  background: radial-gradient(circle, rgba(59,130,246,0.18), transparent 70%);
}
.hero-glow-2 {
  width: 500px; height: 500px;
  bottom: -80px; right: -120px;
  background: radial-gradient(circle, rgba(6,182,212,0.14), transparent 70%);
}

.hero-container { position: relative; z-index: 2; }

.hero-text { margin-bottom: 60px; }

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.06;
  margin: 12px 0 20px;
}

.hero-sub {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── Dashboard Mockup ── */
.hero-mockup {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-hi);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04),
              0 40px 120px rgba(0,0,0,0.8),
              0 0 80px rgba(59,130,246,0.12);
  overflow: hidden;
  animation: floatUp 1s ease both;
}

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

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.mockup-actions { display: flex; gap: 12px; color: var(--text-dim); font-size: 0.85rem; }

.mockup-body { display: flex; min-height: 340px; }

/* Sidebar */
.mockup-sidebar {
  width: 52px;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 0;
  gap: 6px;
}

.sidebar-logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 14px;
}

.sidebar-link {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--text-dim);
  font-size: 1rem;
  cursor: pointer;
  transition: all .15s;
}
.sidebar-link.active,
.sidebar-link:hover { background: rgba(59,130,246,0.15); color: var(--blue); }

/* Main panel */
.mockup-main { flex: 1; padding: 18px; display: flex; flex-direction: column; gap: 16px; }

.mockup-header { display: flex; justify-content: space-between; align-items: start; }
.mh-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; }
.mh-sub { font-size: 0.74rem; color: var(--text-muted); margin-top: 2px; }
.mh-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #22c55e;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 999px;
  padding: 4px 12px;
}

.pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.6s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; }
  50% { opacity:.3; }
}

/* Metrics */
.mockup-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }

.mm-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}

.accent-card {
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(6,182,212,0.12));
  border-color: rgba(59,130,246,0.25);
}

.mm-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.mm-value { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; margin: 4px 0; }
.mm-badge { font-size: 0.68rem; font-weight: 600; border-radius: 999px; padding: 2px 8px; display: inline-block; }
.mm-badge.up { background: rgba(34,197,94,0.14); color: #22c55e; }
.mm-badge.warn { background: rgba(251,146,60,0.14); color: #fb923c; }
.mm-badge.ok { background: rgba(59,130,246,0.14); color: var(--blue); }

/* Chart */
.mockup-chart-area {
  flex: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}

.chart-header {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.chart-badge {
  font-size: 0.65rem;
  background: rgba(34,197,94,0.14);
  color: #22c55e;
  border-radius: 999px;
  padding: 2px 8px;
}

.chart-bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 60px;
}

.chart-bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.chart-bar { width: 100%; border-radius: 4px 4px 0 0; background: rgba(59,130,246,0.25); }
.chart-bar.hi { background: var(--gradient); }
.chart-label { font-size: 0.6rem; color: var(--text-dim); }

/* ══════════════ MISSION ══════════════ */
.td-mission {
  padding: 100px 0;
  text-align: center;
}

.mission-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}

.mission-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  line-height: 1.35;
  color: var(--text);
}
.mission-headline strong { color: #fff; font-weight: 900; }

/* ══════════════ BENTO GRID ══════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.bento-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }

.bento-wide { grid-column: span 2; }

.bento-right-top { grid-column: 3; grid-row: 1; }

.bento-stat { grid-row: 2; }

.bc-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.bento-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.bento-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 14px;
}

.bento-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

.stat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.2);
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 1.2rem;
}

/* Mini chart */
.mini-chart-block { margin-top: 20px; }

.mini-chart-top { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 12px; }
.mini-chart-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}
.mini-chart-meta { font-size: 0.76rem; color: var(--text-muted); display: flex; flex-direction: column; gap: 3px; }

.mini-bars {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  height: 60px;
}
.mini-bar { flex: 1; border-radius: 4px 4px 0 0; background: rgba(59,130,246,0.2); }
.mini-bar.hi { background: var(--gradient); }

.chip-up { color: #22c55e; }

/* Task strip */
.task-strip { margin-top: 24px; display: flex; align-items: center; gap: 16px; }
.task-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.task-meta { flex: 1; }
.task-label { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 8px; }
.task-progress { height: 6px; background: rgba(255,255,255,0.08); border-radius: 999px; margin-bottom: 6px; }
.task-bar { height: 100%; border-radius: 999px; background: var(--gradient); }
.task-pct { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); }

/* ══════════════ INTEGRATIONS ══════════════ */
.td-integrations {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.integrations-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.integrations-row-2 { margin-top: 14px; }

.int-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--text-muted);
  transition: all .2s;
}
.int-icon:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* ══════════════ TESTIMONIALS ══════════════ */
.td-testimonials {
  padding: 100px 0;
  overflow: hidden;
}

.testi-track-wrap { overflow: hidden; margin: 50px 0 30px; }

.testi-track {
  display: flex;
  gap: 18px;
  transition: transform .4s ease;
}

.testi-card {
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.highlight-card {
  background: linear-gradient(145deg, rgba(59,130,246,0.14), rgba(6,182,212,0.08));
  border-color: rgba(59,130,246,0.3);
}

.stars { color: #3b82f6; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }

.testi-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-name { font-size: 0.85rem; font-weight: 600; }
.testi-role { font-size: 0.75rem; color: var(--text-muted); }

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.tn-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .2s;
}
.tn-btn:hover { border-color: var(--blue); color: var(--blue); }

.tn-dots { display: flex; gap: 6px; }
.tn-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border-hi); transition: all .2s; }
.tn-dot.active { background: var(--blue); width: 18px; border-radius: 999px; }

/* ══════════════ PRICING ══════════════ */
.td-pricing { background: rgba(255,255,255,0.01); }

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 56px;
}

.pt-btn {
  padding: 8px 22px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pt-btn.active { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); }

.save-chip {
  font-size: 0.65rem;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  border-radius: 999px;
  padding: 2px 7px;
  font-weight: 700;
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color .2s;
}
.pricing-card:hover { border-color: var(--border-hi); }

.pricing-popular {
  background: linear-gradient(180deg, rgba(59,130,246,0.1), rgba(6,182,212,0.05));
  border-color: rgba(59,130,246,0.35);
  box-shadow: 0 0 60px rgba(59,130,246,0.1);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 16px;
  white-space: nowrap;
}

.pc-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 10px;
}

.pc-price {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.pc-period { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 14px; }
.pc-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; }

.pc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pc-features li i {
  color: var(--blue);
  background: rgba(59,130,246,0.12);
  border-radius: 50%;
  width: 18px; height: 18px;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ══════════════ HIGH-PERFORMING TEAMS ══════════════ */
.td-hpt { }

.hpt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 40px; }

.hpt-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.hpt-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }

.hpt-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.18);
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 1.4rem;
  margin: 0 auto 20px;
}

.hpt-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.hpt-card p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

.hpt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hpt-chips span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hpt-chips i { color: var(--blue); font-size: 0.55rem; }

/* ══════════════ FAQ ══════════════ */
.td-accordion { max-width: 780px; margin-inline: auto; }

.ta-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--bg-card);
}

.ta-btn {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.ta-btn::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform .2s;
}
.ta-btn[aria-expanded="true"]::after { content: '−'; }

.ta-body {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.ta-body p { margin: 0; }

/* ══════════════ CTA ══════════════ */
.td-cta {
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.marquee-wrap {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--text);
  flex-shrink: 0;
}

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

.cta-body { padding: 80px 0 100px; }

.cta-title {
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 8px 0 16px;
}

.cta-sub { color: var(--text-muted); font-size: 1rem; max-width: 640px; }

/* ══════════════ FOOTER ══════════════ */
.td-footer {
  background: #050810;
  border-top: 1px solid var(--border);
  padding: 70px 0 28px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer-desc { color: var(--text-muted); font-size: 0.88rem; max-width: 360px; line-height: 1.7; }

.footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.td-footer a {
  display: block;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color .2s;
}
.td-footer a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--text-dim); font-size: 0.82rem; }
.footer-legal a:hover { color: var(--text); }

/* ══════════════ SCROLL REVEAL ══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view { opacity: 1; transform: none; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 991px) {
  .td-section { padding: 70px 0; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-wide, .bento-right-top { grid-column: span 1; }
  .bento-stat { grid-row: auto; }
  .mockup-metrics { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .hpt-grid { grid-template-columns: 1fr 1fr; }
  .pricing-popular { transform: none; }
}

@media (max-width: 767px) {
  .td-section { padding: 56px 0; }
  .hero-btns { flex-direction: column; align-items: center; }
  .bento-grid { grid-template-columns: 1fr; }
  .mockup-metrics { grid-template-columns: repeat(2,1fr); }
  .mockup-sidebar { display: none; }
  .hpt-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: 260px; max-width: 260px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-body .d-flex { align-items: stretch !important; }
  .cta-body .btn { width: 100%; text-align: center; }
}

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