:root {
  --black: #0e0e10;
  --ink: #1a1a1d;
  --gray-900: #1f2024;
  --gray-700: #4a4d55;
  --gray-500: #8a8d96;
  --gray-300: #d8dae0;
  --gray-100: #f4f5f7;
  --white: #ffffff;
  --accent: #f5a623;
  --accent-dark: #d68910;
  --red: #d92d20;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
/* Prevent grid/flex items from overflowing their container */
.hero-inner > *, .contact-inner > *, .cta-band-inner > *, .footer-inner > * { min-width: 0; }
.hero-content, .hero-form { max-width: 100%; }
h1, h2, h3, p { overflow-wrap: break-word; word-wrap: break-word; }
img, iframe { max-width: 100%; }
.eyebrow { white-space: normal; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
h1 { font-size: clamp(28px, 7vw, 64px); }
h2 { font-size: clamp(24px, 5vw, 44px); }
h3 { font-size: 22px; }
h4 { font-size: 14px; letter-spacing: 0.06em; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.eyebrow-dark { color: var(--accent-dark); }
.accent { color: var(--accent); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 17px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-call {
  background: var(--white);
  color: var(--black);
  border-color: var(--gray-300);
}
.btn-call:hover { background: var(--accent); border-color: var(--accent); }

/* SUBMIT SUCCESS BANNER */
.submit-success {
  background: #16a34a;
  color: var(--white);
  font-size: 14px;
  animation: successSlide .35s ease;
}
.submit-success[hidden] { display: none; }
@keyframes successSlide { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.submit-success-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  flex-wrap: wrap;
}
.submit-success strong { font-size: 15px; }
.submit-success-close {
  margin-left: auto;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.submit-success-close:hover { opacity: 0.8; }

/* TOPBAR */
.topbar {
  background: var(--black);
  color: var(--gray-300);
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 10px 24px;
  flex-wrap: wrap;
}
.topbar-item { color: var(--gray-300); }

/* HEADER */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}
.logo { display: flex; align-items: center; line-height: 1; }
.logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.logo-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.logo-sub { font-size: 11px; color: var(--gray-500); margin-top: 4px; letter-spacing: 0.08em; text-transform: uppercase; }
.nav { display: flex; gap: 28px; }
.nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-700);
  transition: color .2s;
}
.nav a:hover { color: var(--accent-dark); }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  color: var(--white);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-1.jpg') center/cover no-repeat;
  z-index: -2;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14,14,16,.92) 0%, rgba(14,14,16,.78) 45%, rgba(14,14,16,.55) 100%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.lead {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 28px;
}
.hero-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
  font-weight: 500;
}
.hero-points li { color: rgba(255,255,255,0.95); }

/* Hero features grid (2x2) */
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 4px 0 28px;
  max-width: 580px;
}
.hero-feature {
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
}
.hero-feature h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  color: var(--accent);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.hero-feature p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.45;
}
.hero-feature-wide { grid-column: 1 / -1; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 500;
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.hero-trust span { color: var(--accent); letter-spacing: 2px; margin-right: 8px; }

/* FORM */
.hero-form {
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.hero-form h3 {
  font-size: 26px;
  margin-bottom: 6px;
  text-transform: none;
  letter-spacing: 0;
}
.hero-form h3 span { color: var(--accent-dark); }
.form-sub { color: var(--gray-500); font-size: 14px; margin: 0 0 20px; }
.hero-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 14px;
}
.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-300);
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.18);
}
.hero-form textarea { resize: vertical; }
.form-fineprint { font-size: 13px; color: var(--gray-500); text-align: center; margin: 14px 0 0; }
.form-fineprint a { color: var(--accent-dark); font-weight: 600; }

/* TRUST STRIP */
.strip {
  background: var(--ink);
  color: var(--white);
  padding: 28px 0;
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.strip-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.strip-item span { font-size: 13px; color: var(--gray-300); letter-spacing: 0.06em; text-transform: uppercase; }

/* SECTIONS */
section { padding: 88px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head p { color: var(--gray-700); font-size: 17px; }

/* SERVICES */
.services { background: var(--gray-100); }
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.service-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.service-body p { color: var(--gray-700); font-size: 15px; flex: 1; }
.service-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.service-list li {
  position: relative;
  padding: 4px 0 4px 20px;
  font-size: 14px;
  color: var(--gray-700);
}
.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}
.link-arrow {
  margin-top: 14px;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.link-arrow:hover { color: var(--accent); }

/* GALLERY */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lbFadeIn .18s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }

.lb-stage {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lb-counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.lb-close,
.lb-nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  padding: 0;
  transition: background .15s, transform .15s;
  -webkit-tap-highlight-color: transparent;
}
.lb-close { top: 20px; right: 20px; font-size: 32px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 36px; }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 36px; }
.lb-close:hover,
.lb-nav:hover { background: rgba(255,255,255,0.22); }
.lb-prev:hover { transform: translateY(-50%) translateX(-2px); }
.lb-next:hover { transform: translateY(-50%) translateX(2px); }

@media (max-width: 720px) {
  .lightbox { padding: 12px; }
  .lb-close { top: 12px; right: 12px; width: 44px; height: 44px; }
  .lb-prev, .lb-next {
    bottom: 16px;
    top: auto;
    transform: none;
    width: 52px;
    height: 52px;
  }
  .lb-prev { left: 16px; }
  .lb-next { right: 16px; }
  .lb-prev:hover, .lb-next:hover { transform: none; }
  .lb-img { max-height: calc(100vh - 120px); }
  .lb-counter { bottom: -28px; font-size: 12px; }
}

/* FAQ */
.faq { background: var(--gray-100); }
.faq-wrap { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid var(--gray-300);
  transition: border-color .2s;
}
.faq-list details[open] { border-color: var(--accent); }
.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 17px;
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--accent-dark);
  transition: transform .2s;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--gray-700);
  font-size: 15px;
}

/* WHY */
.why { background: var(--ink); color: var(--white); }
.why .section-head h2 { color: var(--white); }
.why .section-head p { color: var(--gray-300); }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: border-color .2s, background .2s;
}
.why-card:hover { border-color: var(--accent); background: rgba(245,166,35,0.06); }
.why-icon { font-size: 40px; margin-bottom: 14px; }
.why-card h3 { color: var(--white); font-size: 20px; }
.why-card p { color: var(--gray-300); font-size: 14px; margin: 0; }

/* PROCESS */
.process { background: var(--white); }
.process-grid { gap: 20px; }
.step {
  position: relative;
  padding: 32px 24px;
  background: var(--gray-100);
  border-radius: var(--radius);
  border-top: 4px solid var(--accent);
}
.step-num {
  position: absolute;
  top: -22px;
  left: 24px;
  background: var(--accent);
  color: var(--black);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.step h3 { margin-top: 12px; }
.step p { color: var(--gray-700); font-size: 15px; margin: 0; }

/* CTA BAND */
.cta-band {
  background: linear-gradient(120deg, var(--ink) 0%, var(--gray-900) 100%);
  color: var(--white);
  padding: 64px 0;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: var(--gray-300); margin: 0; }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; }

/* AREA */
.area { background: var(--gray-100); padding: 72px 0; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-tags span {
  background: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
}

/* CONTACT */
.contact { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info p { color: var(--gray-700); margin-bottom: 32px; }
.contact-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-block { padding: 0; }
.contact-block-wide { grid-column: 1 / -1; }
.contact-block h4 {
  color: var(--gray-500);
  font-size: 12px;
  margin: 0 0 8px;
}
.contact-block a, .contact-block p { color: var(--ink); font-weight: 600; margin: 0; }
.contact-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--ink) !important;
  letter-spacing: 0.02em;
}
.contact-big:hover { color: var(--accent-dark) !important; }

/* FOOTER */
.footer {
  background: var(--black);
  color: var(--gray-300);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer .logo-mark { color: var(--white); }
.footer-text { color: var(--gray-500); font-size: 14px; margin-top: 16px; max-width: 380px; }
.footer h4 { color: var(--white); margin-bottom: 16px; }
.footer ul li { padding: 6px 0; font-size: 14px; }
.footer a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 13px;
  color: var(--gray-500);
}

/* MAP */
.map iframe { display: block; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  border: 1px solid rgba(255,255,255,0.08);
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.cookie-text { flex: 1; }
.cookie-text strong { font-size: 15px; }
.cookie-text p { margin: 4px 0 0; font-size: 13px; color: var(--gray-300); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  padding: 10px 18px;
  font-size: 14px;
}
.btn-ghost-dark:hover { border-color: var(--white); }
.cookie-actions .btn-primary { padding: 10px 18px; font-size: 14px; }
@media (max-width: 720px) {
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px; }
  .cookie-actions { justify-content: flex-end; }
  .sticky-call { bottom: 120px; }
}

/* STICKY MOBILE CALL */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--black);
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 17px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-band-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-band-actions { align-items: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  /* Topbar: hide secondary items, keep just the strongest */
  .topbar-inner { gap: 10px; font-size: 12px; padding: 8px 16px; }
  .topbar-item:nth-child(2) { display: none; }
  .topbar-item:nth-child(3) { display: none; }

  .nav { display: none; }
  /* Header: shrink logo + show only phone icon, hide number text */
  .header-inner { padding: 12px 16px; gap: 10px; }
  .logo-img { height: 38px; }
  .header-call {
    padding: 10px 14px;
    font-size: 0; /* hides the number text */
  }
  .header-call .icon-phone { font-size: 18px; }

  section { padding: 64px 0; }
  .hero { padding: 56px 0 80px; }
  .hero-form { padding: 24px; }
  .grid-3, .grid-4, .contact-blocks { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .sticky-call { display: block; }
  body { padding-bottom: 80px; }

  /* Stats strip: single column with horizontal layout per item */
  .strip-inner { grid-template-columns: 1fr; gap: 14px; }
  .strip-item {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    text-align: left;
  }
  .strip-item strong { font-size: 32px; margin-bottom: 0; }
  .strip-item span { font-size: 12px; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 16px; }
  .eyebrow { font-size: 11px; letter-spacing: 0.06em; }
  .hero h1 { font-size: 32px; line-height: 1.05; }
  .lead { font-size: 16px; }
  .hero-trust { font-size: 12px; }
  .section-head { margin-bottom: 40px; }
  .hero-form { padding: 20px; }
  .form-fineprint a { word-break: break-all; font-size: 12px; }
  .contact-big { font-size: 22px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; white-space: normal; }
  .phone-prefix { display: none; }
  .btn-lg { padding: 14px 18px; font-size: 16px; }
  .lead, .hero-points, .hero-content p, .hero h1 { max-width: 100%; }
  .hero-features { grid-template-columns: 1fr; gap: 10px; margin: 4px 0 22px; }
  .hero-feature { padding: 12px 14px; }
  .hero-meta { font-size: 14px; gap: 14px; margin-bottom: 20px; }
}

@media (max-width: 380px) {
  .topbar-item:nth-child(1) { font-size: 11px; }
  .strip-item strong { font-size: 26px; }
  .hero h1 { font-size: 28px; }
  .hero h2, .why h2, .process h2, .area h2, .contact h2, .faq h2, .cta-band h2 { font-size: 22px; }
}
