:root {
  --ink: #151515;
  --text: #3f4248;
  --muted: #767b84;
  --line: #ece8e1;
  --paper: #ffffff;
  --soft: #fbf6ef;
  --soft-strong: #f5eadc;
  --accent: #f58220;
  --accent-dark: #cf6410;
  --green: #1f8f62;
  --shadow: 0 20px 50px rgba(25, 25, 25, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(236, 232, 225, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(245, 130, 32, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--ink);
  font-size: 15px;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav > a::after,
.nav-dropdown > a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transition: width 0.2s ease;
}

.site-nav > a:hover::after,
.nav-dropdown > a:hover::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
  padding: 10px 0;
}

.nav-dropdown > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown > a::before {
  order: 2;
  color: var(--muted);
  content: "⌄";
  font-size: 13px;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: -18px;
  z-index: 50;
  display: grid;
  min-width: 250px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.dropdown-panel a {
  padding: 10px 12px;
  color: var(--text);
  border-radius: 8px;
  white-space: normal;
}

.dropdown-panel a:hover {
  color: var(--ink);
  background: var(--soft);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.lang {
  width: 38px;
  height: 30px;
  border: 0;
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
}

.lang.active {
  color: #fff;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section-pad {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  min-height: calc(100vh - 76px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 62%, #fff 100%),
    radial-gradient(circle at 30% 22%, #fff7ef 0, #fff7ef 28%, transparent 52%);
}

.page-hero {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 62%, #fff 100%),
    radial-gradient(circle at 22% 12%, #fff1e3 0, #fff1e3 26%, transparent 54%);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(40px, 5vw, 68px);
}

.page-hero p {
  max-width: 780px;
  font-size: 20px;
}

.page-hero .btn {
  margin-top: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  font-size: clamp(40px, 6vw, 72px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 22px;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 21px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-top: 24px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

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

.btn.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(245, 130, 32, 0.22);
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  color: var(--accent-dark);
  border-color: rgba(245, 130, 32, 0.42);
  background: #fff;
}

.btn.full {
  width: 100%;
}

.proof-line {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.38));
}

.status-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(280px, calc(100% - 48px));
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.status-card span,
.status-card small {
  display: block;
  color: var(--muted);
}

.status-card strong {
  display: block;
  margin: 5px 0;
  color: var(--accent-dark);
  font-size: 30px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  transform: translateY(-36px);
}

.stats-bar div {
  position: relative;
  min-height: 190px;
  padding: 28px 24px;
  background: #fff;
}

.stats-bar div::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--accent), rgba(245, 130, 32, 0.12));
}

.stats-bar strong {
  display: block;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.1;
}

.stats-bar span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.stats-bar p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.category-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  min-height: 520px;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(25, 25, 25, 0.05);
  width: 100%;
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 680px;
  object-fit: cover;
  border-radius: 8px;
}

.category-card p {
  margin: 14px 0 20px;
}

.compact-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.compact-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
}

.compact-list li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "•";
  font-weight: 900;
}

.product-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 18px 0 22px;
  list-style: none;
}

.product-chip-grid li {
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  font-weight: 800;
}

.category-card a {
  color: var(--accent-dark);
  font-weight: 800;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  background: var(--soft);
}

.product-detail-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 25, 25, 0.05);
}

.product-detail-grid h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.product-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.product-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.product-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #fff;
}

.product-photo-grid figcaption {
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.page-lead {
  min-height: calc(100vh - 76px);
}

.map-detail-section,
.faq-section {
  background: var(--soft);
}

.map-content-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.map-content-grid article,
.faq-section details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 25, 25, 0.05);
}

.map-content-grid article {
  padding: 26px;
}

.map-preview-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.preview-card {
  min-height: 420px;
  padding: 40px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(21, 21, 21, 0.94), rgba(21, 21, 21, 0.62)),
    url("assets/map-bg.svg") center/cover;
  box-shadow: var(--shadow);
}

.preview-card h2,
.preview-card .eyebrow {
  color: #fff;
}

.check-list.dark li {
  color: rgba(255, 255, 255, 0.9);
}

.faq-section {
  display: grid;
  gap: 14px;
}

.faq-section details {
  padding: 0;
}

.faq-section summary {
  padding: 22px 26px;
  color: var(--ink);
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
}

.faq-section details p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--text);
}

.muted-section {
  background: var(--soft);
}

.why-city-section {
  background: #fff;
}

.reason-grid,
.why-us-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.reason-grid article,
.why-us-grid article,
.case-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 25, 25, 0.05);
}

.reason-grid strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.why-us-section,
.proof-section {
  background: var(--soft);
}

.why-us-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--soft);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.solution-grid article,
.lead-form,
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 25, 25, 0.05);
}

.solution-grid article {
  padding: 30px;
}

.icon-box {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--accent-dark);
  background: var(--soft-strong);
  border-radius: 8px;
  font-weight: 800;
}

.process-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list div {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  min-height: 70px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list strong {
  color: var(--accent-dark);
}

.process-list span {
  color: var(--ink);
  font-weight: 700;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.92), rgba(21, 21, 21, 0.72)),
    url("assets/map-bg.svg") center/cover;
}

.lead-section h2,
.lead-section h3 {
  color: #fff;
}

.lead-section .eyebrow {
  color: #ffb46c;
}

.lead-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: #ffb46c;
  content: "✓";
  font-weight: 800;
}

.lead-form,
.contact-form {
  padding: 28px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ddd7cf;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.14);
}

.b2b-note {
  display: inline-flex;
  max-width: 720px;
  margin: 18px 0 0;
  padding: 10px 14px;
  color: var(--ink);
  border: 1px solid rgba(245, 130, 32, 0.36);
  border-radius: 8px;
  background: rgba(255, 246, 236, 0.92);
  font-weight: 800;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.success-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 800;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) 1fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.mini-grid span {
  padding: 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.contact-section {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 24px;
  align-items: start;
}

.contact-card {
  padding: 28px;
}

.contact-card p {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.whatsapp-float span {
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 40;
  max-width: min(360px, calc(100vw - 44px));
  padding: 14px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .nav-dropdown {
    display: grid;
    gap: 8px;
    padding: 0;
  }

  .nav-dropdown > a::before {
    content: "";
  }

  .dropdown-panel {
    position: static;
    min-width: 0;
    padding: 0 0 4px 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .dropdown-panel a {
    padding: 7px 0;
    color: var(--muted);
  }

  .language-switch {
    align-self: flex-start;
    margin-top: 8px;
  }

  .hero,
  .process-section,
  .about-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 390px;
  }

  .category-grid,
  .solution-grid,
  .reason-grid,
  .why-us-grid,
  .case-grid,
  .map-content-grid,
  .map-preview-section,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section-pad {
    padding: 56px 20px;
  }

  .hero {
    padding-top: 50px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 20px;
    transform: none;
  }

  .category-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .category-card img {
    min-height: 220px;
    max-height: none;
  }

  .product-chip-grid {
    grid-template-columns: 1fr;
  }

  .process-list div {
    grid-template-columns: 58px 1fr;
  }

  .product-photo-grid {
    grid-template-columns: 1fr;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 92px;
    width: 54px;
    height: 54px;
  }

  .toast {
    right: 16px;
    bottom: 160px;
  }
}
