/* General reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #cc0000;
  --red-dark: #a00000;
  --red-light: #ff1a1a;
  --white: #ffffff;
  --off-white: #f9f9f9;
  --surface: #ffffff;
  --surface-soft: #fbfcfe;
  --light-gray: #f2f2f2;
  --gray: #6b7280;
  --dark: #1a1a1a;
  --border: #e5e7eb;
  --focus-ring: 2px solid var(--red);
  --focus-offset: 2px;
  --section-space: clamp(56px, 7vw, 88px);
  --section-space-tight: clamp(42px, 5vw, 64px);
  --heading-xl: clamp(2.1rem, 4.2vw, 3.2rem);
  --heading-lg: clamp(1.65rem, 3.1vw, 2.35rem);
  --text-md: clamp(0.95rem, 1.1vw, 1.02rem);
  --elev-card: 0 12px 28px rgba(15, 23, 42, 0.07);
  --elev-card-hover: 0 18px 36px rgba(15, 23, 42, 0.1);
  --radius-card: 18px;
  --border-soft: rgba(15, 23, 42, 0.08);
  --border-mid: rgba(15, 23, 42, 0.14);
  --motion-fast: 180ms;
  --motion-base: 240ms;
  --motion-slow: 320ms;
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 1025px) {
  body.nav-open {
    overflow: auto;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10001;
  padding: 12px 20px;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  outline: none;
}

.skip-link:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

footer a:focus-visible,
.footer-bottom a:focus-visible {
  outline-color: #ffffff;
  outline-offset: 3px;
}

/* Shared Layout */
section {
  padding: var(--section-space) 0;
  scroll-margin-top: 92px;
}

@supports (content-visibility: auto) {
  .features-banner,
  .whats-new-home,
  .brands-section,
  #products,
  .about,
  .about-page-section,
  .service-process-section,
  .contact-overview,
  .contact-grid,
  .legal-page.container {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
  }
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  display: grid;
  gap: 6px;
  margin-bottom: clamp(34px, 4.8vw, 56px);
}

.section-header.center {
  max-width: 760px;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header.center .section-tag {
  justify-self: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* TOPBAR */
.topbar {
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  padding: 7px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
  margin-left: 14px;
}

.topbar a:hover {
  text-decoration: underline;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* NAVBAR */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 4px;
  border-radius: 8px;
}

.nav-logo img {
  height: 60px;
  width: auto;
  max-width: 290px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background-color var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard);
}

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

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  border-radius: 6px;
  padding: 9px 20px !important;
  font-weight: 600 !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
}

.nav-cta:focus-visible {
  outline-color: #ffffff;
  outline-offset: 3px;
}

.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
}

.nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: #fff8f8;
  color: var(--red);
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background-color var(--motion-fast) var(--ease-standard), border-color var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard), transform var(--motion-fast) var(--ease-standard);
}

.nav-social a:hover,
.nav-social a:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--motion-base) var(--ease-standard), opacity var(--motion-base) var(--ease-standard);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hamburger:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 3px;
  border-radius: 6px;
}

/* HERO */
.hero {
  background:
    /* Dark vignette (edges darker) */
    radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%),

    /* Top-to-bottom readability shadow */
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.7) 0%,
      rgba(0,0,0,0.4) 40%,
      rgba(0,0,0,0.7) 100%
    ),

    /* Your image */
    url('../images/warehouse.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: var(--white);
  padding: 150px 0 130px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(204,0,0,0.3);
  border: 1px solid rgba(204,0,0,0.6);
  color: #ff6666;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: var(--heading-xl);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--red-light);
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color var(--motion-fast) var(--ease-standard), transform var(--motion-fast) var(--ease-standard), box-shadow var(--motion-fast) var(--ease-standard);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(204, 0, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color var(--motion-fast) var(--ease-standard), border-color var(--motion-fast) var(--ease-standard), transform var(--motion-fast) var(--ease-standard);
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.hero .btn-outline:active {
  transform: translateY(0);
}

.hero .btn-outline:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.stat-card .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red-light);
}

.hero-stat-icon {
  font-size: 1.5rem;
}

.stat-card .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stats .stat-card--span-2 {
  grid-column: span 2;
}

/* FEATURES BANNER */
.features-banner {
  position: relative;
  overflow: hidden;
  padding: 28px 20px;
  background: linear-gradient(135deg, #8f1111 0%, #c81d25 55%, #ef4444 100%);
}

.features-banner .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 24px;
}

.features-banner::before,
.features-banner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.features-banner::before {
  top: -90px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
}

.features-banner::after {
  bottom: -100px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.06);
}

.features-banner .container > * {
  position: relative;
  z-index: 1;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(104, 10, 10, 0.28);
  transition: transform var(--motion-base) var(--ease-standard), background-color var(--motion-base) var(--ease-standard), border-color var(--motion-base) var(--ease-standard), box-shadow var(--motion-base) var(--ease-standard);
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
}

.feature-card:active {
  transform: translateY(-1px);
}

@media (hover: none) {
  .feature-card:active {
    transform: scale(0.99);
    transition-duration: 0.1s;
  }
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  font-size: 1.25rem;
}

.feature-card__content h3 {
  margin: 0 0 6px;
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.feature-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.feature-card__eyebrow {
  margin-bottom: 8px !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* WHAT'S NEW */
.whats-new-home {
  background:
    radial-gradient(circle at top right, rgba(204, 0, 0, 0.06), transparent 28%),
    linear-gradient(180deg, #fffdfd 0%, #f7f8fb 100%);
  min-height: 320px;
}

.whats-new-home__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 28px;
}

.whats-new-home .section-tag {
  margin-bottom: 10px;
  padding: 5px 13px;
  letter-spacing: 0.16em;
}

.whats-new-home__controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.whats-new-home__layout {
  display: grid;
  grid-template-columns: minmax(460px, 1.48fr) minmax(220px, 0.52fr);
  grid-template-areas: "news slider";
  gap: 24px;
  align-items: start;
}

.whats-new-home--news-only .whats-new-home__layout {
  grid-template-columns: 1fr;
  grid-template-areas: "news";
}

.whats-new-home--news-only .whats-new-home__controls,
.whats-new-home--news-only .whats-new-slider {
  display: none;
}

.whats-new-home--news-only .whats-new-home__news {
  grid-template-columns: minmax(0, 1.42fr) minmax(250px, 0.58fr);
}

.whats-new-home__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: #ffffff;
  color: var(--dark);
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: transform var(--motion-base) var(--ease-standard), border-color var(--motion-base) var(--ease-standard), color var(--motion-base) var(--ease-standard), box-shadow var(--motion-base) var(--ease-standard);
}

.whats-new-home__arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(204, 0, 0, 0.16);
  color: var(--red);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.whats-new-home__arrow:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.whats-new-slider {
  display: grid;
  grid-area: slider;
  gap: 12px;
}

.whats-new-slider__viewport {
  overflow: hidden;
  border-radius: 18px;
}

.whats-new-slider__track {
  display: flex;
  transition: transform var(--motion-slow) var(--ease-standard);
  will-change: transform;
}

.whats-new-slide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  flex: 0 0 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--elev-card);
}

.whats-new-slide__media {
  position: relative;
  min-height: 138px;
  background: linear-gradient(135deg, #f5f6fa 0%, #eceff5 100%);
}

.whats-new-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.06) 0%, rgba(17, 24, 39, 0.18) 100%);
}

.whats-new-slide__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.whats-new-slide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 16px 16px 15px;
  background:
    radial-gradient(circle at top right, rgba(204, 0, 0, 0.06), transparent 18%),
    linear-gradient(180deg, #fffefe 0%, #ffffff 100%);
}

.whats-new-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #fff0f0;
  box-shadow: inset 0 0 0 1px rgba(204, 0, 0, 0.08);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.whats-new-slide__category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: #f8fafc;
  color: #344054;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whats-new-slide h3 {
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.whats-new-slide p {
  color: var(--gray);
  font-size: 0.72rem;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.whats-new-slide__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  color: var(--dark);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
}

.whats-new-slide__link i {
  font-size: 0.82rem;
  transition: transform var(--motion-base) var(--ease-standard);
}

.whats-new-slide__link:hover i {
  transform: translateX(3px);
}

.whats-new-home__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.whats-new-home__count {
  color: #6a7280;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.whats-new-home__dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.whats-new-home__dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.16);
  cursor: pointer;
  transition: width var(--motion-base) var(--ease-standard), background-color var(--motion-base) var(--ease-standard);
}

.whats-new-home__dot.is-active {
  width: 30px;
  background: var(--red);
}

.whats-new-home__news {
  grid-area: news;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(240px, 0.72fr);
  gap: 16px;
  min-width: 0;
  align-items: stretch;
}

.whats-new-home__news-featured {
  display: grid;
  grid-template-columns: minmax(180px, 0.92fr) minmax(0, 1fr);
  min-height: 360px;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
  box-shadow: var(--elev-card);
}

.whats-new-home__news-media {
  position: relative;
  min-height: 100%;
  background: #eef2f7;
}

.whats-new-home__news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.whats-new-home__news-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 34px;
  min-width: 0;
}

.whats-new-home__aside-kicker,
.whats-new-home__news-mini-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0f0;
  box-shadow: inset 0 0 0 1px rgba(204, 0, 0, 0.08);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.whats-new-home__aside-kicker {
  margin-bottom: 18px;
}

.whats-new-home__news-content h3 {
  margin-bottom: 12px;
  font-size: 1.72rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.whats-new-home__news-content p {
  color: var(--gray);
  font-size: 1.01rem;
  line-height: 1.8;
}

.whats-new-home__read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color var(--motion-base) var(--ease-standard);
}

.whats-new-home__read-more:hover {
  color: var(--red);
}

.whats-new-home__read-more::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.84rem;
  transition: transform var(--motion-base) var(--ease-standard);
}

.whats-new-home__read-more:hover::after {
  transform: translateX(3px);
}

.whats-new-home__read-more--mini {
  margin-top: auto;
  font-size: 0.74rem;
}

.whats-new-home__news-stack {
  display: grid;
  gap: 16px;
}

.whats-new-home__news-mini {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 172px;
  padding: 24px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.05);
}

.whats-new-home__news-mini-kicker {
  margin-bottom: 14px;
}

.whats-new-home__news-mini h4 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.whats-new-home__news-mini p {
  color: var(--gray);
  font-size: 0.89rem;
  line-height: 1.62;
  flex: 1;
}

.home-news-modal[hidden] {
  display: none;
}

.home-news-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.home-news-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.home-news-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  width: min(1040px, 100%);
  height: min(88vh, 880px);
  max-height: min(88vh, 880px);
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.24);
}

.home-news-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  transition: transform var(--motion-fast) var(--ease-standard), background-color var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard);
}

.home-news-modal__close:hover {
  transform: translateY(-1px);
  background: #ffffff;
  color: var(--red);
}

.home-news-modal__media {
  min-height: 0;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #eef2f7;
  overflow: hidden;
}

.home-news-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  flex: 1 1 auto;
}

.home-news-modal__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.22) 100%);
}

.home-news-modal__content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 40px 36px 34px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.home-news-modal__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, 320px);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0f0;
  box-shadow: inset 0 0 0 1px rgba(204, 0, 0, 0.08);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
}

.home-news-modal__content h3 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
  color: #0f172a;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-news-modal__summary {
  color: #475467;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 58ch;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-news-modal__summary[hidden],
.home-news-modal__divider[hidden] {
  display: none;
}

.home-news-modal__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.04) 100%);
}

.home-news-modal__article {
  display: grid;
  gap: 14px;
  color: #344054;
  font-size: 0.98rem;
  line-height: 1.82;
  min-height: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-news-modal__article p {
  max-width: 62ch;
}

.home-news-modal__summary[hidden] + .home-news-modal__divider[hidden] + .home-news-modal__article {
  margin-top: 2px;
}

.whats-new-slide--loading .whats-new-slide__content {
  background: linear-gradient(180deg, #fcfcfd 0%, #ffffff 100%);
}

.skeleton-block {
  position: relative;
  overflow: hidden;
}

.skeleton-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e9ecf2 0%, #f5f6fa 45%, #e9ecf2 100%);
  background-size: 200% 100%;
  animation: skeletonPulse 1.6s linear infinite;
}

@keyframes skeletonPulse {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}


.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: fit-content;
  background: #fff0f0;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(204, 0, 0, 0.08);
  margin-bottom: 12px;
}

.section-title {
  font-size: var(--heading-lg);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-title span {
  color: var(--red);
}

.section-subtitle {
  color: var(--gray);
  font-size: var(--text-md);
  line-height: 1.7;
  max-width: 600px;
}

/* WHY CHOOSE HOME */
.why-choose-home {
  padding: 54px 0 48px;
  background:
    radial-gradient(circle at top right, rgba(204, 0, 0, 0.1), transparent 28%),
    linear-gradient(145deg, #171a20 0%, #1d2128 50%, #12151b 100%);
}

.why-choose-home__panel {
  padding: 0;
}

.why-choose-home__intro .section-tag {
  background: rgba(255, 240, 240, 0.08);
  color: #fff2f2;
  box-shadow: inset 0 0 0 1px rgba(204, 0, 0, 0.16);
}

.why-choose-home__intro .section-title,
.why-choose-home__intro .section-title span {
  color: #ffffff;
}

.why-choose-home__intro .section-subtitle {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.why-choose-home__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 22px;
}

.why-metric {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.why-metric strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.why-metric span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.why-card {
  position: relative;
  min-height: 100%;
  padding: 10px 22px 4px 24px;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.why-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 28px;
  padding: 0 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(204, 0, 0, 0.12);
  color: #ffe9e9;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.why-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.why-card p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* HOME CTA */
.home-cta {
  padding: 0 0 56px;
  background: linear-gradient(180deg, #12151b 0%, #ffffff 100%);
}

.home-cta__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 36px;
  padding: 28px 30px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--elev-card);
}

.home-cta__content {
  max-width: 720px;
}

.home-cta__content .section-subtitle {
  max-width: 640px;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--motion-base) var(--ease-standard), background-color var(--motion-base) var(--ease-standard), border-color var(--motion-base) var(--ease-standard), color var(--motion-base) var(--ease-standard), box-shadow var(--motion-base) var(--ease-standard);
}

.home-cta__button:hover {
  transform: translateY(-2px);
}

.home-cta__button:active {
  transform: translateY(0);
}

.home-cta__button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.home-cta__button--primary:focus-visible {
  outline-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.35);
}

.home-cta__button--primary {
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(204, 0, 0, 0.16);
}

.home-cta__button--primary:hover {
  background: #b00000;
  color: #ffffff;
}

.home-cta__button--secondary {
  background: #ffffff;
  color: #111827;
  border-color: var(--border-mid);
}

.home-cta__button--secondary:hover {
  background: #f8fafc;
  color: #111827;
  border-color: rgba(15, 23, 42, 0.18);
}

/* ABOUT */
.about {
  background:
    radial-gradient(circle at top left, rgba(204, 0, 0, 0.06), transparent 32%),
    linear-gradient(180deg, #fffdfd 0%, #f8f8f8 100%);
}

#products,
.service-section,
.contact-section {
  background:
    radial-gradient(circle at top left, rgba(204, 0, 0, 0.04), transparent 24%),
    linear-gradient(180deg, #fbfcfe 0%, #f7f8fb 100%);
}

.contact-section {
  padding-top: clamp(72px, 8vw, 108px);
  padding-bottom: clamp(84px, 8vw, 118px);
}

.contact-section .section-header.center {
  max-width: 820px;
  margin-bottom: clamp(42px, 5vw, 60px);
}

:is(
  .brand-logo-card,
  .product-card,
  .contact-overview-card,
  .office-card,
  .service-process-card,
  .overview-card,
  .mv-panel,
  .summary-card,
  .partner-logo,
  .history-step__content,
  .home-cta__container,
  .whats-new-slide,
  .whats-new-home__news-featured,
  .whats-new-home__news-mini
) {
  transition:
    transform var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard),
    background-color var(--motion-base) var(--ease-standard);
}

:is(
  .brand-logo-card,
  .contact-overview-card,
  .office-card,
  .service-process-card,
  .overview-card,
  .mv-panel,
  .summary-card,
  .partner-logo,
  .history-step__content,
  .whats-new-slide,
  .whats-new-home__news-featured,
  .whats-new-home__news-mini
):hover {
  box-shadow: var(--elev-card-hover);
  border-color: rgba(204, 0, 0, 0.12);
}

.legal-page.container {
  max-width: 840px;
  padding-top: 48px;
  padding-bottom: 80px;
}

.legal-page h1 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.legal-page .legal-updated {
  margin-bottom: 28px;
  color: var(--gray);
  font-size: 0.92rem;
}

.legal-page h2 {
  margin: 30px 0 10px;
  color: var(--dark);
  font-size: 1.12rem;
  line-height: 1.3;
}

.legal-page p,
.legal-page li {
  margin-bottom: 12px;
  color: var(--gray);
  font-size: 0.96rem;
  line-height: 1.78;
}

.legal-page ul {
  margin-bottom: 16px;
  padding-left: 1.25rem;
}

.legal-page a {
  color: var(--red);
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

.about .container {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(0, 0.9fr);
  gap: 70px;
  align-items: stretch;
}

.about-visual {
  padding: 0;
}

.about-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 240px 160px 220px;
  gap: 18px;
  padding: 16px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 251, 0.92) 100%);
  box-shadow: 0 28px 68px rgba(17, 24, 39, 0.1);
}

.about-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--elev-card);
  transition: transform var(--motion-slow) var(--ease-standard), box-shadow var(--motion-slow) var(--ease-standard);
}

.about-photo-card--primary {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.about-photo-card--support {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
}

.about-photo-card--industries {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.about-photo-card--delivery {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

.about-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(15, 23, 42, 0.08) 100%);
  z-index: 1;
}

.about-photo-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform var(--motion-slow) var(--ease-standard);
}

.about-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--elev-card-hover);
}

.about-photo-card:hover .about-photo-card__image {
  transform: scale(1.05);
}

.about-photo-card--primary .about-photo-card__image {
  object-position: center 42%;
}

.about-photo-card--support .about-photo-card__image {
  object-position: center;
}

.about-photo-card--industries .about-photo-card__image {
  object-position: center 35%;
}

.about-photo-card--delivery .about-photo-card__image {
  object-position: center 45%;
}

.about-content {
  align-self: center;
}

.about-lead,
.about-copy {
  max-width: 640px;
  color: var(--gray);
  line-height: 1.75;
}

.about-lead {
  margin-bottom: 14px;
  font-size: 1rem;
}

.about-copy {
  margin-bottom: 22px;
  font-size: 0.94rem;
}

.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.about-pillar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid #f0d6d7;
  border-radius: 999px;
  background: #ffffff;
  color: #5b2224;
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(95, 29, 29, 0.05);
}

.about-pillar i {
  color: var(--red);
}

.about-content .mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mv-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(204, 0, 0, 0.08);
  border-radius: var(--radius-card);
  padding: 24px 22px;
  box-shadow: var(--elev-card);
}

.mv-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.mv-card p {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.7;
}

/* PRODUCTS */
.products-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.product-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background: white;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 29px 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform var(--motion-base) var(--ease-standard), box-shadow var(--motion-base) var(--ease-standard), border-color var(--motion-base) var(--ease-standard), background-color var(--motion-base) var(--ease-standard);
  cursor: pointer;
  box-shadow: var(--elev-card);
}

.product-card:hover {
  border-color: var(--red);
  box-shadow: var(--elev-card-hover);
  transform: translateY(-4px);
}

.product-card:focus-visible {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.25);
  transform: translateY(-2px);
}

.product-card__media {
  width: 100%;
  height: 162px;
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
  margin: 0 auto 15px;
  border: 1px solid var(--border-soft);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-card__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto 11px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f9fafb 0%, #f2f4f7 100%);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.1);
  color: #344054;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-shadow: none;
}

.product-card .icon {
  width: 64px;
  height: 64px;
  background: #fff0f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  color: var(--red);
  transition: background-color var(--motion-base) var(--ease-standard), color var(--motion-base) var(--ease-standard), transform var(--motion-base) var(--ease-standard);
}

.product-card:hover .icon {
  background: var(--red);
  color: white;
}

.product-card h3 {
  min-height: 2.7em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 11px;
  line-height: 1.26;
  letter-spacing: -0.01em;
  color: #101828;
  text-wrap: balance;
  text-shadow: none;
}

.product-card p {
  width: 100%;
  max-width: 22ch;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}

.products-section-action {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.products-section-action__button {
  position: relative;
  z-index: 5;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 11px 11px 18px;
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  background: #ffffff;
  color: #1f2937;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform var(--motion-base) var(--ease-standard), box-shadow var(--motion-base) var(--ease-standard), border-color var(--motion-base) var(--ease-standard), background-color var(--motion-base) var(--ease-standard);
}

.products-section-action__button:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.16);
  background: #fbfcfd;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.products-section-action__button:focus-visible {
  outline: none;
  border-color: rgba(204, 0, 0, 0.28);
  box-shadow: 0 0 0 4px rgba(204, 0, 0, 0.08), 0 14px 30px rgba(15, 23, 42, 0.08);
}

.products-section-action__label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.products-section-action__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f7fa;
  color: var(--red);
  font-size: 0.9rem;
  border: 1px solid rgba(204, 0, 0, 0.1);
  transition: background-color var(--motion-base) var(--ease-standard), color var(--motion-base) var(--ease-standard), border-color var(--motion-base) var(--ease-standard), transform var(--motion-base) var(--ease-standard);
}

.products-section-action__button:hover .products-section-action__icon,
.products-section-action__button:focus-visible .products-section-action__icon {
  background: #fff0f0;
  border-color: rgba(204, 0, 0, 0.16);
  transform: translateX(2px);
}

/* SERVICES */
.service-section {
  background: var(--light-gray);
  padding-top: clamp(72px, 8vw, 108px);
  padding-bottom: clamp(84px, 8vw, 118px);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-list {
  list-style: none;
}

.service-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list .s-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.service-list .s-text h4 {
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-list .s-text p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.55;
  max-width: 58ch;
}

.service-highlight {
  background: var(--dark);
  border-radius: 16px;
  padding: 40px 36px;
  color: white;
}

.service-highlight h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-highlight p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 26px;
}

.highlight-items {
  list-style: none;
}

.highlight-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
}

.highlight-items li:last-child {
  border-bottom: none;
}

.highlight-items li i {
  color: var(--red-light);
  font-size: 0.75rem;
}

.service-process-section {
  background: #ffffff;
}

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

.service-process-card {
  min-height: 100%;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: var(--elev-card);
  display: flex;
  flex-direction: column;
}

.service-process-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #fff0f0;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-process-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.service-process-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* CONTACT */
.contact-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch;
}

.contact-overview-card {
  padding: 26px 24px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: var(--elev-card);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-overview-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: #fff0f0;
  color: var(--red);
  font-size: 1.05rem;
}

.contact-overview-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 800;
}

.contact-overview-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
}

.contact-directory-hint {
  margin: 0 auto 48px;
  max-width: 720px;
  padding: 0 8px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  text-align: center;
}

.contact-directory-hint a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

.contact-directory-hint a:hover {
  text-decoration: underline;
}

.contact-directory-hint a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 68px;
  align-items: start;
}

.contact-offices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact-directory {
  display: grid;
  gap: 20px;
}

.contact-directory__header {
  padding: 0 2px;
}

.contact-directory__header h3 {
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-directory__header p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.office-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 20px 22px;
  border-left: 4px solid var(--red);
  box-shadow: var(--elev-card);
  min-height: 100%;
}

.office-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.office-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

.office-card__details {
  display: grid;
  gap: 6px;
  font-style: normal;
}

.office-card__details span {
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.55;
}

.office-card__entity {
  color: var(--dark) !important;
  font-size: 0.84rem !important;
  font-weight: 600;
  line-height: 1.45 !important;
}

.office-card__meta {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  margin-top: 2px;
}

.office-card__meta strong {
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.office-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  min-width: 0;
}

.office-card__links > * {
  min-width: 0;
}

.office-card a {
  color: var(--red);
  text-decoration: none;
}

.office-card a:hover,
.office-card a:focus-visible {
  text-decoration: underline;
}

.contact-form-box {
  background: white;
  border-radius: var(--radius-card);
  padding: 40px 36px;
  box-shadow: var(--elev-card);
}

.contact-form-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-form-box p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--dark);
  background: white;
  transition: border-color var(--motion-fast) var(--ease-standard), box-shadow var(--motion-fast) var(--ease-standard);
  outline: none;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.22);
}

.form-group textarea {
  height: 110px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background: var(--red);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--motion-fast) var(--ease-standard), transform var(--motion-fast) var(--ease-standard), box-shadow var(--motion-fast) var(--ease-standard);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:hover {
  background: var(--red-dark);
}

.submit-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(204, 0, 0, 0.4);
}

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

.form-status {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status.is-loading {
  color: #5f6673;
}

.form-status.is-success {
  color: #1d7a46;
}

.form-status.is-error {
  color: #bd292e;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 74px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 46px;
  margin-bottom: 48px;
  align-items: start;
}

.footer-brand .brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.footer-brand .brand-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.65;
  max-width: 38ch;
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: rgba(255,255,255,0.76);
  text-decoration: none;
  transition: background-color var(--motion-fast) var(--ease-standard), border-color var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard), transform var(--motion-fast) var(--ease-standard);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
  color: white;
  transform: translateY(-1px);
}

.home-ad-modal[hidden] {
  display: none;
}

.home-ad-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.home-ad-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.58);
  backdrop-filter: blur(8px);
}

.home-ad-modal__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: stretch;
    width: min(880px, 100%);
    min-height: clamp(360px, 72vh, 440px);
    max-height: min(86vh, 760px);
    border-radius: 28px;
    overflow: hidden;
    background: #111827;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.26);
}

.home-ad-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
    cursor: pointer;
    transition: background-color var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard), transform var(--motion-fast) var(--ease-standard);
  }

.home-ad-modal__close:hover {
    background: #ffffff;
    color: var(--red);
    transform: translateY(-1px);
  }

.home-ad-modal__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f7f7f8 0%, #ededf0 100%);
}

.home-ad-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-ad-modal__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(17, 24, 39, 0.84) 0%, rgba(17, 24, 39, 0.66) 40%, rgba(17, 24, 39, 0.42) 100%),
      linear-gradient(180deg, rgba(17, 24, 39, 0.16) 0%, rgba(17, 24, 39, 0.52) 100%);
  }

.home-ad-modal__content {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 14px;
    min-height: clamp(360px, 72vh, 440px);
    width: min(100%, 560px);
    padding: 46px 40px 38px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

.home-ad-modal__content::before {
    content: "";
    position: absolute;
    inset: 28px auto 28px 24px;
    width: min(100%, 470px);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.34) 0%, rgba(15, 23, 42, 0.18) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    pointer-events: none;
  }

.home-ad-modal__content > * {
    position: relative;
    z-index: 1;
  }

.home-ad-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  width: fit-content;
  max-width: min(100%, 320px);
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff1f1;
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    box-shadow: inset 0 0 0 1px rgba(204, 0, 0, 0.08);
  }

.home-ad-modal__content h3 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.08rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #ffffff;
    max-width: 12ch;
    text-wrap: balance;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

.home-ad-modal__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.96rem;
    line-height: 1.72;
    max-width: 34ch;
    overflow-wrap: anywhere;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

.home-ad-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(204, 0, 0, 0.16);
  border-radius: 14px;
  background: var(--red);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--motion-fast) var(--ease-standard), transform var(--motion-fast) var(--ease-standard), box-shadow var(--motion-fast) var(--ease-standard);
  box-shadow: 0 16px 32px rgba(204, 0, 0, 0.16);
}

.home-ad-modal__button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col ul li {
  margin-bottom: 0;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--motion-fast) var(--ease-standard);
}

.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  line-height: 1.6;
  gap: 16px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-left: 16px;
}

.footer-bottom a:hover {
  color: white;
}

/* DIVIDER */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider span {
  color: var(--red);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
      nav .container { padding: 10px 24px; flex-direction: row; align-items: center; flex-wrap: wrap; }
      .hamburger { display: flex; }
      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        padding: 14px 0 18px;
        gap: 10px;
        margin-top: 10px;
        border-top: 1px solid var(--border-soft);
      }
      .nav-links.open { display: flex; }
      .nav-links a { width: 100%; padding: 10px 14px; border-radius: 8px; font-size: 0.82rem; }
      .nav-cta {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        margin-top: 6px;
        box-sizing: border-box;
      }
      .nav-social {
        width: 100%;
        justify-content: center;
        margin: 4px 0 0;
      }
      .nav-logo { flex: 1; min-width: 0; }
      .nav-logo img { height: 60px; max-width: 250px; }
      .whats-new-home__layout {
        grid-template-columns: minmax(340px, 1.34fr) minmax(210px, 0.5fr);
        grid-template-areas: "news slider";
        gap: 22px;
      }
      .whats-new-home--news-only .whats-new-home__news {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .whats-new-home__news,
      .whats-new-slider { width: 100%; }
      .whats-new-slide__media { min-height: 128px; }
      .whats-new-slide__content { padding: 15px 15px 14px; }
      .whats-new-slide h3 { font-size: 0.84rem; }
      .whats-new-slide p { font-size: 0.7rem; }
      .whats-new-slide__link { font-size: 0.72rem; }
      .whats-new-home__news {
        grid-template-columns: minmax(0, 1.18fr) minmax(190px, 0.62fr);
      }
      .whats-new-home--news-only .whats-new-home__news-featured {
        min-height: 0;
      }
      .whats-new-home--news-only .whats-new-home__news-media {
        min-height: 220px;
      }
      .whats-new-home--news-only .whats-new-home__news-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }
      .whats-new-home__news-featured { min-height: 308px; }
      .whats-new-home__news-content { padding: 30px 26px; }
      .whats-new-home__news-content h3 { font-size: 1.46rem; }
      .whats-new-home__news-content p { font-size: 0.95rem; }
      .whats-new-home__read-more { font-size: 0.78rem; }
      .whats-new-home__news-mini { min-height: 144px; padding: 20px 18px; }
      .whats-new-home__news-mini h4 { font-size: 0.94rem; }
      .whats-new-home__news-mini p { font-size: 0.8rem; }
      .why-choose-home { padding: 46px 0 42px; }
      .features-banner { padding: 24px 16px; }
      .features-banner .container { gap: 14px; padding: 0 12px; }
      .feature-card { padding: 18px 16px; }
      .feature-card__icon { width: 50px; height: 50px; border-radius: 14px; font-size: 1.1rem; }
      .feature-card__content h3 { font-size: 0.95rem; }
      .feature-card__content p { font-size: 0.82rem; }
      .feature-card__eyebrow { font-size: 0.68rem !important; }
      .hero .container { grid-template-columns: 1fr; gap: 40px; }
      .hero h1 { font-size: 2.3rem; }
      .hero-stats { grid-template-columns: repeat(3, 1fr); }
      .hero-stats .stat-card--span-2 { grid-column: span 1; }
      .why-choose-home__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .home-cta__container { padding: 24px 24px; }
      .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
      .product-card { padding: 28px 18px; }
      .product-card__media { height: 151px; margin-bottom: 14px; }
      .product-card__category { font-size: 0.7rem; margin-bottom: 11px; }
      .product-card h3 { font-size: 1.03rem; margin-bottom: 11px; }
      .product-card p { font-size: 0.92rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 26px; }
      .footer-brand { grid-column: span 2; }
      .footer-col { min-width: 0; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; align-items: center; }
      .footer-bottom div { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
      .footer-bottom a { margin-left: 0; }
      .about .container { grid-template-columns: 1fr; gap: 40px; }
      .about-visual-grid { grid-template-rows: 220px 140px 190px; }
      .contact-section { padding-top: 68px; padding-bottom: 96px; }
      .contact-overview { grid-template-columns: 1fr; margin-bottom: 34px; }
      .contact-directory-hint { margin-bottom: 34px; }
      .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .services-layout { grid-template-columns: 1fr; gap: 40px; }
      .service-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .home-news-modal__dialog { width: min(920px, 100%); height: min(88vh, 720px); max-height: min(88vh, 720px); }
      .legal-page.container { padding-top: 42px; padding-bottom: 68px; }
}

@media (max-width: 768px) {
      .topbar {display: flex; width: 100%; font-size: 0.8rem;}
      .topbar .container { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; width: 100%;}
      nav .container { padding: 10px 24px; }
      .nav-links a { font-size: 0.8rem; }
      .nav-cta {
        margin-top: 6px;
      }
      .nav-logo img { height: 56px; max-width: 235px; }
      .hero { padding: 60px 0 50px; }
      .hero h1 { font-size: 1.9rem; }
      .hero p { font-size: 0.93rem; }
      .hero-stats { grid-template-columns: repeat(2, 1fr); }
      .hero-stats .stat-card--span-2 { grid-column: span 2; }
      .why-choose-home { padding: 40px 0 36px; }
      .why-choose-home__metrics { grid-template-columns: 1fr; gap: 14px; margin: 24px 0 18px; }
      .why-choose-home__grid { grid-template-columns: 1fr; gap: 14px; }
      .home-cta { padding: 0 0 44px; }
      .home-cta__container { flex-direction: column; align-items: flex-start; padding: 24px 22px; }
      .whats-new-home__header { align-items: flex-start; flex-direction: column; }
      .whats-new-home__layout {
        grid-template-columns: 1fr;
        grid-template-areas:
          "news"
          "slider";
        gap: 16px;
      }
      .whats-new-home--news-only .whats-new-home__layout {
        grid-template-areas: "news";
        gap: 12px;
      }
      .whats-new-home__controls { align-self: flex-end; }
      .whats-new-home__news,
      .whats-new-slider { width: 100%; }
      .whats-new-slide { grid-template-columns: 1fr; }
      .whats-new-slide__media { min-height: 150px; }
      .whats-new-slide__content { padding: 16px 15px 15px; }
      .whats-new-slide h3 { font-size: 0.88rem; }
      .whats-new-slide p { font-size: 0.74rem; }
      .whats-new-slide__link { font-size: 0.74rem; }
      .whats-new-home__meta { flex-direction: column; align-items: flex-start; }
      .whats-new-home__dots { justify-content: flex-start; }
      .whats-new-home__news {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .whats-new-home__news-featured {
        grid-template-columns: 1fr;
        min-height: 0;
      }
      .whats-new-home__news-media {
        min-height: 230px;
      }
      .whats-new-home__news-content {
        padding: 26px 24px;
      }
      .whats-new-home__news-content h3 { font-size: 1.36rem; }
      .whats-new-home__news-content p { font-size: 0.93rem; }
      .whats-new-home__read-more { font-size: 0.76rem; }
      .whats-new-home__news-stack {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }
      .whats-new-home--news-only .whats-new-home__news-stack {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .whats-new-home--news-only .whats-new-home__news-content {
        padding: 24px 20px;
      }
      .whats-new-home--news-only .whats-new-home__news-content h3 {
        font-size: 1.24rem;
      }
      .whats-new-home--news-only .whats-new-home__news-content p {
        font-size: 0.88rem;
        line-height: 1.65;
      }
      .whats-new-home--news-only .whats-new-home__read-more {
        padding-top: 10px;
      }
      .whats-new-home__news-mini {
        min-height: 0;
        padding: 22px 18px;
      }
      .whats-new-home__news-mini h4 { font-size: 0.94rem; }
      .whats-new-home__news-mini p { font-size: 0.84rem; }
      .whats-new-slide__media { min-height: 136px; }
      .whats-new-slide__content { padding: 15px 14px 14px; }
      .whats-new-slide h3 { font-size: 0.84rem; }
      .whats-new-slide p { font-size: 0.72rem; }
      .features-banner { padding: 20px 10px; }
      .features-banner .container { grid-template-columns: 1fr; gap: 12px; padding: 0 4px; }
      .feature-card { flex-direction: row; align-items: flex-start; gap: 14px; padding: 16px 14px; text-align: left; border-radius: 16px; }
      .feature-card__icon { width: 44px; height: 44px; border-radius: 12px; font-size: 1rem; }
      .feature-card__content h3 { font-size: 0.88rem; }
      .feature-card__content p { font-size: 0.76rem; line-height: 1.5; }
      .feature-card__eyebrow { margin-bottom: 6px !important; font-size: 0.6rem !important; letter-spacing: 0.12em; }
      section { padding: var(--section-space-tight) 0; }
      .section-title { font-size: clamp(1.45rem, 6vw, 1.9rem); }
      .about .container { gap: 28px; }
      .about-visual { max-width: 620px; margin: 0 auto; }
      .about-visual-grid { grid-template-rows: 160px 100px 130px; gap: 10px; padding: 8px; border-radius: 20px; }
      .about-photo-card { border-radius: 18px; }
      .about-photo-card--primary .about-photo-card__image { object-position: center 38%; }
      .about-pillars { flex-direction: column; align-items: flex-start; }
      .about-pillar { width: 100%; border-radius: 16px; }
      .about-content .mission-vision { grid-template-columns: 1fr; }
      .service-process-grid { grid-template-columns: 1fr; gap: 16px; }
      .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
      .product-card { padding: 25px 17px; }
      .product-card__media { height: 137px; margin-bottom: 13px; }
      .product-card__category { font-size: 0.67rem; margin-bottom: 10px; }
      .product-card h3 { font-size: 0.99rem; margin-bottom: 10px; }
      .product-card p { font-size: 0.9rem; }
      .contact-section { padding-top: 60px; padding-bottom: 76px; }
      .contact-overview { gap: 14px; margin-bottom: 28px; }
      .contact-overview-card { padding: 22px 20px; }
      .contact-directory-hint { margin-bottom: 28px; }
      .contact-grid { grid-template-columns: 1fr; gap: 34px; }
      .contact-directory { gap: 16px; }
      .contact-directory__header { padding: 0; }
      .contact-form-box { padding: 26px 20px; }
      .contact-offices { grid-template-columns: 1fr; gap: 14px; }
      .office-card { padding: 18px 18px; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 22px; }
      .footer-brand { grid-column: span 2; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
      .home-ad-modal__dialog { width: min(560px, 100%); min-height: min(400px, calc(100vh - 32px)); max-height: calc(100vh - 32px); }
      .home-ad-modal__content {
        min-height: auto;
        width: 100%;
        padding: 28px 24px 24px;
        align-content: end;
      }
      .home-ad-modal__content::before {
        inset: 18px 18px 18px 18px;
        width: auto;
        border-radius: 22px;
      }
      .home-ad-modal__content h3 { font-size: 1.45rem; max-width: 18ch; }
      .home-ad-modal__content p { max-width: 33ch; }
      .home-news-modal__dialog {
        grid-template-columns: 1fr;
        width: min(620px, 100%);
        height: calc(100vh - 28px);
        max-height: calc(100vh - 28px);
      }
      .home-news-modal__media { min-height: 240px; }
      .home-news-modal__content { padding: 26px 22px 22px; }
      .home-news-modal__summary { font-size: 0.94rem; }
      .legal-page.container { padding-top: 36px; padding-bottom: 58px; }
      .legal-page p,
      .legal-page li { font-size: 0.92rem; }
}

@media (max-width: 440px) {
      .container { padding: 0 16px; }
      .topbar { font-size: 0.72rem; padding: 6px 0; }
      .topbar-left span { font-size: 0.72rem; }
      nav .container { padding: 10px 16px; }
      .nav-links a { font-size: 0.77rem; }
      .nav-logo img { height: 50px; max-width: 210px; }
      .hero { padding: 44px 0 40px; }
      .hero .container { gap: 30px; }
      .hero-badge { font-size: 0.68rem; padding: 5px 12px; }
      .hero h1 { font-size: 1.6rem; margin-bottom: 14px; }
      .hero p { font-size: 0.88rem; margin-bottom: 24px; }
      .hero-btns { flex-direction: column; gap: 10px; }
      .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 13px 20px; font-size: 0.88rem; }
      .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .hero-stats .stat-card--span-2 { grid-column: span 2; }
      .hero-stats .stat-card:nth-child(5) { grid-column: span 2; }
      .stat-card { padding: 16px 12px; }
      .stat-card .number { font-size: 1.6rem; }
      .stat-card .label { font-size: 0.7rem; }
      .whats-new-home__layout {
        grid-template-columns: 1fr;
        grid-template-areas:
          "news"
          "slider";
        gap: 16px;
      }
      .whats-new-home--news-only .whats-new-home__layout {
        grid-template-areas: "news";
      }
      .whats-new-home__controls { width: 100%; justify-content: flex-end; }
      .whats-new-slider { gap: 0; }
      .whats-new-home__meta { display: none; }
      .whats-new-home__arrow { width: 42px; height: 42px; border-radius: 12px; }
      .whats-new-slider__viewport { border-radius: 22px; }
      .whats-new-slide { border-radius: 22px; }
      .whats-new-slide__media { min-height: 124px; }
      .whats-new-slide__content { padding: 14px 13px 13px; }
      .whats-new-slide__eyebrow { font-size: 0.68rem; }
      .whats-new-slide__category { font-size: 0.66rem; margin-bottom: 12px; }
      .whats-new-slide h3 { font-size: 0.8rem; }
      .whats-new-slide p { font-size: 0.7rem; }
      .whats-new-slide__link { font-size: 0.74rem; padding-top: 14px; }
      .whats-new-home__news-featured {
        border-radius: 22px;
      }
      .whats-new-home__news-media { min-height: 188px; }
      .whats-new-home__news-content {
        padding: 22px 18px;
      }
      .whats-new-home__news-content h3 { font-size: 1.16rem; }
      .whats-new-home__news-content p { font-size: 0.86rem; }
      .whats-new-home__read-more { font-size: 0.74rem; }
      .whats-new-home__news-stack {
        grid-template-columns: 1fr;
      }
      .whats-new-home__news-mini {
        padding: 18px 16px;
        border-radius: 20px;
      }
      .whats-new-home__news-mini h4 { font-size: 0.92rem; }
      .whats-new-home__news-mini p { font-size: 0.8rem; }
      .features-banner { padding: 16px 8px; }
      .features-banner .container { gap: 8px; padding: 0; }
      .feature-card { padding: 14px 12px; gap: 10px; border-radius: 14px; }
      .feature-card__icon { width: 40px; height: 40px; border-radius: 10px; font-size: 0.92rem; }
      .feature-card__content h3 { font-size: 0.78rem; }
      .feature-card__content p { font-size: 0.68rem; }
      .feature-card__eyebrow { font-size: 0.54rem !important; }
      section { padding: clamp(38px, 10vw, 46px) 0; }
      .section-tag { font-size: 0.7rem; }
      .section-title { font-size: clamp(1.3rem, 6.4vw, 1.55rem); }
      .section-subtitle { font-size: 0.9rem; }
      .section-header { margin-bottom: 32px; }
      .why-choose-home { padding: 34px 0 30px; }
      .why-metric strong { font-size: 1.3rem; }
      .why-card { padding: 8px 0 0 18px; }
      .why-card h3 { font-size: 0.92rem; }
      .why-card p { font-size: 0.82rem; }
      .home-cta { padding: 0 0 34px; }
      .home-cta__container { padding: 22px 18px; border-radius: 20px; }
      .home-cta__actions { width: 100%; }
      .home-cta__button { width: 100%; }
      .about .container { gap: 22px; }
      .about-content { order: 1; }
      .about-visual { order: 2; max-width: 100%; }
      .about-visual-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 148px 124px;
        gap: 8px;
        padding: 6px;
        border-radius: 16px;
      }
      .about-photo-card,
      .about-photo-card--primary {
        min-height: 124px;
        margin-top: 0;
        border-radius: 14px;
      }
      .about-photo-card--primary {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        min-height: 100%;
      }
      .about-photo-card--support {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
      }
      .about-photo-card--industries {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
      }
      .about-photo-card--delivery {
        display: none;
      }
      .about-photo-card__image { transform: scale(1); }
      .about-lead { font-size: 0.88rem; }
      .about-copy { font-size: 0.82rem; }
      .about-pillar { padding: 10px 12px; font-size: 0.78rem; }
      .mv-card { padding: 18px 16px; border-radius: 14px; }
      .mv-card p { font-size: 0.8rem; }
      .products-grid { grid-template-columns: 1fr; gap: 14px; }
      .product-card { padding: 25px 20px; }
      .product-card__media { height: 174px; margin-bottom: 14px; }
      .product-card__category { font-size: 0.67rem; margin-bottom: 11px; }
      .product-card .icon { width: 54px; height: 54px; font-size: 1.3rem; }
      .product-card h3 { font-size: 1.03rem; }
      .product-card p { font-size: 0.92rem; }
      .service-list li { padding: 14px 0; gap: 12px; }
      .service-list .s-icon { width: 38px; height: 38px; font-size: 0.9rem; }
      .service-list .s-text h4 { font-size: 0.88rem; }
      .service-list .s-text p { font-size: 0.79rem; }
      .service-highlight { padding: 26px 22px; }
      .service-highlight h3 { font-size: 1.15rem; }
      .service-highlight p { font-size: 0.84rem; }
      .service-process-card { padding: 22px 18px; border-radius: 16px; }
      .service-process-card h3 { font-size: 0.9rem; }
      .service-process-card p { font-size: 0.82rem; }
      .highlight-items li { font-size: 0.82rem; padding: 8px 0; }
      .office-card { padding: 16px; }
      .contact-overview-card { padding: 18px 16px; border-radius: 14px; }
      .contact-overview-card__icon { width: 44px; height: 44px; margin-bottom: 14px; border-radius: 12px; font-size: 0.98rem; }
      .contact-overview-card h3 { font-size: 0.92rem; }
      .contact-overview-card p { font-size: 0.82rem; }
      .contact-directory__header h3 { font-size: 1rem; }
      .contact-directory__header p { font-size: 0.82rem; }
      .office-card h4 { font-size: 0.82rem; }
      .office-card__entity { font-size: 0.8rem !important; }
      .office-card__meta { grid-template-columns: 1fr; gap: 2px; }
      .office-card__links { gap: 4px 10px; }
      .office-card p { font-size: 0.79rem; }
      .office-card__meta { grid-template-columns: 1fr; gap: 2px; }
      .office-card__meta strong { font-size: 0.72rem; }
      .office-card__links { gap: 4px 10px; }
      .contact-form-box { padding: 22px 18px; border-radius: 12px; }
      .contact-form-box h3 { font-size: 1.1rem; }
      .contact-form-box p { font-size: 0.82rem; margin-bottom: 18px; }
      .form-group label { font-size: 0.79rem; }
      .form-group input, .form-group textarea, .form-group select { padding: 10px 12px; font-size: 0.84rem; }
      .submit-btn { padding: 13px; font-size: 0.9rem; }
      .contact-section { padding-top: 52px; padding-bottom: 62px; }
      .footer-grid { grid-template-columns: 1fr; gap: 22px; }
      .footer-brand { grid-column: span 1; }
      .footer-brand .brand-name { font-size: 1.2rem; }
      .footer-brand p { font-size: 0.8rem; }
      .footer-col h4 { font-size: 0.8rem; margin-bottom: 12px; }
      .footer-col ul li a { font-size: 0.8rem; }
      .footer-bottom { font-size: 0.75rem; }
      footer { padding: 52px 0 0; }
      .home-ad-modal { padding: 14px; }
      .home-ad-modal__dialog { border-radius: 22px; min-height: auto; max-height: calc(100vh - 28px); }
      .home-ad-modal__content {
        min-height: auto;
        width: 100%;
        align-content: end;
        padding: 22px 18px 20px;
        gap: 12px;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.48) 0%, rgba(15, 23, 42, 0.72) 100%);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
      }
      .home-ad-modal__content::before {
        display: none;
      }
      .home-ad-modal__content h3 { font-size: 1.18rem; max-width: 20ch; }
      .home-ad-modal__content p { font-size: 0.86rem; max-width: 30ch; -webkit-line-clamp: 3; line-clamp: 3; }
      .home-ad-modal__button { width: 100%; }
      .home-news-modal { padding: 12px; }
      .home-news-modal__dialog { border-radius: 22px; }
      .home-news-modal__media { min-height: 188px; }
      .home-news-modal__content { padding: 22px 18px 20px; gap: 12px; }
      .home-news-modal__content h3 { font-size: 1.18rem; }
      .home-news-modal__summary { font-size: 0.88rem; }
      .home-news-modal__article { font-size: 0.9rem; }
      .legal-page.container { padding-top: 30px; padding-bottom: 46px; }
      .legal-page h1 { font-size: 1.65rem; }
      .legal-page p,
      .legal-page li { font-size: 0.88rem; }
}
