:root {
  --bg: #f5f7f8;
  --fg: #103246;
  --muted: #6b7a86;
  --card: #ffffff;
  --surface: #eef3f5;
  --surface-strong: #e8edf0;
  --border: #dde4e8;
  --accent: #18a4d6;
  --accent-strong: #1094c3;
  --success: #16a34a;
  --warning: #d97706;
  --danger: #cf3d33;
  --ink: #111827;
  --shadow: 0 12px 28px rgba(16, 50, 70, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--fg);
  font-size: 14px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.nav-actions a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-actions a:hover {
  background: var(--surface-strong);
  color: var(--fg);
}

.nav-actions .button-solid,
.button-solid {
  background: var(--fg);
  color: #ffffff;
}

.nav-actions .button-solid:hover,
.button-solid:hover {
  background: #173f58;
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--fg);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--border);
  background: #ffffff;
  padding: 12px 16px 18px;
}

.mobile-panel a {
  display: block;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 600;
  padding: 12px 14px;
}

.mobile-panel a:hover,
.mobile-panel a.active {
  background: var(--surface-strong);
  color: var(--fg);
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  overflow: hidden;
  padding: clamp(56px, 8vw, 88px) 0;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  z-index: -1;
  width: min(72%, 920px);
  height: 380px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(24, 164, 214, 0.2) 10%, rgba(24, 164, 214, 0) 65%);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  position: relative;
  text-align: center;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.hero .eyebrow,
.hero h1,
.hero .lead,
.hero .actions,
.hero .mockup {
  animation: fadeUp 1.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 {
  animation-delay: 0.22s;
}

.hero .lead {
  animation-delay: 0.52s;
}

.hero .actions {
  animation-delay: 0.82s;
}

.hero .mockup {
  animation-delay: 1.2s;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(16, 50, 70, 0.06);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  max-width: 100%;
  padding: 9px 14px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--fg);
  font-size: clamp(36px, 7vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 20px auto 0;
  max-width: 980px;
  width: 100%;
}

h2 {
  color: var(--fg);
  font-size: clamp(28px, 5vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h3 {
  color: var(--fg);
}

.lead {
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 500;
  line-height: 1.65;
  margin: 20px auto 0;
  max-width: 720px;
  width: 100%;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 12px 30px rgba(24, 164, 214, 0.24);
  color: #ffffff;
}

.button-secondary {
  background: #ffffff;
  border-color: var(--border);
  color: var(--fg);
}

.button-secondary:hover {
  background: var(--surface-strong);
}

.section {
  padding: clamp(48px, 8vw, 82px) 0;
}

.section-white {
  background: #ffffff;
}

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

.section-surface {
  background: var(--surface);
}

.section-head {
  margin: 0 auto clamp(28px, 5vw, 54px);
  max-width: 760px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  margin: 12px auto 0;
  max-width: 620px;
}

.mockup {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(16, 50, 70, 0.14);
  margin-top: 44px;
  overflow: hidden;
}

.mockup-bar {
  align-items: center;
  background: #f8fbfc;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  padding: 14px 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d0dbe1;
}

.mockup-url {
  background: #eef3f5;
  border-radius: 6px;
  flex: 1;
  height: 22px;
  max-width: 320px;
  margin-left: 10px;
}

.mockup-screen {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  padding: clamp(18px, 3vw, 26px);
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
}

.preview-sidebar {
  background: #0f3146;
  border-radius: 8px;
  color: #ffffff;
  padding: 18px;
}

.preview-menu {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  margin-bottom: 6px;
  padding: 10px 12px;
  text-align: left;
}

.preview-menu.active {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.auto-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 26px);
}

.card.flat {
  box-shadow: none;
}

.stat-card strong {
  display: block;
  color: var(--fg);
  font-size: clamp(26px, 5vw, 34px);
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 8px;
}

.about-story,
.content-story {
  align-items: center;
}

.about-copy p,
.content-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-copy p:last-child,
.content-copy p:last-child {
  margin-bottom: 0;
}

.about-panel,
.feature-panel {
  align-content: center;
  background: #103246;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #ffffff;
  display: grid;
  min-height: 360px;
  padding: clamp(24px, 4vw, 42px);
}

.about-panel .badge,
.feature-panel .badge,
.about-cta .badge {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.about-panel h3,
.feature-panel h3 {
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
  margin: 18px 0 16px;
}

.about-panel p,
.feature-panel p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.feature-panel .list-clean li {
  color: rgba(255, 255, 255, 0.82);
}

.about-cta {
  align-items: center;
  background: #103246;
  border-radius: 8px;
  color: #ffffff;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  padding: clamp(24px, 5vw, 46px);
}

.about-cta h2 {
  color: #ffffff;
  margin: 18px 0 14px;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  max-width: 720px;
}

.about-cta .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.about-cta .button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  padding: 12px 10px;
  text-align: left;
}

th {
  color: var(--fg);
  font-size: 12px;
}

.logo-cloud {
  overflow: hidden;
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
  align-items: center;
  animation: marquee 28s linear infinite;
  display: flex;
  gap: clamp(30px, 6vw, 64px);
  width: max-content;
}

.logo-cloud:hover .logo-track {
  animation-play-state: paused;
}

.logo-track img {
  filter: grayscale(1);
  height: clamp(18px, 3vw, 30px);
  opacity: 0.85;
  width: auto;
}

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

.about-hero-panel {
  padding: 38px 0 30px;
}

.about-hero-title {
  color: #111827;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
  max-width: 1180px;
}

.about-hero-line {
  display: block;
}

.hero-highlight {
  border: 2px dotted currentColor;
  border-radius: 6px;
  display: inline-block;
  line-height: 1.05;
  padding: 0 8px;
}

.highlight-primary {
  color: #14b8c4;
}

.highlight-orange {
  color: #f97316;
}

.highlight-green {
  color: #22c55e;
}

.about-hero-bottom {
  align-items: flex-end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 42px;
}

.about-hero-kicker {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 6px;
}

.about-hero-label {
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.about-hero-button {
  background: #14b8c4;
  border-color: #14b8c4;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(20, 184, 196, 0.28);
  color: #ffffff;
  min-width: max-content;
}

.about-hero-button:hover {
  background: #0ea5b3;
  border-color: #0ea5b3;
  color: #ffffff;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(180px, auto));
  gap: 24px;
}

.bento-grid .bento-card {
  opacity: 0;
  transform: translateY(24px);
}

.bento-grid.visible .bento-card {
  animation: bentoRise 0.62s cubic-bezier(0.2, 0.82, 0.2, 1) forwards;
}

.bento-grid.visible .bento-card:nth-child(2) {
  animation-delay: 0.08s;
}

.bento-grid.visible .bento-card:nth-child(3) {
  animation-delay: 0.16s;
}

.bento-grid.visible .bento-card:nth-child(4) {
  animation-delay: 0.24s;
}

.bento-grid.visible .bento-card:nth-child(5) {
  animation-delay: 0.32s;
}

.bento-grid.visible .bento-card:nth-child(6) {
  animation-delay: 0.4s;
}

@keyframes bentoRise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.bento-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(16, 50, 70, 0.05), 0 12px 24px rgba(16, 50, 70, 0.04);
  min-height: 180px;
  padding: 28px;
  position: relative;
}

.bento-card h3 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
}

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

.bento-tall {
  display: flex;
  flex-direction: column;
  grid-row: span 3;
}

.bento-wide {
  align-items: center;
  display: flex;
  gap: 24px;
  grid-column: span 2;
  justify-content: space-between;
}

.bento-end {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-icon {
  align-items: center;
  background: #e8f6fc;
  border-radius: 8px;
  color: var(--accent);
  display: inline-flex;
  height: 52px;
  justify-content: center;
  margin-bottom: 18px;
  width: 52px;
}

.bento-icon svg,
.link-chip svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.bento-icon svg {
  height: 26px;
  width: 26px;
}

.bento-bottom {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
}

.bento-button {
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-size: 13px;
  font-weight: 800;
  min-height: 40px;
  padding: 10px 14px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.bento-button:hover {
  background: var(--surface-strong);
  transform: translateY(-1px);
}

.switch {
  display: inline-flex;
  position: relative;
}

.switch input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.switch span {
  background: var(--danger);
  border-radius: 999px;
  height: 28px;
  position: relative;
  transition: background 0.2s ease;
  width: 50px;
}

.switch span::after {
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(16, 50, 70, 0.2);
  content: "";
  height: 22px;
  left: 3px;
  position: absolute;
  top: 3px;
  transition: transform 0.22s ease;
  width: 22px;
}

.switch input:checked + span {
  background: var(--accent);
}

.switch input:checked + span::after {
  transform: translateX(22px);
}

.bento-kicker {
  color: var(--fg);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}

.bento-dotted {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.bento-dotted::before {
  background-image: radial-gradient(rgba(16, 50, 70, 0.35) 1px, transparent 1px);
  background-size: 16px 16px;
  content: "";
  inset: 0;
  opacity: 0.18;
  position: absolute;
}

.bento-dotted strong,
.bento-dotted span {
  position: relative;
  z-index: 1;
}

.bento-dotted strong {
  color: rgba(16, 50, 70, 0.92);
  font-size: 80px;
  font-weight: 800;
  line-height: 0.92;
}

.bento-dotted span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
}

.bento-row {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.cndp-badge {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 999px;
  color: var(--success);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
}

.bento-percent {
  color: var(--fg);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  margin: 22px 0;
}

.bento-meta {
  color: var(--muted);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
}

.link-chip {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  display: inline-flex;
  flex-shrink: 0;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 12px;
}

.link-chip svg {
  color: var(--accent);
  height: 18px;
  width: 18px;
}

.feature-card {
  min-height: 190px;
}

.feature-card .feature-icon {
  font-size: 12px;
}

.feature-card.tall {
  grid-row: span 2;
}

.feature-icon,
.social-link,
.round-icon {
  align-items: center;
  background: #e0f5fa;
  border-radius: 8px;
  color: var(--accent);
  display: inline-flex;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  margin-bottom: 16px;
  width: 48px;
}

.avatar-row {
  display: flex;
  margin-top: 22px;
}

.avatar-row img {
  border: 3px solid #ffffff;
  border-radius: 999px;
  height: 42px;
  object-fit: cover;
  width: 42px;
}

.avatar-row img + img {
  margin-left: -12px;
}

.testimonial-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-height: clamp(500px, 78vh, 780px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

.testimonial-column {
  min-height: 520px;
  overflow: hidden;
}

.testimonial-track {
  animation: scrollCol var(--duration, 20s) linear infinite;
  display: flex;
  flex-direction: column;
  gap: 24px;
  will-change: transform;
}

.testimonial-track.reverse {
  animation-name: scrollColRev;
}

.testimonial-column:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 auto;
  box-shadow: 0 12px 28px rgba(16, 50, 70, 0.08);
}

.testimonial-person {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-person img {
  border-radius: 999px;
  height: 42px;
  object-fit: cover;
  width: 42px;
}

.testimonial-person span {
  color: var(--muted);
  font-size: 13px;
}

@keyframes scrollCol {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-33.333%);
  }
}

@keyframes scrollColRev {
  from {
    transform: translateY(-33.333%);
  }
  to {
    transform: translateY(0);
  }
}

.toggle {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  display: inline-flex;
  height: 28px;
  justify-content: flex-end;
  padding: 3px;
  width: 50px;
}

.toggle span {
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  height: 22px;
  width: 22px;
}

.price-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.highlight {
  border-color: var(--accent);
  transform: translateY(-8px);
}

.badge {
  background: #e0f5fa;
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  width: max-content;
}

.price {
  color: var(--accent);
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  margin: 18px 0 8px;
}

.list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-clean li {
  color: var(--muted);
  margin: 10px 0;
  padding-left: 26px;
  position: relative;
}

.list-clean li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  left: 0;
  position: absolute;
}

.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--fg);
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  min-height: 58px;
  padding: 18px 0;
  text-align: left;
  width: 100%;
}

.accordion-content {
  color: var(--muted);
  display: none;
  padding: 0 0 18px;
}

.accordion-item.open .accordion-content {
  display: block;
}

.accordion-item.open .accordion-button span:last-child {
  transform: rotate(45deg);
}

.article-card img,
.article-cover {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.article-card {
  overflow: hidden;
  padding: 0;
}

.article-card-content {
  padding: 24px;
}

.article-body {
  color: #374151;
  font-size: 16px;
}

.article-body h2 {
  color: var(--ink);
  font-size: clamp(24px, 4vw, 32px);
  margin: 34px 0 12px;
}

.article-body h3 {
  color: #1f2937;
  margin: 26px 0 8px;
}

.article-body p,
.article-body li {
  color: #374151;
  line-height: 1.72;
}

.article-body ul {
  padding-left: 22px;
}

.legal-page h1 {
  font-size: clamp(34px, 6vw, 48px);
}

.legal-page section {
  margin-bottom: 34px;
}

.legal-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 18px;
}

.legal-section-body {
  color: var(--muted);
}

.legal-section-body p {
  margin: 0 0 14px;
}

.legal-section-body p:last-child {
  margin-bottom: 0;
}

.legal-section-body h3 {
  color: var(--fg);
  font-size: 18px;
  margin: 22px 0 8px;
}

.legal-section-body ul {
  margin: 10px 0 16px;
  padding-left: 22px;
}

.legal-section-body li {
  margin: 8px 0;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--fg);
  font-size: 13px;
  font-weight: 700;
}

.input,
.textarea,
.select {
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  min-height: 44px;
  padding: 12px 13px;
  width: 100%;
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(24, 164, 214, 0.12);
  outline: 0;
}

.form-note,
.success-box {
  background: #effafe;
  border: 1px solid #c7eef9;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  padding: 13px;
}

.success-box {
  display: none;
}

.success-box.show {
  display: block;
}

.hidden {
  display: none !important;
}

.footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 52px 0;
}

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

.footer h4 {
  margin: 0 0 12px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-link {
  height: 38px;
  margin: 0;
  width: 38px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 18px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .logo-track,
  .testimonial-track {
    animation: none !important;
    transform: none !important;
  }

  .logo-track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .bento-grid .bento-card {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mobile-panel.open {
    display: block;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .bento-tall,
  .bento-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-wide {
    align-items: flex-start;
    flex-direction: column;
  }

  .testimonial-column:nth-child(3) {
    display: none;
  }

  .about-hero-title {
    font-size: 52px;
  }

}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero .container {
    overflow: hidden;
  }

  .hero .eyebrow,
  .hero h1,
  .hero .lead {
    max-width: calc(100vw - 24px);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .about-cta {
    grid-template-columns: 1fr;
  }

  .about-cta .actions {
    margin-top: 8px !important;
  }

  .about-hero-title {
    font-size: 34px;
    line-height: 1.14;
  }

  .about-hero-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }

  .testimonial-lanes {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card {
    padding: 22px;
  }

  .bento-meta {
    gap: 12px;
    flex-direction: column;
  }

  .testimonial-column:nth-child(2) {
    display: none;
  }

  .price-card.highlight {
    transform: none;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
