/* ============================================================
   TaskTomo — marketing site
   Design tokens mirror the app (src/theme/colors.ts).
   Flat colors only. No gradients. Nunito. Juicy 3D edges.
   ============================================================ */

:root {
  --blue: #00a9fb;
  --blue-dark: #0085cc;
  --orange: #ff9600;
  --orange-dark: #cc7800;
  --green: #58cc02;
  --green-dark: #46a302;
  --red: #ff4b4b;
  --red-dark: #d43636;
  --purple: #8b5cf6;
  --purple-dark: #6d28d9;

  --ink: #3c3c3c;
  --ink-soft: #777777;
  --line: #e5e5e5;
  --line-dark: #d0d0d0;

  --bg: #ffffff;
  --bg-soft: #f7f8f9;
  --bg-blue: #e9f7ff;
  --card: #ffffff;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;

  --maxw: 1160px;
  --nav-h: 72px;

  --shadow-card: 0 2px 0 var(--line-dark);
  --font: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* hide lang variants */
[data-lang-block] { display: none; }
html[lang="tr"] [data-lang-block="tr"] { display: revert; }
html[lang="en"] [data-lang-block="en"] { display: revert; }
/* inline spans */
html[lang="tr"] span[data-lang-block="en"],
html[lang="en"] span[data-lang-block="tr"] { display: none; }
html[lang="tr"] span[data-lang-block="tr"],
html[lang="en"] span[data-lang-block="en"] { display: inline; }

/* ---------------- Buttons (juicy 3D) ---------------- */
.btn {
  --c: var(--blue);
  --cd: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: #fff;
  background: var(--c);
  border: none;
  border-radius: 16px;
  padding: 14px 26px;
  cursor: pointer;
  box-shadow: 0 4px 0 var(--cd);
  transition: transform .06s ease, box-shadow .06s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(4px); box-shadow: 0 0 0 var(--cd); }
.btn.green { --c: var(--green); --cd: var(--green-dark); }
.btn.orange { --c: var(--orange); --cd: var(--orange-dark); }
.btn.ghost {
  color: var(--blue);
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--line), 0 2px 0 var(--line-dark);
}
.btn.ghost:active { transform: translateY(2px); box-shadow: inset 0 0 0 2px var(--line), 0 0 0 var(--line-dark); }
.btn.sm { padding: 10px 18px; font-size: 15px; border-radius: 13px; }
.btn.lg { padding: 17px 34px; font-size: 19px; }

/* ---------------- Store badges ---------------- */
.stores { display: flex; gap: 14px; flex-wrap: wrap; }
.store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111417;
  color: #fff;
  border-radius: 14px;
  padding: 11px 20px 11px 18px;
  box-shadow: 0 4px 0 #000;
  transition: transform .06s ease, box-shadow .06s ease;
  min-width: 196px;
}
.store:active { transform: translateY(4px); box-shadow: 0 0 0 #000; }
.store svg { width: 26px; height: 26px; flex: none; }
.store .st-txt { display: flex; flex-direction: column; line-height: 1.15; }
.store .st-top { font-size: 11px; font-weight: 600; opacity: .85; text-transform: uppercase; letter-spacing: .04em; }
.store .st-big { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; }

/* ---------------- Nav ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 2px solid var(--line);
}
.nav .wrap { height: 100%; display: flex; align-items: center; gap: 22px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 900; font-size: 22px; letter-spacing: -0.03em; }
.brand img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 2px 0 var(--blue-dark); }
.nav-links { display: flex; gap: 26px; margin-left: 14px; }
.nav-links a { font-weight: 700; font-size: 16px; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover { color: var(--blue); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

.lang {
  display: inline-flex;
  border: 2px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  font-weight: 800;
  font-size: 14px;
}
.lang button {
  border: none;
  background: #fff;
  color: var(--ink-soft);
  padding: 7px 12px;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 800;
}
.lang button.active { background: var(--blue); color: #fff; }

.menu-toggle { display: none; }

/* ---------------- Hero ---------------- */
.hero { padding: 70px 0 40px; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: 58px; font-weight: 900; }
.hero h1 .hl { color: var(--blue); }
.hero .sub { margin-top: 22px; font-size: 21px; color: var(--ink-soft); font-weight: 600; max-width: 30ch; }
.hero .cta { margin-top: 32px; }
.hero .note { margin-top: 16px; font-size: 14.5px; color: var(--ink-soft); font-weight: 600; }
.hero-art { display: flex; justify-content: center; position: relative; }

/* eyebrow (no dots, real label) */
.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--bg-blue);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* ---------------- Phone device (iPhone 15 style) ---------------- */
.device {
  width: 306px;
  background: #0c0d0f;
  border-radius: 56px;
  padding: 13px;
  box-shadow: 0 30px 70px rgba(20,30,40,.22),
              inset 0 0 0 2px #3a3d42,
              inset 0 0 0 8px #0c0d0f;
  position: relative;
}
/* right side button */
.device::before {
  content: "";
  position: absolute; right: -2px; top: 134px;
  width: 3px; height: 62px; background: #2c2f34; border-radius: 0 3px 3px 0;
}
/* left side buttons (action + volume up/down via shadows) */
.device::after {
  content: "";
  position: absolute; left: -2px; top: 110px;
  width: 3px; height: 30px; background: #2c2f34; border-radius: 3px 0 0 3px;
  box-shadow: 0 44px 0 #2c2f34, 0 88px 0 #2c2f34;
}
.screen {
  background: var(--bg-soft);
  border-radius: 45px;
  overflow: hidden;
  padding: 48px 15px 0;
  position: relative;
  min-height: 588px;
  display: flex;
  flex-direction: column;
}
.island {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 26px; background: #000; border-radius: 14px; z-index: 6;
}
/* real app screenshot inside the frame */
.device.shot .screen { padding: 0; min-height: 0; display: block; background: #fff; }
.device.shot .screen img { width: 100%; height: auto; display: block; }

/* tiny app UI bits */
.app-greet { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.app-greet .ava { width: 40px; height: 40px; border-radius: 12px; background: var(--blue); flex: none; box-shadow: 0 2px 0 var(--blue-dark); display: grid; place-items: center; }
.app-greet .ava img { width: 30px; height: 30px; }
.app-greet .gtxt b { display: block; font-size: 15px; }
.app-greet .gtxt span { font-size: 12px; color: var(--ink-soft); font-weight: 700; }

.hero-stat {
  background: var(--blue); color: #fff; border-radius: 20px; padding: 16px; margin-bottom: 14px;
  box-shadow: 0 4px 0 var(--blue-dark);
  display: flex; justify-content: space-between; text-align: center;
}
.hero-stat .s b { display: block; font-size: 22px; font-weight: 900; }
.hero-stat .s span { font-size: 11px; font-weight: 800; opacity: .9; text-transform: uppercase; letter-spacing: .04em; }

.ui-card {
  background: #fff; border: 2px solid var(--line); border-bottom-width: 4px;
  border-radius: 18px; padding: 14px; margin-bottom: 12px;
}
.ui-card .head { font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 10px; }

.task { display: flex; align-items: center; gap: 11px; padding: 9px 0; border-top: 2px solid var(--line); }
.task:first-of-type { border-top: none; }
.task .box { width: 26px; height: 26px; border-radius: 9px; border: 2px solid var(--line-dark); flex: none; display: grid; place-items: center; }
.task.done .box { background: var(--green); border-color: var(--green-dark); color: #fff; }
.task .tt { font-size: 14px; font-weight: 800; }
.task.done .tt { color: var(--ink-soft); text-decoration: line-through; }
.task .em { margin-left: auto; font-size: 16px; }

/* daily quote mini card */
.quote-card { display: flex; gap: 11px; align-items: flex-start; }
.quote-card .qbar { width: 4px; align-self: stretch; border-radius: 4px; background: var(--orange); flex: none; }
.quote-card .qtxt .head { margin-bottom: 5px; }
.quote-card .qtxt p { font-size: 13.5px; font-weight: 800; color: var(--ink); line-height: 1.4; }

/* bottom tab bar */
.app-tabs {
  margin: auto -15px 0;
  padding: 13px 18px 16px;
  background: #fff;
  border-top: 2px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-tabs .tab { color: var(--line-dark); display: grid; place-items: center; }
.app-tabs .tab svg { width: 23px; height: 23px; }
.app-tabs .tab.active { color: var(--blue); }

/* ---------------- Generic section ---------------- */
section { position: relative; }
.section { padding: 78px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { max-width: 640px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { font-size: 40px; font-weight: 900; }
.section-head p { margin-top: 16px; font-size: 19px; color: var(--ink-soft); font-weight: 600; }

/* feature row (alternating) */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 56px 0; }
.feature + .feature { border-top: 2px solid var(--line); }
.feature.flip .f-text { order: 2; }
.feature .f-text h3 { font-size: 32px; font-weight: 900; }
.feature .f-text .lead { margin-top: 14px; font-size: 18.5px; color: var(--ink-soft); font-weight: 600; }
.feature .points { margin-top: 22px; display: grid; gap: 13px; }
.feature .points li { display: flex; gap: 12px; align-items: flex-start; font-weight: 700; font-size: 16.5px; }
.feature .points .tick {
  width: 24px; height: 24px; border-radius: 8px; flex: none; margin-top: 1px;
  background: var(--green); color: #fff; display: grid; place-items: center;
  box-shadow: 0 2px 0 var(--green-dark);
}
.feature .points .tick svg { width: 14px; height: 14px; }

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

/* showcase card (the in-app UI shown in feature visuals) */
.show {
  width: 100%; max-width: 380px;
  background: #fff; border: 2px solid var(--line); border-bottom-width: 5px;
  border-radius: 24px; padding: 22px;
}
.show .bar { height: 14px; border-radius: 999px; background: var(--bg-soft); }

/* pomodoro ring */
.ring-wrap { display: grid; place-items: center; padding: 8px 0 16px; }
.ring {
  width: 196px; height: 196px; border-radius: 50%;
  background:
    conic-gradient(var(--orange) 0 68%, var(--line) 68% 100%);
  display: grid; place-items: center;
  position: relative;
}
.ring::after { content: ""; position: absolute; inset: 16px; background: #fff; border-radius: 50%; }
.ring .inner { position: relative; z-index: 1; text-align: center; }
.ring .inner b { font-size: 42px; font-weight: 900; letter-spacing: -0.04em; }
.ring .inner span { font-size: 12px; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: .08em; }
.pomo-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--line); border-bottom-width: 4px;
  border-radius: 16px; overflow: hidden; margin-top: 6px;
}
.pomo-stats .ps { padding: 13px 6px; text-align: center; border-left: 2px solid var(--line); }
.pomo-stats .ps:first-child { border-left: none; }
.pomo-stats .ps b { display: block; font-size: 22px; font-weight: 900; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.pomo-stats .ps b small { font-size: 12px; font-weight: 800; color: var(--ink-soft); letter-spacing: 0; }
.pomo-stats .ps span { display: block; margin-top: 5px; font-size: 11px; font-weight: 800; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; }
.pomo-stats .ps.on { background: #fff7ec; }
.pomo-stats .ps.on b { color: var(--orange); }
.pomo-stats .ps.on span { color: var(--orange-dark); }

/* xp / progress */
.xp-row { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.xp-row .lvl { width: 46px; height: 46px; border-radius: 14px; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 900; box-shadow: 0 3px 0 var(--blue-dark); flex: none; line-height: 1; }
.xp-row .lvl small { font-size: 9px; display: block; opacity: .85; }
.xp-row .lvl b { font-size: 20px; }
.xp-bar { flex: 1; height: 18px; border-radius: 999px; background: var(--line); overflow: hidden; }
.xp-bar i { display: block; height: 100%; width: 72%; background: var(--green); border-radius: 999px; }
.xp-meta { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 800; color: var(--ink-soft); margin-bottom: 18px; }

.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.badge { aspect-ratio: 1; border-radius: 16px; display: grid; place-items: center; background: var(--bg-soft); border: 2px solid var(--line); }
.badge svg { width: 27px; height: 27px; }
.badge.lit { background: #fff5e6; border-color: #ffd9a6; color: var(--orange); }
.badge.blue.lit { background: #e7f6ff; border-color: #bfe6ff; color: var(--blue); }
.badge.green.lit { background: #eefbe3; border-color: #cdeeb0; color: var(--green-dark); }
.badge.purple.lit { background: #f1ecfe; border-color: #dccffb; color: var(--purple); }
.badge.lock { background: var(--bg-soft); border-color: var(--line); color: var(--line-dark); }

.streak-chip {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 4px;
  background: #fff3e0; color: var(--orange-dark); font-weight: 900; font-size: 15px;
  padding: 8px 14px; border-radius: 999px;
}

/* exam nets */
.net { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 2px solid var(--line); }
.net:first-child { border-top: none; }
.net .nm { width: 92px; font-weight: 800; font-size: 14px; flex: none; }
.net .track { flex: 1; height: 14px; border-radius: 999px; background: var(--line); overflow: hidden; }
.net .track i { display: block; height: 100%; border-radius: 999px; }
.net .val { width: 52px; text-align: right; font-weight: 900; font-size: 14px; }

/* AI chat bubble */
.chat { margin-top: 18px; display: grid; gap: 10px; }
.bubble { max-width: 86%; padding: 12px 15px; border-radius: 18px; font-size: 14.5px; font-weight: 600; line-height: 1.4; }
.bubble.them { background: var(--bg-soft); border-bottom-left-radius: 5px; }
.bubble.me { background: var(--blue); color: #fff; margin-left: auto; border-bottom-right-radius: 5px; }
.chat .who { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; color: var(--ink-soft); }
.chat .who img { width: 24px; height: 24px; border-radius: 7px; }

/* study room */
.room-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.seat { background: var(--bg-soft); border: 2px solid var(--line); border-radius: 16px; padding: 14px; text-align: center; }
.seat .face { width: 52px; height: 52px; border-radius: 16px; margin: 0 auto 8px; display: grid; place-items: center; font-size: 26px; }
.seat .nm { font-weight: 800; font-size: 14px; }
.seat .st { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; margin-top: 3px; }
.st.focus { color: var(--orange); }
.st.brk { color: var(--green); }
.st.idle { color: var(--ink-soft); }
.seat .face.f1 { background: #ffe7c2; } .seat .face.f2 { background: #d6f3c2; }
.seat .face.f3 { background: #cfeeff; } .seat .face.f4 { background: #f3d6f7; }

/* ---------------- Differentiators (editorial, no cards) ---------------- */
.edge { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; }
.edge-head { position: sticky; top: calc(var(--nav-h) + 30px); }
.edge-head h2 { font-size: 38px; font-weight: 900; }
.edge-head p { margin-top: 16px; font-size: 18px; color: var(--ink-soft); font-weight: 600; }
.edge-list { display: grid; }
.edge-item { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 30px 0; border-top: 2px solid var(--line); }
.edge-item:first-child { border-top: none; padding-top: 4px; }
.edge-item:last-child { padding-bottom: 4px; }
.edge-item .ic { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; color: #fff; }
.edge-item .ic svg { width: 27px; height: 27px; }
.edge-item h4 { font-size: 22px; font-weight: 900; }
.edge-item p { margin-top: 9px; font-size: 17px; color: var(--ink-soft); font-weight: 600; }
.ic.b { background: var(--blue); box-shadow: 0 3px 0 var(--blue-dark); }
.ic.o { background: var(--orange); box-shadow: 0 3px 0 var(--orange-dark); }
.ic.g { background: var(--green); box-shadow: 0 3px 0 var(--green-dark); }
.ic.r { background: var(--red); box-shadow: 0 3px 0 var(--red-dark); }
.ic.p { background: var(--purple); box-shadow: 0 3px 0 var(--purple-dark); }

/* ---------------- FAQ ---------------- */
.faq-layout { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; }
.faq-aside { text-align: center; }
.faq-aside img { width: 220px; margin: 0 auto; }
.faq-aside h2 { font-size: 34px; font-weight: 900; margin-top: 8px; }
.faq-list { display: grid; gap: 14px; }
.qa {
  background: #fff; border: 2px solid var(--line); border-bottom-width: 4px; border-radius: 18px;
  overflow: hidden;
}
.qa summary {
  list-style: none; cursor: pointer; padding: 20px 22px;
  font-weight: 800; font-size: 18px; display: flex; align-items: center; gap: 14px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .plus { margin-left: auto; width: 26px; height: 26px; flex: none; position: relative; transition: transform .2s; }
.qa summary .plus::before, .qa summary .plus::after { content: ""; position: absolute; background: var(--blue); border-radius: 2px; }
.qa summary .plus::before { left: 4px; right: 4px; top: 11px; height: 4px; }
.qa summary .plus::after { top: 4px; bottom: 4px; left: 11px; width: 4px; transition: opacity .2s; }
.qa[open] summary .plus::after { opacity: 0; }
.qa .ans { padding: 0 22px 20px; color: var(--ink-soft); font-weight: 600; font-size: 16.5px; }
.qa .ans a { color: var(--blue); font-weight: 800; }

/* dedicated FAQ page */
.faq-page-head { max-width: 720px; margin-bottom: 34px; }
.faq-page-head h1 { font-size: 42px; font-weight: 900; margin: 6px 0 14px; }
.faq-page-head p { font-size: 18px; color: var(--ink-soft); font-weight: 600; }
.faq-page-head a { color: var(--blue); font-weight: 800; }
.faq-wide { max-width: 820px; }
.faq-cta { margin-top: 38px; }

/* ---------------- Final CTA ---------------- */
.cta-band { background: var(--blue); color: #fff; border-radius: 36px; padding: 56px; position: relative; overflow: hidden; min-height: 250px; }
.cta-band h2 { color: #fff; font-size: 42px; font-weight: 900; max-width: 18ch; }
.cta-band p { margin-top: 16px; font-size: 19px; font-weight: 600; opacity: .95; max-width: 42ch; }
.cta-band .stores { margin-top: 30px; max-width: 62%; }
.cta-band .tomo { position: absolute; right: 92px; bottom: -98px; width: 310px; pointer-events: none; }
.cta-band .store { box-shadow: 0 4px 0 #0a6aa0; }

.faq-more { margin: 26px auto 0; width: fit-content; }

/* ---------------- Footer ---------------- */
.footer { padding: 60px 0 40px; border-top: 2px solid var(--line); }
.footer .top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .brand { font-size: 22px; }
.footer .fcol h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 14px; font-weight: 900; }
.footer .fcol a { display: block; font-weight: 700; color: var(--ink); padding: 5px 0; }
.footer .fcol a:hover { color: var(--blue); }
.footer .cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer .bottom { margin-top: 44px; padding-top: 24px; border-top: 2px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--ink-soft); font-weight: 700; font-size: 14.5px; }

/* ---------------- Legal pages ---------------- */
.legal { padding: 60px 0 90px; max-width: 820px; }
.legal h1 { font-size: 40px; font-weight: 900; margin-bottom: 8px; }
.legal .upd { color: var(--ink-soft); font-weight: 700; margin-bottom: 30px; }
.legal h2 { font-size: 22px; font-weight: 900; margin: 34px 0 10px; }
.legal p { margin: 12px 0; color: #555; font-weight: 500; font-size: 17px; line-height: 1.7; }
.legal li { margin: 7px 0 7px 4px; padding-left: 18px; position: relative; color: #555; font-weight: 500; }
.legal li::before { content: ""; position: absolute; left: 0; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--blue); margin-bottom: 24px; }

/* ---------------- Responsive ---------------- */
@media (max-width: 920px) {
  body { font-size: 17px; }
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 44px; }
  .hero .sub { margin-left: auto; margin-right: auto; }
  .hero .stores, .hero .cta { justify-content: center; }
  .hero-art { order: -1; margin-bottom: 10px; }
  .feature { grid-template-columns: 1fr; gap: 30px; padding: 44px 0; }
  .feature.flip .f-text { order: 0; }
  .feature .f-visual { order: -1; }
  .feature .points { max-width: 460px; margin-left: auto; margin-right: auto; }
  .edge { grid-template-columns: 1fr; gap: 26px; }
  .edge-head { position: static; }
  .edge-head h2 { font-size: 30px; }
  .faq-layout { grid-template-columns: 1fr; }
  .cta-band .stores { max-width: none; }
  .faq-aside img { width: 160px; }
  .nav-links { display: none; }
  .section-head h2 { font-size: 32px; }
  .cta-band { padding: 40px 28px; text-align: center; }
  .cta-band h2 { margin: 0 auto; }
  .cta-band p { margin-left: auto; margin-right: auto; }
  .cta-band .stores { justify-content: center; }
  .cta-band .tomo { display: none; }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 36px; }
  .section { padding: 54px 0; }
  .store { min-width: 0; flex: 1; }
  .footer .top { flex-direction: column; }
}
