/* =========================================================
   HomePal — One-page site styles
   Brand: sky blue (#1aa7e5) + charcoal (#58595b) from logo
   ========================================================= */

:root {
  --brand: #1aa7e5;
  --brand-dark: #0f86bd;
  --brand-light: #e6f5fc;
  --charcoal: #58595b;
  --ink: #1d2226;
  --ink-2: #3a4046;
  --muted: #6b7178;
  --line: #e4e8ec;
  --bg: #ffffff;
  --bg-soft: #f5f8fa;
  --bg-dark: #14202b;
  --bg-dark-2: #0e1721;
  --white: #ffffff;
  --gold: #f5b02e;

  --font-head: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(16, 32, 48, 0.10);
  --shadow-lg: 0 24px 60px rgba(16, 32, 48, 0.18);
  --container: 1200px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--brand-dark); text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p { margin: 0 0 1em; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

svg { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 0.8em 1.5em; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brand); color: var(--white); box-shadow: 0 8px 20px rgba(26,167,229,.35); }
.btn--primary:hover { background: var(--brand-dark); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn--outline { background: transparent; color: var(--brand-dark); border-color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: var(--white); }
.btn--outline-light { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn--outline-light:hover { background: rgba(255,255,255,.18); }
.btn--light { background: var(--white); color: var(--brand-dark); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #000; }
.btn--sm { font-size: 0.85rem; padding: 0.6em 1.1em; }
.btn--lg { font-size: 1.02rem; padding: 0.95em 1.9em; }
.btn--block { width: 100%; }

.link-arrow { font-weight: 600; color: var(--brand-dark); display: inline-flex; align-items: center; gap: .35em; }
.link-arrow::after { content: "→"; transition: transform .2s; }
.link-arrow:hover::after { transform: translateX(4px); }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand-dark); margin-bottom: .9rem;
}
.eyebrow--light { color: #8fd8ff; }

/* ---------- Top bar ---------- */
.topbar { background: var(--bg-dark); color: #c9d3dc; font-size: .82rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 38px; }
.topbar__left, .topbar__right { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .45em; color: inherit; }
.topbar__item svg { color: var(--brand); font-size: 1rem; }
.topbar__item--muted { color: #8a97a3; }
a.topbar__item:hover { color: var(--white); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow .2s;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(16,32,48,.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: var(--header-h); }
.brand { display: flex; align-items: center; }
.brand__logo { height: 40px; width: auto; }
.nav { display: flex; gap: 1.6rem; }
.nav a { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink-2); position: relative; padding: .3em 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--brand); transition: width .2s; }
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.nav a.is-active { color: var(--brand-dark); }
.header__cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
.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 ---------- */
.hero { position: relative; color: var(--white); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,22,34,.92) 0%, rgba(10,22,34,.78) 45%, rgba(10,22,34,.45) 100%);
}
.hero__inner {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .85fr; gap: 3rem; align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero .accent { color: var(--brand); }
.hero__lead { font-size: 1.12rem; color: #dbe5ee; max-width: 560px; margin-bottom: 1.8rem; }
.hero__actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__badges { display: flex; gap: 1.4rem; flex-wrap: wrap; font-size: .92rem; font-weight: 600; color: #e8eff5; }
.hero__badges li { display: inline-flex; align-items: center; gap: .45em; }
.hero__badges svg { color: var(--brand); font-size: 1.2rem; }

.hero__card {
  background: var(--white); color: var(--ink-2); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-lg);
}
.hero__card h3 { margin-bottom: .3rem; }
.hero__card p { font-size: .92rem; color: var(--muted); margin-bottom: 1.1rem; }
.mini-form { display: grid; gap: .7rem; }

/* ---------- Forms ---------- */
input, select, textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--white);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .75em .95em; transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(26,167,229,.15); }
input.is-invalid, select.is-invalid, textarea.is-invalid { border-color: #e0524f; }
textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .8rem; color: var(--muted); margin: .4rem 0 0; min-height: 1.2em; }
.form-note.is-success { color: #1a8f4e; font-weight: 600; }
.form-note.is-error { color: #c8403d; font-weight: 600; }

/* ---------- Trust strip ---------- */
.trust { background: var(--brand); color: var(--white); }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.trust__item { padding: 1.6rem 1rem; border-left: 1px solid rgba(255,255,255,.22); }
.trust__item:first-child { border-left: 0; }
.trust__item strong { display: block; font-family: var(--font-head); font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; line-height: 1; }
.trust__item strong span { font-size: .6em; vertical-align: top; }
.trust__label { display: block; font-size: .85rem; font-weight: 600; opacity: .92; margin-top: .35rem; letter-spacing: .02em; }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section__head { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.section__head p { color: var(--muted); font-size: 1.05rem; }
.section__head--light h2 { color: var(--white); }
.section__head--light p { color: #b7c4d0; }

/* ---------- Services ---------- */
.services { background: var(--bg-soft); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.service {
  background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service:hover .service__media img { transform: scale(1.05); }
.service__tag {
  position: absolute; left: 1rem; top: 1rem; background: rgba(20,32,43,.85); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .4em .8em; border-radius: 999px; backdrop-filter: blur(4px);
}
.service__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.service h3 { font-size: 1.15rem; }
.service__icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--brand-light); color: var(--brand-dark);
  display: grid; place-items: center; font-size: 1.6rem; margin: -3.2rem 0 1rem; position: relative; z-index: 1;
  border: 3px solid var(--white); box-shadow: var(--shadow);
}
.service__body p { color: var(--muted); font-size: .95rem; }
.service__list { margin: .4rem 0 1.3rem; display: grid; gap: .45rem; font-size: .93rem; }
.service__list li { padding-left: 1.5em; position: relative; }
.service__list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: .85em; height: .85em; border-radius: 50%;
  background: var(--brand-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230f86bd'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-size: 70%; background-position: center; background-repeat: no-repeat;
}
.service .link-arrow { margin-top: auto; }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow-lg); }
.about__badge {
  position: absolute; right: -1.2rem; bottom: 2rem; background: var(--brand); color: var(--white);
  border-radius: var(--radius); padding: 1.1rem 1.4rem; box-shadow: var(--shadow-lg); display: flex; gap: .8rem; align-items: center;
}
.about__badge strong { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; line-height: 1; }
.about__badge span { font-size: .85rem; font-weight: 600; line-height: 1.3; }
.about__content > p { color: var(--muted); font-size: 1.03rem; }
.features { display: grid; gap: 1.3rem; margin: 2rem 0; }
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature__icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--brand-light); color: var(--brand-dark);
  display: grid; place-items: center; font-size: 1.4rem;
}
.feature h4 { margin-bottom: .25rem; }
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }

.checks { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.5rem; font-weight: 500; font-size: .95rem; }
.checks li { padding-left: 1.7em; position: relative; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .2em; width: 1.15em; height: 1.15em; border-radius: 50%; background: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-size: 70%; background-position: center; background-repeat: no-repeat;
}

/* ---------- Process ---------- */
.process { background: var(--bg-dark); color: #c9d3dc; position: relative; overflow: hidden; }
.process::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 60% at 80% 10%, rgba(26,167,229,.18), transparent 70%);
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; position: relative; }
.step {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 1.8rem 1.5rem;
  transition: background .2s, border-color .2s;
}
.step:hover { background: rgba(255,255,255,.07); border-color: rgba(26,167,229,.5); }
.step__num { display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--brand); line-height: 1; margin-bottom: 1rem; }
.step h3 { color: var(--white); font-size: 1.1rem; }
.step p { margin: 0; font-size: .93rem; color: #aebac6; }

/* ---------- Gallery ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 1rem; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); margin: 0; }
.gallery__item--wide { grid-column: span 2; grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.2rem 1rem .9rem; color: var(--white); font-weight: 600; font-size: .9rem;
  background: linear-gradient(to top, rgba(10,22,34,.85), transparent);
}

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-soft); }
.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.review {
  margin: 0; background: var(--white); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); position: relative;
}
.review::before {
  content: "\201C"; position: absolute; right: 1.4rem; top: .4rem; font-family: Georgia, serif; font-size: 5rem; line-height: 1; color: var(--brand-light);
}
.stars { color: var(--gold); letter-spacing: .1em; font-size: 1rem; margin-bottom: .8rem; }
.review p { font-size: 1rem; color: var(--ink-2); }
.review footer { display: flex; flex-direction: column; margin-top: .8rem; }
.review footer strong { font-family: var(--font-head); color: var(--ink); }
.review footer span { font-size: .85rem; color: var(--muted); }

/* ---------- License ---------- */
.license__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.license__content > p { color: var(--muted); font-size: 1.03rem; }
.license__content .checks { grid-template-columns: 1fr; margin: 1.5rem 0 2rem; }

.license-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--line); overflow: hidden;
}
.license-card__head {
  display: flex; align-items: center; gap: 1rem; padding: 1.4rem 1.6rem; background: linear-gradient(120deg, var(--bg-dark), #1f3346); color: var(--white);
}
.license-card__seal { width: 48px; height: 48px; border-radius: 50%; background: var(--brand); display: grid; place-items: center; font-size: 1.6rem; flex-shrink: 0; }
.license-card__agency { display: block; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: #9fb4c6; }
.license-card__head strong { font-family: var(--font-head); font-size: 1.05rem; }
.license-card__status {
  margin-left: auto; background: #1fbf6b; color: var(--white); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .4em .9em; border-radius: 999px;
}
.license-card__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.5rem; padding: 1.6rem; margin: 0; }
.license-card__grid dt { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.license-card__grid dd { margin: 0; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1rem; }
.license-card__foot {
  display: flex; flex-direction: column; gap: .2rem; padding: 1rem 1.6rem; background: var(--bg-soft); border-top: 1px solid var(--line);
  font-size: .82rem; color: var(--muted);
}

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(110deg, var(--brand-dark), var(--brand)); color: var(--white); padding: 3.5rem 0; }
.cta-band__inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin-bottom: .3rem; }
.cta-band p { margin: 0; opacity: .92; }
.cta-band__actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: start; }
.contact__info > p { color: var(--muted); font-size: 1.03rem; }
.contact__list { display: grid; gap: 1.4rem; margin-top: 2rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--brand-light); color: var(--brand-dark);
  display: grid; place-items: center; font-size: 1.4rem;
}
.contact__label { display: block; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .15rem; }
.contact__list a { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.contact__list a:hover { color: var(--brand-dark); }
.contact__list small { display: block; color: var(--muted); font-size: .82rem; }

.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: .35rem; }
.form-field .optional { font-weight: 400; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark-2); color: #aebac6; padding-top: 4rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__logo { height: 40px; width: auto; margin-bottom: 1rem; }
.footer__brand p { font-size: .93rem; max-width: 360px; }
.footer h4 { color: var(--white); margin-bottom: 1rem; }
.footer ul { display: grid; gap: .55rem; font-size: .93rem; }
.footer a { color: #aebac6; }
.footer a:hover { color: var(--white); }
.footer__contact a { font-weight: 600; color: var(--white); }
.footer__social { display: flex; gap: .6rem; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 1.1rem; color: var(--white);
}
.footer__social a:hover { background: var(--brand); }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.4rem 0; font-size: .8rem; color: #7f8e9b; }
.footer__bottom p { margin: 0; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 1.2rem; bottom: 1.2rem; width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: var(--white);
  display: grid; place-items: center; font-size: 1.3rem; box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .25s, transform .25s; z-index: 90;
}
.back-to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .15s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 3; grid-row: span 1; }
}

@media (max-width: 960px) {
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--white); flex-direction: column; gap: 0;
    padding: .6rem 20px 1rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: .8em 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .header__cta .btn--ghost { display: none; }

  .hero__inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero__card { max-width: 520px; }
  .about__inner, .license__inner, .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__media img { aspect-ratio: 16 / 10; }
  .about__badge { right: 1rem; }
  .topbar__right { display: none; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--container)); }
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(3) { border-left: 0; }
  .trust__item { border-top: 1px solid rgba(255,255,255,.22); }
  .trust__item:nth-child(-n+2) { border-top: 0; }
  .services__grid, .steps, .reviews__grid, .form-row, .footer__grid, .checks { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery__item--wide { grid-column: span 2; }
  .license-card__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .topbar__left { gap: .8rem; }
  .topbar__item:nth-child(2) { display: none; }
  .hero__actions .btn { width: 100%; }
  .footer__bottom { flex-direction: column; }
}
