:root {
  --navy: #004a73;
  --navy-900: #003350;
  --navy-950: #00253b;
  --cyan: #18b7e8;
  --cyan-soft: #dff8ff;
  --orange: #ff6a1a;
  --yellow: #ffba46;
  --green: #05bd73;
  --blue: #087eb4;
  --ink: #102333;
  --muted: #5c6b76;
  --line: #dce8ee;
  --panel: #ffffff;
  --surface: #f5fafc;
  --shadow: 0 22px 70px rgba(0, 60, 95, 0.18);
  --radius: 8px;
  --header-height: 76px;
  color-scheme: light;
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Segoe UI", system-ui, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 74, 115, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
}

.brand span {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  color: var(--navy);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 26px);
  color: var(--navy-900);
  font-weight: 700;
}

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

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  color: white;
  background: var(--navy);
  border-radius: var(--radius);
  font-weight: 800;
}

.icon-button,
.nav-toggle {
  display: none;
}

.nav-toggle {
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, 78svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 37, 59, 0.9), rgba(0, 57, 88, 0.64) 36%, rgba(255, 255, 255, 0.12) 75%),
    linear-gradient(0deg, rgba(0, 37, 59, 0.55), rgba(0, 37, 59, 0));
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  color: white;
  padding: 56px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: inherit;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 9vw, 7.25rem);
  line-height: 0.88;
  text-transform: uppercase;
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 950;
  color: var(--navy);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.crm-actions,
.toolbar-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.btn-primary {
  color: white;
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(255, 106, 26, 0.25);
}

.btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.11);
}

.btn-ghost.dark {
  color: var(--navy);
  border-color: var(--line);
  background: white;
}

.btn-soft {
  color: var(--navy);
  background: var(--cyan-soft);
  border-color: rgba(24, 183, 232, 0.22);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(0, 74, 115, 0.32);
  border-radius: 999px;
  color: white;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy-900);
  color: white;
}

.trust-strip div {
  padding: 22px clamp(18px, 3vw, 44px);
  background: var(--navy);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.trust-strip span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: white;
}

.section-copy p,
.section-heading p,
.form-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.service-index {
  display: grid;
  gap: 12px;
}

.index-row {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 98px;
  padding: 20px 22px 20px 28px;
  overflow: hidden;
  color: white;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 74, 115, 0.13);
}

.index-row::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: rgba(255, 255, 255, 0.62);
  content: "";
}

.index-row strong {
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.index-row span {
  color: rgba(255, 255, 255, 0.9);
}

.orange {
  background: var(--orange);
}

.yellow {
  background: var(--yellow);
}

.green {
  background: var(--green);
}

.blue {
  background: var(--blue);
}

.services-section {
  background:
    linear-gradient(180deg, #f5fafc, #ffffff 52%),
    var(--surface);
}

.section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
  margin: 0 auto clamp(28px, 5vw, 56px);
}

.section-heading.compact {
  margin-bottom: 34px;
}

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

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

.plan-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(0, 74, 115, 0.08);
}

.plan-card.featured {
  border-color: rgba(255, 106, 26, 0.4);
  box-shadow: 0 24px 60px rgba(255, 106, 26, 0.16);
}

.plan-tag,
.service-pill {
  justify-self: start;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--cyan-soft);
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.plan-card h3 {
  margin: 0;
  color: var(--navy);
}

.plan-card p,
.solution-card p,
.capability-band p,
.location-card p,
.crm-login p,
.map-copy p {
  color: var(--muted);
  line-height: 1.58;
}

.plan-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 4px;
  list-style: none;
}

.plan-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.plan-card li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 0.7fr);
  gap: 24px;
  align-items: center;
  margin-top: clamp(28px, 6vw, 70px);
  padding: clamp(24px, 5vw, 52px);
  background: var(--navy);
  border-radius: var(--radius);
  color: white;
  overflow: hidden;
}

.split-showcase h3 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  text-transform: uppercase;
}

.split-showcase p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.split-showcase figure,
.catalog-location {
  margin: 0;
}

.split-showcase img,
.catalog-location img,
.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.metric-row strong {
  color: var(--yellow);
}

.products-section {
  background: white;
}

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

.solution-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(0, 74, 115, 0.09);
}

.solution-card div {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
  border-top: 8px solid var(--cyan);
}

.solution-card h3 {
  color: var(--navy);
}

.accent-yellow div {
  border-color: var(--yellow);
}

.accent-green div {
  border-color: var(--green);
}

.accent-blue div {
  border-color: var(--blue);
}

.capability-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.capability-band div {
  padding: 20px;
  background: white;
  border-radius: var(--radius);
}

.capability-band h3 {
  color: var(--navy);
}

.catalog-guide {
  display: grid;
  gap: 20px;
  margin-top: clamp(30px, 6vw, 66px);
  padding: clamp(20px, 4vw, 34px);
  background:
    linear-gradient(90deg, rgba(0, 74, 115, 0.06), rgba(24, 183, 232, 0.04)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.catalog-guide-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.catalog-guide-head h3 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  text-transform: uppercase;
}

.catalog-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-filter {
  min-height: 42px;
  padding: 9px 13px;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
}

.catalog-filter.is-active {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

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

.catalog-item {
  display: grid;
  gap: 12px;
  min-height: 280px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 74, 115, 0.07);
}

.catalog-item[hidden] {
  display: none;
}

.catalog-code {
  justify-self: start;
  padding: 5px 8px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 950;
}

.catalog-item h4 {
  margin: 0;
  color: var(--navy);
  font-size: 1.1rem;
}

.catalog-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.catalog-item dl {
  display: grid;
  gap: 9px;
  align-self: end;
  margin: 0;
}

.catalog-item dl div {
  display: grid;
  gap: 2px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.catalog-item dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-item dd {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
  line-height: 1.35;
}

.scheduling-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(120deg, rgba(0, 74, 115, 0.94), rgba(0, 74, 115, 0.82)),
    url("assets/garpis-hero-banner.jpg") center / cover;
  color: white;
}

.scheduling-section h2,
.scheduling-section .eyebrow {
  color: white;
}

.scheduling-section .form-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-card {
  display: grid;
  gap: 9px;
  margin-top: 26px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.contact-card a {
  color: white;
  font-weight: 800;
}

.lead-form,
.crm-login,
.crm-dashboard {
  background: white;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form {
  padding: clamp(20px, 4vw, 34px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  border: 1px solid #c9dbe3;
  border-radius: var(--radius);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(24, 183, 232, 0.18);
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.form-status.error {
  color: #b22919;
}

.form-status.success {
  color: #07784d;
}

.locations-section {
  background: var(--surface);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.location-list {
  display: grid;
  gap: 18px;
}

.location-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(0, 74, 115, 0.08);
}

.location-card h3 {
  color: var(--navy);
}

.location-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.catalog-location img {
  max-height: 700px;
  object-position: top;
}

.crm-section {
  padding: clamp(48px, 8vw, 94px) clamp(18px, 5vw, 72px);
  background: var(--navy-950);
}

.crm-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.crm-login {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
  padding: clamp(24px, 5vw, 48px);
}

.login-form {
  display: grid;
  gap: 14px;
}

.crm-dashboard {
  padding: clamp(18px, 3vw, 28px);
}

.crm-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.sync-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 900;
}

.crm-topbar h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.stat-card {
  padding: 18px;
  color: white;
  background: var(--navy);
  border-radius: var(--radius);
}

.stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
}

.crm-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.tab {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  font-weight: 900;
}

.tab.is-active {
  color: var(--navy);
  border-color: var(--orange);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.board-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.board-toolbar h3 {
  margin: 0;
  color: var(--navy);
}

.pipeline-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.pipeline-column {
  min-height: 360px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pipeline-column h4 {
  display: flex;
  justify-content: space-between;
  margin: 0 0 12px;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.lead-card {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan);
  border-radius: var(--radius);
}

.lead-card strong {
  color: var(--navy);
}

.lead-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-button {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--cyan-soft);
  border: 1px solid rgba(24, 183, 232, 0.24);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
}

.orders-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.orders-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: white;
}

.orders-table th,
.orders-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.orders-table th {
  color: var(--navy);
  background: var(--surface);
  text-transform: uppercase;
  font-size: 0.8rem;
}

.orders-table select {
  min-width: 150px;
}

.status-pill {
  display: inline-flex;
  padding: 6px 9px;
  background: var(--cyan-soft);
  color: var(--navy);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.route-controls {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(190px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 10px;
}

.route-status {
  min-height: 22px;
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.route-status.error {
  color: #b42318;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
}

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

.route-stop {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stop-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}

.route-stop h4,
.route-stop p {
  margin: 0;
}

.route-stop h4 {
  color: var(--navy);
}

.route-stop p {
  color: var(--muted);
  line-height: 1.45;
}

.route-stop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.route-stop-actions .mini-button {
  min-width: 78px;
  text-align: center;
}

.route-map {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #eef9fc, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-grid {
  position: absolute;
  inset: -80px;
  background-image:
    linear-gradient(rgba(0, 74, 115, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 74, 115, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: rotate(-8deg);
}

.map-grid::after {
  position: absolute;
  inset: 20% 12%;
  border: 8px solid rgba(24, 183, 232, 0.32);
  border-left-color: transparent;
  border-bottom-color: var(--orange);
  border-radius: 50%;
  content: "";
}

.map-copy {
  position: relative;
  z-index: 1;
  width: min(360px, calc(100% - 40px));
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 74, 115, 0.15);
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  gap: 18px;
  align-items: start;
}

.service-report-form,
.reports-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-report-form h3,
.reports-panel h3 {
  margin-bottom: 0;
  color: var(--navy);
}

.checklist-grid,
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checklist-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.checklist-grid input {
  width: 18px;
  min-height: 18px;
}

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

.report-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
}

.report-card h4,
.report-card p {
  margin: 0;
}

.report-card h4 {
  color: var(--navy);
}

.report-card p {
  color: var(--muted);
  line-height: 1.45;
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report-meta span {
  padding: 5px 8px;
  color: var(--navy);
  background: var(--cyan-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: white;
  background: var(--navy);
}

.site-footer img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 50%;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-weight: 900;
}

[class^="icon-"]:not(.icon-button),
[class*=" icon-"],
.line-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.icon-phone::before {
  position: absolute;
  inset: 3px;
  border: 2px solid currentColor;
  border-left-width: 5px;
  border-radius: 6px 6px 8px 8px;
  transform: rotate(-30deg);
  content: "";
}

.icon-calendar::before {
  position: absolute;
  inset: 4px 2px 2px;
  border: 2px solid currentColor;
  border-radius: 4px;
  content: "";
}

.icon-calendar::after {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 7px;
  height: 2px;
  background: currentColor;
  content: "";
}

.icon-whatsapp::before {
  position: absolute;
  inset: 2px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.icon-whatsapp::after {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-35deg);
  content: "";
}

.icon-send::before {
  position: absolute;
  left: 2px;
  top: 3px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 16px solid currentColor;
  content: "";
}

.icon-map::before {
  position: absolute;
  left: 5px;
  top: 1px;
  width: 10px;
  height: 14px;
  background: currentColor;
  border-radius: 9px 9px 9px 0;
  transform: rotate(-45deg);
  content: "";
}

.icon-map::after {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  content: "";
}

.large {
  width: 42px;
  height: 42px;
  color: var(--orange);
}

.drop,
.waves,
.jar,
.gear {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  color: var(--cyan);
}

.drop::before {
  position: absolute;
  inset: 4px 9px 5px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  content: "";
}

.waves::before,
.waves::after {
  position: absolute;
  left: 2px;
  right: 2px;
  height: 8px;
  border-top: 3px solid currentColor;
  border-radius: 50%;
  content: "";
}

.waves::before {
  top: 10px;
}

.waves::after {
  top: 20px;
}

.jar::before {
  position: absolute;
  left: 10px;
  top: 8px;
  width: 18px;
  height: 23px;
  border: 3px solid currentColor;
  border-radius: 4px 4px 7px 7px;
  content: "";
}

.jar::after {
  position: absolute;
  left: 14px;
  top: 2px;
  width: 10px;
  height: 8px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  content: "";
}

.gear::before {
  position: absolute;
  inset: 6px;
  border: 4px solid currentColor;
  border-radius: 50%;
  box-shadow:
    0 -11px 0 -3px currentColor,
    0 11px 0 -3px currentColor,
    11px 0 0 -3px currentColor,
    -11px 0 0 -3px currentColor;
  content: "";
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav,
  .header-action {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav.is-open {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 8px);
    display: grid;
    gap: 4px;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 14px 10px;
  }

  .trust-strip,
  .capability-band,
  .catalog-grid,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-section,
  .scheduling-section,
  .location-layout,
  .crm-login,
  .route-layout,
  .report-layout {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 8px 14px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px;
    padding: 38px 0;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 37, 59, 0.92), rgba(0, 57, 88, 0.64)),
      linear-gradient(0deg, rgba(0, 37, 59, 0.55), rgba(0, 37, 59, 0));
  }

  .section {
    padding: 50px 14px;
  }

  .trust-strip,
  .capability-band,
  .catalog-grid,
  .stat-grid,
  .form-grid,
  .checklist-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .split-showcase {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .solution-card {
    grid-template-rows: 180px 1fr;
  }

  .catalog-guide-head {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-tools {
    display: grid;
    grid-template-columns: 1fr;
  }

  .crm-topbar,
  .board-toolbar,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .toolbar-group,
  .crm-actions,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .toolbar-group input {
    width: 100%;
  }

  .pipeline-board {
    grid-template-columns: repeat(4, minmax(255px, 1fr));
  }

  .route-controls {
    grid-template-columns: 1fr;
  }
}
