/* ============================================================
   בלובס · BLOBS — מספרת כלבים במודיעין
   Design system inspired by MongoDB structure · Coral palette
   ============================================================ */

:root {
  /* Brand / Accent */
  --coral:          #FF7C58;
  --coral-dark:     #E85B36;
  --coral-pressed:  #D24E2C;
  --coral-soft:     #FFEDE4;
  --coral-tint:     #FFF4EF;
  --amber:          #FFA463;
  --plum:           #C96A8E;

  /* Surfaces */
  --canvas:         #FFFFFF;
  --surface:        #FFF8F5;
  --surface-soft:   #FDF1EB;
  --surface-feature:#FFEDE4;
  --canvas-dark:    #17110E;

  /* Dark hero / footer band (deep warm espresso) */
  --band:           #1E1611;
  --band-2:         #2C201A;

  /* Text */
  --ink:            #231A16;
  --charcoal:       #3A2D27;
  --slate:          #6E5F58;
  --steel:          #917F76;
  --muted:          #B8AAA2;
  --on-dark:        #FFFFFF;
  --on-dark-muted:  rgba(255,255,255,.66);

  /* Lines */
  --hairline:       #F1E7E1;
  --hairline-strong:#E4D8D1;
  --hairline-dark:  rgba(255,255,255,.14);

  /* Radius */
  --r-xs: 4px; --r-sm: 6px; --r-md: 8px; --r-lg: 12px;
  --r-xl: 16px; --r-xxl: 24px; --r-full: 9999px;

  /* Elevation */
  --sh1: 0 1px 2px rgba(40,20,10,.05);
  --sh2: 0 4px 12px rgba(40,20,10,.08);
  --sh3: 0 12px 28px -4px rgba(40,20,10,.14);
  --sh4: 0 22px 60px -10px rgba(40,20,10,.22);

  --max: 1280px;
  --ease: cubic-bezier(.4, 0, .2, 1);

  --font: "Google Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "SF Mono", "Menlo", "Consolas", monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.55;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 32px; }
.container--narrow { max-width: 880px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.surface { background: var(--surface); }
.surface-soft { background: var(--surface-soft); }

.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--coral-dark); margin-bottom: 18px;
}
.eyebrow--on-dark { color: var(--coral); }

.section__head { max-width: 760px; margin-bottom: 56px; }
.section__head--center { margin-inline: auto; text-align: center; }

/* ---------- Typography ---------- */
.display { font-size: clamp(2.6rem, 7vw, 4.5rem); font-weight: 500; line-height: 1.08; letter-spacing: -1.5px; }
h1, .h1 { font-size: clamp(2.2rem, 5.5vw, 3rem); font-weight: 500; line-height: 1.18; letter-spacing: -.5px; }
h2, .h2 { font-size: clamp(1.9rem, 4vw, 2.5rem); font-weight: 500; line-height: 1.22; letter-spacing: -.5px; color: var(--ink); }
h3, .h3 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); font-weight: 500; line-height: 1.3; }
h4, .h4 { font-size: 1.35rem; font-weight: 500; line-height: 1.35; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.25rem); font-weight: 400; line-height: 1.5; color: var(--slate); }
.muted-text { color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 600; line-height: 1.3; cursor: pointer;
  border: 1px solid transparent; border-radius: var(--r-full); padding: 13px 26px;
  transition: background .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 6px 18px rgba(255,124,88,.30); }
.btn--primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,124,88,.40); }
.btn--primary:active { background: var(--coral-pressed); transform: translateY(0); }
.btn--secondary { background: transparent; color: var(--ink); border-color: var(--hairline-strong); }
.btn--secondary:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--on-dark { background: var(--coral); color: #fff; box-shadow: 0 6px 18px rgba(255,124,88,.35); }
.btn--on-dark:hover { background: var(--coral-dark); transform: translateY(-2px); }
.btn--secondary-on-dark { background: transparent; color: #fff; border-color: var(--hairline-dark); }
.btn--secondary-on-dark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.btn--whatsapp { background: #25d366; color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.3); }
.btn--whatsapp:hover { background: #1fb855; transform: translateY(-2px); }
.btn-link { color: var(--coral-dark); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.btn-link:hover { gap: 10px; }

/* ---------- Promo Banner ---------- */
.promo {
  background: var(--band); color: var(--on-dark); text-align: center;
  font-size: 14px; font-weight: 500; padding: 10px 16px;
}
.promo strong { color: var(--coral); }
.promo a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100; background: var(--canvas);
  border-bottom: 1px solid var(--hairline); transition: box-shadow .25s var(--ease);
}
.header.scrolled { box-shadow: var(--sh1); }
.header__inner { display: flex; align-items: center; gap: 28px; height: 70px; }

.brand { display: inline-flex; align-items: center; }
.brand__box {
  background: var(--coral); border-radius: 11px; padding: 9px 15px; display: inline-flex; align-items: center;
  box-shadow: 0 4px 12px rgba(255,124,88,.28);
}
.brand__box img { height: 22px; width: auto; }
.brand--dark img { height: 30px; width: auto; }

.nav { display: flex; gap: 26px; margin-inline-end: auto; }
.nav__link { font-size: 15px; font-weight: 500; color: var(--charcoal); position: relative; padding: 4px 0; }
.nav__link::after { content: ''; position: absolute; bottom: -2px; right: 0; width: 0; height: 2px; background: var(--coral); transition: width .25s var(--ease); }
.nav__link:hover { color: var(--coral-dark); }
.nav__link:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 14px; }
.header__phone { font-size: 15px; font-weight: 600; color: var(--ink); }
.header__phone:hover { color: var(--coral-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-inline-start: auto; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: var(--ease) .3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero (dark band) ---------- */
.hero {
  position: relative; background: radial-gradient(120% 120% at 80% 0%, var(--band-2), var(--band) 60%);
  color: var(--on-dark); padding: 96px 0 110px; overflow: hidden;
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35; z-index: 0;
}
.hero::before { width: 520px; height: 520px; background: var(--coral); top: -180px; left: -120px; }
.hero::after { width: 420px; height: 420px; background: var(--plum); bottom: -160px; right: -100px; opacity: .22; }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__display { color: #fff; }
.hero__accent { color: var(--coral); }
.hero__sub { margin: 26px 0 34px; font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.55; color: var(--on-dark-muted); max-width: 540px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.hero__stats .stat strong { display: block; font-size: 2.2rem; font-weight: 500; color: #fff; line-height: 1; letter-spacing: -1px; }
.hero__stats .stat span { font-size: 14px; color: var(--on-dark-muted); margin-top: 6px; display: block; }

/* Mockup card (terminal aesthetic) */
.mockup {
  background: var(--canvas-dark); border: 1px solid var(--hairline-dark); border-radius: var(--r-lg);
  box-shadow: var(--sh4); overflow: hidden;
}
.mockup__bar { display: flex; align-items: center; gap: 8px; padding: 14px 16px; border-bottom: 1px solid var(--hairline-dark); }
.mockup__dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup__dot--r { background: #ff5f56; } .mockup__dot--y { background: #ffbd2e; } .mockup__dot--g { background: #27c93f; }
.mockup__title { margin-inline-start: 10px; font-family: var(--mono); font-size: 12.5px; color: var(--on-dark-muted); }
.mockup__body { padding: 22px; font-family: var(--mono); font-size: 13.5px; line-height: 1.9; color: #d8d2ce; }
.mockup__line .k { color: var(--coral); }
.mockup__line .s { color: #8fd3a0; }
.mockup__line .c { color: #7d6f67; }
.mockup__chip {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; padding: 9px 14px;
  background: rgba(255,124,88,.14); color: var(--coral); border-radius: var(--r-full);
  font-family: var(--font); font-size: 13px; font-weight: 600;
}

/* ---------- Logo wall / trust ---------- */
.trust { border-bottom: 1px solid var(--hairline); }
.trust__label { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--steel); margin-bottom: 26px; }
.trust__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px; }
.trust__item { font-size: 15px; font-weight: 600; color: var(--slate); display: inline-flex; align-items: center; gap: 8px; }
.trust__item span { font-size: 1.3rem; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: 32px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh2); border-color: transparent; }

/* category tag */
.tag {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-xs); color: #fff;
}
.tag--coral { background: var(--coral); }
.tag--amber { background: var(--amber); }
.tag--plum  { background: var(--plum); }
.tag--ink   { background: var(--charcoal); }

.service-card__icon { font-size: 2.4rem; margin: 18px 0 14px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--slate); font-size: 15px; }

/* ---------- Why (feature band) ---------- */
.why { background: var(--surface); }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-card { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 26px; }
.why-card__ic { width: 46px; height: 46px; border-radius: var(--r-md); background: var(--coral-soft); color: var(--coral-dark); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 14px; }
.why-card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.why-card p { font-size: 14px; color: var(--slate); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 18px; }
.gallery__item {
  border-radius: var(--r-lg); display: grid; place-items: center; font-size: 4rem; overflow: hidden;
  background: linear-gradient(150deg, var(--coral-soft), var(--surface-soft)); border: 1px solid var(--hairline);
  transition: transform .3s var(--ease); cursor: pointer;
}
.gallery__item:nth-child(3n) { background: linear-gradient(150deg, var(--coral), var(--amber)); }
.gallery__item:hover { transform: scale(1.02); }
.gallery__item--lg { grid-column: span 2; grid-row: span 2; font-size: 7rem; }
.gallery__item--wide { grid-column: span 2; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 36px 32px; position: relative; display: flex; flex-direction: column; }
.price-card--featured { background: var(--surface-feature); border: 2px solid var(--coral); box-shadow: var(--sh3); }
.price-card__badge { position: absolute; top: 18px; inset-inline-start: 32px; background: var(--band); color: var(--coral); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: var(--r-full); letter-spacing: .5px; }
.price-card__name { font-size: 1.3rem; font-weight: 500; margin-bottom: 4px; }
.price-card__desc { color: var(--steel); font-size: 14px; margin-bottom: 20px; }
.price-card__price { font-size: 3rem; font-weight: 500; letter-spacing: -1.5px; line-height: 1; margin-bottom: 4px; }
.price-card__price span { font-size: 15px; font-weight: 400; color: var(--steel); letter-spacing: 0; }
.price-card__features { margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-card__features li { font-size: 15px; color: var(--charcoal); display: flex; gap: 10px; align-items: flex-start; }
.price-card__features li::before { content: '✓'; color: var(--coral-dark); font-weight: 700; flex: none; }
.pricing__note { text-align: center; margin-top: 32px; color: var(--slate); }

/* ---------- Reviews ---------- */
.review { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.review__stars { color: #ffae42; font-size: 1.1rem; letter-spacing: 2px; }
.review p { font-size: 1.05rem; color: var(--charcoal); line-height: 1.6; }
.review footer { font-size: 14px; color: var(--steel); }
.review footer strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 4px 26px; transition: box-shadow .2s var(--ease); }
.faq__item[open] { box-shadow: var(--sh1); border-color: var(--hairline-strong); }
.faq__item summary { list-style: none; cursor: pointer; font-size: 1.12rem; font-weight: 500; color: var(--ink); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.6rem; color: var(--coral); line-height: 1; transition: transform .25s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--slate); padding-bottom: 22px; font-size: 15px; }

/* ---------- CTA banner (dark) ---------- */
.cta-banner { background: radial-gradient(120% 140% at 20% 0%, var(--band-2), var(--band) 65%); color: var(--on-dark); border-radius: var(--r-xxl); padding: 72px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::after { content: '🐾'; position: absolute; font-size: 14rem; opacity: .05; bottom: -40px; left: 20px; }
.cta-banner h2 { color: #fff; max-width: 720px; margin-inline: auto; }
.cta-banner p { color: var(--on-dark-muted); margin: 18px auto 30px; max-width: 560px; font-size: 1.1rem; }
.cta-banner .hero__actions { justify-content: center; position: relative; z-index: 1; }

/* ---------- Contact ---------- */
.contact__card { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--hairline); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh2); }
.contact__info { padding: 48px 44px; background: radial-gradient(120% 120% at 100% 0%, var(--band-2), var(--band) 70%); color: var(--on-dark); }
.contact__info h2 { color: #fff; }
.contact__info > p { color: var(--on-dark-muted); margin-top: 14px; }
.contact__details { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.contact__details li { display: flex; align-items: center; gap: 12px; }
.contact__details a:hover { color: var(--coral); }
.contact__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contact__form { padding: 48px 44px; background: var(--canvas); }
.contact__form h3 { margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; padding: 0 16px; height: 46px;
  border: 1px solid var(--hairline-strong); border-radius: var(--r-md); background: var(--canvas);
  color: var(--ink); transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { height: auto; padding: 12px 16px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--coral-dark); box-shadow: 0 0 0 3px rgba(255,124,88,.18); }
.form__status { margin-top: 14px; font-weight: 500; text-align: center; font-size: 14px; }
.form__status.success { color: var(--coral-dark); }
.form__status.error { color: #c0392b; }

/* ---------- Footer ---------- */
.footer { background: var(--band); color: var(--on-dark-muted); padding-top: 72px; }
.footer__top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__brand p { margin: 18px 0 20px; max-width: 320px; font-size: 14px; line-height: 1.6; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: var(--r-full); background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 1.1rem; transition: background .2s var(--ease), transform .2s var(--ease); }
.footer__social a:hover { background: var(--coral); transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 16px; letter-spacing: .3px; }
.footer__col a, .footer__col span { display: block; font-size: 14px; color: var(--on-dark-muted); margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: var(--coral); }
.footer__bottom { border-top: 1px solid var(--hairline-dark); padding: 22px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; }
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { color: var(--on-dark-muted); }
.footer__legal a:hover { color: var(--coral); }

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed; bottom: 24px; inset-inline-start: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 1.6rem; box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .2s var(--ease);
}
.fab:hover { transform: scale(1.08); }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed; inset: auto 16px 16px 16px; z-index: 120; max-width: 1000px; margin-inline: auto;
  background: var(--canvas); border: 1px solid var(--hairline-strong); border-radius: var(--r-lg);
  box-shadow: var(--sh4); padding: 18px 22px; display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; justify-content: space-between;
  transform: translateY(140%); opacity: 0; transition: transform .4s var(--ease), opacity .4s;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner__text { display: flex; align-items: center; gap: 12px; flex: 1 1 320px; }
.cookie-banner__icon { font-size: 1.7rem; flex: none; }
.cookie-banner__text p { font-size: 14px; color: var(--slate); margin: 0; }
.cookie-banner__text a { color: var(--coral-dark); font-weight: 600; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex: none; }
.cookie-banner .btn { padding: 10px 22px; font-size: 14px; }

/* ---------- Legal pages ---------- */
.legal-hero { background: var(--surface); border-bottom: 1px solid var(--hairline); padding: 64px 0 48px; text-align: center; }
.legal-hero h1 { color: var(--ink); }
.legal-hero p { color: var(--slate); margin-top: 14px; }
.legal-hero .legal-updated { font-size: 13px; margin-top: 10px; color: var(--coral-dark); font-weight: 600; }
.legal { padding: 56px 0 88px; }
.legal__body { max-width: 860px; margin-inline: auto; background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-xl); padding: 48px clamp(24px, 5vw, 56px); box-shadow: var(--sh1); }
.legal__toc { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 22px 26px; margin-bottom: 36px; }
.legal__toc h2 { font-size: 1.1rem; margin-bottom: 12px; }
.legal__toc ul { display: flex; flex-direction: column; gap: 7px; }
.legal__toc a { color: var(--coral-dark); font-weight: 500; font-size: 15px; }
.legal__body h2 { font-size: 1.45rem; margin: 36px 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--hairline); }
.legal__body h2:first-of-type { margin-top: 0; }
.legal__body h3 { font-size: 1.15rem; color: var(--coral-dark); margin: 22px 0 8px; }
.legal__body p, .legal__body li { color: var(--charcoal); font-size: 1.02rem; line-height: 1.7; }
.legal__body p { margin-bottom: 14px; }
.legal__body ul, .legal__body ol { padding-inline-start: 22px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.legal__body ul { list-style: disc; } .legal__body ol { list-style: decimal; }
.legal__body a { color: var(--coral-dark); font-weight: 600; text-decoration: underline; }
.legal__contact-box { margin-top: 36px; padding: 26px; border-radius: var(--r-lg); background: var(--band); color: var(--on-dark); }
.legal__contact-box h3 { color: #fff; margin-top: 0; }
.legal__contact-box a, .legal__contact-box p { color: #fff; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { max-width: 520px; }
  .why__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav, .header__phone { display: none; }
  .nav-toggle { display: flex; }
  .header__inner { gap: 14px; }
  .nav.open {
    display: flex; position: fixed; inset: 70px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--canvas); padding: 8px 32px 24px; box-shadow: var(--sh3); border-bottom: 1px solid var(--hairline);
  }
  .nav.open .nav__link { padding: 16px 0; border-bottom: 1px solid var(--hairline); }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card--featured { order: -1; }
  .contact__card { grid-template-columns: 1fr; }
  .cta-banner { padding: 56px 32px; }
}

@media (max-width: 600px) {
  .container { padding-inline: 20px; }
  .section { padding: 64px 0; }
  .grid--2, .grid--3, .grid--4, .why-cards { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 80px; }
  .hero__stats { gap: 28px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery__item--lg, .gallery__item--wide { grid-column: span 2; }
  .gallery__item--lg { grid-row: span 1; font-size: 5rem; }
  .contact__info, .contact__form { padding: 34px 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner__text { flex-direction: column; }
  .cookie-banner__actions { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
