:root {
  --blue-900: #07375f;
  --blue-800: #0a4b80;
  --blue-700: #0f5f9c;
  --blue-100: #e8f3fb;
  --green-600: #22a66a;
  --green-700: #128451;
  --gray-950: #14212b;
  --gray-700: #4a5b68;
  --gray-500: #71808c;
  --gray-200: #dce4ea;
  --gray-100: #f4f7f9;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(7, 55, 95, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-950);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 234, 0.85);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  display: grid;
  place-items: center;
  width: 220px;
  height: 58px;
  padding: 6px 10px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(7, 55, 95, 0.18);
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--blue-900);
  font-size: 1.15rem;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: var(--gray-500);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  color: var(--gray-700);
  font-size: 0.91rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 160ms ease;
}

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

.site-nav a:hover {
  color: var(--blue-700);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 750;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  color: var(--white);
  background: var(--green-600);
}

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

.btn-primary {
  color: var(--white);
  background: var(--green-600);
  box-shadow: 0 12px 24px rgba(34, 166, 106, 0.23);
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--green-700);
}

.btn-secondary {
  color: var(--blue-900);
  background: var(--white);
}

.btn-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--blue-100);
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 55, 95, 0.92) 0%, rgba(7, 55, 95, 0.72) 42%, rgba(7, 55, 95, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 55, 95, 0.34), rgba(7, 55, 95, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green-600);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8df0bd;
}

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

h1 {
  width: min(780px, 100%);
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--blue-900);
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-subtitle {
  width: min(650px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 88px 0;
}

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

.intro-band {
  padding: 28px 0;
  background: var(--blue-900);
}

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

.stats-grid article {
  padding: 22px;
  border-left: 3px solid var(--green-600);
  background: rgba(255, 255, 255, 0.06);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--white);
  font-size: 1.05rem;
}

.stats-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
}

.two-column,
.b2b-layout,
.contact-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 52px;
  align-items: center;
}

.two-column p,
.b2b-layout p,
.section-heading p,
.contact-grid p {
  color: var(--gray-700);
  font-size: 1.05rem;
}

.values-panel {
  display: grid;
  gap: 14px;
}

.values-panel article,
.product-card,
.city-grid article,
.contact-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.values-panel article,
.product-card,
.city-grid article,
.segment-list span,
.service-grid article {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.values-panel article:hover,
.product-card:hover,
.city-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 166, 106, 0.55);
  box-shadow: 0 22px 54px rgba(7, 55, 95, 0.18);
}

.values-panel article:hover h3,
.product-card:hover h3,
.city-grid article:hover h3 {
  color: var(--green-700);
}

.values-panel article {
  padding: 24px;
}

.values-panel p,
.product-card p,
.city-grid p,
.service-grid p {
  margin-bottom: 0;
  color: var(--gray-700);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

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

.product-card {
  min-height: 250px;
  padding: 26px;
}

.product-photo-card {
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.product-photo-card > img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  border-bottom: 1px solid var(--gray-200);
  transition: transform 220ms ease, filter 220ms ease;
}

.product-photo-card .icon,
.product-photo-card h3,
.product-photo-card p,
.product-photo-card small {
  margin-left: 26px;
  margin-right: 26px;
}

.product-photo-card .icon {
  margin-top: 24px;
}

.product-photo-card small {
  display: inline-flex;
  margin-top: 18px;
  margin-bottom: 26px;
  color: var(--blue-700);
  font-weight: 850;
}

.product-photo-card:hover > img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 8px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.product-card:hover .icon {
  transform: scale(1.08) rotate(-3deg);
  background: var(--green-600);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-modal.is-open {
  display: flex;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 31, 54, 0.72);
  backdrop-filter: blur(8px);
}

.product-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  width: min(980px, 100%);
  max-height: min(86vh, 760px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.product-modal__image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background: var(--gray-100);
}

.product-modal__content {
  padding: 36px;
  overflow: auto;
}

.product-modal__content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.product-modal__content p:not(.section-kicker) {
  margin-bottom: 24px;
  color: var(--gray-700);
}

.product-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-900);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.center-action {
  margin-top: 34px;
  text-align: center;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.seo-link-grid a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  color: var(--blue-900);
  background: var(--white);
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.seo-link-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 166, 106, 0.55);
  color: var(--green-700);
  box-shadow: 0 16px 34px rgba(7, 55, 95, 0.12);
}

.segment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.segment-list span {
  position: relative;
  padding: 16px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  color: var(--blue-900);
  background: var(--gray-100);
  font-weight: 750;
  overflow: hidden;
}

.segment-list span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 95, 156, 0.12), rgba(34, 166, 106, 0.16));
  opacity: 0;
  transition: opacity 180ms ease;
}

.segment-list span:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 95, 156, 0.42);
  background: var(--white);
  color: var(--green-700);
  box-shadow: 0 16px 34px rgba(7, 55, 95, 0.12);
}

.segment-list span:hover::before {
  opacity: 1;
}

.delivery-video-section {
  padding: 88px 0;
  background: #061f36;
}

.delivery-video-shell .section-heading h2,
.delivery-video-shell .section-heading p {
  color: var(--white);
}

.delivery-video-shell .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.delivery-video-card {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  min-height: 660px;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.delivery-video-card > img,
.delivery-video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.delivery-video-card > img {
  object-fit: cover;
  object-position: center center;
  animation: deliveryPan 16s ease-in-out infinite alternate;
}

.delivery-video-overlay {
  background:
    radial-gradient(circle at 78% 34%, rgba(34, 166, 106, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(7, 55, 95, 0.97) 0%, rgba(7, 55, 95, 0.82) 45%, rgba(7, 55, 95, 0.14) 100%),
    linear-gradient(0deg, rgba(6, 31, 54, 0.32), rgba(6, 31, 54, 0.02));
}

.delivery-motion-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.delivery-motion-lines span {
  position: absolute;
  left: -20%;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(141, 240, 189, 0.72), transparent);
  opacity: 0;
  animation: motionLine 5.5s ease-in-out infinite;
}

.delivery-motion-lines span:nth-child(1) {
  top: 24%;
}

.delivery-motion-lines span:nth-child(2) {
  top: 46%;
  animation-delay: 1.3s;
}

.delivery-motion-lines span:nth-child(3) {
  top: 68%;
  animation-delay: 2.6s;
}

.delivery-floating-card {
  position: absolute;
  z-index: 2;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 55, 95, 0.78);
  backdrop-filter: blur(12px);
  font-weight: 850;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.card-one {
  top: 92px;
  right: 74px;
  animation: floatCard 4.2s ease-in-out infinite;
}

.card-two {
  top: 156px;
  right: 138px;
  animation: floatCard 4.2s ease-in-out 1.1s infinite;
}

.delivery-video-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 40px));
  margin-left: max(32px, calc((100% - 1120px) / 2 + 48px));
  color: var(--white);
}

.delivery-video-logo {
  width: min(230px, 70vw);
  margin-bottom: 28px;
  padding: 8px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.delivery-video-content h2 {
  width: min(780px, 100%);
  color: var(--white);
}

.delivery-route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: min(680px, 100%);
  margin: 24px 0 20px;
}

.delivery-route span {
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.delivery-route i {
  flex: 1 1 28px;
  min-width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-600), transparent);
  animation: routeFlow 1.8s ease-in-out infinite;
}

.delivery-video-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.delivery-video-steps span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  animation: deliveryPulse 4.5s ease-in-out infinite;
}

.delivery-video-steps span:nth-child(2) {
  animation-delay: 0.7s;
}

.delivery-video-steps span:nth-child(3) {
  animation-delay: 1.4s;
}

.delivery-video-steps span:nth-child(4) {
  animation-delay: 2.1s;
}

.delivery-badge {
  position: absolute;
  z-index: 2;
  right: 44px;
  bottom: 44px;
  width: min(230px, calc(100% - 88px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 55, 95, 0.72);
  backdrop-filter: blur(12px);
  animation: badgeFloat 4s ease-in-out infinite;
}

.delivery-badge strong,
.delivery-badge span {
  display: block;
}

.delivery-badge strong {
  font-size: 1.15rem;
}

.delivery-badge span {
  color: rgba(255, 255, 255, 0.76);
}

@keyframes motionLine {
  0% {
    opacity: 0;
    transform: translateX(0);
  }

  18%,
  52% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(320%);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes deliveryPan {
  from {
    transform: scale(1.04) translateX(0);
  }

  to {
    transform: scale(1.11) translateX(-2.4%);
  }
}

@keyframes routeFlow {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes deliveryPulse {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(255, 255, 255, 0.22);
  }

  45% {
    transform: translateY(-5px);
    border-color: rgba(141, 240, 189, 0.65);
  }
}

.service-strip {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-grid h3 {
  color: var(--white);
}

.service-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.service-grid article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.service-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(141, 240, 189, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

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

.city-grid article {
  position: relative;
  padding: 24px;
  box-shadow: none;
  overflow: hidden;
}

.city-grid article::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-700), var(--green-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.city-grid article:hover::after {
  transform: scaleX(1);
}

.contact-section {
  color: var(--white);
  background: var(--blue-900);
}

.contact-section h2,
.contact-section h3 {
  color: var(--white);
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  padding: 30px;
  color: var(--gray-950);
}

.contact-logo {
  width: min(220px, 100%);
  margin-bottom: 24px;
  border-radius: 8px;
  background: #101821;
}

.contact-card h3 {
  color: var(--blue-900);
}

.contact-card p,
.contact-card a {
  display: block;
  margin: 0 0 12px;
  color: var(--gray-700);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  margin: 0;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--blue-900);
  background: var(--blue-100);
  font-weight: 750;
}

.specialist-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--blue-100) 100%);
}

.specialist-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.specialist-copy p {
  color: var(--gray-700);
  font-size: 1.05rem;
}

.specialist-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.specialist-highlights span {
  padding: 10px 12px;
  border: 1px solid rgba(15, 95, 156, 0.18);
  border-radius: 8px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.specialist-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(15, 95, 156, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.specialist-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-900);
  font-weight: 750;
}

.specialist-form input,
.specialist-form textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--gray-950);
  background: var(--white);
  font: inherit;
}

.specialist-form input:focus,
.specialist-form textarea:focus {
  outline: 3px solid rgba(34, 166, 106, 0.18);
  border-color: var(--green-600);
}

.tracking-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.tracking-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.tracking-layout h2 {
  color: var(--white);
}

.tracking-layout p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.tracking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.tracking-form label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-weight: 750;
}

.tracking-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--gray-950);
  background: var(--white);
  font: inherit;
}

.tracking-form input:focus {
  outline: 3px solid rgba(141, 240, 189, 0.24);
  border-color: #8df0bd;
}

.budget-list-section {
  background: var(--white);
}

.budget-list-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.budget-list-layout p {
  color: var(--gray-700);
  font-size: 1.05rem;
}

.budget-list-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--gray-100);
  box-shadow: var(--shadow);
}

.budget-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.budget-options label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  color: var(--blue-900);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.budget-options label:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 166, 106, 0.55);
  box-shadow: 0 14px 28px rgba(7, 55, 95, 0.1);
}

.budget-options input {
  width: 18px;
  height: 18px;
  accent-color: var(--green-600);
}

.budget-field {
  display: grid;
  gap: 7px;
  color: var(--blue-900);
  font-weight: 750;
}

.budget-field input,
.budget-field textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--gray-950);
  background: var(--white);
  font: inherit;
}

.budget-field input:focus,
.budget-field textarea:focus {
  outline: 3px solid rgba(34, 166, 106, 0.18);
  border-color: var(--green-600);
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.75);
  background: #061f36;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.7fr;
  gap: 28px;
}

.site-footer strong,
.site-footer h3 {
  color: var(--white);
}

.footer-logo {
  width: min(190px, 100%);
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 8px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.site-footer h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-600);
  box-shadow: 0 14px 36px rgba(18, 132, 81, 0.34);
  font-weight: 850;
}

.page-hero {
  padding: 86px 0 72px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 55, 95, 0.96), rgba(15, 95, 156, 0.88)),
    url("assets/hero-higinova-optimized.jpg") center / cover;
}

.page-hero .container {
  width: min(960px, calc(100% - 40px));
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.breadcrumb:hover {
  color: var(--white);
}

.page-hero h1 {
  width: min(860px, 100%);
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.page-hero p {
  width: min(760px, 100%);
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

.seo-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.seo-copy p,
.seo-copy li {
  color: var(--gray-700);
  font-size: 1.04rem;
}

.seo-copy h2,
.seo-copy h3 {
  margin-top: 28px;
}

.seo-copy ul {
  padding-left: 22px;
}

.seo-panel {
  position: sticky;
  top: 96px;
  padding: 26px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--gray-100);
}

.seo-panel a {
  width: 100%;
  margin-top: 16px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0 20px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
  }

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

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

  .stats-grid,
  .product-grid,
  .service-grid,
  .footer-grid,
  .seo-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column,
  .b2b-layout,
  .contact-grid,
  .specialist-layout,
  .tracking-layout,
  .budget-list-layout,
  .seo-content {
    grid-template-columns: 1fr;
  }

  .product-modal__dialog {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .product-modal__image {
    min-height: 300px;
    max-height: 42vh;
  }

  .seo-panel {
    position: static;
  }
}

@media (max-width: 700px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 760px;
  }

  .delivery-video-card {
    min-height: 760px;
  }

  .delivery-video-content {
    width: min(100% - 28px, 780px);
    margin: 0 auto;
  }

  .delivery-badge {
    left: 14px;
    right: 14px;
    bottom: 18px;
    width: auto;
  }

  .delivery-floating-card {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 55, 95, 0.94), rgba(7, 55, 95, 0.78));
  }

  .section {
    padding: 64px 0;
  }

  .stats-grid,
  .product-grid,
  .service-grid,
  .city-grid,
  .segment-list,
  .budget-options,
  .footer-grid,
  .seo-link-grid {
    grid-template-columns: 1fr;
  }

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

  .btn {
    width: 100%;
  }

  .brand small {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 178px;
    height: 52px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .product-modal {
    padding: 14px;
  }

  .product-modal__content {
    padding: 26px;
  }
}
