/* ============================================================
   PopScale — styles.css
   Theme: Bright Orange #FF5A1F · Slate-Teal #1E2A32 · Black #000000
          Cool-gray border #E6E8E7 · White #FFFFFF · Slate #5C6A70
   Fonts: Poppins (headings) + Inter (body). owner.com-inspired.
   ============================================================ */

:root {
  --orange: #FF5A1F;
  --orange-600: #E64A12;
  --mustard: #1E2A32;      /* slate-teal accent */
  --ink: #000000;
  --cream: #FFFFFF;
  --white: #FFFFFF;
  --tan: #E6E8E7;          /* cool-gray borders/dividers */
  --soft: #F4F6F6;         /* light cool section bg */
  --muted: #5C6A70;        /* slate-gray sub-text */

  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 16px rgba(30, 42, 50, .06);
  --shadow: 0 14px 34px rgba(30, 42, 50, .08);
  --shadow-orange: 0 10px 22px rgba(255, 90, 31, .28);

  --container: 1120px;
  --header-h: 68px;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, .brand, .btn, .stat-num, .price-amt, .price-name, .eyebrow { font-family: 'Poppins', sans-serif; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 6px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.cf-slot { margin-bottom: 16px; }
.cf-slot:empty { display: none; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--orange); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 13px 22px; border: 1.5px solid transparent; border-radius: var(--radius-sm);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
  white-space: nowrap;
}
.btn-primary { box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--tan); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--tan); }
.btn-outline:hover { --btn-fg: var(--orange); border-color: var(--orange); }
.price-featured .btn-outline,
.price-slate .btn-outline { --btn-fg: #fff; border-color: rgba(255,255,255,.28); }
.price-featured .btn-outline:hover,
.price-slate .btn-outline:hover { --btn-fg: var(--orange); border-color: var(--orange); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--white) 88%, transparent);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.site-header.scrolled { border-color: var(--tan); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; gap: 18px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 34px; width: auto; }
.nav { margin-left: 8px; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; padding: 0; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--muted); transition: color .15s var(--ease); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }

.lang-toggle { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 600; }
.lang-toggle[hidden] { display: none; }
.lang-btn { background: none; border: 0; color: var(--muted); font-weight: 700; font-size: 13px; padding: 4px 2px; }
.lang-btn.is-active { color: var(--orange); }

.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; border: 1.5px solid var(--tan); border-radius: 10px; background: var(--white); }
.hamburger span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); margin-inline: auto; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--soft); border: 1px solid var(--tan); color: var(--muted);
  font-size: 12.5px; font-weight: 600; letter-spacing: .4px; text-transform: uppercase;
  padding: 7px 14px; border-radius: 30px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.eyebrow-on-dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #d9cdbb; }

.section { padding: 84px 0; }
.section-soft { background: var(--soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1px; line-height: 1.12; }
.section-lede { color: var(--muted); font-size: 17px; margin-top: 12px; }

/* Highlighted keyword (owner.com style) */
.hl-mark { white-space: nowrap; }
.hl-orange { color: var(--orange); }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 40px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 50% -8%, rgba(255,84,0,.10), transparent 60%),
    radial-gradient(40% 40% at 88% 8%, rgba(245,179,1,.14), transparent 60%);
}
.hero-inner { max-width: 860px; margin-inline: auto; }
.hero .eyebrow { margin-bottom: 22px; }
.hero-title { font-size: clamp(38px, 7vw, 68px); font-weight: 800; letter-spacing: -2px; line-height: 1.04; }
.hero-title span { display: inline; }
.hero-sub { color: var(--muted); font-size: clamp(16px, 2.2vw, 20px); max-width: 620px; margin: 22px auto 30px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 13.5px; color: var(--muted); }

/* Stat cards */
.stats {
  list-style: none; padding: 0; margin: 52px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: left;
}
.stat { background: var(--white); border: 1px solid var(--tan); border-radius: var(--radius); padding: 22px 20px; text-align: center; }
.stat-num { display: block; font-size: 30px; font-weight: 800; letter-spacing: -1px; color: var(--ink); }
.stat-unit { color: var(--orange); }
.stat-label { display: block; font-size: 13px; color: var(--muted); margin-top: 4px; }
.stat-dark { background: var(--white); border-color: var(--tan); }
.stat-dark .stat-num { color: var(--ink); }
.stat-dark .stat-unit { color: var(--orange); }
.stat-dark .stat-label { color: var(--muted); }

/* ---------- Cards / grids ---------- */
.cards { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--tan); border-radius: var(--radius); padding: 28px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--orange) 30%, var(--tan)); }
.card-ic {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--soft); border: 1px solid var(--tan); color: var(--orange); margin-bottom: 16px;
  margin-left: auto; margin-right: auto;
}
.card-ic svg { width: 24px; height: 24px; }
.card { text-align: center; }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.card p { font-size: 14.5px; color: var(--muted); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: center; }
.about-copy .eyebrow { margin-bottom: 16px; }
.about-copy .section-title { text-align: left; }
.about-copy p { color: var(--muted); font-size: 16px; margin-top: 14px; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 30px; font-weight: 500; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px;
  background: var(--orange); color: #fff; border-radius: 6px; font-size: 12px; font-weight: 800;
  display: grid; place-items: center;
}
.about-card {
  background: var(--white); border: 1px solid var(--tan); border-radius: var(--radius-lg);
  padding: 34px; text-align: center; box-shadow: var(--shadow-sm);
}
.about-card img { margin: 0 auto 18px; }
.about-card blockquote { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 18px; letter-spacing: -.3px; color: var(--ink); }

/* ---------- Work / carousel ---------- */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.carousel-track { display: flex; list-style: none; padding: 0; margin: 0; transition: transform .5s var(--ease); }
.work-item { flex: 0 0 100%; padding: 4px; }
@media (min-width: 700px) { .work-item { flex-basis: 50%; } }
@media (min-width: 1000px) { .work-item { flex-basis: 33.3333%; } }
.work-thumb {
  position: relative; height: 210px; border-radius: var(--radius); border: 1px solid var(--tan);
  display: flex; align-items: flex-end; padding: 16px; overflow: hidden;
}
.work-tag {
  font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .4px;
  background: rgba(20,17,16,.72); color: #fff; padding: 6px 12px; border-radius: 20px; backdrop-filter: blur(4px);
}
.thumb-1 { background: linear-gradient(135deg, #FF8A5A, #FF5A1F); }
.thumb-2 { background: linear-gradient(135deg, #3A4E5A, #1E2A32); }
.thumb-3 { background: linear-gradient(135deg, #1A1A1A, #000000); }
.thumb-4 { background: linear-gradient(135deg, #FF6A3D, #E64A12); }
.thumb-5 { background: linear-gradient(135deg, #5C6A70, #3A4E5A); }
.thumb-6 { background: linear-gradient(135deg, #2E3E48, #14181B); }
.work-meta { padding: 14px 6px 4px; }
.work-meta h3 { font-size: 16.5px; font-weight: 700; }
.work-meta p { font-size: 14px; color: var(--muted); margin-top: 2px; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 26px; }
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--tan); background: var(--white);
  display: grid; place-items: center; color: var(--ink); transition: all .15s var(--ease);
}
.carousel-btn:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: var(--tan); transition: all .2s var(--ease); }
.carousel-dots button.active { background: var(--orange); width: 26px; border-radius: 6px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.price-card {
  position: relative; background: var(--white); border: 1px solid var(--tan); border-radius: var(--radius-lg);
  padding: 28px 24px; display: flex; flex-direction: column;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-featured,
.price-slate { background: #1E2A32; border-color: #1E2A32; box-shadow: var(--shadow); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: .3px; padding: 5px 14px; border-radius: 20px; white-space: nowrap;
}
.price-name { font-size: 26px; font-weight: 800; }
.price-amt { font-size: 40px; font-weight: 800; letter-spacing: -1.5px; margin: 6px 0 2px; }
.price-amt span { font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-amt-custom { font-size: 18px; font-weight: 600; letter-spacing: -.5px; color: var(--muted); }
.price-note { font-size: 12.5px; color: var(--orange); font-weight: 600; margin: 0 0 4px; }
.price-desc { font-size: 14px; color: var(--muted); min-height: 40px; }
.price-feats { list-style: none; padding: 0; margin: 16px 0 22px; display: grid; gap: 9px; flex: 1; }
.price-feats li { position: relative; padding-left: 26px; font-size: 14px; }
.price-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.price-featured .price-name,
.price-featured .price-amt,
.price-slate .price-name,
.price-slate .price-amt { color: #fff; }
.price-featured .price-amt span,
.price-slate .price-amt span { color: #AEB8BD; }
.price-featured .price-desc,
.price-slate .price-desc { color: #B4BDC2; }
.price-featured .price-note,
.price-slate .price-note { color: #F0A868; }
.price-featured .price-feats li,
.price-slate .price-feats li { color: #DDE2E4; }
.price-featured .price-feats li::before,
.price-slate .price-feats li::before { color: var(--orange); }
.pricing-foot { text-align: center; color: var(--muted); font-size: 14.5px; margin-top: 22px; }
.pricing-foot a { color: var(--orange); font-weight: 600; text-decoration: none; }
.pricing-foot a:hover { text-decoration: underline; }

/* Website build add-on callout */
.web-callout {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; align-items: center;
  margin-top: 28px; padding: 32px;
  background: #ffffff; border: 1.5px solid var(--tan); border-radius: var(--radius);
  box-shadow: var(--shadow); text-align: left;
}
.web-callout-copy .eyebrow { margin-bottom: 12px; }
.web-callout-title { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 24px; line-height: 1.2; letter-spacing: -.5px; margin: 4px 0 10px; color: var(--ink); }
.web-callout-desc { color: var(--muted); margin-bottom: 16px; }
.web-callout-copy .check-list { margin-top: 16px; }
.web-callout-pricing {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px; background: var(--soft); border: 1px solid var(--tan); border-radius: var(--radius-sm);
}
.web-price-block { text-align: center; }
.web-price-amt { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 30px; letter-spacing: -1px; color: var(--ink); }
.web-price-unit { font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.web-price-label { font-size: 13px; color: var(--muted); margin-top: 2px; }
.web-price-plus { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 22px; color: var(--orange); line-height: 1; }
.web-callout-pricing .btn { margin-top: 6px; width: 100%; }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--white); border: 1px solid var(--tan); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.stars { color: var(--orange); letter-spacing: 3px; font-size: 15px; margin-bottom: 12px; }
.quote-card blockquote { font-size: 18px; font-weight: 500; letter-spacing: -.2px; }
.quote-card figcaption { margin-top: 16px; display: flex; flex-direction: column; }
.quote-card figcaption strong { font-family: 'Poppins', sans-serif; font-size: 14.5px; }
.quote-card figcaption span { font-size: 13px; color: var(--muted); }

/* ---------- Contact ---------- */
.section-dark { background: #1E2A32; color: #fff; }
.section-dark .section-title { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: start; }
.contact-copy .section-title { text-align: left; }
.contact-lede { color: #B4BDC2; font-size: 16px; margin-top: 14px; }
.contact-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-size: 16px; }
.contact-list a:hover { color: var(--orange); }
.contact-ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: var(--orange); flex: none; }
.contact-ic svg { width: 20px; height: 20px; }
.social-row { display: flex; gap: 12px; margin-top: 6px; }
.social-ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #fff; transition: all .15s var(--ease); }
.social-ic svg { width: 20px; height: 20px; }
.social-ic:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }

.contact-form { background: var(--cream); border: 1px solid var(--tan); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: inline-block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.req { color: #c1121f; font-weight: 700; }
.form-required-note { font-size: 12.5px; color: var(--muted); margin-bottom: 16px; }
.form-required-note span[aria-hidden="true"] { color: #c1121f; font-weight: 700; }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--white);
  border: 1.5px solid var(--tan); border-radius: var(--radius-sm); padding: 12px 14px; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,90,31,.15); }
.field textarea { resize: vertical; min-height: 110px; }
.field.invalid input, .field.invalid textarea { border-color: #c1121f; }
.err { display: block; color: #c1121f; font-size: 12.5px; margin-top: 5px; min-height: 1em; }
.form-status { text-align: center; font-size: 14px; margin-top: 12px; min-height: 1.2em; }
.form-status.ok { color: #1c7a3e; font-weight: 600; }
.form-status.bad { color: #c1121f; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: #12191F; color: #B4BDC2; padding: 54px 0 26px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; align-items: start; }
.footer-brand img { height: 32px; width: auto; margin-bottom: 12px; }
.footer-brand p { font-family: 'Poppins', sans-serif; font-weight: 600; color: #fff; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: #B4BDC2; font-size: 14.5px; }
.footer-nav a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { color: #B4BDC2; font-size: 14.5px; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: #8A959B; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--ink); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .25s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--orange); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Cookie notice ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 95;
  max-width: 560px; margin-inline: auto;
  background: var(--white); border: 1px solid var(--tan); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 16px 18px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
/* The `hidden` attribute (set by JS on Accept/Decline) must win over display:flex,
   otherwise the banner can never be dismissed. Equal specificity would let
   `display:flex` override the UA `[hidden]{display:none}`, so scope it explicitly. */
.cookie[hidden] { display: none; }
.cookie p { font-size: 13.5px; color: var(--muted); flex: 1; min-width: 220px; }
.cookie p a { color: var(--orange); font-weight: 600; text-decoration: underline; white-space: nowrap; }
.cookie p a:hover { color: var(--orange-600); }
.cookie-actions { display: flex; gap: 10px; margin-left: auto; }

/* ---------- Legal / long-form pages (Privacy, Terms) ---------- */
.legal { padding: 64px 0 76px; }
.legal-inner { max-width: 760px; margin-inline: auto; }
.legal .eyebrow { margin-bottom: 16px; }
.legal h1 { font-size: clamp(30px, 5vw, 44px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.1; }
.legal .updated { color: var(--muted); font-size: 14px; margin-top: 10px; }
.legal .lead { font-size: 17px; color: var(--muted); margin-top: 18px; }
.legal h2 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -.3px; margin: 34px 0 8px; }
.legal p { font-size: 15.5px; line-height: 1.75; margin-top: 10px; }
.legal ul { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 10px; }
.legal li { position: relative; padding-left: 24px; font-size: 15px; line-height: 1.65; }
.legal li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.legal a { color: var(--orange); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.legal .divider { height: 1px; background: var(--tan); border: 0; margin: 40px 0 0; }
.legal .legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 32px; font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--ink); }
.legal .legal-back:hover { color: var(--orange); }
.legal .legal-back svg { width: 18px; height: 18px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .05s; }
.reveal:nth-child(3) { transition-delay: .1s; }
.reveal:nth-child(4) { transition-delay: .15s; }
/* If JS is disabled, never hide content */
html:not(.js) .reveal { opacity: 1 !important; transform: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .web-callout { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 760px) {
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; background: var(--white); border-bottom: 1px solid var(--tan);
         transform: translateY(-120%); transition: transform .3s var(--ease); margin: 0; }
  .nav.open { transform: translateY(0); box-shadow: var(--shadow); }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 22px 18px; }
  .nav-links li { border-bottom: 1px solid var(--tan); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { display: block; padding: 14px 0; font-size: 16px; }
  .nav-links a.active::after { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-primary { display: none; }   /* CTA available in hero + menu */
  .section { padding: 62px 0; }
  .hero { padding: 48px 0 30px; }
}

@media (max-width: 560px) {
  .grid-3, .grid-2, .pricing-grid, .stats, .footer-inner { grid-template-columns: 1fr; }
  .about-card { padding: 26px; }
  .cookie { flex-direction: column; align-items: stretch; }
  .cookie-actions { margin-left: 0; }
  .cookie-actions .btn { flex: 1; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Screen-reader-only utility ---------- */
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- Windows High Contrast / forced colors ---------- */
@media (forced-colors: active) {
  :focus-visible { outline: 3px solid CanvasText; outline-offset: 2px; }
  .btn, .card, .stat, .price-card, .field input, .field textarea { border: 1px solid CanvasText; }
  .skip-link { border: 1px solid CanvasText; }
}
