:root {
  --bg-main: #0a0a0a;
  --bg-alt: #141414;
  --bg-card: #1a1a1a;
  --border: #2a2a2a;
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  --accent: #ff6300;
  --accent-soft: #ff9f64;
  --radius: 12px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  background: radial-gradient(circle at top right, #181818 0%, var(--bg-main) 44%);
  font-family: "Plus Jakarta Sans", "Space Grotesk", "Inter", "Segoe UI", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}

p {
  margin: 0;
}

.container {
  width: min(var(--max-width), 87vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -3rem;
  z-index: 99;
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 0.85rem;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42, 42, 42, 0.7);
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-content: center;
  border-radius: 0.6rem;
  background: linear-gradient(145deg, var(--accent), #ff8d47);
  color: #fff;
  font-size: 0.9rem;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.main-nav {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

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

.section {
  padding: clamp(4.2rem, 8vw, 6.6rem) 0;
  position: relative;
}

.section.alt {
  background: linear-gradient(180deg, var(--bg-alt), #111111);
}

.section-kicker,
.eyebrow {
  display: inline-block;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  max-width: 18ch;
}

.section-intro {
  color: var(--text-muted);
  max-width: 70ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.hero {
  overflow: clip;
}

.hero::after,
.cta-block::before {
  content: "";
  position: absolute;
  inset: 1rem auto auto 50%;
  width: 45vw;
  height: 45vw;
  max-width: 520px;
  max-height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 99, 0, 0.14), transparent 64%);
  transform: translateX(-10%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 3vw, 3.2rem);
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-text .lead {
  max-width: none;
}

.hero-video .video-wrapper {
  max-width: 100%;
  margin-inline: 0;
}

.hero-copy h1 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  max-width: 15ch;
}

.lead {
  color: var(--text-muted);
  max-width: 58ch;
  margin-top: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 99, 0, 0.2);
}

.btn-secondary {
  color: var(--text-main);
  border-color: var(--border);
  background: rgba(26, 26, 26, 0.8);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px) scale(1.02);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 12px 26px rgba(255, 99, 0, 0.32);
}

.btn-large {
  min-height: 3.2rem;
  min-width: 12rem;
}

.hero-visual {
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  background: linear-gradient(170deg, #101010, #0d0d0d);
  padding: 0.9rem;
}

.hero-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.cards {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  background: linear-gradient(175deg, var(--bg-card), #171717);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.card:hover,
.card:focus-within {
  border-color: rgba(255, 99, 0, 0.56);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 18px rgba(255, 99, 0, 0.09);
}

.card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* ── Service cards (homepage) ── */
.services-grid {
  --service-glow: rgba(255, 99, 0, 0.08);
  gap: 1.25rem;
}

.services-grid .service {
  text-align: center;
  padding: 2rem 1.5rem;
  border-color: rgba(42, 42, 42, 0.8);
  background: linear-gradient(175deg, #1d1d1d, #161616);
  overflow: hidden;
}

.services-grid .service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--service-glow), transparent 70%);
  pointer-events: none;
}

.services-grid .service::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
  opacity: 0.5;
  transition: width 300ms ease, opacity 300ms ease;
}

.services-grid .service:hover::after {
  width: 80%;
  opacity: 1;
}

.services-grid .service:hover {
  border-color: rgba(255, 99, 0, 0.35);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 32px rgba(255, 99, 0, 0.12);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 99, 0, 0.1);
  border: 1px solid rgba(255, 99, 0, 0.2);
  margin-bottom: 1rem;
  transition: transform 300ms ease, background 300ms ease, border-color 300ms ease;
}

.services-grid .service:hover .service-icon {
  transform: scale(1.1);
  background: rgba(255, 99, 0, 0.18);
  border-color: rgba(255, 99, 0, 0.4);
}

.services-grid .service h3 {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin-bottom: 0.6rem;
  position: relative;
}

.services-grid .service p {
  font-size: 0.92rem;
  line-height: 1.55;
  position: relative;
}

.icon {
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
  display: inline-block;
}

.product .badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: 0.55rem;
  padding: 0.35rem 0.6rem;
  font-size: 0.83rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-link:hover .badge {
  background: var(--accent-soft);
}

.badge-popular {
  position: absolute;
  top: -0.65rem;
  right: -0.65rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(255, 99, 0, 0.45);
  z-index: 2;
  pointer-events: none;
}

.faq-list {
  margin-top: 1.2rem;
  border-top: 1px solid var(--border);
}

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

.faq-trigger {
  width: 100%;
  background: none;
  border: 0;
  color: var(--text-main);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 0;
  font-size: 1.05rem;
  cursor: pointer;
}

.faq-arrow {
  color: var(--accent);
  transition: transform 220ms ease;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 240ms ease, opacity 240ms ease;
}

.faq-panel p {
  overflow: hidden;
  color: var(--text-muted);
  padding: 0 0 0;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.is-open .faq-panel p {
  padding: 0 0 1rem;
}

.faq-item.is-open .faq-arrow {
  transform: rotate(180deg);
}

.cta-block {
  overflow: clip;
}

.cta-inner {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.8rem, 5vw, 3rem);
  background: linear-gradient(155deg, #1a1a1a, #111111);
}

.cta-inner h2 {
  max-width: none;
}

.cta-inner p {
  color: var(--text-muted);
  margin: 0 auto 1.3rem;
  max-width: 56ch;
}

.text-center-narrow {
  text-align: center;
  max-width: min(90%, 800px);
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.text-center-narrow .section-kicker {
  display: inline-block;
}

.text-center-narrow h2 {
  max-width: none;
}

.contact-form {
  max-width: 560px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--text-main);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 99, 0, 0.15);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a0a0a0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-main);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  margin-top: 0.5rem;
}

.form-status {
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 0.5rem;
}

.form-status.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.text-narrow {
  max-width: min(90%, 800px);
  margin-inline: auto;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #0a0a0a;
  padding: 1.9rem 0 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col h4 {
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.3rem;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-col nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-col nav a:hover,
.footer-col nav a:focus-visible {
  color: var(--text-main);
}

.footer-col p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.site-footer nav a {
  color: var(--text-main);
  text-decoration: none;
}

.video-wrapper {
  max-width: min(100%, 960px);
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.video-thumbnail {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease, filter 300ms ease;
}

.video-thumbnail:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: transform 200ms ease;
  pointer-events: none;
}

.video-thumbnail:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.15);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.feature-list li strong {
  color: var(--text-main);
}

.accent-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, color 200ms ease;
}

.accent-link:hover,
.accent-link:focus-visible {
  color: var(--accent-soft);
  border-bottom-color: var(--accent-soft);
}

.comparison-wrapper {
  max-width: 100%;
  margin-inline: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.comparison-table thead th {
  background: var(--bg-card);
  color: var(--text-main);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 2px solid var(--accent);
  white-space: nowrap;
}

.comparison-table tbody td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
  line-height: 1.55;
}

.comparison-table tbody tr:nth-child(even) td {
  background: rgba(26, 26, 26, 0.45);
}

.comparison-table tbody tr:hover td {
  background: rgba(255, 99, 0, 0.06);
}

.comparison-table tbody td:first-child {
  color: var(--text-main);
}

@media (max-width: 700px) {
  .comparison-table {
    font-size: 0.92rem;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 0.7rem 0.8rem;
  }
}

.highlight-quote {
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1rem;
  margin: 1.2rem 0;
  font-style: italic;
  color: var(--text-main);
  background: rgba(255, 99, 0, 0.05);
  border-radius: 0 8px 8px 0;
}

.feature-block {
  margin-bottom: 2.5rem;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  display: inline-block;
}

.feature-block h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin-bottom: 0.75rem;
}

.feature-block > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.feature-block .feature-list {
  margin-bottom: 1rem;
}

.legal-content {
  max-width: min(90%, 900px);
  margin-inline: auto;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 720px;
  }

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

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

.lang-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
  min-width: 42px;
  text-align: center;
  font-family: inherit;
  line-height: 1.4;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255, 99, 0, 0.08);
}

/* ===== Social Links ===== */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease;
  text-decoration: none;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255, 99, 0, 0.08);
  transform: translateY(-2px);
}

.social-link svg {
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 5px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 110;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.menu-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 80vw);
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 4rem 1.5rem 2rem;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 300ms ease;
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  border-radius: 4px;
  transition: background 200ms ease;
}

.mobile-nav-close:hover,
.mobile-nav-close:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.85rem 0.5rem;
  border-radius: 8px;
  transition: color 200ms ease, background 200ms ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--text-main);
  background: rgba(255, 99, 0, 0.08);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    padding-bottom: 0.2rem;
  }

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

  .hero-copy h1 {
    max-width: none;
  }

  .faq-trigger {
    font-size: 0.98rem;
  }

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

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .main-nav {
    display: none;
  }

  .text-center-narrow,
  .text-narrow,
  .legal-content {
    max-width: 100%;
  }

  .card {
    padding: 1rem;
  }

  .comparison-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --max-width: 100%;
  }

  .container {
    width: 85vw;
  }

  .hero-copy h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .section {
    padding: 3rem 0;
  }

  .card {
    padding: 0.85rem;
  }

  .btn-large {
    min-width: 0;
    width: 100%;
  }

  .feature-list li {
    font-size: 0.95rem;
  }

  .faq-trigger {
    font-size: 0.92rem;
  }

  .contact-form {
    max-width: 100%;
  }
}
