/* ============================================================
   Dynamite Security Services — stylesheet
   Palette taken from the logo: red / black / white
   ============================================================ */

:root {
  --red:        #ee0028;
  --red-dark:   #c1001f;
  --red-soft:   rgba(238, 0, 40, .1);
  --ink:        #0b0b0d;
  --ink-2:      #16171a;
  --ink-3:      #23252a;
  --body:       #4a4e57;
  --muted:      #7b808b;
  --line:       #e4e6ea;
  --bg:         #ffffff;
  --bg-alt:     #f6f7f9;

  --font-head: "Archivo", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(11, 11, 13, .06);
  --shadow-md: 0 14px 40px rgba(11, 11, 13, .1);
  --shadow-lg: 0 26px 70px rgba(11, 11, 13, .16);

  --header-h: 104px;
  --container: 1200px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  font-weight: 800;
}
h1 { font-size: clamp(2.3rem, 5.4vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.85rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: .95rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section--alt { background: var(--bg-alt); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: .7rem 1.1rem; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin: 0 0 .9rem; display: flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--red); display: inline-block; }

.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 58px); }
.section-head__lead { font-size: 1.06rem; color: var(--body); }
.section-head--light h2, .section-head--light .section-head__lead { color: #fff; }
.section-head--light .section-head__lead { color: rgba(255,255,255,.72); }

.hl { color: var(--red); }
.note { margin-top: 26px; font-size: .85rem; color: rgba(255,255,255,.45); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: .93rem;
  letter-spacing: .03em; text-transform: uppercase;
  padding: 1rem 1.9rem; border-radius: 8px;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  will-change: transform;
}
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 26px rgba(238,0,40,.28); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(238,0,40,.36); }
.btn--ghost { color: #fff; border: 2px solid rgba(255,255,255,.32); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn--sm { padding: .7rem 1.25rem; font-size: .8rem; }
.btn--lg { padding: 1.15rem 2.4rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: wait; transform: none; box-shadow: none; }

/* ---------- top bar ---------- */
.topbar { background: var(--ink); color: rgba(255,255,255,.68); font-size: .84rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 42px; }
.topbar__note { margin: 0; display: flex; align-items: center; gap: .55rem; }
.topbar__links { display: flex; gap: 1.4rem; }
.topbar__links a:hover { color: #fff; }
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 rgba(238,0,40,.7); animation: pulse 2s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(238,0,40,0); }
  100% { box-shadow: 0 0 0 0 rgba(238,0,40,0); }
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }

.brand { display: flex; align-items: center; flex-shrink: 0; }
/* logo art has generous built-in padding, so it is scaled up and the
   surplus whitespace pulled back in with negative margins */
.brand img { height: 118px; width: auto; margin: -12px 0; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2rem; }
.nav__cta-item { display: none; }
.nav__link {
  font-family: var(--font-head); font-weight: 600; font-size: .93rem;
  color: var(--ink); position: relative; padding: .3rem 0; white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2.5px; width: 0;
  background: var(--red); transition: width .25s ease;
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--red); }

.header__cta { flex-shrink: 0; }

.nav-toggle {
  display: none; width: 46px; height: 42px; flex-direction: column; justify-content: center;
  gap: 6px; padding: 0 10px; margin-left: auto; border-radius: 8px;
}
.nav-toggle span { display: block; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .28s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 78% 12%, rgba(238,0,40,.24), transparent 62%),
    radial-gradient(700px 500px at 8% 88%, rgba(238,0,40,.1), transparent 60%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 1px, transparent 1px 34px);
}
.hero__watermark {
  position: absolute; right: -6%; top: 50%; transform: translateY(-58%);
  width: min(660px, 60vw); opacity: .07; filter: grayscale(1) brightness(2.6);
}
.hero__inner { position: relative; padding: clamp(70px, 9vw, 130px) 0 clamp(80px, 9vw, 120px); max-width: 900px; }
.hero__title { color: #fff; margin-bottom: 1.4rem; }
.hero__lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: rgba(255,255,255,.74); max-width: 660px; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero__points { display: flex; flex-wrap: wrap; gap: 1rem 2rem; font-size: .93rem; color: rgba(255,255,255,.7); }
.hero__points li { display: flex; align-items: center; gap: .55rem; }
.hero__points li::before {
  content: ""; width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-10'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* ---------- punch line band ---------- */
.pledge { position: relative; background: var(--red); overflow: hidden; }
.pledge::before {
  content: ""; position: absolute; inset: 0; opacity: .55;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.06) 0 1px, transparent 1px 30px);
}
.pledge__inner { position: relative; padding: clamp(34px, 4.5vw, 54px) 0; text-align: center; }
.pledge__line {
  font-family: var(--font-head); font-weight: 900; color: #fff;
  font-size: clamp(1.5rem, 3.7vw, 2.9rem); line-height: 1.1; letter-spacing: -.02em;
  margin: 0 0 .6rem; text-transform: uppercase;
}
.pledge__sub {
  margin: 0 auto; max-width: 640px; color: rgba(255,255,255,.9);
  font-size: clamp(.92rem, 1.3vw, 1.06rem);
}

/* ---------- about ---------- */
.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__card {
  background: var(--ink); border-radius: var(--radius); padding: 56px 34px; text-align: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.about__card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 260px at 50% 0%, rgba(238,0,40,.28), transparent 65%);
}
.about__card img { width: 168px; margin: 0 auto 22px; position: relative; }
.about__card-title { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 1.35rem; margin: 0 0 .3rem; position: relative; letter-spacing: -.01em; }
.about__card-sub { color: rgba(255,255,255,.6); font-size: .88rem; margin: 0; position: relative; letter-spacing: .05em; text-transform: uppercase; }
.about__badge {
  position: absolute; right: -14px; bottom: -32px; background: var(--red); color: #fff;
  padding: 18px 24px; border-radius: 12px; box-shadow: var(--shadow-md); text-align: center;
}
.about__badge strong { display: block; font-family: var(--font-head); font-size: 1.55rem; font-weight: 900; line-height: 1; }
.about__badge span { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }

.checklist { margin: 1.6rem 0 2rem; display: grid; gap: .8rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; color: var(--ink); font-weight: 500; }
.checklist li::before {
  content: ""; width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; border-radius: 6px;
  background: var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ee0028' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-10'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* ---------- service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px 30px; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: var(--red); transition: width .32s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::after { width: 100%; }
.card__icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 12px;
  background: var(--red-soft); color: var(--red); margin-bottom: 20px;
  transition: background .25s ease, color .25s ease;
}
.card__icon svg { width: 28px; height: 28px; }
.card:hover .card__icon { background: var(--red); color: #fff; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .94rem; }

/* ---------- why us ---------- */
.why { background: var(--ink); color: rgba(255,255,255,.66); position: relative; overflow: hidden; }
.why::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(760px 420px at 88% 0%, rgba(238,0,40,.16), transparent 60%);
  pointer-events: none;
}
.why .container { position: relative; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden; }
.feature { background: var(--ink); padding: 36px 30px; transition: background .25s ease; }
.feature:hover { background: var(--ink-2); }
.feature__no { font-family: var(--font-head); font-weight: 900; font-size: 1.5rem; color: var(--red); display: block; margin-bottom: .8rem; }
.feature h3 { color: #fff; margin-bottom: .55rem; }
.feature p { font-size: .93rem; margin: 0; }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 30px; }
.step::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--line); }
.step::after { content: ""; position: absolute; top: 0; left: 0; width: 46px; height: 3px; background: var(--red); }
.step__num {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: #fff; font-family: var(--font-head); font-weight: 800;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: .5rem; }
.step p { font-size: .94rem; margin: 0; }

/* ---------- sectors ---------- */
.sectors { display: flex; flex-wrap: wrap; gap: 12px; }
.sectors li {
  background: #fff; border: 1px solid var(--line); border-radius: 40px;
  padding: .7rem 1.3rem; font-weight: 600; font-size: .92rem; color: var(--ink);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.sectors li:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }

/* ---------- testimonials ---------- */
.testimonials { background: var(--ink-2); }
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.quote {
  margin: 0; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 34px 30px; position: relative;
}
.quote::before {
  content: "\201C"; position: absolute; top: 6px; right: 22px;
  font-family: var(--font-head); font-size: 5rem; line-height: 1; color: var(--red); opacity: .32;
}
.quote blockquote { margin: 0 0 22px; color: rgba(255,255,255,.85); font-size: 1rem; }
.quote figcaption { border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; }
.quote figcaption strong { display: block; color: #fff; font-family: var(--font-head); }
.quote figcaption span { font-size: .85rem; color: rgba(255,255,255,.5); }

/* ---------- faq ---------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(34px, 5vw, 70px); align-items: start; }
.faq__intro a { color: var(--red); font-weight: 600; }
.accordion { display: grid; gap: 12px; }
.acc { border: 1px solid var(--line); border-radius: 10px; background: #fff; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.acc.is-open { border-color: var(--red); box-shadow: var(--shadow-sm); }
.acc__btn {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 20px 22px; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink);
}
.acc__ico { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.acc__ico::before, .acc__ico::after {
  content: ""; position: absolute; background: var(--red); border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
}
.acc__ico::before { left: 0; top: 8px; width: 18px; height: 2.5px; }
.acc__ico::after  { left: 8px; top: 0; width: 2.5px; height: 18px; }
.acc.is-open .acc__ico::after { transform: rotate(90deg); opacity: 0; }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height .34s ease; }
.acc__panel p { padding: 0 22px 22px; margin: 0; font-size: .95rem; }

/* ---------- cta band ---------- */
.cta-band { background: var(--red); color: #fff; padding: clamp(44px, 5vw, 66px) 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: .35rem; }
.cta-band p { margin: 0; color: rgba(255,255,255,.85); }
.cta-band .btn--primary { background: var(--ink); box-shadow: none; }
.cta-band .btn--primary:hover { background: #000; box-shadow: 0 14px 30px rgba(0,0,0,.28); }

/* ---------- contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact__list { display: grid; gap: 22px; margin: 2rem 0 0; }
.contact__list li { display: flex; gap: 16px; }
.contact__list a:hover { color: var(--red); }
.contact__list strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .2rem; }
.contact__tag {
  display: inline-block; font-size: .7rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--red); background: var(--red-soft);
  padding: .1rem .45rem; border-radius: 4px; vertical-align: 1px;
}
.contact__ico {
  display: grid; place-items: center; width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 10px; background: var(--red-soft); color: var(--red);
}
.contact__ico svg { width: 22px; height: 22px; }

/* ---------- form ---------- */
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-md); }
.form__title { font-size: 1.4rem; margin-bottom: 1.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; letter-spacing: .02em; }
.field label span { color: var(--red); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); border-radius: 8px; padding: .82rem .95rem; background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease; font-size: .95rem; width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-soft);
}
.field.has-error input, .field.has-error select { border-color: var(--red); }
.field__error { color: var(--red); font-size: .8rem; margin-top: .3rem; min-height: 0; }
.form__note { font-size: .82rem; color: var(--muted); margin: 1rem 0 0; text-align: center; }
.form__status { margin: 1rem 0 0; font-size: .92rem; font-weight: 600; text-align: center; }
.form__status.is-ok { color: #12805c; }
.form__status.is-err { color: var(--red); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.6); padding-top: clamp(52px, 6vw, 76px); font-size: .93rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 46px; }
.footer__logo { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer__logo img { height: 88px; width: auto; margin: -8px 0; flex-shrink: 0; }
.footer__logo strong {
  display: block; font-family: var(--font-head); font-weight: 900; color: #fff;
  font-size: 1.7rem; line-height: 1; letter-spacing: .01em; text-transform: uppercase;
}
.footer__logo em {
  display: inline-block; margin-top: 6px; background: var(--red); color: #fff;
  font-style: normal; font-family: var(--font-head); font-weight: 700;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; padding: .2rem .55rem;
}
.footer__brand p { max-width: 320px; }
.footer h4 { color: #fff; margin-bottom: 1.1rem; }
.footer__col ul { display: grid; gap: .65rem; }
.footer__col a:hover { color: var(--red); }
.footer__contact li { line-height: 1.6; }
.social { display: flex; gap: 10px; margin-top: 20px; }
.social a {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.75); transition: background .2s ease, color .2s ease, transform .2s ease;
}
.social a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.social svg { width: 19px; height: 19px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: .85rem; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__bar p { margin: 0; }

/* ---------- back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(238,0,40,.35);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--red-dark); }
.to-top svg { width: 22px; height: 22px; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .nav__list { gap: 1.35rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 88px; }
  .topbar__note { display: none; }
  .topbar__inner { justify-content: center; }
  .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .brand img { height: 98px; margin: -10px 0; }

  .nav {
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .nav.is-open { max-height: 78vh; overflow-y: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 20px; }
  .nav__list li { border-top: 1px solid var(--line); }
  .nav__list li:first-child { border-top: 0; }
  .nav__link { display: block; padding: 1rem 1.4rem; font-size: 1rem; }
  .nav__link::after { display: none; }
  .nav__cta-item { display: block; padding: 16px 1.4rem 0; border-top: 0; }
  .nav__cta-item .btn { width: 100%; }

  .about__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  :root { --header-h: 76px; }
  .brand img { height: 84px; margin: -9px 0; }
  .topbar__links { gap: 1rem; font-size: .8rem; }
  .hero__actions .btn { width: 100%; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .about__badge { right: 10px; bottom: -28px; padding: 14px 18px; }
  .quote::before { font-size: 4rem; }
  .to-top { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .topbar, .site-header, .to-top, .cta-band, .form { display: none !important; }
  body { color: #000; }
  .hero, .why, .testimonials, .footer { background: #fff !important; color: #000 !important; }
}
