:root {
  --navy: #1d3b6b;
  --navy-dark: #10284d;
  --blue: #1682c5;
  --blue-dark: #0d6ea9;
  --pale: #f5f8fc;
  --pale-blue: #eef5fb;
  --border: #c9d9ea;
  --text: #17243a;
  --muted: #5f6b7a;
  --orange: #f5a623;
  --white: #ffffff;
  --success: #17795a;
  --shadow: 0 16px 40px rgba(29, 59, 107, 0.1);
  --radius: 16px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

a {
  color: var(--blue-dark);
  text-underline-offset: 3px;
}

button,
input {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--navy-dark);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

h3 {
  font-size: 1.2rem;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-dark);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 2px solid var(--blue);
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(22, 130, 197, 0.2);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(22, 130, 197, 0.28);
  transform: translateY(-1px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(22, 130, 197, 0.38);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.button-outline {
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(201, 217, 234, 0.8);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 4px 0;
}

.brand img {
  width: 168px;
  height: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 8vw, 112px) 0 70px;
  background: var(--white);
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -160px;
  bottom: -280px;
  width: 560px;
  height: 560px;
  border: 84px solid var(--pale-blue);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

.hero-lead,
.section-lead {
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 22px;
}

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

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

.check-list li::before {
  position: absolute;
  top: 0.05em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-list {
  display: grid;
  max-width: 690px;
  gap: 10px;
  margin-bottom: 30px;
  font-weight: 650;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.text-link {
  font-weight: 750;
}

.microcopy,
.fine-print,
.privacy-note,
.reviews-source {
  color: var(--muted);
  font-size: 0.84rem;
}

.microcopy {
  margin: 12px 0 0;
}

.hero-visual {
  position: relative;
  max-width: 520px;
  justify-self: end;
}

.hero-image-frame {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--pale);
  box-shadow: var(--shadow);
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
}

.delivery-badge {
  position: absolute;
  right: -22px;
  bottom: 28px;
  display: flex;
  max-width: 220px;
  flex-direction: column;
  padding: 15px 18px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.delivery-badge strong {
  color: var(--navy-dark);
  font-size: 1.08rem;
}

.delivery-badge span {
  color: var(--muted);
  font-size: 0.78rem;
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--pale-blue);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div,
.rating-item {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px;
  border-right: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
}

.trust-grid > :first-child {
  border-left: 1px solid var(--border);
}

.trust-grid strong {
  color: var(--navy-dark);
  font-size: 1.08rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.82rem;
}

.trust-grid .stars {
  margin-left: 3px;
  color: var(--orange);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.rating-item:hover strong {
  color: var(--blue-dark);
}

.section {
  padding: clamp(72px, 9vw, 116px) 0;
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease var(--reveal-delay, 0ms), transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section:nth-of-type(even) {
  background: var(--pale);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-item,
  .audience-card img,
  .warehouse-tile img,
  .button {
    transition: none;
  }

  .steps-grid li.is-visible .step-number {
    animation: none;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: clamp(42px, 7vw, 90px);
}

.align-center {
  align-items: center;
}

.solution-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.solution-card p {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-weight: 650;
}

.solution-card span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 0.82rem;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.narrow {
  max-width: 780px;
}

.section-configurator {
  background: var(--pale-blue) !important;
}

.embed-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.embed-shell iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
}

.embed-shell-config iframe {
  height: 2200px;
}

.embed-shell.embed-shell-form {
  overflow: visible !important;
  width: min(100%, 600px);
  margin-inline: auto;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.embed-shell.embed-shell-form iframe {
  height: 860px;
  background: transparent !important;
}

.embed-loading {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-content: center;
  color: var(--muted);
  text-align: center;
}

.embed-loading span {
  width: 38px;
  height: 38px;
  margin: 0 auto 12px;
  border: 4px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.embed-loading p {
  margin: 0;
}

.embed-shell.is-loaded .embed-loading {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.embed-help {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
}

.embed-help a {
  font-weight: 800;
}

.steps-grid {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  counter-reset: none;
}

.steps-grid li {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(29, 59, 107, 0.07);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.steps-grid li:hover {
  border-color: rgba(22, 130, 197, 0.5);
  box-shadow: 0 18px 42px rgba(29, 59, 107, 0.13);
  transform: translateY(-5px);
}

.step-number {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: clamp(3.7rem, 6vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.82;
  transform-origin: left center;
}

.steps-grid h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 11px;
  font-size: 1.32rem;
}

.steps-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.steps-grid .step-highlight {
  border-color: transparent;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-dark));
}

.steps-grid .step-final {
  background: linear-gradient(145deg, #0d6ea9, #10284d);
}

.steps-grid .step-highlight h3 {
  color: var(--white);
}

.steps-grid .step-highlight p {
  color: rgba(255, 255, 255, 0.8);
}

.steps-grid .step-highlight .step-number {
  color: #75c8f4;
}

.steps-grid li.is-visible .step-number {
  animation: step-number-in 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes step-number-in {
  from { opacity: 0; transform: translateY(18px) scale(0.82); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.spacious {
  display: grid;
  gap: 15px;
  margin: 28px 0 34px;
}

.output-product-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 540px;
  align-items: center;
  justify-content: center;
  padding: 76px 34px 104px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: radial-gradient(circle at 50% 42%, #ffffff 0, #eef5fb 56%, #dceaf7 100%);
  box-shadow: var(--shadow);
}

.output-product-visual::before {
  position: absolute;
  inset: 10% 8%;
  border: 1px solid rgba(22, 130, 197, 0.14);
  border-radius: 50%;
  content: "";
}

.output-product-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 650px);
  filter: drop-shadow(0 24px 28px rgba(16, 40, 77, 0.22));
}

.product-kicker {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  padding: 7px 11px;
  border-radius: 99px;
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 7px 20px rgba(29, 59, 107, 0.1);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.output-product-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  flex-direction: column;
  padding: 15px 17px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(16, 40, 77, 0.94);
  box-shadow: 0 12px 26px rgba(16, 40, 77, 0.18);
}

.output-product-caption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.product-3d-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.product-3d-photo {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.product-3d-photo::after {
  position: absolute;
  inset: auto 22px 22px auto;
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(16, 40, 77, 0.9);
  content: "Panel 3D";
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-3d-photo img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.product-benefits {
  display: grid;
  gap: 11px;
  margin: 28px 0 30px;
}

.product-benefits div {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) 1.3fr;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--white);
}

.product-benefits strong {
  color: var(--navy-dark);
}

.product-benefits span {
  color: var(--muted);
  font-size: 0.88rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.choice-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.choice-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.choice-card > div {
  padding: 26px;
}

.choice-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.choice-card p:not(.tag) {
  color: var(--muted);
}

.choice-card a {
  font-weight: 800;
}

.tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 99px;
  color: var(--blue-dark);
  background: var(--pale-blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logistics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 72px);
}

.warehouse-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.warehouse-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 217, 234, 0.8);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(29, 59, 107, 0.1);
}

.warehouse-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.warehouse-tile:hover img {
  transform: scale(1.045);
}

.warehouse-tile figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: var(--white);
  background: rgba(16, 40, 77, 0.82);
  backdrop-filter: blur(8px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.warehouse-list {
  display: grid;
  gap: 9px;
  margin: 24px 0;
}

.delivery-journey {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin: 26px 0 18px;
  padding: 0;
  list-style: none;
}

.delivery-journey li {
  display: grid;
  min-height: 152px;
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(201, 217, 234, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 26px rgba(29, 59, 107, 0.06);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.delivery-journey li:hover {
  border-color: rgba(22, 130, 197, 0.48);
  box-shadow: 0 14px 32px rgba(29, 59, 107, 0.11);
  transform: translateY(-3px);
}

.delivery-step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--navy));
  box-shadow: 0 8px 18px rgba(22, 130, 197, 0.24);
  font-size: 1.05rem;
  font-weight: 900;
}

.delivery-journey strong {
  display: block;
  color: var(--navy-dark);
  font-size: 0.92rem;
  line-height: 1.28;
}

.delivery-journey p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.48;
}

.delivery-payment-panel {
  padding: 20px;
  border-radius: 17px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 0%, rgba(71, 181, 239, 0.28), transparent 35%),
    var(--navy-dark);
  box-shadow: 0 18px 38px rgba(16, 40, 77, 0.2);
}

.delivery-payment-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.delivery-payment-heading span {
  color: #91d7ff;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.delivery-payment-heading strong {
  color: var(--white);
  font-size: 1rem;
  text-align: right;
}

.delivery-payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.delivery-payment-grid > div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.delivery-payment-grid strong {
  color: var(--white);
  font-size: 0.82rem;
}

.delivery-payment-grid p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.71rem;
  line-height: 1.48;
}

.delivery-zero-risk {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  text-align: center;
}

.delivery-zero-risk strong {
  color: #8be0be;
}

.delivery-cta {
  margin-top: 18px;
}

.payment-options {
  display: grid;
  gap: 12px;
  margin: 28px 0 18px;
}

.payment-options div {
  display: flex;
  flex-direction: column;
  padding: 17px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
}

.payment-options strong {
  color: var(--navy-dark);
}

.payment-options span {
  color: var(--muted);
  font-size: 0.88rem;
}

.verification-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 22px;
  color: var(--white);
  background: var(--navy);
}

.verification-card h2,
.verification-card .eyebrow {
  color: var(--white);
}

.verification-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.verification-list {
  display: grid;
  margin: 0;
  padding: 0;
  align-content: center;
  gap: 12px;
  list-style: none;
}

.verification-list li {
  position: relative;
  padding: 13px 15px 13px 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
}

.verification-list li::before {
  position: absolute;
  left: 16px;
  color: #8be0be;
  content: "✓";
  font-weight: 900;
}

.section-company {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(22, 130, 197, 0.12), transparent 28%),
    linear-gradient(135deg, #f7fafd 0%, #edf5fb 100%) !important;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(48px, 7vw, 88px);
}

.company-copy h2 {
  max-width: 650px;
}

.company-copy .section-lead {
  max-width: 690px;
}

.company-promise {
  margin: 26px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(29, 59, 107, 0.08);
}

.company-promise strong {
  color: var(--navy-dark);
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
}

.company-facts > div {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  border: 1px solid rgba(201, 217, 234, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.company-facts strong {
  color: var(--navy-dark);
  font-size: 0.94rem;
  line-height: 1.2;
}

.company-facts span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.company-address {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  color: var(--muted);
  font-style: normal;
}

.company-address-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 1.1rem;
  font-weight: 900;
}

.company-address > span:last-child {
  display: flex;
  flex-direction: column;
}

.company-address strong {
  color: var(--navy-dark);
}

.company-media {
  position: relative;
  min-height: 590px;
  padding: 34px 0 92px 50px;
}

.company-video-frame,
.company-day-photo {
  margin: 0;
}

.company-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 37 / 20;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: #0a1525;
  box-shadow: 0 30px 70px rgba(16, 40, 77, 0.25);
}

.company-video-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(5, 17, 34, 0.68));
  content: "";
  pointer-events: none;
}

.company-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-video-frame figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 17px;
  left: 20px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.company-day-photo {
  position: absolute;
  z-index: 2;
  bottom: 8px;
  left: 0;
  overflow: hidden;
  width: 43%;
  aspect-ratio: 4 / 3;
  border: 8px solid var(--white);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 22px 52px rgba(16, 40, 77, 0.24);
}

.company-day-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-day-photo figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(16, 40, 77, 0.82);
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
}

.company-years-badge {
  position: absolute;
  z-index: 3;
  top: 0;
  right: -12px;
  display: flex;
  width: 118px;
  height: 118px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 7px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--navy));
  box-shadow: 0 18px 38px rgba(16, 40, 77, 0.24);
}

.company-years-badge strong {
  font-size: 1.42rem;
  line-height: 1;
}

.company-years-badge span {
  margin-top: 6px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-reviews {
  background: var(--pale-blue) !important;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.reviews-header h2 {
  margin-bottom: 0;
}

.google-rating {
  display: flex;
  min-width: 225px;
  align-items: center;
  gap: 13px;
  padding: 14px 17px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: var(--white);
  text-decoration: none;
}

.google-g {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d9e1ec;
  border-radius: 50%;
  color: #4285f4;
  font-size: 1.3rem;
  font-weight: 850;
}

.google-rating > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.google-rating small {
  color: var(--muted);
}

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

.review-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.stars {
  color: var(--orange);
  letter-spacing: 0.1em;
}

.review-card blockquote {
  margin: 18px 0 26px;
  color: var(--navy-dark);
  font-size: 1.05rem;
  font-weight: 650;
}

.review-card figcaption {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.84rem;
}

.reviews-source {
  margin: 18px 0 0;
  text-align: right;
}

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

.audience-card {
  display: flex;
  overflow: hidden;
  min-height: 390px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(29, 59, 107, 0.07);
}

.audience-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.audience-card:hover img {
  transform: scale(1.035);
}

.audience-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.audience-number {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.audience-card strong {
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-size: 1.06rem;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(45px, 8vw, 100px);
}

.faq-intro {
  position: sticky;
  top: 125px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 20px 46px 20px 0;
  color: var(--navy-dark);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 5px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--pale-blue);
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 46px 22px 0;
  color: var(--muted);
}

.section-contact {
  background: var(--pale-blue) !important;
}

.section-contact .section-heading .button {
  margin-top: 8px;
}

.privacy-note {
  max-width: 640px;
  margin: 16px auto 0;
  text-align: center;
}

.contact-last-resort {
  display: flex;
  max-width: 640px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px auto 0;
  padding-top: 25px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.contact-last-resort a {
  color: var(--navy-dark);
  font-size: 1.06rem;
  font-weight: 850;
  text-decoration: none;
}

.contact-last-resort small {
  color: var(--muted);
}

.site-footer {
  padding: 68px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--white);
  object-fit: contain;
}

.footer-brand p {
  max-width: 320px;
}

.site-footer address,
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-style: normal;
}

.site-footer strong {
  margin-bottom: 6px;
  color: var(--white);
}

.site-footer a,
.footer-button {
  color: rgba(255, 255, 255, 0.8);
}

.footer-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

.mobile-sticky-cta {
  display: none;
}

.consent-banner {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  max-width: 1120px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(16, 40, 77, 0.24);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner strong {
  color: var(--navy-dark);
}

.consent-banner p {
  max-width: 610px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.plain-button {
  padding: 8px;
  border: 0;
  color: var(--blue-dark);
  background: transparent;
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: underline;
  cursor: pointer;
}

.consent-dialog {
  width: min(calc(100% - 32px), 620px);
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  box-shadow: 0 28px 80px rgba(16, 40, 77, 0.28);
}

.consent-dialog::backdrop {
  background: rgba(10, 25, 48, 0.65);
}

.consent-dialog form {
  padding: 26px;
}

.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dialog-header h2 {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.dialog-header button {
  padding: 4px 10px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

.consent-dialog > form > p {
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.consent-option div {
  display: flex;
  flex-direction: column;
}

.consent-option span {
  color: var(--muted);
  font-size: 0.8rem;
}

.consent-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--blue);
}

.dialog-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.noscript {
  position: fixed;
  z-index: 1200;
  inset: auto 12px 12px;
  padding: 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-dark);
  text-align: center;
}

.legal-page {
  padding: 72px 0 100px;
  background: var(--pale);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 820px);
  align-items: start;
  justify-content: center;
  gap: 72px;
}

.legal-nav {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}

.legal-nav strong {
  margin-bottom: 6px;
  color: var(--navy-dark);
}

.legal-nav a {
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-content {
  padding: clamp(28px, 6vw, 66px);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-content h1 {
  font-size: clamp(2.25rem, 5vw, 3.8rem);
}

.legal-content h2 {
  margin-top: 52px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-content p,
.legal-content li {
  color: #46566a;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-updated {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-table {
  border: 1px solid var(--border);
  border-radius: 10px;
}

.legal-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}

.legal-row:last-child {
  border-bottom: 0;
}

.legal-head {
  color: var(--navy-dark);
  background: var(--pale-blue);
}

.compact-footer {
  padding-top: 18px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .product-3d-grid,
  .logistics-grid,
  .verification-card,
  .company-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .company-media {
    width: min(100%, 760px);
    min-height: 560px;
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 560px);
    justify-self: center;
  }

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

  .trust-grid > div,
  .rating-item {
    border-bottom: 1px solid var(--border);
  }

  .trust-grid > :nth-child(odd) {
    border-left: 1px solid var(--border);
  }

  .steps-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .faq-intro {
    position: static;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

  .consent-banner {
    align-items: flex-start;
  }

  .consent-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-nav {
    position: static;
    display: none;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 126px;
    height: auto;
  }

  .header-actions > .button {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .hero {
    padding: 46px 0 54px;
  }

  .hero-grid {
    gap: 42px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .text-link {
    text-align: center;
  }

  .hero-image-frame {
    padding: 10px;
  }

  .delivery-badge {
    right: 10px;
    bottom: 10px;
  }

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

  .trust-grid > div,
  .rating-item,
  .trust-grid > :first-child,
  .trust-grid > :nth-child(odd) {
    min-height: 90px;
    border-right: 1px solid var(--border);
    border-left: 1px solid var(--border);
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .solution-card {
    padding: 20px;
  }

  .embed-shell {
    margin-inline: -8px;
    border-radius: 12px;
  }

  .embed-shell-config iframe {
    height: 2600px;
  }

  .embed-shell.embed-shell-form iframe {
    height: 940px;
  }

  .steps-grid,
  .reviews-grid,
  .choice-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid li {
    min-height: 230px;
  }

  .choice-card img {
    aspect-ratio: 1;
  }

  .product-3d-photo img {
    min-height: 360px;
  }

  .output-product-visual {
    min-height: 460px;
    padding-inline: 18px;
  }

  .product-benefits div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .warehouse-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .warehouse-tile {
    border-radius: 12px;
  }

  .warehouse-tile figcaption {
    right: 7px;
    bottom: 7px;
    left: 7px;
    padding: 7px 8px;
    font-size: 0.66rem;
  }

  .audience-card {
    min-height: 0;
  }

  .verification-card {
    gap: 28px;
  }

  .company-facts {
    grid-template-columns: 1fr;
  }

  .delivery-journey,
  .delivery-payment-grid {
    grid-template-columns: 1fr;
  }

  .delivery-journey li {
    min-height: 0;
  }

  .delivery-payment-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .delivery-payment-heading strong {
    text-align: left;
  }

  .company-facts > div {
    min-height: 0;
  }

  .company-media {
    min-height: 400px;
    padding: 24px 0 72px 22px;
  }

  .company-video-frame {
    border-radius: 16px;
  }

  .company-day-photo {
    width: 44%;
    border-width: 5px;
    border-radius: 13px;
  }

  .company-years-badge {
    right: -4px;
    width: 92px;
    height: 92px;
    border-width: 5px;
  }

  .company-years-badge strong {
    font-size: 1.1rem;
  }

  .company-years-badge span {
    font-size: 0.52rem;
  }

  .reviews-header {
    align-items: stretch;
    flex-direction: column;
  }

  .google-rating {
    width: 100%;
  }

  .review-card {
    min-height: 210px;
  }

  .reviews-source {
    text-align: left;
  }

  .contact-last-resort {
    flex-direction: column;
    gap: 3px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 150;
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: flex;
  }

  .consent-banner {
    right: 10px;
    bottom: 88px;
    left: 10px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
  }

  .consent-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .consent-actions .plain-button {
    grid-column: span 2;
  }

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

  .legal-page {
    padding: 32px 0 70px;
  }

  .legal-content {
    padding: 24px 18px;
  }

  .legal-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .legal-head {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
