:root {
  --bg: #f7f8fb;
  --bg-2: #fcfcfe;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-solid: #ffffff;
  --text: #111827;
  --text-soft: #344054;
  --muted: #667085;
  --muted-2: #98a2b3;
  --border: rgba(17, 24, 39, 0.08);
  --border-strong: rgba(17, 24, 39, 0.12);
  --brand: #ff5a1f;
  --brand-2: #ff7a45;
  --brand-strong: #e84b11;
  --brand-soft: #fff1ea;
  --brand-soft-2: #fff7f3;
  --shadow-xs: 0 8px 20px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 14px 32px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 24px 52px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 34px 84px rgba(15, 23, 42, 0.14);
  --radius-xs: 14px;
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --wrap: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 90, 31, 0.08), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(255, 90, 31, 0.07), transparent 22%),
    radial-gradient(circle at 82% 82%, rgba(255, 176, 136, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 18%, #f7f8fb 58%, #f5f7fa 100%);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--wrap));
  margin: 0 auto;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
}

.site-bg::before {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: rgba(255, 90, 31, 0.12);
}

.site-bg::after {
  width: 360px;
  height: 360px;
  bottom: 6%;
  left: -110px;
  background: rgba(255, 190, 160, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 16px 0;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.66);
  border-bottom: 1px solid rgba(17, 24, 39, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  background: #fff;
  box-shadow:
    0 10px 26px rgba(255, 90, 31, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  max-width: 310px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.nav a {
  white-space: nowrap;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(17, 24, 39, 0.04);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-xs);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 20px 40px rgba(255, 90, 31, 0.22);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--border);
  box-shadow: var(--shadow-xs);
}

.button.ghost {
  color: var(--muted);
  background: transparent;
  border-color: rgba(17, 24, 39, 0.08);
}

.hero {
  position: relative;
  padding: 52px 0 34px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 560px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 90, 31, 0.08), transparent 20%),
    radial-gradient(circle at 80% 30%, rgba(255, 90, 31, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 243, 237, 0.9), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: 44px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 90, 31, 0.12);
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--shadow-xs);
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(255, 90, 31, 0.12);
}

.hero-copy {
  max-width: 640px;
}

.hero-copy h1 {
  margin: 22px 0 18px;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 0.93;
  letter-spacing: -0.065em;
  font-weight: 900;
  max-width: 10.5ch;
}

.accent {
  color: var(--brand);
}

.hero-copy p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.75;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-xs);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.metric-card {
  padding: 20px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.68));
  border: 1px solid rgba(17, 24, 39, 0.07);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.metric-card strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 700px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 90px 30px 40px 50px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 90, 31, 0.12), transparent 56%),
    linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.08));
  border: 1px solid rgba(255, 255, 255, 0.55);
  filter: blur(0.2px);
  z-index: 0;
}

.glow {
  position: absolute;
  width: 72%;
  height: 48%;
  left: 14%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.2), transparent 70%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 1;
}

.device-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.78));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.device-card.main {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 16px;
  border-radius: 38px;
  z-index: 3;
}

.device-card.floating {
  position: absolute;
  width: 210px;
  padding: 12px;
  border-radius: 26px;
  z-index: 2;
  animation: float 5.5s ease-in-out infinite;
}

.device-card.floating img {
  border-radius: 18px;
}

.device-card.floating.left {
  left: 10px;
  top: 170px;
  transform: rotate(-9deg);
}

.device-card.floating.right {
  right: 8px;
  bottom: 90px;
  transform: rotate(9deg);
  animation-delay: 0.8s;
}

.device-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 6px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.device-notch {
  width: 112px;
  height: 30px;
  border-radius: 999px;
  background: #0f1115;
}

.screen-wrap {
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.screen-wrap img {
  width: 100%;
  height: auto;
}

.hero-mini-cards {
  position: absolute;
  right: 2px;
  top: 82px;
  display: grid;
  gap: 12px;
  z-index: 4;
}

.floating-badge {
  min-width: 250px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.floating-badge strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.floating-badge span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-strip {
  margin-top: 36px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strip-card {
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.72));
  border: 1px solid rgba(17, 24, 39, 0.07);
  box-shadow: var(--shadow-sm);
}

.strip-card strong {
  display: block;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.strip-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 50px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-head p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-head .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.flow-card,
.feature-card,
.gallery-card,
.seo-card,
.cta-box,
.faq-card,
.trust-card,
.compare-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.76));
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.info-card,
.flow-card,
.feature-card,
.seo-card,
.trust-card,
.compare-card {
  padding: 24px;
}

.info-card .step,
.flow-card .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: linear-gradient(180deg, var(--brand-soft), #ffe8de);
  color: var(--brand);
  font-weight: 900;
  margin-bottom: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 90, 31, 0.08);
}

.info-card h3,
.flow-card h3,
.feature-card h3,
.compare-card h3,
.trust-card h3,
.seo-card h3,
.faq-card h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.info-card p,
.flow-card p,
.feature-card p,
.compare-card p,
.trust-card p,
.seo-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.dual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.flow-card {
  position: relative;
  overflow: hidden;
}

.flow-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.12), transparent 70%);
  pointer-events: none;
}

.flow-card ul,
.trust-list,
.seo-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.flow-card li,
.trust-list li,
.seo-list li {
  display: flex;
  gap: 12px;
  align-items: start;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 800;
}

.flow-card li::before,
.trust-list li::before,
.seo-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  margin-top: 1px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 18px;
  align-items: stretch;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.82));
  border: 1px solid rgba(17, 24, 39, 0.07);
  box-shadow: var(--shadow-md);
  padding: 14px;
}

.media-card img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.media-card.tall img {
  min-height: 100%;
  object-fit: cover;
}

.media-label {
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 2;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.78);
  color: white;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
  overflow: hidden;
}

.gallery-thumb {
  aspect-ratio: 0.76 / 1;
  background: #f4f5f7;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-copy {
  padding: 18px;
}

.gallery-copy strong {
  display: block;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.gallery-copy span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr 0.85fr;
}

.highlight-panel {
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 90, 31, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.84));
  border: 1px solid rgba(17, 24, 39, 0.07);
  box-shadow: var(--shadow-md);
}

.highlight-panel h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.highlight-panel p {
  margin: 14px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 16px;
}

.highlight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.highlight-chip {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 24, 39, 0.08);
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-xs);
}

.seo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    radial-gradient(circle at right bottom, rgba(255, 90, 31, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
}

.cta-box::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.16), transparent 72%);
}

.cta-box h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.cta-box p {
  margin: 14px 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-card {
  padding: 0;
  overflow: hidden;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  font-size: 24px;
  color: var(--brand);
  flex: 0 0 auto;
}

.faq-card[open] summary::after {
  content: "–";
}

.faq-body {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.footer {
  padding: 26px 0 52px;
}

.footer-box {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.08fr 0.92fr;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 90, 31, 0.22), transparent 20%),
    linear-gradient(180deg, #151922 0%, #0f131b 100%);
  color: white;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.footer-brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.footer-brand span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  max-width: 58ch;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.footer-links a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 800;
}

.compat-note {
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(var(--float-rotate, 0deg));
  }
  50% {
    transform: translateY(-8px) rotate(var(--float-rotate, 0deg));
  }
}

.device-card.floating.left {
  --float-rotate: -9deg;
}

.device-card.floating.right {
  --float-rotate: 9deg;
}

@media (max-width: 1240px) {
  .hero-grid,
  .compare-grid,
  .trust-grid,
  .footer-box {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-mini-cards {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  .device-card.floating {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
  }

  .nav-wrap.open {
    display: flex;
  }

  .nav,
  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav a,
  .header-actions .button {
    width: 100%;
    justify-content: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-grid,
  .dual-grid,
  .card-grid.cols-3,
  .card-grid.cols-4,
  .gallery-grid,
  .hero-strip,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--wrap));
  }

  .site-header {
    padding: 12px 0;
  }

  .brand-copy span {
    display: none;
  }

  .button {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 15px;
  }

  .kicker {
    font-size: 12px;
  }

  .hero-copy p,
  .section-head p,
  .cta-box p {
    font-size: 16px;
  }

  .info-card,
  .flow-card,
  .feature-card,
  .seo-card,
  .trust-card,
  .compare-card,
  .cta-box,
  .highlight-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .gallery-copy,
  .faq-card summary,
  .faq-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .device-card.main {
    padding: 12px;
    border-radius: 26px;
  }

  .screen-wrap {
    border-radius: 22px;
  }

  .hero-mini-cards {
    grid-template-columns: 1fr;
  }

  .footer-box {
    padding: 20px;
    border-radius: 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}