/* Arise — website styles (static, no framework). Two themes via [data-theme]. */
:root,
[data-theme="dark"] {
  --bg: #100b09;
  --bg2: #17100c;
  --panel: rgba(255, 255, 255, 0.05);
  --panel2: rgba(255, 255, 255, 0.08);
  --ink: #f6efe6;
  --muted: #a99a8b;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #ff9d3c;
  --accent2: #ffcf7a;
  --accent-ink: #1b0f06;
  --header-bg: rgba(16, 11, 9, 0.72);
  --menu-bg: rgba(26, 18, 13, 0.94);
  --footer-bg: #0b0806;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  --card-grad: linear-gradient(155deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.035) 55%, rgba(255,255,255,0.02) 100%);
  --card-border: rgba(255, 255, 255, 0.16);
  --gloss: rgba(255, 255, 255, 0.20);
  --card-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
  --page-bg: radial-gradient(120% 80% at 82% -12%, rgba(255,150,50,0.20), transparent 55%),
             radial-gradient(90% 60% at 8% 2%, rgba(255,90,60,0.10), transparent 52%);
}

[data-theme="light"] {
  --bg: #f7f2ea;
  --bg2: #efe6d9;
  --panel: rgba(255, 255, 255, 0.72);
  --panel2: #ffffff;
  --ink: #1c1410;
  --muted: #6d5f52;
  --line: rgba(28, 20, 14, 0.11);
  --accent: #c8541b;
  --accent2: #b8863b;
  --accent-ink: #ffffff;
  --header-bg: rgba(247, 242, 234, 0.82);
  --menu-bg: rgba(255, 255, 255, 0.97);
  --footer-bg: #17100c;
  --shadow: 0 26px 60px rgba(60, 30, 15, 0.16);
  --card-grad: linear-gradient(155deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.66) 60%, rgba(255,255,255,0.5) 100%);
  --card-border: rgba(255, 255, 255, 0.92);
  --gloss: rgba(255, 255, 255, 0.95);
  --card-shadow: 0 14px 34px rgba(80, 40, 20, 0.13);
  --page-bg: radial-gradient(120% 80% at 82% -12%, rgba(255,170,80,0.30), transparent 52%),
             radial-gradient(90% 60% at 8% 2%, rgba(255,120,70,0.14), transparent 50%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--page-bg), var(--bg);
  background-color: var(--bg);
  overflow-x: clip;
  transition: background-color .4s ease, color .4s ease;
}
img { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: .85; }
button { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
[hidden] { display: none !important; }

.serif { font-family: "Newsreader", Georgia, serif; font-weight: 500; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 16px;
  padding: 13px clamp(18px, 4vw, 64px);
  background: var(--header-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  background: transparent; border: 0; cursor: pointer; color: var(--ink);
  font-weight: 800; font-size: clamp(1.25rem, 3vw, 1.6rem); letter-spacing: -0.01em; padding: 0;
}
.brand img { width: 42px; height: 42px; border-radius: 13px; box-shadow: 0 8px 24px rgba(255,150,50,0.28); }
.desktop-nav { margin-left: auto; display: flex; gap: 2px; }
.nav-btn {
  position: relative;
  border: 0; background: transparent; color: var(--muted);
  padding: 10px 13px; border-radius: 12px; cursor: pointer; font-weight: 600; font-size: .95rem;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}
.nav-btn:hover { color: var(--ink); background: var(--panel2); }

/* Section indicator — an underline that grows in under the current section's entry. */
.desktop-nav .nav-btn::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 2px;
  border-radius: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: 50% 50%; opacity: 0;
  transition: transform .28s cubic-bezier(.4, 0, .2, 1), opacity .28s ease;
}
.desktop-nav .nav-btn.is-active { color: var(--ink); }
.desktop-nav .nav-btn.is-active::after { transform: scaleX(1); opacity: 1; }

/* In the mobile sheet the same state reads better as a filled row. */
.mobile-menu .nav-btn.is-active { color: var(--accent); background: var(--panel2); }

/* Reading progress, pinned to the bottom edge of the sticky header. */
.scroll-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; overflow: hidden; pointer-events: none; }
.scroll-progress span {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  transform: scaleX(0); transform-origin: 0 50%;
}
.actions { display: flex; align-items: center; gap: 12px; margin-left: 16px; }
.theme-seg { display: inline-flex; padding: 3px; border-radius: 12px; background: var(--panel); border: 1px solid var(--line); gap: 2px; }
.seg-btn { width: 36px; height: 34px; display: grid; place-items: center; border-radius: 9px; border: 0; cursor: pointer; background: transparent; color: var(--muted); transition: all .2s ease; }
.seg-btn.active { background: var(--accent); color: var(--accent-ink); }
.lang { position: relative; }
.lang-btn {
  height: 46px; padding: 0 12px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--panel); color: var(--ink); cursor: pointer; font-weight: 700;
  letter-spacing: .03em; font-size: .82rem; display: inline-flex; align-items: center; gap: 5px;
}
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 186px; padding: 7px;
  border: 1px solid var(--line); border-radius: 14px; background: var(--menu-bg);
  backdrop-filter: blur(20px); box-shadow: var(--shadow); z-index: 100; display: grid; gap: 2px;
  max-height: min(66vh, 430px); overflow-y: auto; overscroll-behavior: contain;
}
.lang-menu button {
  border: 0; background: transparent; color: var(--ink); padding: 9px 13px; border-radius: 11px;
  cursor: pointer; font-weight: 700; text-align: left; font-size: .95rem;
  display: flex; align-items: center; gap: 10px;
}
.lang-menu .flag { font-size: 1.05rem; line-height: 1; width: 1.4em; text-align: center; flex-shrink: 0; }
.lang-menu button:hover { background: var(--panel2); }
.lang-menu button.active { color: var(--accent); background: var(--panel2); }
.icon-btn { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--line); background: var(--panel); color: var(--ink); cursor: pointer; }
.menu-btn { display: none; }
.mobile-menu {
  position: absolute; right: clamp(14px, 4vw, 64px); top: calc(100% + 8px); min-width: 230px; padding: 9px;
  border: 1px solid var(--line); border-radius: 18px; background: var(--menu-bg);
  backdrop-filter: blur(20px); box-shadow: var(--shadow); display: grid; gap: 2px; z-index: 60;
}
.mobile-menu button, .mobile-menu a {
  border: 0; background: transparent; color: var(--ink); padding: 11px 14px; border-radius: 12px;
  cursor: pointer; font-weight: 600; text-align: left; font-size: 1rem;
}

/* ---------- Layout ---------- */
.section { padding: clamp(40px, 5.5vw, 76px) clamp(18px, 4vw, 64px); }
.section--tight { padding-top: 0; }
.heading { text-align: center; max-width: 820px; margin: 0 auto clamp(32px, 5vw, 52px); }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 700; margin: 0 0 12px; }
.h2 { font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 14px; }
.lead { color: var(--muted); font-size: clamp(1.02rem, 2vw, 1.2rem); line-height: 1.6; margin: 0; }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 460px); gap: clamp(40px, 6vw, 80px); align-items: center; padding: clamp(40px, 7vw, 84px) clamp(18px, 4vw, 64px) clamp(36px, 5vw, 60px); }
.hero-text { max-width: 660px; }
.pill { display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px; border-radius: 999px; background: var(--panel2); border: 1px solid var(--line); color: var(--accent); font-weight: 600; font-size: .88rem; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); line-height: 1.03; letter-spacing: -0.02em; margin: 20px 0; }
.hero h1 .accent { color: var(--accent); display: block; }
.hero h1 span { display: block; }
.hero-sub { font-size: clamp(1.08rem, 2vw, 1.32rem); line-height: 1.65; color: var(--muted); max-width: 610px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 12px; }
.note { color: var(--muted); font-size: .96rem; margin: 6px 0 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 24px; border-radius: 14px; font-weight: 700; font-size: 1rem; cursor: pointer; border: 1px solid transparent; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: linear-gradient(180deg, var(--accent2), var(--accent)); color: var(--accent-ink); box-shadow: 0 16px 40px rgba(255,140,50,0.30); }
.btn-secondary { background: var(--panel2); color: var(--ink); border-color: var(--line); }
.qp { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 28px; color: var(--muted); }
.qp span { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; }
.qp .i { color: var(--accent); display: inline-flex; }
.hero-device { display: grid; place-items: center; }
.hero-device .wrap { position: relative; display: grid; place-items: center; animation: ariseFloat 7s ease-in-out infinite; }
.glow { position: absolute; width: min(115%, 520px); height: min(115%, 520px); background: radial-gradient(circle, var(--accent) 0%, transparent 62%); filter: blur(38px); opacity: .4; border-radius: 50%; animation: ariseGlow 6s ease-in-out infinite; }

/* ---------- Phone frames ---------- */
.phone { position: relative; border: 11px solid #0a0a0a; border-radius: 40px; background: #000; overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,0.5); aspect-ratio: 1080 / 2340; }
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phone--hero { width: min(72vw, 296px); }
.phone--gallery { width: min(72vw, 296px); }
.phone--theme { border-width: 9px; border-radius: 32px; width: clamp(148px, 40vw, 206px); box-shadow: var(--shadow); }

/* ---------- Cards ---------- */
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; max-width: 1180px; margin: 0 auto; }
.card { background: var(--card-grad); border: 1px solid var(--card-border); border-radius: 20px; padding: 26px; backdrop-filter: blur(18px) saturate(1.5); -webkit-backdrop-filter: blur(18px) saturate(1.5); box-shadow: var(--card-shadow), inset 0 1px 0 var(--gloss); transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-4px); }
.card-icon { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; color: var(--accent); background: var(--panel2); border: 1px solid var(--card-border); box-shadow: inset 0 1px 0 var(--gloss); margin-bottom: 18px; }
.card h3 { font-size: 1.24rem; font-weight: 700; margin: 0 0 8px; }
.card p { color: var(--muted); line-height: 1.6; margin: 0; }

/* ---------- Themes strip ---------- */
.themes-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(16px, 3vw, 30px); max-width: 1060px; margin: 0 auto; }
.theme-item { display: flex; flex-direction: column; align-items: center; gap: 13px; }
.theme-label { font-weight: 700; font-size: 1.02rem; letter-spacing: .01em; }

/* ---------- Gallery ---------- */
.gallery-wrap { position: relative; max-width: 720px; margin: 0 auto; display: grid; place-items: center; }
.gal-btn { position: absolute; top: calc(min(72vw, 296px) * 2340 / 1080 / 2); transform: translateY(-50%); width: 52px; height: 52px; border-radius: 14px; border: 1px solid var(--line); background: var(--panel2); color: var(--ink); display: grid; place-items: center; cursor: pointer; z-index: 5; box-shadow: var(--shadow); }
.gal-btn.left { left: 0; }
.gal-btn.right { right: 0; }
.gal-caption { text-align: center; margin-top: 22px; min-height: 70px; }
.gal-caption h3 { font-size: clamp(1.4rem, 4vw, 1.9rem); margin: 0 0 4px; }
.gal-caption p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; max-width: 420px; margin: 18px auto 0; }
.dot { width: 10px; height: 10px; border: 0; border-radius: 999px; background: var(--muted); opacity: .32; cursor: pointer; padding: 0; transition: all .25s ease; }
.dot.active { width: 32px; opacity: 1; background: var(--accent); }

/* ---------- Features ---------- */
.free-pill { padding: 9px 18px; border-radius: 999px; font-weight: 700; background: linear-gradient(180deg, var(--accent2), var(--accent)); color: var(--accent-ink); font-size: .9rem; box-shadow: 0 10px 26px rgba(255,140,50,0.22); }
.free-row { display: flex; justify-content: center; margin: -6px 0 40px; }
.feature-groups { max-width: 1050px; margin: 0 auto; display: grid; gap: clamp(36px, 5vw, 52px); }
.group-title { text-align: center; font-size: clamp(1.5rem, 4vw, 2.1rem); margin: 0 0 20px; }

/* Narrow screens collapse each group behind its title — 22 stacked cards is a long scroll. */
.group-toggle {
  width: 100%; display: flex; align-items: center; gap: 12px; text-align: left; cursor: pointer;
  padding: 14px 16px; border-radius: 16px; color: var(--ink);
  background: var(--card-grad); border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow), inset 0 1px 0 var(--gloss);
  backdrop-filter: blur(18px) saturate(1.5); -webkit-backdrop-filter: blur(18px) saturate(1.5);
}
.group-toggle .group-title { flex: 1; text-align: left; font-size: 1.2rem; margin: 0; }
.group-count {
  font-size: .8rem; font-weight: 700; color: var(--accent); background: var(--panel2);
  border: 1px solid var(--line); border-radius: 999px; height: 24px; min-width: 24px;
  display: grid; place-items: center; padding: 0 7px; flex-shrink: 0;
}
.group-toggle .chev { color: var(--muted); display: inline-flex; flex-shrink: 0; transition: transform .22s ease; }
.fgroup.open .group-toggle .chev { transform: rotate(180deg); }
.fgroup.open .group-toggle + .feature-cards { margin-top: 12px; }
.feature-cards { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card { display: grid; grid-template-columns: auto 1fr; gap: 15px; align-items: center; padding: 17px 18px; background: var(--card-grad); border: 1px solid var(--card-border); border-radius: 16px; backdrop-filter: blur(18px) saturate(1.5); -webkit-backdrop-filter: blur(18px) saturate(1.5); box-shadow: var(--card-shadow), inset 0 1px 0 var(--gloss); transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-3px); }
.feature-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: var(--accent); background: var(--panel2); border: 1px solid var(--card-border); box-shadow: inset 0 1px 0 var(--gloss); flex-shrink: 0; }
.feature-card h4 { font-size: 1.15rem; font-weight: 700; margin: 0 0 6px; }
.feature-card p { color: var(--muted); line-height: 1.6; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--card-grad); border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; backdrop-filter: blur(18px) saturate(1.5); -webkit-backdrop-filter: blur(18px) saturate(1.5); box-shadow: var(--card-shadow), inset 0 1px 0 var(--gloss); }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; border: 0; background: transparent; color: var(--ink); padding: 22px 26px; cursor: pointer; text-align: left; font-weight: 700; font-size: clamp(1rem, 2.5vw, 1.14rem); }
.faq-btn .chev { color: var(--muted); display: inline-flex; flex-shrink: 0; transition: transform .2s ease; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-answer { color: var(--muted); line-height: 1.65; margin: 0; padding: 0 26px 24px; }

/* ---------- Privacy page ---------- */
.privacy-hero { text-align: center; }
.privacy-hero .shield { width: 86px; height: 86px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center; color: var(--accent); background: var(--panel2); }
.privacy-hero h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 14px; }
.privacy-hero .intro { max-width: 760px; margin: 0 auto; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.65; }
.policy-meta { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 26px; color: var(--muted); }
.policy-meta strong { color: var(--ink); }
.policy-card { max-width: 980px; margin: 0 auto 18px; padding: clamp(24px, 4vw, 36px); background: var(--card-grad); border: 1px solid var(--card-border); border-radius: 20px; backdrop-filter: blur(18px) saturate(1.5); -webkit-backdrop-filter: blur(18px) saturate(1.5); box-shadow: var(--card-shadow), inset 0 1px 0 var(--gloss); }
.policy-card h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); margin: 0 0 12px; }
.policy-card p { color: var(--muted); line-height: 1.65; margin: 0 0 12px; }
.policy-card p:last-child { margin-bottom: 0; }
.policy-grid { max-width: 980px; margin: 20px auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.perm-list { display: grid; margin-top: 18px; }
.perm-row { display: grid; grid-template-columns: minmax(200px, 1fr) 1.4fr; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); }
.perm-row code { font-family: ui-monospace, Menlo, Consolas, monospace; color: var(--ink); font-size: .95rem; overflow-wrap: anywhere; }
.perm-row p { margin: 0; color: var(--muted); line-height: 1.55; }

/* ---------- Footer ---------- */
.footer { background: var(--footer-bg); color: rgba(255, 255, 255, 0.82); padding: 54px clamp(18px, 4vw, 64px) 30px; margin-top: clamp(40px, 6vw, 80px); }
.footer-main { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr; gap: 48px; max-width: 1180px; margin: 0 auto; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; font-weight: 800; color: #fff; }
.footer-brand img { width: 46px; height: 46px; border-radius: 13px; }
.footer-col p { color: rgba(255, 255, 255, 0.62); line-height: 1.6; margin: 0; max-width: 320px; }
.footer-col h3 { color: #fff; font-size: 1rem; margin: 0 0 4px; }
.footer-link { border: 0; background: transparent; color: rgba(255, 255, 255, 0.62); cursor: pointer; padding: 0; text-align: left; font-size: 1rem; font-weight: 500; }
.footer-col a { color: rgba(255, 255, 255, 0.62); }
.footer-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.12); display: grid; place-items: center; color: #fff; margin-top: 4px; }
.footer-bottom { max-width: 1180px; margin: 40px auto 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.14); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,0.55); }
.footer-bottom p { margin: 0; }

@keyframes ariseFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes ariseGlow { 0%, 100% { opacity: .30; } 50% { opacity: .52; } }

/* ---------- Back to top ---------- */
.back-to-top { position: fixed; right: clamp(16px, 4vw, 32px); bottom: clamp(16px, 4vw, 32px); width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: var(--panel2); color: var(--accent); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow); backdrop-filter: blur(18px) saturate(1.5); -webkit-backdrop-filter: blur(18px) saturate(1.5); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .25s ease, transform .25s ease, background .2s ease; z-index: 40; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--accent); color: var(--accent-ink); }

/* ---------- Responsive ---------- */
/* Nav labels vary a lot by language (fr "Confidentialité", de "Datenschutz"), so the bar
   tightens up before it is swapped for the menu button. */
@media (max-width: 1200px) {
  .nav-btn { padding: 10px 10px; font-size: .9rem; }
  .desktop-nav .nav-btn::after { left: 10px; right: 10px; }
}
@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-btn { display: grid; }
  .actions { margin-left: auto; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 8px; }
  .hero-text { margin: 0 auto; text-align: center; }
  .hero-sub { margin: 0 auto; }
  .cta-row, .qp { justify-content: center; }
  .hero-device { order: -1; margin-bottom: 6px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
}
/* Phones: the page is long, so trim the vertical rhythm and turn the theme strip
   into something you swipe instead of scroll past. */
@media (max-width: 700px) {
  .feature-groups { gap: 12px; }
  .themes-row {
    flex-wrap: nowrap; justify-content: flex-start;
    overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
    margin-inline: calc(clamp(18px, 4vw, 64px) * -1);
    padding: 4px clamp(18px, 4vw, 64px) 10px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .themes-row::-webkit-scrollbar { display: none; }
  .theme-item { flex: 0 0 auto; scroll-snap-align: center; }
}

@media (max-width: 560px) {
  .actions { gap: 8px; }
  .btn { width: 100%; }
  .feature-cards { grid-template-columns: 1fr; }
  .perm-row { grid-template-columns: 1fr; gap: 6px; }
  .gal-btn.left { left: -6px; }
  .gal-btn.right { right: -6px; }
  .policy-meta { flex-direction: column; align-items: center; gap: 8px; }
  .back-to-top { width: 44px; height: 44px; right: 14px; bottom: 14px; }
  .section { padding: 34px clamp(18px, 4vw, 64px); }
  .section--tight { padding-top: 0; }
  .heading { margin-bottom: 26px; }
  .card { padding: 20px; }
  .card-icon { width: 46px; height: 46px; border-radius: 13px; margin-bottom: 13px; }
  .card h3 { font-size: 1.14rem; }
  .free-row { margin-bottom: 26px; }
  .footer { padding-top: 40px; margin-top: 34px; }
}
