/* ZoopZip — zoopzip.com
   Palette drawn from the app logo: cyan panel + hot-pink graffiti, on ink.
   ------------------------------------------------------------------------ */
:root {
  --cyan: #57D6EC;
  --cyan-soft: #D6F6FB;
  --cyan-deep: #1FA9C7;
  --pink: #FF1E8A;
  --pink-deep: #DB0F73;
  --blue: #2F6FED;
  --ink: #0B1521;
  --ink-2: #10202F;
  --slate: #3C566E;
  --muted: #6E869C;
  --line: #E2EEF3;
  --bg: #F5FBFD;
  --white: #FFFFFF;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 18px 50px -20px rgba(11, 38, 60, .35);
  --shadow-sm: 0 8px 24px -12px rgba(11, 38, 60, .28);
  --maxw: 1140px;
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible,
summary:focus-visible, [tabindex]:focus-visible {
  outline: 2.5px solid var(--cyan-deep);
  outline-offset: 3px;
  border-radius: 6px;
}
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 7vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; color: var(--slate); }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan-deep); margin: 0 0 .8rem; }
.lead { font-size: 1.2rem; color: var(--slate); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.pink { color: var(--pink); }
.nowrap { white-space: nowrap; }
section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
svg { flex-shrink: 0; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-head); font-weight: 700; font-size: 1rem; padding: 15px 30px; border-radius: 999px; border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease; text-decoration: none; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--pink); color: #fff; box-shadow: 0 12px 26px -10px rgba(255, 30, 138, .7); }
.btn-primary:hover { background: var(--pink-deep); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); }
.btn-lg { padding: 18px 38px; font-size: 1.08rem; }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 20px; height: 20px; }
.btn-dark small, .btn-primary small, .btn-ghost small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .74rem; opacity: .82; margin-top: 1px; }

/* ---- Header / nav ---- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(245, 251, 253, .82); backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 20px; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand img { width: 40px; height: 40px; border-radius: 11px; }
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: auto; flex-wrap: nowrap; }
.nav-links a { font-family: var(--font-head); font-weight: 600; font-size: .96rem; color: var(--slate); padding: 9px 14px; border-radius: 10px; }
.nav-links a:hover { color: var(--ink); background: var(--cyan-soft); text-decoration: none; }
.nav-links a.active { color: var(--cyan-deep); }
.nav-cta { margin-left: 8px; }
/* .nav-links a's two-selector rule (0,1,1) otherwise beats .btn-primary's
   color: #fff (0,1,0), leaving the pink CTA button with near-black text. */
.nav-links a.nav-cta, .nav-links a.nav-cta:hover { color: #fff; background: var(--pink); }
.nav-links a.nav-cta:hover { background: var(--pink-deep); }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero (full-bleed photo background, echoing the app splash) ---- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; padding: 130px 0 110px; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; z-index: 1; pointer-events: none; }
.hero::before { width: 520px; height: 520px; background: var(--pink); top: -160px; right: -120px; }
.hero::after { width: 560px; height: 560px; background: var(--cyan); bottom: -220px; left: -160px; opacity: .35; }
.hero .photo-duo { z-index: 0; }
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; }
.hero h1 .grad { background: linear-gradient(100deg, var(--pink) 20%, #ff8ec4 55%, var(--cyan) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
/* Text sits over the full-bleed photo, so it needs a width cap or it would
   stretch edge to edge and become hard to read as it does over a plain colour. */
.hero-content { max-width: 700px; }
.hero h1 { overflow-wrap: break-word; }
.hero .lead { color: #C7D8E6; font-size: 1.28rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; }
.chip { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; font-size: .85rem; padding: 8px 15px; border-radius: 999px; background: rgba(11,21,33,.45); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.16); color: #E4F1F8; }
.chip svg { width: 15px; height: 15px; color: var(--cyan); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 18px; font-size: .92rem; color: #9DB4C6; }
.hero-logo { width: 78px; height: 78px; border-radius: 20px; box-shadow: 0 16px 40px -12px rgba(255, 30, 138, .55); margin-bottom: 26px; }

/* Photographic backdrop: a real photo, colour-unified to the brand with a
   duotone wash rather than shown in its native colours, and darkened enough
   that white headline/body text stays legible over any part of the image. */
.photo-duo { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.photo-duo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1) brightness(.42); opacity: .8; }
.photo-duo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,30,138,.4), transparent 55%),
              linear-gradient(-30deg, rgba(87,214,236,.35), transparent 55%);
  mix-blend-mode: color;
}
.photo-duo::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,21,33,.88) 0%, rgba(11,21,33,.72) 38%, rgba(11,21,33,.45) 68%, rgba(11,21,33,.3) 100%);
}

/* marquee bulb strip */
.marquee { display: flex; gap: 14px; padding: 16px 0 0; overflow: hidden; }
.marquee i { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); flex: none; opacity: .3; animation: chase 2.6s linear infinite; }
@keyframes chase { 0%,100% { opacity:.25; box-shadow:none; } 50% { opacity:1; box-shadow:0 0 10px var(--cyan); } }

/* ---- Logos / trust strip ---- */
.strip { background: var(--ink); color: #A9C0D2; padding: 22px 0; }
.strip .container { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: center; text-align: center; }
.strip b { color: #fff; font-family: var(--font-head); }
.strip .item { display: inline-flex; align-items: center; gap: 9px; }
.strip svg { width: 17px; height: 17px; color: var(--cyan); }

/* ---- Feature cards ---- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; background: var(--cyan-soft); color: var(--cyan-deep); }
.card .ico svg { width: 26px; height: 26px; }
.card .ico.pink { background: #FFE1F0; color: var(--pink-deep); }
.card h3 { margin-bottom: .4rem; }
.card p { margin: 0; font-size: .98rem; }

/* privacy band: a hand-built diagram (device -> lock, cloud crossed out)
   rather than a stock photo, since it needs to communicate a specific idea
   precisely -- vector, crisp at any size, exact brand colours. */
/* "Who it's for" — a prominent audience section so visitors immediately grasp
   who ZoopZip is for. Tinted band to stand apart, with two large photo cards. */
.who { background: linear-gradient(180deg, #EAF7FB 0%, #F5FBFD 100%); }
/* Cards capped narrower than the full container so the photos read a touch
   smaller, scaled down proportionally rather than cropped. */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 48px auto 0; max-width: 940px; }
.who-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease; }
.who-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.who-photo { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.who-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Taller fade so the pill has a darker bed and more breathing room. */
.who-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(11,21,33,.6) 100%); }
.who-tag { position: absolute; left: 18px; bottom: 20px; z-index: 1; display: inline-flex; align-items: center; gap: 8px; padding: 11px 17px; border-radius: 999px; background: rgba(11,21,33,.74); backdrop-filter: blur(4px); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .82rem; }
.who-tag svg { color: var(--cyan); }
.who-body { padding: 34px 28px 34px; }
.who-body h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.who-body p { margin: 0; color: var(--slate); }
@media (max-width: 820px) { .who-grid { grid-template-columns: 1fr; } }

.band { background: linear-gradient(120deg, var(--cyan-soft), #EAF7FA); border-radius: 32px; padding: 60px; border: 1px solid #CFEAF1; overflow: hidden; }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.tick { list-style: none; padding: 0; margin: 20px 0 0; }
.tick li { position: relative; padding: 8px 0 8px 34px; color: var(--ink); font-weight: 500; }
.tick li::before { content: "✓"; position: absolute; left: 0; top: 7px; width: 22px; height: 22px; border-radius: 50%; background: var(--pink); color: #fff; font-size: .78rem; font-weight: 800; display: grid; place-items: center; }

.diagram { display: block; width: 100%; height: auto; }
.diagram-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 10px; border: 1px solid #CFEAF1; }

/* ---- Tables (specs) ---- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--line); font-size: .97rem; }
thead th { background: var(--ink); color: #fff; font-family: var(--font-head); font-weight: 600; letter-spacing: .01em; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: #FAFDFE; }
td b, th b { color: var(--pink); }
.pill { display: inline-block; font-size: .78rem; font-weight: 700; font-family: var(--font-head); padding: 3px 10px; border-radius: 999px; background: var(--cyan-soft); color: var(--cyan-deep); }
.pill.rec { background: #FFE1F0; color: var(--pink-deep); }

/* Comparison table: the "topic" column (row labels) gets its own background so
   it reads as a header running down the left side, and the whole ZoopZip
   column -- including its header cell -- is highlighted so it's obvious at a
   glance which column is "us" versus the five rivals. */
.compare-table th:first-child, .compare-table td:first-child { background: var(--cyan-soft); }
.compare-table thead th:first-child { background: var(--ink); }
.compare-table th:nth-child(2), .compare-table td:nth-child(2) {
  background: #FFE1F0;
  border-left: 2px solid var(--pink);
  border-right: 2px solid var(--pink);
}
.compare-table thead th:nth-child(2) { background: var(--pink); color: #fff; border-top: 2px solid var(--pink); }
.compare-table tbody tr:last-child td:nth-child(2) { border-bottom: 2px solid var(--pink); }

/* ---- Steps / guide ---- */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 20px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.step::before { counter-increment: step; content: counter(step); width: 46px; height: 46px; border-radius: 13px; background: var(--pink); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; }
.step h3 { margin: 4px 0 .4rem; }
.step p { margin: 0; }

.option { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; background: #fff; box-shadow: var(--shadow-sm); }
.option h3 { display: flex; align-items: center; gap: 10px; }
.option .tag { font-size: .72rem; font-family: var(--font-head); font-weight: 700; padding: 3px 9px; border-radius: 999px; background: var(--cyan-soft); color: var(--cyan-deep); }
.option .tag.pro { background: #FFE1F0; color: var(--pink-deep); }

.anchor-nav { position: sticky; top: 90px; align-self: start; display: flex; flex-direction: column; gap: 4px; }
.anchor-nav a { font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--slate); padding: 8px 12px; border-left: 2px solid var(--line); }
.anchor-nav a:hover { color: var(--pink); border-color: var(--pink); text-decoration: none; }

/* ---- Page hero (inner pages) ---- */
.page-hero { position: relative; background: radial-gradient(120% 130% at 80% 0%, #123049 0%, var(--ink) 60%); color: #fff; padding: 92px 0 76px; overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: #C7D8E6; }
.page-hero .eyebrow { color: var(--cyan); }

/* Inner pages: an on-brand image behind the hero instead of a flat dark fill.
   The gradient sits above the image and stays heavy on the left so the heading
   and text keep full contrast; the artwork shows through on the right. Each
   page supplies its own image via the --hero-img custom property. The extra
   class raises specificity above plain .page-hero, so source order doesn't
   matter. */
.page-hero.has-bg {
  background:
    linear-gradient(90deg, rgba(9,17,27,.96) 0%, rgba(9,17,27,.86) 38%, rgba(9,17,27,.55) 72%, rgba(9,17,27,.42) 100%),
    var(--hero-img);
  background-size: cover, cover;
  background-position: center, right center;
  background-repeat: no-repeat, no-repeat;
}

/* ---- FAQ ---- */
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 24px; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-family: var(--font-head); font-weight: 700; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: var(--pink); border-radius: 2px; transition: transform .2s ease; }
.faq summary .plus::before { left: 3px; right: 3px; top: 50%; height: 2px; transform: translateY(-50%); }
.faq summary .plus::after { top: 3px; bottom: 3px; left: 50%; width: 2px; transform: translateX(-50%); }
.faq details[open] summary .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq details p { padding-bottom: 16px; margin: 0; }

/* ---- Contact ---- */
.form { display: grid; gap: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 13px; font: inherit; font-size: 1rem; background: #fff; transition: border-color .15s ease, box-shadow .15s ease; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cyan-deep); box-shadow: 0 0 0 3px rgba(87, 214, 236, .25); }
.field textarea { min-height: 150px; resize: vertical; }
.note { padding: 15px 18px; border-radius: 13px; font-size: .95rem; display: flex; align-items: flex-start; gap: 10px; }
.note svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 1px; }
.note.ok { background: #E3F9EE; color: #0B7A4B; border: 1px solid #B7ECD1; }
.note.err { background: #FDEBEC; color: #B02A32; border: 1px solid #F5C6CA; }
.note.warn { background: #FFF1CC; color: #7A4E00; border: 1px solid #F0C868; text-align: left; box-shadow: 0 2px 10px rgba(180, 130, 0, .12); }
.note.warn a { color: inherit; text-decoration: underline; }
.contact-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 4px; }
.contact-list li { display: flex; align-items: center; gap: 11px; padding: 10px 0; color: var(--ink); font-weight: 500; }
.contact-list svg { width: 19px; height: 19px; color: var(--pink); flex-shrink: 0; }

/* ---- CTA band ---- */
.cta { position: relative; background: linear-gradient(120deg, var(--ink), #142a3f); color: #fff; border-radius: 32px; padding: 66px; text-align: center; overflow: hidden; }
.cta .cta-texture { position: absolute; inset: 0; z-index: 0; }
.cta .cta-texture img { width: 100%; height: 100%; object-fit: cover; opacity: .22; mix-blend-mode: screen; filter: saturate(1.3); }
.cta::before { content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: var(--pink); filter: blur(110px); opacity: .4; top: -140px; left: 50%; transform: translateX(-50%); z-index: 0; }
.cta h2, .cta p, .cta .btn { position: relative; z-index: 1; color: #fff; }
.cta .lead { color: #C7D8E6; margin: 0 auto 26px; }

/* ---- Pro banner: the "pay once, yours forever" upgrade banner ---- */
/* Deliberately bigger and more direct than the plain .cta band: this is the
   one place on the page asking for money, so the headline carries the actual
   pitch (pay once, free upgrades for life) instead of being buried as a small
   eyebrow line above a generic "ZoopZip Pro" heading. */
.pro-banner { position: relative; background: linear-gradient(120deg, var(--ink), #142a3f); border-radius: 32px; overflow: hidden; }
.pro-banner-bg { position: absolute; inset: 0; z-index: 0; }
.pro-banner-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .2; mix-blend-mode: screen; filter: saturate(1.3); }
/* border-radius:50% is load-bearing here, not decoration: without it this is a
   blurred SQUARE sitting right at the corner, and overflow:hidden clips the
   blur before it fades out -- the result is a visible pink rectangle instead
   of a soft glow. Circular blobs fade symmetrically so the clip never shows
   a hard edge. */
.pro-banner::before { content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%; background: var(--pink); filter: blur(120px); opacity: .38; top: -160px; left: -60px; z-index: 0; }
.pro-banner::after { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: var(--cyan); filter: blur(120px); opacity: .22; bottom: -180px; right: 10%; z-index: 0; }
.pro-banner-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .9fr; align-items: end; gap: 24px; padding: 68px 64px; }
.pro-banner-copy .eyebrow { color: var(--cyan); }
.pro-banner-copy h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: .55rem; }
.pro-banner-copy h2 .pink { color: var(--pink); -webkit-text-fill-color: var(--pink); }
.pro-banner-copy .lead { color: #C7D8E6; margin-bottom: 28px; }
.pro-banner-photo { position: relative; display: flex; align-items: flex-end; justify-content: center; height: 100%; min-height: 300px; }
.pro-banner-photo img { max-height: 400px; width: auto; display: block; }
.pro-banner-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }

/* ---- Downloads landing ---- */
.dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
.dl-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); text-align: center; }
.dl-card .ico { width: 64px; height: 64px; border-radius: 16px; background: var(--ink); color: #fff; display: grid; place-items: center; margin: 0 auto 18px; }
.dl-card .ico svg { width: 32px; height: 32px; }
.dl-card h3 { margin-bottom: .2rem; }
.dl-card .meta { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.dl-card .btn { width: 100%; justify-content: center; }

/* ---- Footer ---- */
.footer { background: var(--ink); color: #93AABD; padding: 62px 0 34px; }
.footer a { color: #C4D6E4; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: .95rem; }
.footer ul a { display: inline-flex; align-items: center; gap: 8px; }
.footer ul a svg { width: 15px; height: 15px; opacity: .8; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .88rem; }
.kw { color: #6E869C; }

/* ---- Motion & accessibility ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee i { animation: none; opacity: .8; }
  .btn:hover, .card:hover { transform: none; }
}

/* ---- Responsive ---- */
/* Six nav links plus the CTA button is comfortable at 1180px+ but tight on
   smaller desktop/laptop windows above the 900px mobile-menu breakpoint;
   tighten spacing here so nothing overflows the header before it collapses
   into the hamburger menu. */
@media (max-width: 1180px) and (min-width: 901px) {
  .nav { gap: 10px; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 9px 10px; font-size: .88rem; }
  .brand span, .brand { font-size: 1.15rem; }
  .nav-cta { margin-left: 4px; padding: 15px 20px; }
}
@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; background: var(--bg); border-bottom: 1px solid var(--line); padding: 12px 24px 20px; gap: 2px; display: none; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 12px; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .band-grid, .footer-grid, .dl-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .band, .cta, .pro-banner-grid { padding: 40px 26px; }
  section { padding: 66px 0; }
  .anchor-nav { display: none; }
  .hero { padding: 100px 0 70px; }
  .pro-banner-photo { display: none; }
  .pro-banner-grid { grid-template-columns: 1fr; }
}
@media (min-width: 901px) {
  .guide-layout { display: grid; grid-template-columns: 220px 1fr; gap: 44px; }
}
