:root {
  --navy-deep: #0b1947;
  --navy: #122056;
  --navy-light: #182867;
  --panel: #15245e;
  --blue-accent: #4fb8ff;
  --yellow: #f9fe28;
  --green: #4caf50;
  --green-bright: #6fd66f;
  --white: #ffffff;
  --muted: #b7c2e0;
  --border: rgba(255,255,255,0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.5;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

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

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 11, 31, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
  max-width: none;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
}

.brand img {
  height: 46px;
  width: auto;
  border-radius: 8px;
}

.brand-name {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-name span {
  display: block;
  font-weight: 500;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav.links {
  display: flex;
  gap: 24px;
  align-items: center;
}

nav.links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

nav.links a:hover,
nav.links a.active { color: var(--white); }

.pages-menu {
  position: relative;
}

.pages-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
}

.pages-toggle:hover,
.pages-toggle.open {
  color: var(--white);
}

.pages-toggle svg {
  transition: transform 0.2s ease;
}

.pages-toggle.open svg {
  transform: rotate(180deg);
}

.pages-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  flex-direction: column;
  gap: 2px;
  background: var(--navy-deep);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  z-index: 60;
}

.pages-dropdown.open { display: flex; }

.pages-dropdown a {
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.pages-dropdown a:hover,
.pages-dropdown a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--green);
  color: #06210a;
  box-shadow: 0 6px 20px rgba(76,175,80,0.35);
}

.btn-primary:hover { box-shadow: 0 8px 26px rgba(76,175,80,0.5); }

.btn-ghost {
  border-color: var(--yellow);
  color: var(--yellow);
  background: transparent;
}

.btn-small { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(79,184,255,0.12), transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(76,175,80,0.10), transparent 50%),
    var(--navy-deep);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: rgba(79,184,255,0.12);
  border: 1px solid rgba(79,184,255,0.35);
  color: var(--blue-accent);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 900;
}

h1 .hl {
  color: var(--yellow);
}

.hero p.lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 46ch;
  margin: 0 0 28px;
}

.hero-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 26px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-social a {
  color: var(--blue-accent);
  font-weight: 700;
  text-decoration: none;
}

.hero-social a:hover {
  text-decoration: underline;
}

.hero-social-sep {
  color: var(--border);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-img {
  display: flex;
  justify-content: center;
}

.hero-img img {
  max-height: 540px;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.5));
}

.trust-strip {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-strip span { display: flex; align-items: center; gap: 8px; }

.trust-strip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-bright);
  display: inline-block;
}

/* ---------- Page header (non-home pages) ---------- */
.page-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(79,184,255,0.12), transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(76,175,80,0.10), transparent 50%),
    var(--navy-deep);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0 auto;
}

/* ---------- Section shared ---------- */
section { padding: 56px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-tag {
  color: var(--green-bright);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: block;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 14px;
  font-weight: 850;
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border-color: var(--yellow);
  background: linear-gradient(180deg, rgba(249,254,40,0.08), var(--panel) 40%);
  transform: translateY(-8px);
}

.price-card.popular {
  border-color: var(--blue-accent);
  background: linear-gradient(180deg, rgba(79,184,255,0.1), var(--panel) 40%);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #241f00;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.badge-popular {
  background: var(--blue-accent);
  color: #06192b;
}

.price-card h3 {
  margin: 6px 0 4px;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-card .note {
  color: var(--green-bright);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
  min-height: 16px;
}

.price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  margin: 6px 0 2px;
}

.price small {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.price-sub {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 10px;
}

.price-extra {
  margin-top: 16px;
  font-weight: 700;
  color: var(--blue-accent);
}

.price-faq {
  margin-top: 56px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 40px;
}

.price-faq h3 {
  margin: 0 0 20px;
  font-size: 1.2rem;
}

.price-faq dl { margin: 0; }

.price-faq dt {
  font-weight: 700;
  margin-top: 16px;
}

.price-faq dt:first-child { margin-top: 0; }

.price-faq dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Process steps (About page) ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.step:first-child { border-top: none; padding-top: 0; }
.step:last-child { padding-bottom: 0; }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--green-bright);
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin: 4px 0 8px;
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.value-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}

.value-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(79,184,255,0.15);
  color: var(--blue-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.value-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.gallery-tile {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  border: 1.5px dashed var(--border);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
  padding: 16px;
}

.gallery-tile svg {
  width: 36px;
  height: 36px;
  opacity: 0.6;
}

.gallery-tile span {
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin: 32px auto 0;
  max-width: 60ch;
}


/* ---------- Before / After pairs ---------- */
#before-after { padding-bottom: 16px; }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ba-grid .gallery-tile {
  aspect-ratio: auto;
}

.ba-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 6px;
}

.ba-side {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 11px;
}

.ba-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 65%;
}

.ba-label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.ba-before { background: #ff3b3b; color: #fff; }
.ba-after { background: var(--green-bright); color: #06210a; }

.ba-side img { cursor: zoom-in; }
.ba-label { pointer-events: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 8, 24, 0.92);
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox figure {
  margin: 0;
  max-width: 100%;
  text-align: center;
}

.lightbox img,
.lightbox video {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ---------- Video gallery ---------- */
.video-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--panel);
}

.video-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.video-tile:hover img {
  transform: scale(1.04);
}

.video-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 31, 0.25);
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #06210a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  z-index: 1;
}

.lightbox figcaption {
  margin-top: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.lightbox figcaption.is-before { color: #ff6b6b; }
.lightbox figcaption.is-after { color: var(--green-bright); }

.lightbox-btn {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-btn:hover { background: rgba(255,255,255,0.22); }
.lightbox-close { top: 18px; right: 18px; }
.lightbox-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- Services checklist ---------- */
.services-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
}

.check-ico {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #06210a;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  margin-top: 2px;
}

.scent-tag {
  color: var(--green-bright);
}

/* ---------- Why monthly ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  --accent: var(--green-bright);
  background: var(--panel);
  border: 2px solid var(--accent);
  border-radius: 18px;
  padding: 28px;
}

.why-card:nth-child(2) { --accent: var(--yellow); }
.why-card:nth-child(3) { --accent: #ff3b3b; }

.why-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 8px 20px -6px var(--accent);
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.why-hook {
  color: var(--accent) !important;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0 0 14px !important;
}

.why-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 10px;
}

.pest-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pest-list li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 6px 0;
  border-top: 1px solid var(--border);
}

.pest-list li:first-child { border-top: none; }

.pest-list b { color: #ff3b3b; }

/* ---------- Area / military ---------- */
.military-tribute {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 48px;
  background: linear-gradient(90deg, rgba(76,175,80,0.15), rgba(79,184,255,0.1));
  padding: 44px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.flag-trio {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.flag-trio svg {
  width: 110px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.military-tribute h3 {
  margin: 0 0 4px;
  font-size: 1.3rem;
}

.military-tribute p {
  margin: 0;
  color: var(--muted);
  font-style: italic;
  font-size: 1.05rem;
}

.strip {
  background: linear-gradient(90deg, rgba(76,175,80,0.15), rgba(79,184,255,0.1));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}

.strip h3 {
  margin: 0 0 6px;
  font-size: 1.3rem;
}

.strip p {
  margin: 0;
  color: var(--muted);
}

.cities-marquee {
  margin-top: -40px;
  margin-bottom: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.cities-track {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: cities-scroll 32s linear infinite;
}

.cities-track .city {
  font-weight: 700;
  font-size: 1.15rem;
  margin-right: 14px;
}

.cities-track .dot {
  color: var(--green-bright);
  margin-right: 14px;
}

@keyframes cities-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .cities-track { animation: none; }
}

/* ---------- Instagram contest ---------- */
.contest {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.contest-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contest h3 {
  margin: 0 0 6px;
  font-size: 1.3rem;
  color: var(--yellow);
}

.contest p {
  margin: 0;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  padding: 18px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  flex: none;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Contact ---------- */
.contact-panel {
  background: linear-gradient(160deg, var(--navy-light), var(--navy-deep));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 48px;
  text-align: center;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}

.contact-method .circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}

.contact-method .circle svg {
  width: 24px;
  height: 24px;
}

/* ---------- Inquiry form ---------- */
.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0 28px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}

.inquiry-form .field-full {
  grid-column: 1 / -1;
}

.inquiry-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(183,194,224,0.5);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--blue-accent);
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 100px;
}

.inquiry-form .btn {
  width: 100%;
  border: none;
  font-size: 1rem;
}

.inquiry-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.inquiry-success {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 0;
}

.inquiry-success-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green);
  color: #06210a;
  font-size: 1.6rem;
  font-weight: 900;
}

.inquiry-success h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.inquiry-success p {
  margin: 0;
  color: var(--muted);
}

/* ---------- Footer ---------- */
footer {
  padding: 28px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .inquiry-form { grid-template-columns: 1fr; }
  .flag-trio { gap: 10px; }
  .flag-trio svg { width: 86px; }

  .nav { flex-wrap: wrap; row-gap: 10px; padding-left: 20px; padding-right: 20px; }
  .nav-right { width: 100%; justify-content: space-between; gap: 10px; }
  nav.links { gap: 12px; }
  nav.links a { font-size: 0.85rem; }
  .btn-small { padding: 8px 14px; font-size: 0.8rem; }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; order: -1; }
  .price-faq { padding: 28px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 44px 1fr; }
  .step-num { width: 44px; height: 44px; font-size: 1.1rem; }
  .check-grid { grid-template-columns: 1fr; }
  .services-panel { padding: 28px; }
  .contact-panel { padding: 32px 24px; }
}
