/* ============================================================
   Aprasal — Landing Page Styles
   ============================================================ */

:root {
  --cream-0: #faf8f2;
  --cream-1: #f6f2e9;
  --cream-2: #efe9dc;
  --cream-3: #e8e1d1;
  --ink: #1c160d;
  --ink-soft: #6b6353;
  --ink-faint: #a29a86;
  --accent: #9ed650;
  --accent-2: #6ea122;
  --accent-soft: #eaf7d9;
  --accent-soft-2: #f5fbec;
  --border: rgba(28, 22, 13, 0.09);
  --border-soft: rgba(28, 22, 13, 0.06);
  --card-bg: rgba(255, 253, 248, 0.55);
  --shadow-soft: 0 20px 60px -20px rgba(60, 45, 10, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ink);
}

.section-copy {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 253, 247, 0.6);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}

.pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- App Store badge ---------- */
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 10px 20px 10px 16px;
  border: none;
}
.appstore-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.appstore-badge .lines { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.appstore-badge .lines small { font-size: 11px; font-weight: 400; opacity: 0.85; }
.appstore-badge .lines strong { font-size: 18px; font-weight: 600; font-family: var(--font-display); letter-spacing: -0.01em; }

/* ============================================================
   Background wash — soft radial glow behind whole page
   ============================================================ */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 82% 4%, rgba(158, 214, 80, 0.16), transparent 60%),
    radial-gradient(700px 500px at 8% 30%, rgba(158, 214, 80, 0.08), transparent 60%),
    var(--cream-1);
}

/* ============================================================
   NAV
   ============================================================ */
.top-strip {
  height: 6px;
  background: linear-gradient(90deg, #2a2116, #3a2f1e 40%, #2a2116);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 233, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(155deg, var(--accent) 0%, var(--accent-2) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px -6px rgba(110, 161, 34, 0.65);
}
.brand-mark svg { width: 18px; height: 18px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 18px; }

.btn-download {
  background: linear-gradient(155deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #2b1c02;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px -8px rgba(110, 161, 34, 0.7);
  border: none;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--ink-soft);
}
.icon-btn svg { width: 16px; height: 16px; }

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 96px 0 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--accent-soft-2);
  color: var(--accent-2);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 26px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.6vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.hero h1 .accent-line {
  display: block;
  background: linear-gradient(100deg, var(--accent) 10%, var(--accent-2) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 0 30px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-visual { position: relative; display: flex; justify-content: center; }

/* ============================================================
   DEVICE FRAMES
   ============================================================ */
.phone {
  width: 300px;
  border-radius: 46px;
  background: #17130c;
  padding: 14px;
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(0,0,0,0.4);
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  top: 26px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #17130c;
  border-radius: 20px;
  z-index: 5;
}
.phone-screen {
  background: var(--cream-0);
  border-radius: 32px;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.status-bar .icons { display: flex; gap: 5px; align-items: center; }
.status-bar .icons svg { width: 16px; height: 12px; }

.app-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px 6px;
}
.app-toolbar .toolbar-icons { display: flex; gap: 14px; color: var(--ink-faint); }
.app-toolbar .toolbar-icons svg { width: 18px; height: 18px; }
.fab {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  color: #fff; font-size: 18px; font-weight: 600;
  box-shadow: 0 6px 14px -4px rgba(110,161,34,0.6);
}

.screen-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 25px;
  padding: 6px 20px 12px;
}

.search-bar {
  margin: 0 20px 14px;
  background: var(--cream-2);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-bar svg { width: 14px; height: 14px; }

.day-label {
  display: flex;
  justify-content: space-between;
  padding: 4px 20px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}
.day-label span.count {
  background: var(--cream-2);
  border-radius: 999px;
  padding: 1px 8px;
  font-weight: 600;
}

.win-card {
  margin: 0 20px 10px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.win-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 15px;
}
.win-body { flex: 1; min-width: 0; }
.win-title { font-size: 13.5px; font-weight: 600; line-height: 1.35; margin-bottom: 4px; }
.win-meta { font-size: 11.5px; color: var(--ink-faint); display: flex; gap: 6px; align-items: center; }
.win-tag { font-weight: 600; }
.win-tag.shipped { color: #0099cc; }
.win-tag.mentored { color: #d97c1a; }
.win-tag.fixed { color: #e0546b; }
.win-tag.led { color: #3fae6b; }
.win-star { color: var(--accent); font-size: 12px; margin-left: auto; }

.tab-bar {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 12px 10px 10px;
  border-top: 1px solid var(--border-soft);
  font-size: 10px;
  color: var(--ink-faint);
  font-weight: 600;
}
.tab-bar .tab { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.tab-bar .tab.active { color: var(--accent-2); }
.tab-bar svg { width: 18px; height: 18px; }

/* --- log-a-win form screen --- */
.form-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px 10px; font-size: 14px; font-weight: 600;
}
.form-topbar .cancel { color: var(--accent-2); font-weight: 500; }
.form-topbar .save { background: var(--cream-2); border-radius: 8px; padding: 4px 10px; color: var(--ink-faint); }
.field-label { padding: 14px 20px 6px; font-size: 12px; font-weight: 700; color: var(--ink-faint); }
.field-box {
  margin: 0 20px;
  background: var(--cream-2);
  border-radius: 12px;
  padding: 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
  min-height: 56px;
}
.field-box .caret { display: inline-block; width: 2px; background: var(--accent-2); height: 14px; vertical-align: middle; margin-right: 2px; }

.chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 10px 20px 14px;
}
.chip {
  border-radius: 12px;
  padding: 12px 6px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
}
.chip.shipped { background: #00bfff; color: #fff; }
.chip.led { background: #e9e2fb; color: #6a4fc4; }
.chip.fixed { background: #fbe1e4; color: #d8536b; }
.chip.learned { background: #dff4e4; color: #2f9457; }
.chip.mentored { background: #fde8cf; color: #d9821c; }
.chip.improved { background: #d9f1f4; color: #2896a4; }

.keyboard {
  margin-top: auto;
  background: var(--cream-3);
  padding: 10px 6px 16px;
}
.kb-row { display: flex; justify-content: center; gap: 4px; margin-bottom: 6px; }
.kb-key {
  background: #fff;
  border-radius: 5px;
  width: 24px; height: 34px;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 500;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.kb-key.wide { width: 40px; font-size: 9px; color: var(--ink-faint); }

/* ---------- laptop ---------- */
.laptop { width: 100%; max-width: 560px; }
.laptop-screen-body {
  background: #17130c;
  border-radius: 16px 16px 4px 4px;
  padding: 12px 12px 4px;
  box-shadow: var(--shadow-soft);
}
.laptop-dots { display: flex; gap: 6px; padding: 4px 6px 8px; }
.laptop-dots span { width: 9px; height: 9px; border-radius: 50%; background: #4a4232; }
.laptop-inner {
  background: var(--cream-0);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 300px;
  font-size: 11px;
}
.laptop-sidebar {
  background: var(--cream-2);
  padding: 16px 12px;
  border-right: 1px solid var(--border-soft);
}
.laptop-nav-item {
  padding: 7px 8px;
  border-radius: 7px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 4px;
}
.laptop-nav-item.active { background: linear-gradient(155deg, var(--accent), var(--accent-2)); color: #2b1c02; }
.laptop-main { padding: 16px 20px; }
.laptop-main .doc-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  color: #2f9457;
  margin-bottom: 8px;
}
.laptop-main h4 {
  font-family: var(--font-display);
  font-size: 14px;
  margin: 0 0 8px;
}
.laptop-main p, .laptop-main li { color: var(--ink-soft); font-size: 10.5px; line-height: 1.6; }
.laptop-main ul { margin: 0 0 10px; padding-left: 14px; }
.laptop-base {
  height: 14px;
  background: linear-gradient(#3a3324, #1c1610);
  border-radius: 0 0 10px 10px;
  margin: 0 -8px;
  position: relative;
}
.laptop-base::after {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 90px; height: 5px;
  background: #0e0b06;
  border-radius: 0 0 6px 6px;
}

/* ---------- tablet ---------- */
.tablet {
  width: 100%; max-width: 460px;
  background: #17130c;
  border-radius: 26px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}
.tablet-screen {
  background: var(--cream-0);
  border-radius: 14px;
  overflow: hidden;
  min-height: 420px;
}
.tablet-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 18px 8px;
  font-size: 10px;
  color: var(--ink-faint);
  border-bottom: 1px solid var(--border-soft);
}
.tablet-tabs { display: flex; gap: 16px; font-weight: 600; }
.tablet-tabs .active { color: var(--accent-2); }
.tablet-body { padding: 16px 20px; }
.tablet-body h5 { font-family: var(--font-display); font-size: 15px; margin: 0 0 12px; }

.streak-banner {
  background: linear-gradient(120deg, var(--accent-soft), var(--accent-soft-2));
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  margin-bottom: 10px;
}
.streak-banner .flame { font-size: 20px; }
.streak-banner strong { display: block; font-size: 12px; margin-top: 4px; }

.mini-stat {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border-soft);
  border-radius: 10px; padding: 8px 12px; margin-bottom: 10px;
  font-size: 11px; font-weight: 700;
}
.mini-stat .big { font-size: 15px; }

.tablet-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.chart-box {
  background: #fff; border: 1px solid var(--border-soft); border-radius: 10px;
  padding: 10px; height: 100px;
}
.chart-box .label { font-size: 9px; font-weight: 700; color: var(--ink-faint); margin-bottom: 6px; }
.bars { display: flex; align-items: flex-end; gap: 4px; height: 58px; }
.bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 3px 3px 0 0;
}
.heat-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.heat-grid div { aspect-ratio: 1; border-radius: 2px; background: var(--cream-2); }

/* ============================================================
   ALTERNATING FEATURE SECTIONS
   ============================================================ */
.feature-row {
  padding: 90px 0;
}
.feature-row .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.feature-row.reverse .wrap {
  grid-template-columns: 1fr 1fr;
}
.feature-row.reverse .visual { order: 2; }
.feature-row.reverse .copy { order: 1; }

.feature-row h2 { font-size: clamp(30px, 3.4vw, 40px); }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tag-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--ink-soft);
  background: rgba(255,253,247,0.5);
}

.platform-icons { display: flex; gap: 14px; margin-top: 26px; }
.platform-icon {
  width: 84px; height: 78px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,253,247,0.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}
.platform-icon svg { width: 22px; height: 22px; color: var(--ink-faint); }

.visual { display: flex; justify-content: center; }

/* ============================================================
   FEATURE GRID
   ============================================================ */
.features-section { padding: 90px 0 40px; text-align: center; }
.features-section .eyebrow { text-align: center; }
.features-section h2 {
  font-size: clamp(32px, 4vw, 46px);
  text-align: center;
  margin: 0 auto 56px;
  max-width: 20ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.feature-card {
  background: rgba(255, 253, 247, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(60,45,10,0.28);
  border-color: rgba(110,161,34,0.35);
}
.feature-card .ic { font-size: 24px; margin-bottom: 18px; display: block; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
}
.feature-card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

@media (max-width: 860px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PLATFORMS SECTION
   ============================================================ */
.platforms-section {
  padding: 100px 0;
  text-align: center;
}
.platforms-section .eyebrow { text-align: center; }
.platforms-section h2 {
  text-align: center;
  font-size: clamp(32px, 4vw, 46px);
  margin: 0 auto 18px;
}
.platforms-section .section-copy {
  text-align: center;
  margin: 0 auto 46px;
  max-width: 50ch;
}
.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}
.platform-card {
  background: rgba(255,253,247,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: left;
}
.platform-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 0 0 8px;
}
.platform-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin: 0; }

@media (max-width: 700px) {
  .platform-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   PAY ONCE CARD
   ============================================================ */
.payonce-wrap { padding: 40px 0 100px; }
.payonce-card {
  background: linear-gradient(155deg, rgba(255,253,247,0.75), rgba(240,232,214,0.55));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
}
.payonce-card .eyebrow { text-align: center; }
.payonce-card h2 {
  font-size: clamp(38px, 5.5vw, 58px);
  background: linear-gradient(100deg, var(--accent) 10%, var(--accent-2) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.payonce-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 26px;
}
.payonce-card .section-copy {
  margin: 0 auto 8px;
  text-align: center;
  max-width: 52ch;
}
.payonce-card .muted { color: var(--ink-faint); font-size: 14px; margin-bottom: 34px; }

/* ============================================================
   PRIVACY SECTION
   ============================================================ */
.privacy-section { padding: 40px 0 110px; text-align: center; }
.privacy-section .eyebrow { text-align: center; }
.privacy-section h2 {
  font-size: clamp(32px, 4vw, 46px);
  text-align: center;
  margin-bottom: 18px;
}
.privacy-section .section-copy {
  text-align: center;
  margin: 0 auto 34px;
  max-width: 56ch;
}
.privacy-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 140px 0 150px;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(46px, 8vw, 84px);
  text-align: center;
  line-height: 0.98;
  margin-bottom: 28px;
}
.final-cta .devices {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 46px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; color: var(--ink-soft); max-width: 32ch; line-height: 1.6; }
.footer-col h5 {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 16px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.footer-col a:hover { color: var(--ink); }

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 20px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .feature-row .wrap {
    grid-template-columns: 1fr !important;
  }
  .feature-row.reverse .visual,
  .feature-row.reverse .copy,
  .feature-row .visual,
  .feature-row .copy { order: initial !important; }
  .feature-row .visual { margin-bottom: 10px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  .hero { padding: 56px 0 40px; }
  .feature-row { padding: 60px 0; }
  .payonce-card { padding: 50px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}