/* ============================================
   CleanTeam №1 — общие стили
   Палитра, типографика, шапка, футер.
   ============================================ */

:root {
  --blue-900: #074e97;
  --blue-700: #2e96db;
  --blue-500: #84c8e6;
  --blue-200: #9cd8ff;
  --blue-50: #eff3f5;
  --yellow: #f5d35b;
  --yellow-deep: #f0c531;
  --brown: #98631d;
  --ink: #2c3e44;
  --muted: #687374;
  --line: rgba(128, 186, 217, 0.25);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Ubuntu', sans-serif;
  color: var(--blue-900);
  font-weight: 500;
  margin: 0;
  line-height: 1.25;
  text-wrap: balance;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

p { margin: 0 0 1em; }
p.big { font-size: 16px; color: #4f5b62; }

a { color: var(--blue-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-900); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Header / Top bar
   ============================================ */
.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.4);
  transition: background .25s, padding .25s, border-color .25s, box-shadow .25s;
}
.top-bar.sticky {
  position: fixed;
  background: #fff;
  padding: 12px 0;
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(7,78,151,.06);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: height .25s;
}
.top-bar.sticky .logo-img { height: 40px; }
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(7,78,151,.25);
  flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; color: #fff; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .name {
  font-weight: 700;
  font-size: 22px;
  color: var(--blue-900);
  letter-spacing: -0.01em;
}
.logo-text .tagline {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-900);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 0;
  position: relative;
}
.nav a.active::after,
.nav a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue-700);
  border-radius: 2px;
}

.top-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--blue-900);
}
.top-phone svg { width: 18px; height: 18px; color: var(--blue-700); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--blue-900);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 4px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--brown);
  box-shadow: 0 6px 18px rgba(245,211,91,.35);
}
.btn-yellow:hover {
  background: var(--yellow-deep);
  color: var(--brown);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(245,211,91,.45);
}
.btn-blue {
  background: var(--blue-700);
  color: #fff;
}
.btn-blue:hover {
  background: var(--blue-900);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--blue-900);
  border: 1.5px solid var(--blue-500);
}
.btn-ghost:hover {
  background: var(--blue-500);
  color: #fff;
}

/* ============================================
   Subheader (Contacts top)
   ============================================ */
.subheader {
  position: relative;
  padding: 180px 0 90px;
  background:
    linear-gradient(180deg, rgba(132,200,230,.25), rgba(132,200,230,.05) 60%, #fff),
    radial-gradient(900px 380px at 80% 30%, rgba(156,216,255,.45), transparent 60%);
  border-bottom: 1px solid var(--line);
}
.subheader h1 {
  font-size: 48px;
  font-weight: 500;
}
.breadcrumbs {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumbs a { color: var(--blue-700); }
.breadcrumbs .sep { margin: 0 8px; opacity: .6; }

/* ============================================
   Hero (Home)
   ============================================ */
.hero {
  position: relative;
  padding: 170px 0 140px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 78% 30%, rgba(156,216,255,.5), transparent 55%),
    linear-gradient(180deg, #e9f4fa 0%, #f6fbfd 100%);
  min-height: 720px;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.7) 0 3px, transparent 4px),
    radial-gradient(circle at 12% 65%, rgba(255,255,255,.6) 0 2px, transparent 3px),
    radial-gradient(circle at 35% 18%, rgba(255,255,255,.5) 0 2px, transparent 3px);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: rgba(132,200,230,.18);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: 64px;
  font-weight: 500;
  color: var(--blue-900);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--blue-700); }
.hero-lead {
  font-size: 20px;
  line-height: 1.5;
  color: #4f5b62;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta .price-hint {
  font-size: 13px;
  color: var(--muted);
  margin-left: 6px;
}
.hero-img {
  position: relative;
  height: 580px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-img img {
  position: relative;
  z-index: 2;
  max-height: 580px;
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(7,78,151,.18));
}
.hero-img .bubble {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: .85;
  box-shadow: 0 4px 12px rgba(7,78,151,.08);
}
.hero-img .bubble.b1 { width: 90px; height: 90px; top: 60px; left: 20px; }
.hero-img .bubble.b2 { width: 40px; height: 40px; top: 180px; right: 40px; opacity: .6; }
.hero-img .bubble.b3 { width: 24px; height: 24px; bottom: 120px; left: 60px; opacity: .7; }
.hero-img .badge {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(7,78,151,.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero-img .badge .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid; place-items: center;
  color: var(--brown);
  flex-shrink: 0;
}
.hero-img .badge .icon svg { width: 22px; height: 22px; }
.hero-img .badge strong { display: block; color: var(--blue-900); font-size: 14px; }
.hero-img .badge span { font-size: 12px; color: var(--muted); }
.hero-img .badge.top { top: 100px; left: auto; right: 0; }
.hero-img .badge.bot { bottom: 60px; right: 40%; }

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 80px 0;
}
.section.tinted {
  background: var(--blue-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-image:
    radial-gradient(700px 340px at 10% 90%, rgba(132,200,230,.18), transparent 60%),
    radial-gradient(700px 340px at 90% 10%, rgba(156,216,255,.22), transparent 60%);
}
.section-eyebrow {
  display: inline-block;
  background: var(--blue-500);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 26px;
  border-radius: 4px;
  letter-spacing: 0.01em;
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: 38px;
  font-weight: 500;
  margin-top: 18px;
}
.section-head p {
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 16px;
}

/* ============================================
   Numbered features (6 circles)
   ============================================ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.feature {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.feature .circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--blue-200);
  display: grid;
  place-items: center;
  color: var(--blue-700);
  font-size: 28px;
  font-weight: 300;
  flex-shrink: 0;
  background: #fff;
  transition: transform .25s, border-color .25s, color .25s;
}
.feature:hover .circle {
  transform: scale(1.05);
  border-color: var(--blue-700);
  color: var(--blue-900);
}
.feature h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--blue-900);
}
.feature p { margin: 0; font-size: 14.5px; }

/* ============================================
   Three columns (Средства / Персонал / Оборудование)
   ============================================ */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: start;
}
.three-col .col {
  display: flex;
  flex-direction: column;
}
.three-col .col h3 {
  font-size: 22px;
  margin-bottom: 22px;
  min-height: 56px; /* aligns titles whether 1 or 2 lines */
  display: flex;
  align-items: flex-end;
}
.three-col .col img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 22px;
  display: block;
}
.three-col .col p.big { font-size: 15px; color: #4f5b62; }
.three-col .col p { font-size: 14px; }

/* ============================================
   Services grid (Мы предлагаем — 6 услуг)
   ============================================ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 2px 0 rgba(7,78,151,.04);
  border: 1px solid rgba(132,200,230,.3);
  transition: transform .2s, box-shadow .25s, border-color .2s;
}
.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(7,78,151,.10);
  border-color: var(--blue-500);
}
.service .ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cfeaf6, #e7f5fb);
  color: var(--blue-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.service .ico svg { width: 28px; height: 28px; }
.service h4 { font-size: 17px; color: var(--blue-900); margin: 4px 0 6px; }
.service p { margin: 0; font-size: 14px; line-height: 1.55; }

/* ============================================
   Call-us banner
   ============================================ */
.callus {
  background:
    linear-gradient(90deg, rgba(245,211,91,.95) 0%, rgba(245,211,91,.78) 60%, rgba(245,211,91,.35) 100%),
    url('assets/call-bg.jpg') center/cover no-repeat;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.callus .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.callus h2 {
  color: var(--brown);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}
.callus h2 strong { font-weight: 700; }

/* ============================================
   Objects (что мы убираем)
   ============================================ */
.objects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.object {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(7,78,151,.06);
  border: 1px solid rgba(132,200,230,.25);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.object:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(7,78,151,.12);
}
.object-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.object img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.object:hover img { transform: scale(1.04); }
.object .caption {
  background: var(--blue-50);
  padding: 22px 24px;
  border-top: 1px solid rgba(132,200,230,.3);
}
.object .caption strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--blue-900);
  margin-bottom: 4px;
}
.object .caption span {
  font-size: 13.5px;
  color: var(--muted);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background:
    linear-gradient(180deg, #0b3d6f 0%, #052747 100%);
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.05) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.04) 0 3px, transparent 4px);
  pointer-events: none;
}
.footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--yellow);
}
.footer p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.7); }
.footer a { color: var(--yellow); }
.footer a:hover { color: #fff; }
.footer .contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.footer .contact-row svg {
  width: 18px; height: 18px;
  color: var(--blue-500);
  flex-shrink: 0;
  margin-top: 3px;
}
.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.copyright .made { color: rgba(255,255,255,.6); }

/* ============================================
   Contact steps (3 шага)
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.step {
  text-align: center;
  padding: 30px 22px;
  position: relative;
}
.step .step-img {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  position: relative;
}
.step .step-img img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.step .step-num {
  position: absolute;
  right: -6px;
  top: -6px;
  width: 36px;
  height: 36px;
  background: var(--yellow);
  color: var(--brown);
  font-weight: 700;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(245,211,91,.45);
}
.step h4 {
  font-size: 18px;
  color: var(--blue-900);
  font-weight: 500;
  margin-bottom: 14px;
}
.step p {
  font-size: 14.5px;
  margin: 0 5%;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 40px auto;
  max-width: 600px;
}

/* ============================================
   Contact: form + info
   ============================================ */
.contact-row-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 30px;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.contact-info h3 { font-size: 22px; margin-bottom: 12px; }
.contact-info .lead { color: var(--muted); margin-bottom: 24px; }
.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.info-item .ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(132,200,230,.2);
  color: var(--blue-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-item .ico svg { width: 20px; height: 20px; }
.info-item .label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 2px;
}
.info-item .val {
  display: block;
  font-size: 16px;
  color: var(--blue-900);
  font-weight: 500;
}
.contact-info .pin {
  width: 100px;
  opacity: .9;
}

/* Form */
.contact-form {
  background: #fff;
  padding: 36px;
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(7,78,151,.08);
  border: 1px solid rgba(132,200,230,.3);
}
.contact-form h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.contact-form .sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  position: relative;
  margin-bottom: 14px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--blue-50);
  border: 1.5px solid transparent;
  border-radius: 6px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  background: #fff;
}
.field.error input,
.field.error textarea {
  border-color: #e6695f;
  background: #fff5f4;
}
.field .err-msg {
  display: none;
  position: absolute;
  bottom: -16px;
  left: 4px;
  font-size: 12px;
  color: #d04738;
}
.field.error .err-msg { display: block; }
.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
}
.form-success {
  display: none;
  padding: 14px 18px;
  background: #e8f5ec;
  color: #1f7a3a;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 16px;
}
.form-success.show { display: block; animation: pop .35s ease; }
@keyframes pop {
  from { transform: translateY(6px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Map placeholder */
.map {
  margin-top: 60px;
  border-radius: 10px;
  overflow: hidden;
  height: 380px;
  position: relative;
  background:
    linear-gradient(135deg, #d8eaf3 0%, #e9f4fa 100%);
  border: 1px solid var(--line);
}
.map .marker {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  text-align: center;
}
.map .marker img { width: 60px; height: 80px; }
.map .marker .label {
  background: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(7,78,151,.15);
  margin-top: 6px;
  font-size: 13px;
  color: var(--blue-900);
  font-weight: 500;
  white-space: nowrap;
}
.map .grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7,78,151,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,78,151,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .8;
}
.map .road1, .map .road2, .map .road3 {
  position: absolute;
  background: rgba(255,255,255,.7);
  border-radius: 4px;
}
.map .road1 { left: 0; right: 0; top: 38%; height: 14px; }
.map .road2 { top: 0; bottom: 0; left: 28%; width: 12px; }
.map .road3 { top: 0; bottom: 0; right: 22%; width: 10px; transform: rotate(8deg); transform-origin: top right; }

/* ============================================
   Back to top
   ============================================ */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 44px;
  height: 44px;
  background: var(--blue-700);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, background .2s;
  box-shadow: 0 10px 24px rgba(7,78,151,.3);
  z-index: 40;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--blue-900); }
.to-top svg { width: 20px; height: 20px; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  h1 { font-size: 32px; }
  .hero { padding: 140px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 44px; }
  .hero-img { height: 380px; }
  .hero-img img { max-height: 380px; }
  .features, .three-col, .services, .objects, .steps,
  .footer-grid, .contact-row-block { grid-template-columns: 1fr; gap: 28px; }
  .three-col .col img { height: auto; }
  .nav { display: none; }
  .top-phone { display: none; }
  .mobile-toggle { display: block; }
  .section { padding: 56px 0; }
  .callus h2 { font-size: 18px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 34px; }
  .section-head h2 { font-size: 26px; }
  .contact-form { padding: 22px; }
  .hero-img .badge { display: none; }
}
