/* =====================================================
   Bin Boss — Clean Bins. Curbside.
   Brand: navy, royal blue, teal accent
   ===================================================== */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/archivo-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/archivo-800.ttf') format('truetype');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('assets/fonts/archivo-900.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/inter-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/inter-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/inter-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/inter-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/inter-800.ttf') format('truetype');
}

:root {
  /* Brand palette */
  --navy-900: #061a36;
  --navy-800: #0b2545;
  --navy-700: #133b6e;
  --blue-600: #1e58c8;
  --blue-500: #2a6df4;
  --blue-400: #3b8eff;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;

  /* Neutrals */
  --ink: #0b1a2c;
  --muted: #4b5b73;
  --soft: #6b7a91;
  --line: #e3e8f1;
  --line-strong: #cdd6e4;
  --bg: #f7f9fc;
  --bg-soft: #eef3fa;
  --white: #ffffff;

  /* Type */
  --font-display: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Radii / shadows */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(11, 26, 44, 0.06), 0 1px 1px rgba(11, 26, 44, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 26, 44, 0.08), 0 2px 6px rgba(11, 26, 44, 0.05);
  --shadow-lg: 0 24px 60px rgba(11, 26, 44, 0.16), 0 6px 16px rgba(11, 26, 44, 0.08);

  /* Layout */
  --container: 1180px;
  --pad-x: clamp(20px, 4vw, 40px);
}

/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; letter-spacing: -0.02em; line-height: 1.08; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ========== Container ========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  box-shadow: 0 8px 18px rgba(30, 88, 200, 0.32), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--blue-400), var(--blue-500));
  box-shadow: 0 10px 22px rgba(30, 88, 200, 0.42);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--navy-700);
  color: var(--navy-900);
  background: #fbfdff;
}

.btn-block { width: 100%; }

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 252, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.brand-mascot {
  width: 54px;
  height: auto;
  display: block;
  filter: drop-shadow(0 3px 7px rgba(11, 37, 69, 0.12));
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.brand-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
}
.header-nav a:hover { color: var(--navy-900); }
.nav-cta {
  background: var(--navy-900);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--blue-600); }

@media (max-width: 760px) {
  .header-nav a:not(.nav-cta) { display: none; }
  .header-inner { height: 64px; }
  .brand-tag { display: none; }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 7vw, 96px);
  background:
    radial-gradient(1100px 600px at 90% -10%, rgba(45, 212, 191, 0.18), transparent 60%),
    radial-gradient(800px 500px at -10% 20%, rgba(59, 142, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #f4f8ff 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: rgba(30, 88, 200, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 900;
  color: var(--navy-900);
  letter-spacing: -0.025em;
}
.hero h1 .hl {
  color: var(--blue-600);
  position: relative;
  white-space: nowrap;
}
.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 4px;
  height: 10px;
  background: var(--teal-400);
  opacity: 0.55;
  border-radius: 6px;
  z-index: -1;
}
.lede {
  margin-top: 22px;
  font-size: clamp(16px, 1.4vw, 18.5px);
  color: var(--muted);
  max-width: 56ch;
}
.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-points {
  margin-top: 36px;
  display: grid;
  gap: 10px;
}
.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}
.hero-points .dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: clamp(20px, 3vw, 36px);
  overflow: hidden;
}
.hero-art-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 200px at 80% 0%, rgba(45, 212, 191, 0.18), transparent 70%),
    radial-gradient(500px 250px at 0% 100%, rgba(59, 142, 255, 0.12), transparent 70%);
  pointer-events: none;
}
.hero-logo {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(11, 37, 69, 0.08));
}
.hero-art-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(closest-side, rgba(45, 212, 191, 0.22), transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 460px; margin: 0 auto; }
}

/* ========== Section titles ========== */
.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  color: var(--navy-900);
}
.section-sub {
  margin-top: 14px;
  font-size: clamp(15.5px, 1.3vw, 17.5px);
  color: var(--muted);
  max-width: 62ch;
}

/* ========== Benefits ========== */
.benefits {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.grid-3 {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: transform 0.2s ease, border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(45, 212, 191, 0.15), rgba(30, 88, 200, 0.12));
  color: var(--navy-800);
  margin-bottom: 18px;
}
.card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* ========== How it works ========== */
.how {
  padding: clamp(64px, 8vw, 100px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.steps {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px 30px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--blue-600);
  background: rgba(30, 88, 200, 0.08);
  border-radius: 999px;
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
}

.how-note {
  margin-top: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal-500);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.how-note-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(45, 212, 191, 0.18), rgba(30, 88, 200, 0.12));
  color: var(--navy-800);
}
.how-note-body h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin: 2px 0 4px;
}
.how-note-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
}

@media (max-width: 560px) {
  .how-note { padding: 18px 18px; gap: 14px; }
}

/* ========== Before / After ========== */
.proof {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.proof-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.proof-note {
  margin-top: 18px;
  color: var(--soft);
  font-size: 13.5px;
  font-weight: 600;
}
.proof-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.proof-caption {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.proof-photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--navy-900);
}
.proof-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.proof-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 31, 58, 0.88);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.20);
}
.proof-label-after {
  background: rgba(15, 188, 174, 0.94);
  color: var(--navy-900);
}

@media (max-width: 900px) {
  .proof-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .proof-gallery { gap: 12px; }
  .proof-label {
    top: 10px;
    left: 10px;
    padding: 7px 10px;
    font-size: 10px;
  }
}

/* ========== Action photos ========== */
.action-photos {
  padding: clamp(64px, 8vw, 100px) 0;
  background:
    radial-gradient(700px 360px at 8% 4%, rgba(45, 212, 191, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-top: 1px solid var(--line);
}
.action-heading {
  max-width: 780px;
}
.action-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}
.action-photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}
.action-photo-tall {
  grid-row: span 2;
}
.action-photo img,
.action-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.action-photo video {
  background: var(--navy-900);
}
.action-video::after {
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(6, 26, 54, 0.68));
}
.action-video-wide {
  grid-column: span 2;
}
.action-callout {
  min-height: 230px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(45, 212, 191, 0.34);
  background:
    radial-gradient(180px 140px at 88% 18%, rgba(45, 212, 191, 0.18), transparent 60%),
    linear-gradient(135deg, var(--navy-900), #123f71);
  color: var(--white);
  box-shadow: var(--shadow-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.action-callout span {
  color: var(--cyan-300);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.action-callout strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.action-callout p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
  line-height: 1.45;
}
.action-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(6, 26, 54, 0.78));
  pointer-events: none;
}
.action-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(6, 26, 54, 0.32);
}

@media (max-width: 900px) {
  .action-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .action-video-wide {
    grid-column: span 2;
  }
}
@media (max-width: 560px) {
  .action-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .action-photo-tall {
    grid-row: auto;
  }
  .action-video-wide {
    grid-column: auto;
  }
  .action-callout {
    min-height: 220px;
  }
}

/* ========== Reviews ========== */
.reviews {
  padding: clamp(64px, 8vw, 96px) 0;
  background:
    radial-gradient(680px 320px at 92% 12%, rgba(255, 197, 83, 0.16), transparent 62%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
}
.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.reviews-heading .section-title {
  max-width: 760px;
}
.reviews-score {
  flex: 0 0 auto;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 16px 18px;
  text-align: left;
}
.reviews-score span {
  display: block;
  color: var(--navy-900);
  font-weight: 800;
}
.reviews-score strong {
  font-size: 24px;
  letter-spacing: -0.02em;
}
.reviews-score small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.reviews-stars,
.review-stars {
  color: #fbbc04;
  letter-spacing: 0.06em;
  line-height: 1;
}
.reviews-score .reviews-stars {
  color: #fbbc04;
}
.reviews-stars {
  margin-bottom: 8px;
  font-size: 16px;
}
.reviews-track {
  position: relative;
  margin-top: 34px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 380px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 2px;
  padding: 4px 2px 18px;
  scrollbar-color: rgba(31, 102, 210, 0.45) transparent;
}
.reviews-track::-webkit-scrollbar {
  height: 10px;
}
.reviews-track::-webkit-scrollbar-track {
  background: rgba(7, 27, 58, 0.06);
  border-radius: 999px;
}
.reviews-track::-webkit-scrollbar-thumb {
  background: rgba(31, 102, 210, 0.45);
  border-radius: 999px;
}
.review-card {
  scroll-snap-align: start;
  min-height: 360px;
  background: var(--white);
  border: 1px solid rgba(166, 190, 224, 0.55);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.review-card-top {
  display: flex;
  align-items: center;
  gap: 13px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(31, 102, 210, 0.20);
}
.review-card h3 {
  margin: 0;
  font-size: 17px;
  color: var(--navy-900);
}
.review-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.review-stars {
  margin-top: 18px;
  font-size: 17px;
}
.review-card blockquote {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.58;
  font-weight: 550;
}

@media (max-width: 760px) {
  .reviews-heading {
    align-items: stretch;
    flex-direction: column;
  }
  .reviews-score {
    min-width: 0;
    max-width: 260px;
  }
  .reviews-track {
    grid-auto-columns: minmax(280px, 86vw);
  }
}

/* ========== Meet Jack ========== */
.meet {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.meet-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
.meet-art {
  display: flex;
  justify-content: center;
}
.meet-art-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 30% 30%, rgba(45, 212, 191, 0.18), transparent 60%),
    linear-gradient(160deg, #eaf2ff 0%, #f6fbff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.meet-art-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px dashed rgba(30, 88, 200, 0.18);
  border-radius: calc(var(--r-xl) - 6px);
  pointer-events: none;
}
.meet-photo-card {
  max-width: 430px;
  aspect-ratio: 4 / 3;
  background: #eaf2ff;
}
.meet-photo-card::before {
  display: none;
}
.meet-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 52%;
  display: block;
}
.meet-mascot {
  width: 86%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 18px rgba(11, 37, 69, 0.12));
}
.meet-badge {
  width: 88%;
  border-radius: 50%;
}
.meet-copy .eyebrow { margin-bottom: 18px; }
.meet-lead {
  margin-top: 18px;
  font-size: clamp(16px, 1.4vw, 18.5px);
  color: var(--ink);
  font-weight: 500;
  max-width: 56ch;
}
.meet-body {
  margin-top: 14px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 58ch;
}
.meet-signoff {
  margin-top: 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}
.meet-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-800);
  font-size: 16px;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .meet-inner { grid-template-columns: 1fr; }
  .meet-art { order: -1; }
  .meet-art-card { max-width: 280px; }
}

/* ========== Service areas ========== */
.areas {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.area-list {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.area-list li {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-900);
  text-align: center;
  transition: border-color 0.15s, transform 0.15s, background 0.15s;
}
.area-list li:hover {
  border-color: var(--blue-500);
  background: #f0f6ff;
  transform: translateY(-1px);
}
.area-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 900px) {
  .area-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .area-list { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Pricing ========== */
.pricing {
  padding: clamp(64px, 8vw, 100px) 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.pricing-notes {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.pricing-notes li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
}
.pricing-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 8px;
  border-left: 2.5px solid var(--teal-500);
  border-bottom: 2.5px solid var(--teal-500);
  transform: rotate(-45deg);
}

.price-card {
  position: relative;
  background: linear-gradient(170deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -120px;
  right: -120px;
  background: radial-gradient(closest-side, rgba(45, 212, 191, 0.35), transparent 70%);
  pointer-events: none;
}
.price-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(closest-side, rgba(59, 142, 255, 0.25), transparent 70%);
  pointer-events: none;
}
.price-card-top { position: relative; z-index: 1; }
.price-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-400);
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.35);
  padding: 6px 12px;
  border-radius: 999px;
}
.price-title {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.price-rows {
  margin-top: 22px;
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
}
.price-row + .price-row {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.price-row-label {
  font-size: 15.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
}
.price-row-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.old-price {
  position: relative;
  font-size: 21px;
  font-weight: 700;
  color: rgba(255,255,255,0.52);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(95,212,212,0.95);
}
.new-price {
  color: var(--white);
}
.price-currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-400);
  margin-right: 2px;
  vertical-align: 0.4em;
}
.price-fine {
  margin-top: 16px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}
.price-card-ctas {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.price-card .btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
}
.price-card .btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.32);
  color: var(--white);
}

@media (max-width: 900px) {
  .pricing-inner { grid-template-columns: 1fr; }
}

/* ========== QR placeholders ========== */
.qr-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.qr-heading {
  max-width: 720px;
}
.qr-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.qr-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.qr-image-frame {
  width: 100%;
  max-width: 210px;
  height: 260px;
  margin-bottom: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.qr-facebook-frame {
  height: auto;
  aspect-ratio: 1 / 1;
}
.qr-google-frame,
.qr-zelle-frame {
  flex-direction: column;
  gap: 9px;
  padding: 18px 16px 14px;
}
.qr-google-frame .qr-image,
.qr-zelle-frame .qr-image {
  width: 100%;
  height: auto;
  max-height: 190px;
}
.qr-link {
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.qr-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(11, 31, 58, 0.15);
}
.qr-link:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}
.qr-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.qr-brand-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}
.qr-brand-zelle {
  color: #6d1ed4;
}
.qr-brand-google {
  color: #1a73e8;
}
.qr-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 170px;
  margin-bottom: 20px;
  border-radius: 18px;
  border: 2px dashed var(--line-strong);
  background:
    linear-gradient(45deg, rgba(30, 88, 200, 0.06) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(30, 88, 200, 0.06) 25%, transparent 25%),
    var(--white);
  background-size: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.qr-facebook-link {
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.qr-facebook-link:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 88, 200, 0.45);
  box-shadow: 0 14px 30px rgba(11, 31, 58, 0.10);
}
.qr-facebook-link:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}
.qr-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.qr-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.qr-text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}
.qr-text-link:hover {
  color: var(--navy-900);
  text-decoration: underline;
}
.qr-text-link:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .qr-grid { grid-template-columns: repeat(2, 1fr); }
  .qr-placeholder { max-width: 150px; }
  .qr-image-frame {
    max-width: 230px;
    height: 300px;
  }
}
@media (max-width: 560px) {
  .qr-grid { grid-template-columns: 1fr; }
}

/* ========== Contact ========== */
.contact {
  padding: clamp(64px, 8vw, 100px) 0;
  background:
    radial-gradient(700px 400px at 100% 100%, rgba(45, 212, 191, 0.16), transparent 60%),
    radial-gradient(700px 400px at 0% 0%, rgba(30, 88, 200, 0.14), transparent 60%),
    var(--navy-900);
  color: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.contact-title { color: var(--white); }
.contact .section-sub { color: rgba(255,255,255,0.74); }

.contact-cards {
  display: grid;
  gap: 14px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.contact-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(45, 212, 191, 0.55);
  transform: translateY(-2px);
}
.contact-card-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(45, 212, 191, 0.22), rgba(59, 142, 255, 0.22));
  color: var(--teal-400);
}
.contact-card-body {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.contact-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-400);
}
.contact-card-value {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}
.contact-card-hint {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.contact-fallback {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  line-height: 1.6;
}
.contact-fallback a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .contact-card { padding: 20px 18px; gap: 14px; }
  .contact-card-value { font-size: 15px; }
}

/* ========== Footer ========== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.66);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0 40px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}
.footer-brand { display: inline-flex; align-items: baseline; gap: 10px; color: var(--white); }
.footer-brand strong { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; }
.footer-brand span { color: var(--teal-400); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-meta { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.footer-meta a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-meta a:hover { color: var(--teal-400); }
.dot-sep { color: rgba(255,255,255,0.3); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.5); }

@media (max-width: 700px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ========== Reduced motion ========== */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ========== Focus states ========== */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--teal-400);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }
