/* ============================================================
   PhotoPicker — Landing page styles
   ============================================================ */

:root {
  --accent: #ff5618;
  --accent-soft: #ff7a4a;
  --ink: #0c0c0e;
  --ink-2: #2a2c30;
  --muted: #6b6f76;
  --line: #ececef;
  --bg: #ffffff;
  --bg-soft: #fafafb;
  --bg-tint: #fff6f2;
  --dark: #131417;
  --dark-2: #1c1e22;
  --radius: 20px;
  --radius-lg: 32px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pick: #36c759;
  --reject: #ff3b30;
  --shadow: 0 30px 80px -30px rgba(12, 12, 14, 0.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.05; font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.accent { color: var(--accent); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 14px;
}
.eyebrow.accent { color: var(--accent); }

/* ---------- Buttons / badges ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-weight: 600; color: inherit;
  background: none; border: 0; cursor: pointer;
  border-radius: 999px; padding: 12px 22px;
  transition: transform .25s var(--ease), background .25s, color .25s;
}
.btn--sm { padding: 9px 18px; font-size: .9rem; }
.btn--ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.store-badge {
  display: inline-flex; align-items: center;
  border-radius: 12px;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.store-badge img { display: block; height: 52px; width: auto; border-radius: 12px; }
.store-badge:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -18px rgba(0,0,0,.5); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; }
.brand__mark {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px;
  overflow: hidden; flex: none;
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links > a { color: var(--ink-2); font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav__links > a:hover { color: var(--accent); }

/* User Guide dropdown */
.nav__dropdown { position: relative; }
.nav__dropbtn {
  display: inline-flex; align-items: center; gap: 6px;
  font: inherit; color: var(--ink-2); font-weight: 500; font-size: .95rem;
  background: none; border: 0; padding: 8px 0; cursor: pointer;
  transition: color .2s;
}
.nav__dropbtn:hover, .nav__dropdown:hover .nav__dropbtn,
.nav__dropdown:focus-within .nav__dropbtn { color: var(--accent); }
.nav__caret { transition: transform .25s var(--ease); }
.nav__dropdown:hover .nav__caret,
.nav__dropdown.is-open .nav__caret,
.nav__dropbtn[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }
.nav__submenu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 180px; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 20px 44px -20px rgba(12,12,14,.28); padding: 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 20;
}
/* Bridge the gap so hover doesn't drop when moving to the submenu */
.nav__submenu::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.nav__dropdown:hover .nav__submenu,
.nav__dropdown:focus-within .nav__submenu,
.nav__dropdown.is-open .nav__submenu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav__submenu a {
  display: block; padding: 10px 14px; border-radius: 9px;
  color: var(--ink-2); font-weight: 500; font-size: .92rem; white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav__submenu a:hover, .nav__submenu a:focus-visible { background: var(--bg-tint); color: var(--accent); outline: none; }

/* Download button choice menu (desktop / unknown platforms) */
.nav__download { position: relative; }
.nav__downloadmenu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 224px; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 20px 44px -20px rgba(12, 12, 14, .28); padding: 6px;
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 30;
}
.nav__download.is-open .nav__downloadmenu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.nav__downloadmenu a {
  display: block; padding: 11px 14px; border-radius: 9px;
  color: var(--ink-2); font-weight: 500; font-size: .92rem; white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav__downloadmenu a:hover, .nav__downloadmenu a:focus-visible { background: var(--bg-tint); color: var(--accent); outline: none; }

/* Header right cluster: language switch + download */
.nav__end { display: flex; align-items: center; gap: 12px; }

/* Language switch (header) */
.lang-switch {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1px solid var(--line); border-radius: 999px; padding: 2px; background: #fff;
}
.lang-switch__opt {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 30px; padding: 5px 8px; border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .03em; color: var(--muted);
  transition: color .2s, background .2s;
}
.lang-switch__opt:hover { color: var(--ink); }
.lang-switch__opt.is-active { background: var(--ink); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 150px 0 90px; overflow: hidden;
  background: radial-gradient(1200px 600px at 70% -10%, var(--bg-tint), transparent 60%), var(--bg);
}
.hero__bg {
  position: absolute; inset: -10% -5% 0; z-index: 0;
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px;
  opacity: .5; will-change: transform; pointer-events: none;
}
.hero__bg span {
  border-radius: 12px; aspect-ratio: 3/4;
  box-shadow: 0 18px 40px -28px rgba(0,0,0,.4);
}
.hero__fade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,.86) 55%, #fff 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
}
.hero__title { font-size: clamp(2.4rem, 5.4vw, 4.2rem); font-weight: 900; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); margin: 22px 0 32px; max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__platforms { margin-top: 22px; color: var(--muted); font-size: .9rem; font-weight: 500; }

/* Hero device — full iPhone mockup image (frame baked into the asset) */
.hero__device { display: flex; justify-content: center; }
.hero__device-img {
  width: 300px; max-width: 100%; height: auto; display: block; margin: 0 auto;
  will-change: transform;
  filter: drop-shadow(0 34px 70px rgba(12, 12, 14, 0.28));
}

/* ---------- Device mockup ---------- */
.device {
  position: relative; width: 300px; max-width: 100%; margin: 0 auto;
  aspect-ratio: 300/620; background: #0b0b0d;
  border-radius: 46px; padding: 12px;
  box-shadow: var(--shadow), inset 0 0 0 2px #2a2a2e;
  will-change: transform;
}
.device--large { width: 330px; }
.device__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #0b0b0d; border-radius: 0 0 16px 16px; z-index: 3;
}
.device__screen {
  position: relative; height: 100%; border-radius: 36px; overflow: hidden;
  background: #0d0e10;
}

/* App grid recreation */
.app { height: 100%; display: flex; flex-direction: column; color: #d9dadd; font-size: 11px; }
.app__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 30px 16px 10px; font-weight: 600; color: #a8a9ad;
}
.app__counter { font-variant-numeric: tabular-nums; }
.app__icon { font-size: 14px; opacity: .8; }
.app__thumbs {
  flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  padding: 6px 12px; overflow: hidden; align-content: start;
}
.app__thumbs .th { border-radius: 6px; aspect-ratio: 3/4; position: relative; }
.app__thumbs .th.sel { outline: 2px solid var(--pick); outline-offset: 1px; }
.app__thumbs .th .pf {
  position: absolute; top: 3px; left: 3px; width: 0; height: 0;
  border-left: 9px solid var(--pick); border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.app__thumbs .th .pf.rj { border-left-color: var(--reject); }
.app__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px 16px; border-top: 1px solid #1e1f23;
}
.stars { color: #ffd54a; letter-spacing: 2px; }
.stars .dim { color: #4a4b50; }
.flag {
  width: 0; height: 0; border-left: 16px solid var(--pick);
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
}
.flag--reject { border-left-color: var(--reject); }

/* Viewer variant */
.app--viewer .viewer__photo {
  flex: 1; position: relative;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(160deg, #6a4a35, #2a1c14);
}
.app__bar--viewer { padding-top: 30px; }
.flag-lg {
  display: inline-block; width: 0; height: 0;
  border-left: 22px solid var(--pick); border-top: 13px solid transparent; border-bottom: 13px solid transparent;
  position: relative;
}
.flag-lg::after {
  content: "✓"; position: absolute; left: -19px; top: -8px; color: #062; font-size: 11px; font-weight: 900;
}
.flag-lg--reject { border-left-color: var(--reject); }
.flag-lg--reject::after { content: "✕"; color: #500; }
.viewer__overlay { position: absolute; top: 18%; left: 18%; }
.app__footer--viewer { background: #141518; }
.dot { width: 16px; height: 16px; border-radius: 5px; }
.dot--blue { background: #2f7bff; }

/* ---------- Trust ---------- */
.trust { padding: 18px 0 10px; }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  text-align: center;
}
.trust__item {
  padding: 26px 16px; border-radius: var(--radius); background: var(--bg-soft);
  border: 1px solid var(--line);
}
.trust__item strong { display: block; font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; }
.trust__item span { color: var(--muted); font-size: .92rem; }

/* ---------- Feature blocks ---------- */
.feature { padding: 90px 0; }
/* Fade in and out of white at both edges so the tinted alt sections never
   form a hard 1px seam where they meet the adjacent white sections. */
.feature--alt { background: linear-gradient(180deg, #fff, var(--bg-soft) 45%, #fff); }
.feature__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.feature__inner--rev .feature__copy { order: 2; }
.feature__copy h2 { margin-bottom: 16px; }
.feature__copy p { color: var(--muted); font-size: 1.08rem; max-width: 480px; }

.checklist { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.checklist--2col { grid-template-columns: 1fr 1fr; }
.checklist li { position: relative; padding-left: 30px; font-weight: 500; color: var(--ink-2); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5618' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
}

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

/* Feature screenshots (real app captures) */
.feature__img { width: 100%; max-width: 420px; height: auto; display: block; margin: 0 auto; will-change: transform; }
.feature__img--card { filter: drop-shadow(0 30px 60px rgba(12, 12, 14, 0.22)); }
/* Photo card: aspect-ratio matches eyes.jpg (1001x639) so object-fit:cover fills
   the box with no distortion and no unwanted cropping. Rounded corners + shadow
   live on the image itself (opaque JPG, so box-shadow follows the radius). */
.feature__img--photo {
  aspect-ratio: 1001 / 639; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
/* Tablet compare mockup: source is 1200px wide, rendered at 460px, so it
   downscales crisply on high-DPI / Retina. height:auto keeps its aspect ratio. */
.feature__img--tablet { max-width: 460px; filter: drop-shadow(0 30px 60px rgba(12, 12, 14, 0.24)); }
/* Portrait iPhone mockup: source is 806px wide, rendered at 320px, so it
   downscales crisply on high-DPI / Retina. height:auto keeps its aspect ratio. */
.feature__img--phone { max-width: 320px; filter: drop-shadow(0 34px 70px rgba(12, 12, 14, 0.28)); }

/* AI categories card */
.categories {
  width: 100%; max-width: 420px; background: var(--dark); border-radius: var(--radius-lg);
  padding: 14px; box-shadow: var(--shadow); border: 1px solid #26282d;
}
.cat {
  display: flex; align-items: center; gap: 14px; color: #e7e8ea;
  padding: 14px 12px; border-bottom: 1px solid #25272c; font-weight: 600;
}
.cat:last-child { border-bottom: 0; }
.cat em { margin-left: auto; font-style: normal; font-variant-numeric: tabular-nums; color: #fff; }
.cat__badge {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  font-weight: 800; color: #fff; font-size: .9rem; flex: none;
}
.cat--g { background: #36c759; } .cat--b { background: #2f7bff; } .cat--y { background: #d9b400; color:#1a1500;}
.cat--r { background: #ff3b30; } .cat--p { background: #8a5cff; } .cat--n { background: #4a4c52; }

/* ---------- Direct Access (rebuilt) ----------
   Single FLAT background colour — no gradient, no pseudo-elements, no overlapping
   layers. No parallax and no persistent transforms, so nothing ever composites a
   seam over the background. Reveal is opacity-only. Correct on first paint and
   identical before / during / after scroll, resize and repeated reveals. */
.direct { padding: 90px 0; background: var(--bg-soft); }
.direct__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.direct__copy { order: 2; }                 /* illustration left, copy right on desktop */
.direct__copy h2 { margin-bottom: 16px; }
.direct__copy p { color: var(--muted); font-size: 1.08rem; max-width: 480px; }
/* Opacity-only reveal: no translate, so no transient compositing layer. */
.direct .reveal { transform: none; }

.direct__visual { display: flex; align-items: center; justify-content: center; gap: 22px; }
.direct__sources { display: flex; flex-direction: column; gap: 12px; }
.direct__chip {
  display: flex; align-items: center; justify-content: center;
  min-width: 96px; padding: 14px 16px; border-radius: 14px;
  color: #fff; font-weight: 700; font-size: .82rem; letter-spacing: .04em;
  box-shadow: 0 14px 30px -16px rgba(12, 12, 14, .45);
}
.direct__chip--sd { background: #2f333b; }
.direct__chip--cf { background: var(--accent); }
.direct__chip--ssd { background: #17181c; }
.direct__arrow { width: 40px; height: 24px; color: var(--accent); flex: none; }
.direct__phone {
  width: 150px; height: auto; display: block; flex: none;
  filter: drop-shadow(0 24px 44px rgba(12, 12, 14, .26));
}

/* Flow */
.flow {
  display: flex; align-items: flex-start; gap: 10px; flex-wrap: wrap; justify-content: center;
  background: var(--dark); border-radius: var(--radius-lg); padding: 34px 22px;
  box-shadow: var(--shadow); max-width: 460px;
}
.flow__step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #e7e8ea; font-weight: 600; font-size: .85rem;
}
.flow__ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: #24262b; font-size: 1.3rem; font-weight: 800; overflow: hidden;
}
.flow__ic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.flow__ic.xmp { color: var(--accent); background: #fff; font-size: .9rem; }
.flow__step--accent .flow__ic { background: var(--accent); color: #fff; }
/* Arrows sit in a band the same height as the icons, so they center on the
   icon row rather than on the icon+label column height. */
.flow__sep {
  align-self: flex-start; height: 54px; display: inline-flex; align-items: center;
  color: var(--accent); font-size: 1.3rem; font-weight: 700;
}

/* Showcase */
.showcase { padding: 90px 0; }
.showcase__head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.showcase__sub { color: var(--muted); font-size: 1.1rem; margin-top: 12px; }
.showcase__body { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; max-width: 900px; margin: 0 auto; }
/* Full iPhone mockup image (frame baked into the asset). Source is 806px wide,
   rendered at 330px, so it downscales crisply on high-DPI / Retina displays.
   height:auto preserves the aspect ratio — no distortion or cropping. */
.showcase__device-img {
  width: 330px; max-width: 100%; height: auto; display: block; margin: 0 auto;
  will-change: transform;
  filter: drop-shadow(0 34px 70px rgba(12, 12, 14, 0.28));
}
.feature-pills { list-style: none; display: grid; gap: 14px; }
.feature-pills li {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 20px; font-weight: 600; box-shadow: 0 8px 24px -20px rgba(0,0,0,.3);
}

/* Tablet / compare */
.tablet {
  width: 100%; max-width: 460px; background: #0b0b0d; border-radius: 26px;
  padding: 14px; box-shadow: var(--shadow);
}
.tablet__screen { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
.compare { display: grid; grid-template-columns: 1fr 1fr; height: 100%; gap: 3px; background:#000; }
.compare__pane { position: relative; background: linear-gradient(160deg,#3b5566,#16242c); }
.compare__pane--r { background: linear-gradient(160deg,#5a4a3a,#241a12); }
.compare__tag {
  position: absolute; top: 10px; left: 10px; font-size: .65rem; font-weight: 800;
  padding: 4px 8px; border-radius: 6px; letter-spacing: .08em;
}
.compare__tag--l { color: #fff; background: rgba(54,199,89,.9); }
.compare__tag--r { color: #fff; background: rgba(255,86,24,.92); right: 10px; left: auto; }

/* Inspect */
.inspect {
  width: 100%; max-width: 420px; background: var(--dark); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow); color: #cfd0d3;
}
.inspect__frame {
  position: relative; aspect-ratio: 3/2; border-radius: 14px;
  background: linear-gradient(160deg,#2b3a44,#10171c); overflow: hidden;
}
.inspect__af {
  position: absolute; width: 30px; height: 30px; border: 2px solid rgba(255,255,255,.45); border-radius: 5px;
}
.inspect__af--1 { left: 22%; top: 30%; }
.inspect__af--2 { left: 46%; top: 46%; }
.inspect__af--3 { left: 70%; top: 36%; }
.inspect__af.active { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,86,24,.25); }
.inspect__hist { color: var(--accent); margin-top: 16px; height: 40px; opacity: .85; }
.inspect__hist svg { width: 100%; height: 100%; }
.inspect__exif { margin-top: 10px; font-size: .82rem; color: #9a9ba0; font-variant-numeric: tabular-nums; letter-spacing: .02em; }

/* Use cases grid */
.usecases { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: 100%; max-width: 420px; }
.usecase { aspect-ratio: 4/3; border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; }
.usecase img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Offline */
.offline { text-align: center; color: var(--accent); will-change: transform; }
.offline__img { width: 170px; max-width: 100%; height: auto; display: block; margin: 0 auto; }
.offline__label { color: var(--muted); font-weight: 600; margin-top: 14px; }

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 90px 0; background: var(--dark); color: #fff; }
.testimonials .eyebrow { color: var(--accent-soft); }
/* Three customer review cards: 5 stars → title → text */
.reviews {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1080px; margin: 0 auto; align-items: stretch;
}
.review {
  display: flex; flex-direction: column; text-align: left;
  background: var(--dark-2); border: 1px solid #2a2c31; border-radius: 20px;
  padding: 28px 26px;
}
.review__stars { color: #ffc24b; font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 16px; }
.review__title { font-size: 1.22rem; font-weight: 800; letter-spacing: -.01em; color: #fff; margin-bottom: 12px; }
.review__text { font-size: .97rem; font-weight: 400; line-height: 1.6; color: #c9cace; }

/* ---------- Final CTA ---------- */
.cta { padding: 100px 0; background: linear-gradient(135deg, var(--accent), #e8430b); color: #fff; text-align: center; }
.cta__inner h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta__inner p { font-size: 1.2rem; opacity: .95; margin: 14px 0 30px; }
.cta__buttons { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #c9cacd; padding: 60px 0 30px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer__brand .brand__name { color: #fff; font-weight: 800; font-size: 1.1rem; }
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer__brandrow { display: inline-flex; align-items: center; gap: 8px; }
.footer__tag { color: #8a8b90; font-size: .9rem; margin-top: 6px; max-width: 280px; }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.footer__links a { color: #c9cacd; font-weight: 500; transition: color .2s; }
.footer__links a:hover { color: var(--accent-soft); }
.footer__bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid #2a2c31;
  color: #7e8085; font-size: .85rem;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
/* Footer language selector — subtle but clearly clickable */
.footer__langs { display: flex; align-items: center; gap: 16px; list-style: none; }
.footer__langs a { color: #7e8085; font-weight: 500; transition: color .2s; }
.footer__langs a:hover { color: var(--accent-soft); }
.footer__langs a.is-active { color: #fff; font-weight: 600; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero { padding: 120px 0 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__bg { grid-template-columns: repeat(5, 1fr); }
  .feature__inner { grid-template-columns: 1fr; gap: 40px; }
  .feature__inner--rev .feature__copy { order: 0; }
  .feature__copy { text-align: center; }
  .feature__copy p { margin-left: auto; margin-right: auto; }
  .checklist { max-width: 360px; margin-left: auto; margin-right: auto; text-align: left; }
  .showcase__body { grid-template-columns: 1fr; }
  .feature-pills { max-width: 420px; margin: 0 auto; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr; max-width: 560px; }
  .direct__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .direct__copy { order: 0; }
  .direct__copy p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .trust__grid { grid-template-columns: 1fr; }
  .checklist--2col { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: center; }
  .store-badge img { height: 50px; }
  .direct__visual { gap: 14px; }
  .direct__phone { width: 128px; }
  .direct__chip { min-width: 76px; padding: 12px 10px; font-size: .76rem; }
  .footer__inner { flex-direction: column; gap: 28px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg, [data-parallax] { transform: none !important; }
}
