:root {
  --color-primary: #243b53;
  --color-primary-strong: #1c3046;
  --color-text: #2f3743;
  --color-text-soft: #5f6772;
  --color-background: #f7f5f0;
  --color-surface: rgba(255, 253, 249, 0.9);
  --color-surface-solid: #fffdf9;
  --color-neutral: #d8d1c5;
  --color-accent: #a79b8e;
  --color-accent-soft: rgba(167, 155, 142, 0.12);
  --color-border: rgba(36, 59, 83, 0.14);
  --color-border-strong: rgba(36, 59, 83, 0.22);
  --color-shadow: rgba(36, 59, 83, 0.08);
  --color-shadow-strong: rgba(36, 59, 83, 0.16);
  --container-width: 1180px;
  --header-height: 82px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Manrope, "Segoe UI", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(167, 155, 142, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(36, 59, 83, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, #f7f5f0 18%, #f3efe8 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
main { overflow: clip; }
main > section:first-of-type { position: relative; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
p { margin: 0; }
.container { width: min(100% - 2rem, var(--container-width)); margin: 0 auto; }
.section { padding: 5.5rem 0; position: relative; }
.section-tight { padding: 3rem 0; }
.section-hero { padding: calc(var(--header-height) + 3.5rem) 0 5rem; }
.page-hero { padding: calc(var(--header-height) + 2.4rem) 0 3.2rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  padding: .55rem .95rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(167, 155, 142, 0.28);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-heading, .hero-title, .page-title, .cta-title, .card-title {
  margin: 0;
  color: var(--color-primary);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.hero-title, .page-title { font-size: clamp(2.6rem, 4vw, 4.4rem); max-width: 12ch; }
.section-heading { font-size: clamp(2rem, 3vw, 3rem); max-width: 18ch; }
.cta-title { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.card-title { font-size: 1.35rem; }
.lead, .section-copy, .hero-copy {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-text-soft);
  max-width: 66ch;
}
.hero-copy { font-size: 1.12rem; max-width: 62ch; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(247, 245, 240, 0.78);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 245, 240, 0.94);
  border-color: var(--color-border);
  box-shadow: 0 12px 35px rgba(36, 59, 83, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1.5rem;
}
.brand { display: flex; flex-direction: column; gap: .18rem; }
.brand-name { font-size: 1.22rem; font-weight: 800; color: var(--color-primary); letter-spacing: -.03em; }
.brand-tagline { font-size: .8rem; color: var(--color-accent); }
.nav-wrap, .header-actions, .site-nav, .cta-row { display: flex; align-items: center; gap: .75rem; }
.nav-wrap { position: relative; flex: 1; justify-content: flex-end; min-width: 0; }
.site-nav { gap: .18rem; flex-wrap: wrap; justify-content: flex-end; min-width: 0; }
.site-nav a {
  padding: .72rem .98rem;
  border-radius: 999px;
  font-size: .95rem;
  color: var(--color-primary);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.site-nav a:hover { background: rgba(36, 59, 83, 0.06); transform: translateY(-1px); }
.site-nav a[aria-current="page"] {
  background: linear-gradient(180deg, rgba(36, 59, 83, 0.12), rgba(36, 59, 83, 0.06));
  font-weight: 700;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-primary);
  padding: .78rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(36, 59, 83, 0.08);
}
.button, .button-secondary, .button-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: .95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover, .button-secondary:hover, .button-tertiary:hover { transform: translateY(-2px); }
.button {
  background: linear-gradient(180deg, #2f4a67 0%, var(--color-primary) 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(36, 59, 83, 0.22);
}
.button:hover { box-shadow: 0 18px 34px rgba(36, 59, 83, 0.28); }
.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-primary);
  border-color: rgba(36, 59, 83, 0.16);
  box-shadow: 0 12px 28px rgba(36, 59, 83, 0.08);
}
.button-secondary:hover { border-color: rgba(36, 59, 83, 0.26); box-shadow: 0 16px 30px rgba(36, 59, 83, 0.12); }
.button-tertiary {
  padding-inline: 0;
  border-radius: 0;
  color: var(--color-primary);
  border: 0;
  background: transparent;
  font-weight: 700;
}
.hero-grid, .split-grid, .contact-grid, .form-layout, .two-column { display: grid; gap: 2rem; align-items: start; }
.hero-grid, .two-column { grid-template-columns: 1.08fr .92fr; }
.split-grid, .contact-grid, .form-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split-grid > *, .contact-grid > *, .form-layout > * { min-width: 0; }
.quote-form-layout {
  max-width: 960px;
}
.quote-form-layout .form-card {
  height: auto;
}
.quote-hero .page-title {
  max-width: 18ch;
}
.quote-hero .lead {
  max-width: 72ch;
}
.quote-form-actions {
  gap: .85rem;
  align-items: stretch;
}
.quote-form-actions .button,
.quote-form-actions .button-secondary {
  min-height: 3.2rem;
}
.about-intro-grid {
  align-items: stretch;
}
.about-intro-grid > .card {
  height: 100%;
}
.about-services-card {
  gap: 1.25rem;
  justify-content: space-between;
}
.about-services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .78rem;
}
.about-service-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 3.6rem;
  padding: .82rem .95rem .82rem 1.2rem;
  border: 1px solid rgba(167, 155, 142, 0.2);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(248, 244, 237, 0.72));
  box-shadow: 0 12px 24px rgba(36, 59, 83, 0.055);
  transition: transform .24s var(--motion-ease-premium, ease), border-color .24s ease, box-shadow .24s ease, background .24s ease;
}
.about-service-item::before {
  content: "";
  width: .42rem;
  height: .42rem;
  flex: 0 0 .42rem;
  margin-right: .62rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #c5aa77, #a68955);
  box-shadow: 0 0 0 4px rgba(197, 170, 119, 0.12);
}
.about-service-item h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: .95rem;
  font-weight: 750;
  line-height: 1.28;
}
@media (hover: hover) and (pointer: fine) {
  .about-service-item:hover {
    transform: translateY(-2px);
    border-color: rgba(167, 155, 142, 0.32);
    box-shadow: 0 16px 28px rgba(36, 59, 83, 0.085);
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(248, 244, 237, 0.82));
  }
}
.stack { display: grid; gap: 1.3rem; align-content: start; }
.stack > .cta-row { margin-top: .2rem; }
.stack > .section-heading + p, .stack > .cta-title + p, .stack > .page-title + p, .stack > .hero-title + p { margin-top: -.1rem; }
.cta-row { flex-wrap: wrap; align-items: center; }
.cta-row .button, .cta-row .button-secondary { min-width: 180px; }
.panel, .card, .placeholder-card, .stat-card, .faq-item, .form-card, .logo-card, .contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 45px var(--color-shadow);
}
.panel, .form-card { padding: clamp(1.4rem, 2vw, 2rem); }
.card, .contact-card, .stat-card, .logo-card { padding: 1.5rem; }
.panel, .card, .placeholder-card, .stat-card, .faq-item, .form-card, .logo-card, .contact-card { height: 100%; }
.card, .contact-card, .logo-card, .form-card { display: flex; flex-direction: column; }
.card > *, .contact-card > *, .form-card > * { position: relative; z-index: 1; }
.card p, .contact-card p, .form-card p, .panel p { color: var(--color-text-soft); }
.card p + p, .contact-card p + p, .panel p + p, .form-card p + form, .form-card form + .form-status { margin-top: .95rem; }
.card a.button, .card a.button-secondary, .contact-card a.button, .contact-card a.button-secondary { margin-top: auto; }
.card, .contact-card, .logo-card, .placeholder-card, .faq-item { position: relative; overflow: hidden; }
.card::before, .contact-card::before, .logo-card::before, .form-card::before, .panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.24), transparent 28%);
}
.card:hover, .contact-card:hover, .logo-card:hover, .placeholder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px rgba(36, 59, 83, 0.12);
  border-color: rgba(36, 59, 83, 0.2);
}
.card-grid, .stats-grid, .logo-grid, .placeholder-grid, .faq-preview-grid { display: grid; gap: 1.15rem; align-items: stretch; }
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stats-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.placeholder-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.faq-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.placeholder-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  min-height: 240px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  background:
    linear-gradient(160deg, rgba(36, 59, 83, 0.2), rgba(167, 155, 142, 0.12)),
    linear-gradient(180deg, #faf8f3, #efe8dd);
}
.placeholder-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -22% auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.32), transparent 68%);
  z-index: -1;
}
.placeholder-card.small { min-height: 172px; }
.section-hero .panel > .placeholder-card:first-child { min-height: 380px; }
.page-hero .panel { padding: clamp(1.7rem, 2.4vw, 2.4rem); }
.placeholder-label {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 800;
}
.placeholder-caption, .muted { color: var(--color-text-soft); }
.list, .feature-list { margin: 0; padding: 0; list-style: none; display: grid; gap: .9rem; }
.list li, .feature-list li { padding-left: 1.18rem; position: relative; color: var(--color-text-soft); }
.list li::before, .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78rem;
  width: .4rem;
  height: .4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-accent), #8f8174);
}
.list strong, .feature-list strong { color: var(--color-primary); }
.trust-strip {
  padding: 1.1rem;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(36, 59, 83, 0.1);
  box-shadow: 0 18px 36px rgba(36, 59, 83, 0.08);
}
.stat-card {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,253,249,0.78));
}
.trust-item { font-weight: 700; color: var(--color-primary); line-height: 1.4; text-wrap: balance; }
.accent-block {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 24%),
    linear-gradient(135deg, rgba(36, 59, 83, .96), rgba(62, 87, 111, .92));
  color: #f8f6f0;
  border-color: rgba(255,255,255,0.08);
}
.accent-block .section-heading, .accent-block .cta-title, .accent-block .card-title, .accent-block .eyebrow { color: #fff; }
.accent-block .eyebrow { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
.accent-block .section-copy, .accent-block p, .accent-block li { color: rgba(248, 246, 240, 0.84); }
.accent-block .panel {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
.accent-block .button-secondary {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: #fff;
  box-shadow: none;
}
.site-footer {
  padding: 3.4rem 0 3rem;
  border-top: 1px solid var(--color-border);
  background: rgba(255, 252, 247, 0.7);
  backdrop-filter: blur(12px);
}
.footer-grid { display: grid; grid-template-columns: 1.15fr .9fr .95fr; gap: 1.8rem; }
.footer-links, .footer-meta { display: grid; gap: .75rem; }
.footer-links strong { color: var(--color-primary); }
.footer-links a { color: var(--color-text-soft); }
.footer-links a:hover { color: var(--color-primary); }
.footer-note {
  margin-top: 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  color: rgba(47, 55, 67, .75);
}
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
}
.whatsapp-float a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #2ba164 0%, #1f7a4c 100%);
  color: #fff;
  box-shadow: 0 24px 40px rgba(18, 92, 56, .32);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.whatsapp-float-icon {
  width: 29px;
  height: 29px;
  fill: currentColor;
}
.faq-item {
  overflow: hidden;
  background: rgba(255, 253, 249, 0.88);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1.2rem 1.3rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}
.faq-question span {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  font-size: 1.05rem;
  text-align: center;
  vertical-align: middle;
  border-radius: 999px;
  background: rgba(36, 59, 83, 0.08);
}
.faq-answer { padding: 0 1.3rem 1.35rem; color: var(--color-text-soft); }
.faq-question, .card-title, .section-heading, .page-title, .hero-title, .cta-title { text-wrap: balance; }
.hero-copy, .section-copy, .lead, .placeholder-caption, .faq-answer, .footer-links a, .footer-note { text-wrap: pretty; }
.faq-answer[hidden] { display: none; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: grid; gap: .48rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; color: var(--color-primary); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .92rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(36, 59, 83, 0.14);
  background: rgba(255,255,255,0.94);
  color: var(--color-text);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(36, 59, 83, 0.34);
  box-shadow: 0 0 0 4px rgba(36, 59, 83, 0.08);
  background: #fff;
}
.field textarea { min-height: 148px; resize: vertical; }
.form-status {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(167, 155, 142, .14);
  border: 1px solid rgba(167, 155, 142, .28);
}
.flow > * + * { margin-top: 1rem; }
.centered { text-align: center; }
.hero-grid > .stack:first-child,
.page-hero .panel,
.section > .container > .stack:first-child { position: relative; z-index: 1; }
.hero-grid .panel { background: rgba(255, 253, 249, 0.82); }
.logo-card { min-height: 124px; display: grid; place-items: center; color: var(--color-text-soft); background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,244,237,0.85)); }
.faq-preview-grid .card, .card-grid .card, .logo-grid .logo-card, .placeholder-grid > * { height: 100%; }
@media (max-width: 1080px) {
  .section { padding: 4.6rem 0; }
  .section-hero .panel > .placeholder-card:first-child { min-height: 320px; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(var(--header-height) - .35rem);
    left: 0;
    right: 0;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255,253,249,0.98);
    border: 1px solid var(--color-border);
    box-shadow: 0 24px 45px rgba(36, 59, 83, 0.12);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { border-radius: var(--radius-sm); }
  .menu-toggle { display: inline-flex; }
  .header-actions .button-secondary { display: none; }
  .hero-grid, .two-column, .split-grid, .contact-grid, .form-layout, .footer-grid { grid-template-columns: 1fr; }
  .cta-row { justify-content: flex-start; }
  .card-grid, .stats-grid, .logo-grid, .placeholder-grid, .faq-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-title, .page-title, .section-heading { max-width: none; }
}
@media (max-width: 720px) {
  .hero-title, .page-title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .section-heading { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .lead, .section-copy, .hero-copy { font-size: 1rem; }
  :root { --header-height: 76px; }
  .container { width: min(100% - 1.25rem, var(--container-width)); }
  .section { padding: 3.7rem 0; }
  .section-tight { padding: 2.3rem 0; }
  .section-hero { padding: calc(var(--header-height) + 2rem) 0 4rem; }
  .page-hero { padding: calc(var(--header-height) + 1.6rem) 0 2.4rem; }
  .card-grid, .stats-grid, .logo-grid, .placeholder-grid, .faq-preview-grid, .field-grid { grid-template-columns: 1fr; }
  .section-hero .panel > .placeholder-card:first-child { min-height: 260px; }
  .placeholder-card, .placeholder-card.small { min-height: 190px; }
  .cta-row, .header-actions { width: 100%; flex-wrap: wrap; }
  .cta-row .button, .cta-row .button-secondary, .header-actions .button { width: 100%; min-width: 0; }
  .header-inner { align-items: center; padding: .85rem 0; }
  .nav-wrap { flex: 1; justify-content: flex-end; }
  .brand-tagline { display: none; }
  .whatsapp-float { left: auto; right: 1rem; bottom: 1rem; }
  .faq-question { padding: 1rem 1rem; }
  .faq-answer { padding: 0 1rem 1rem; }
  .panel, .form-card { padding: 1.2rem; }
  .card, .contact-card, .stat-card, .logo-card { padding: 1.25rem; }
}


.brand { align-items: center; flex: 0 0 auto; flex-direction: row; gap: .82rem; min-width: 0; text-decoration: none; }
.brand-copy { display: flex; flex: 0 1 320px; flex-direction: column; justify-content: center; gap: .16rem; min-width: 0; max-width: 320px; }
.brand-mark {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.site-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: .82rem;
}
.footer-logo {
  width: 72px;
  height: 72px;
  flex-basis: 72px;
}
.media-slot {
  position: relative;
  overflow: hidden;
}
.media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-overlay {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: grid;
  gap: .55rem;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,253,249,0.86));
  backdrop-filter: blur(8px);
}
.media-overlay code,
.logo-replace-note {
  display: inline-block;
  width: fit-content;
  padding: .22rem .55rem;
  border-radius: 999px;
  background: rgba(36, 59, 83, 0.08);
  color: var(--color-primary);
  font-size: .78rem;
}
.logo-slot {
  gap: .8rem;
  padding: 1rem;
}
.logo-image {
  width: 100%;
  max-width: 140px;
  max-height: 56px;
  object-fit: contain;
}
@media (max-width: 720px) {
  .brand {
    gap: .55rem;
  }
  .brand-copy {
    gap: .06rem;
  }
  .brand-mark {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
    border-radius: 18px;
  }
  .footer-logo {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }
  .media-overlay {
    padding: .85rem;
  }
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: rgba(166, 64, 54, 0.7);
  box-shadow: 0 0 0 4px rgba(166, 64, 54, 0.1);
}
.field-error-text {
  margin: 0;
  color: #a64036;
  font-size: 0.9rem;
}
.form-status.is-error {
  background: rgba(166, 64, 54, 0.08);
  border-color: rgba(166, 64, 54, 0.24);
  color: #7d3028;
}
.form-status.is-success {
  background: rgba(31, 122, 76, 0.1);
  border-color: rgba(31, 122, 76, 0.24);
  color: #1f6a45;
}

.skip-link { position: absolute; left: 1rem; top: -3rem; z-index: 1200; padding: .7rem 1rem; border-radius: 999px; background: #123629; color: #fff; font-weight: 600; text-decoration: none; transition: top .2s ease; }
.skip-link:focus { top: 1rem; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(18, 54, 41, .28); outline-offset: 3px; }
.site-logo { height: auto; }










.site-header .header-inner {
  gap: 1.15rem;
}
.site-header .brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  flex-direction: row;
  gap: .82rem;
  min-width: 0;
  text-decoration: none;
}
.site-header .brand-mark {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  border-radius: 20px;
  overflow: hidden;
}
.site-header .brand-copy {
  display: flex;
  flex: 0 1 320px;
  flex-direction: column;
  justify-content: center;
  gap: .18rem;
  min-width: 0;
  max-width: 320px;
}
.site-header .brand-name {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.site-header .brand-tagline {
  font-size: .72rem;
  line-height: 1.2;
  color: #a8927b;
  white-space: nowrap;
}
.site-header .nav-wrap {
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}
.site-header .site-nav {
  gap: .16rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}
.site-header .site-nav a {
  padding: .62rem .82rem;
  font-size: .9rem;
}
.site-header .header-actions {
  gap: .6rem;
}
.site-footer .footer-brand-lockup {
  align-items: center;
  gap: .8rem;
}
.site-footer .footer-logo {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  border-radius: 18px;
}
@media (max-width: 720px) {
  .site-header .header-inner {
    gap: .8rem;
  }
  .site-header .brand {
    gap: .6rem;
  }
  .site-header .brand-mark {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
    border-radius: 16px;
  }
  .site-header .brand-copy {
    flex: 0 1 auto;
    max-width: none;
    gap: .08rem;
  }
  .site-header .brand-name {
    font-size: 1rem;
  }
  .site-header .brand-tagline {
    display: none;
  }
  .site-footer .footer-logo {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
}

.hero-product-card {
  min-height: 0;
  padding: 1rem;
  justify-content: stretch;
  background:
    radial-gradient(circle at top left, rgba(255, 250, 242, 0.95), rgba(245, 237, 227, 0.72) 44%, rgba(232, 220, 205, 0.56) 100%),
    linear-gradient(180deg, #fbf8f2, #efe6da);
}
.hero-product-card::after {
  inset: auto -8% -18% auto;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(255,255,255,0.42), transparent 70%);
}
.hero-product-image {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(88, 56, 33, 0.12);
}
.hero-product-overlay {
  margin-top: .85rem;
  align-self: stretch;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,250,244,0.92));
}
@media (min-width: 721px) {
  .section-hero .panel > .hero-product-card {
    min-height: 0;
  }
}
@media (max-width: 720px) {
  .hero-product-card {
    padding: .8rem;
  }
  .hero-product-image {
    border-radius: 18px;
  }
  .hero-product-overlay {
    margin-top: .7rem;
  }
}

.hero-showcase-panel {
  gap: 1rem;
  padding: 1.15rem;
}
.hero-product-card {
  min-height: 0;
  padding: .9rem;
  gap: .8rem;
  justify-content: stretch;
  background:
    radial-gradient(circle at top left, rgba(255, 250, 242, 0.92), rgba(245, 237, 227, 0.68) 44%, rgba(232, 220, 205, 0.48) 100%),
    linear-gradient(180deg, #fbf8f2, #efe6da);
}
.hero-product-card::after {
  inset: auto -6% -14% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.34), transparent 70%);
}
.hero-product-image {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  max-height: 380px;
  min-height: 0;
  object-fit: contain;
  object-position: center top;
  border-radius: 22px;
  box-shadow: 0 20px 38px rgba(88, 56, 33, 0.1);
}
.hero-product-overlay {
  margin-top: 0;
  padding: .95rem 1rem;
  gap: .4rem;
  align-self: stretch;
  background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,250,244,0.9));
}
.hero-product-overlay .placeholder-caption {
  font-size: .92rem;
}
.hero-category-grid {
  gap: .9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.category-card {
  min-height: 0;
  padding: .7rem;
  justify-content: stretch;
  background:
    linear-gradient(160deg, rgba(36, 59, 83, 0.12), rgba(167, 155, 142, 0.08)),
    linear-gradient(180deg, #faf8f3, #efe7dc);
}
.category-card::after {
  inset: auto -10% -20% auto;
  width: 120px;
  height: 120px;
}
.category-image {
  position: relative;
  inset: auto;
  width: 100%;
  height: clamp(138px, 14vw, 168px);
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  background: #f5ede3;
}
.category-overlay {
  margin-top: .65rem;
  padding: .8rem .9rem;
  gap: .35rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,250,244,0.94));
}
.category-overlay .placeholder-label {
  letter-spacing: .08em;
}
.category-overlay .placeholder-caption {
  font-size: .82rem;
}
@media (max-width: 1080px) {
  .hero-showcase-panel {
    gap: .9rem;
  }
  .hero-product-image {
    max-height: 340px;
  }
}
@media (max-width: 720px) {
  .hero-showcase-panel {
    padding: .95rem;
  }
  .hero-product-card {
    padding: .75rem;
    gap: .7rem;
  }
  .hero-product-image {
    max-height: none;
    border-radius: 18px;
  }
  .hero-product-overlay {
    padding: .82rem .88rem;
  }
  .hero-category-grid {
    grid-template-columns: 1fr;
    gap: .8rem;
  }
  .category-card {
    padding: .65rem;
  }
  .category-image {
    height: 172px;
    border-radius: 16px;
  }
  .category-overlay {
    margin-top: .55rem;
    padding: .75rem .82rem;
  }
}

.hero-category-grid {
  align-items: stretch;
}
.hero-category-grid > .category-card {
  height: 100%;
}
.category-card {
  gap: 0;
  padding: .8rem;
}
.category-image {
  height: 190px;
  object-fit: contain;
  object-position: center;
  padding: .35rem;
  border: 1px solid rgba(36, 59, 83, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28);
}
.category-overlay {
  display: grid;
  align-content: start;
  min-height: 108px;
}
.category-overlay .placeholder-label {
  min-height: 1.2em;
}
@media (max-width: 1080px) {
  .category-image {
    height: 176px;
  }
}
@media (max-width: 720px) {
  .category-card {
    padding: .7rem;
  }
  .category-image {
    height: 182px;
    padding: .25rem;
  }
  .category-overlay {
    min-height: 0;
  }
}

.section-hero {
  padding: calc(var(--header-height) + 2.35rem) 0 3.5rem;
}
.hero-grid {
  gap: 1.45rem;
  align-items: center;
}
.hero-grid > .stack:first-child {
  gap: 1rem;
}
.hero-copy {
  max-width: 60ch;
}
.hero-grid .cta-row {
  gap: .7rem;
  margin-top: .1rem;
}
.hero-showcase-panel {
  gap: .82rem;
  padding: .95rem;
}
.hero-product-card {
  padding: .72rem;
  gap: .62rem;
}
.hero-product-image {
  max-height: 320px;
  border-radius: 20px;
}
.hero-product-overlay {
  padding: .82rem .9rem;
}
.hero-category-grid {
  gap: .72rem;
}
.category-card {
  padding: .62rem;
}
.category-image {
  height: 158px;
}
.category-overlay {
  margin-top: .5rem;
  min-height: 96px;
  padding: .72rem .78rem;
}
@media (max-width: 1080px) {
  .section-hero {
    padding: calc(var(--header-height) + 1.9rem) 0 3rem;
  }
  .hero-grid {
    gap: 1.2rem;
  }
  .hero-product-image {
    max-height: 285px;
  }
  .category-image {
    height: 148px;
  }
}
@media (max-width: 720px) {
  .section-hero {
    padding: calc(var(--header-height) + 1.5rem) 0 3rem;
  }
  .hero-grid > .stack:first-child {
    gap: .92rem;
  }
  .hero-showcase-panel {
    gap: .75rem;
    padding: .82rem;
  }
  .hero-product-card {
    padding: .65rem;
    gap: .58rem;
  }
  .hero-product-image {
    max-height: 260px;
    border-radius: 16px;
  }
  .hero-product-overlay {
    padding: .72rem .78rem;
  }
  .hero-category-grid {
    gap: .72rem;
  }
  .category-card {
    padding: .58rem;
  }
  .category-image {
    height: 156px;
    padding: .18rem;
  }
  .category-overlay {
    margin-top: .48rem;
    min-height: 0;
    padding: .68rem .74rem;
  }
}

.hero-grid .hero-showcase-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.hero-grid .hero-showcase-panel::before {
  display: none;
}
.hero-grid .hero-showcase-panel > * {
  min-width: 0;
}
.hero-grid .hero-product-card {
  padding: .68rem;
  border-radius: 26px;
}
.hero-grid .hero-product-image {
  max-height: 300px;
}
.hero-grid .hero-product-overlay {
  padding: .78rem .88rem;
}
.hero-grid .hero-category-grid {
  gap: 1rem;
  margin-top: .1rem;
}
.hero-grid .category-card {
  padding: .72rem;
  border-radius: 24px;
}
.hero-grid .category-image {
  height: 164px;
}
.hero-grid .category-overlay {
  margin-top: .6rem;
  padding: .76rem .82rem;
}
@media (max-width: 1080px) {
  .hero-grid .hero-category-grid {
    gap: .9rem;
  }
}
@media (max-width: 720px) {
  .hero-grid .hero-showcase-panel {
    gap: .85rem;
  }
  .hero-grid .hero-product-card {
    padding: .62rem;
    border-radius: 22px;
  }
  .hero-grid .hero-product-image {
    max-height: 250px;
  }
  .hero-grid .hero-category-grid {
    gap: .85rem;
  }
  .hero-grid .category-card {
    padding: .62rem;
    border-radius: 20px;
  }
  .hero-grid .category-image {
    height: 160px;
  }
}


.hero-grid .hero-category-grid {
  margin-top: .9rem;
}
@media (max-width: 720px) {
  .hero-grid .hero-category-grid {
    margin-top: .72rem;
  }
}
.site-header {
  backdrop-filter: blur(14px);
}
.site-header .header-inner {
  min-height: 84px;
  gap: .95rem;
}
.site-header .brand {
  gap: .7rem;
}
.site-header .brand-mark {
  width: 66px;
  height: 66px;
  flex-basis: 66px;
}
.site-header .brand-copy {
  max-width: 250px;
}
.site-header .brand-name {
  font-size: 1.04rem;
}
.site-header .brand-tagline {
  font-size: .69rem;
}
.site-header .nav-wrap {
  gap: .65rem;
}
.site-header .site-nav {
  gap: .24rem;
}
.site-header .site-nav a {
  padding: .56rem .76rem;
  font-size: .88rem;
}
.site-header .header-actions {
  gap: .5rem;
  flex-shrink: 0;
}
.site-header .header-actions .button,
.site-header .header-actions .button-secondary {
  min-height: 44px;
  padding: .72rem 1.02rem;
}
@media (max-width: 1080px) {
  .site-header .header-inner {
    min-height: 78px;
    gap: .85rem;
  }
}
@media (max-width: 720px) {
  .site-header .header-inner {
    min-height: 74px;
  }
  .site-header .brand-mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
}
.logo-grid[data-company-logos] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.logo-grid[data-company-logos] .logo-card {
  min-height: 172px;
  padding: 1.1rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.logo-grid[data-company-logos] .logo-slot {
  gap: .85rem;
}
.logo-media {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-grid[data-company-logos] .logo-image {
  width: 100%;
  max-width: 146px;
  max-height: 62px;
  object-fit: contain;
  object-position: center;
}
.logo-company-name {
  margin: 0;
  font-size: .92rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -.01em;
}
@media (max-width: 1080px) {
  .logo-grid[data-company-logos] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .logo-grid[data-company-logos] {
    grid-template-columns: 1fr;
    gap: .85rem;
  }
  .logo-grid[data-company-logos] .logo-card {
    min-height: 154px;
    padding: 1rem;
  }
  .logo-media {
    min-height: 70px;
  }
}

.logo-grid[data-company-logos] {
  gap: 1.1rem;
}
.logo-grid[data-company-logos] .logo-card {
  min-height: 156px;
  padding: .95rem 1rem;
  border-radius: 22px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.logo-grid[data-company-logos] .logo-slot {
  gap: .72rem;
}
.logo-grid[data-company-logos] .logo-media {
  width: 100%;
  min-height: 72px;
  padding: .2rem .35rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-grid[data-company-logos] .logo-image {
  width: 100%;
  max-width: 156px;
  max-height: 54px;
  object-fit: contain;
  object-position: center;
}
.logo-grid[data-company-logos] .logo-image--chery,
.logo-grid[data-company-logos] .logo-image--zeekr,
.logo-grid[data-company-logos] .logo-image--chagee,
.logo-grid[data-company-logos] .logo-image--sun-cycle {
  max-width: 144px;
}
.logo-grid[data-company-logos] .logo-image--huawei,
.logo-grid[data-company-logos] .logo-image--intel,
.logo-grid[data-company-logos] .logo-image--ecloudvalley,
.logo-grid[data-company-logos] .logo-image--ola-tech {
  max-width: 164px;
}
.logo-grid[data-company-logos] .logo-image--ola-tech {
  max-height: 50px;
}
.logo-grid[data-company-logos] .logo-company-name {
  margin: 0;
  font-size: .9rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -.01em;
}
@media (max-width: 1080px) {
  .logo-grid[data-company-logos] {
    gap: 1rem;
  }
}
@media (max-width: 720px) {
  .logo-grid[data-company-logos] {
    gap: .9rem;
  }
  .logo-grid[data-company-logos] .logo-card {
    min-height: 148px;
    padding: .9rem;
  }
  .logo-grid[data-company-logos] .logo-media {
    min-height: 68px;
    padding: .15rem .25rem;
  }
  .logo-grid[data-company-logos] .logo-image {
    max-width: 150px;
    max-height: 50px;
  }
}

.section-hero {
  padding: calc(var(--header-height) + 1.95rem) 0 2.8rem;
}
.section-tight {
  padding: 2.35rem 0 2.8rem;
}
.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.6rem;
  align-items: center;
}
.hero-grid > .stack:first-child {
  gap: .9rem;
  align-content: center;
}
.hero-grid > .stack:first-child .eyebrow {
  margin-bottom: .05rem;
}
.hero-title {
  max-width: 11.5ch;
  font-size: clamp(2.45rem, 3.8vw, 4rem);
  line-height: 1.04;
}
.hero-copy {
  max-width: 57ch;
  font-size: 1.04rem;
  line-height: 1.68;
}
.hero-grid .cta-row {
  gap: .8rem;
  margin-top: .2rem;
}
.hero-grid .cta-row .button,
.hero-grid .cta-row .button-secondary {
  min-width: 172px;
}
.hero-grid .hero-showcase-panel {
  gap: .95rem;
  align-self: stretch;
}
.hero-grid .hero-product-card {
  padding: .62rem;
  border-radius: 24px;
}
.hero-grid .hero-product-image {
  max-height: 284px;
  border-radius: 18px;
}
.hero-grid .hero-product-overlay {
  padding: .74rem .82rem;
  gap: .32rem;
}
.hero-grid .hero-category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  margin-top: .32rem;
}
.hero-grid .category-card {
  padding: .58rem;
  border-radius: 20px;
}
.hero-grid .category-image {
  height: 148px;
  border-radius: 15px;
}
.hero-grid .category-overlay {
  margin-top: .48rem;
  padding: .7rem .74rem;
  min-height: 88px;
}
.trust-strip {
  padding: 1rem;
  border-radius: 28px;
}
@media (max-width: 1080px) {
  .section-hero {
    padding: calc(var(--header-height) + 1.7rem) 0 2.45rem;
  }
  .section-tight {
    padding: 2.1rem 0 2.45rem;
  }
  .hero-grid {
    gap: 1.25rem;
  }
  .hero-title {
    font-size: clamp(2.3rem, 5.2vw, 3.35rem);
    max-width: 12.5ch;
  }
  .hero-copy {
    max-width: 60ch;
  }
  .hero-grid .hero-product-image {
    max-height: 264px;
  }
  .hero-grid .hero-category-grid {
    gap: .82rem;
    margin-top: .28rem;
  }
  .hero-grid .category-image {
    height: 140px;
  }
}
@media (max-width: 720px) {
  .section-hero {
    padding: calc(var(--header-height) + 1.2rem) 0 2.15rem;
  }
  .section-tight {
    padding: 1.7rem 0 2.15rem;
  }
  .hero-grid {
    gap: 1rem;
    align-items: start;
  }
  .hero-grid > .stack:first-child {
    gap: .82rem;
  }
  .hero-title {
    font-size: clamp(2.05rem, 9.2vw, 2.7rem);
    max-width: 12ch;
  }
  .hero-copy {
    font-size: .98rem;
    line-height: 1.64;
  }
  .hero-grid .cta-row {
    gap: .7rem;
    margin-top: .1rem;
  }
  .hero-grid .cta-row .button,
  .hero-grid .cta-row .button-secondary {
    min-width: 0;
  }
  .hero-grid .hero-showcase-panel {
    gap: .82rem;
  }
  .hero-grid .hero-product-card {
    padding: .56rem;
  }
  .hero-grid .hero-product-image {
    max-height: 236px;
    border-radius: 16px;
  }
  .hero-grid .hero-product-overlay {
    padding: .68rem .72rem;
  }
  .hero-grid .hero-category-grid {
    grid-template-columns: 1fr;
    gap: .78rem;
    margin-top: .22rem;
  }
  .hero-grid .category-card {
    padding: .54rem;
  }
  .hero-grid .category-image {
    height: 154px;
    border-radius: 14px;
  }
  .hero-grid .category-overlay {
    margin-top: .44rem;
    padding: .66rem .7rem;
    min-height: 0;
  }
  .trust-strip {
    padding: .92rem;
  }
}


.site-footer {
  padding: 2.35rem 0 2rem;
}
.site-footer .container {
  display: grid;
  gap: 1.1rem;
}
.site-footer .footer-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .86fr) minmax(0, .92fr);
  gap: 1.2rem;
  align-items: start;
}
.site-footer .footer-meta,
.site-footer .footer-links {
  gap: .48rem;
  align-content: start;
}
.site-footer .footer-meta {
  padding-top: .08rem;
}
.site-footer .footer-brand-lockup {
  align-items: center;
  gap: .68rem;
}
.site-footer .footer-logo {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 16px;
}
.site-footer .footer-meta .brand-name {
  font-size: 1.05rem;
  line-height: 1.08;
}
.site-footer .footer-meta .brand-tagline {
  font-size: .73rem;
  line-height: 1.2;
}
.site-footer .footer-links strong {
  margin-bottom: .16rem;
}
.site-footer .footer-links a,
.site-footer .footer-meta .muted {
  line-height: 1.45;
}
.site-footer .footer-note {
  margin-top: .15rem;
  padding-top: 1rem;
}
@media (max-width: 1080px) {
  .site-footer {
    padding: 2rem 0 1.8rem;
  }
  .site-footer .container {
    gap: 1rem;
  }
  .site-footer .footer-grid {
    gap: 1rem;
  }
}
@media (max-width: 720px) {
  .site-footer {
    padding: 1.8rem 0 1.55rem;
  }
  .site-footer .container {
    gap: .9rem;
  }
  .site-footer .footer-grid {
    gap: .9rem;
  }
  .site-footer .footer-meta,
  .site-footer .footer-links {
    gap: .42rem;
  }
  .site-footer .footer-logo {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    border-radius: 14px;
  }
  .site-footer .footer-note {
    padding-top: .85rem;
  }
}

.site-footer .footer-meta {
  padding-top: 0;
  align-self: center;
}
.site-footer .footer-brand-lockup {
  align-items: center;
  gap: .78rem;
}
.site-footer .footer-brand-lockup > div {
  display: grid;
  gap: .16rem;
  align-content: center;
}
.site-footer .footer-meta .brand-name {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.04;
}
.site-footer .footer-meta .brand-tagline {
  margin: 0;
  font-size: .74rem;
  line-height: 1.24;
}
@media (max-width: 720px) {
  .site-footer .footer-brand-lockup {
    gap: .68rem;
  }
  .site-footer .footer-brand-lockup > div {
    gap: .12rem;
  }
}
.site-footer .footer-meta {
  align-self: start;
  padding-top: .08rem;
}
.site-footer .footer-brand-lockup {
  align-items: flex-start;
  gap: .72rem;
}
.site-footer .footer-brand-lockup > div {
  gap: .14rem;
  padding-top: .12rem;
}
@media (max-width: 720px) {
  .site-footer .footer-meta {
    padding-top: 0;
  }
  .site-footer .footer-brand-lockup {
    gap: .64rem;
  }
.site-footer .footer-brand-lockup > div {
  gap: .1rem;
    padding-top: .08rem;
  }
}

.site-header .header-inner {
  min-height: 78px;
  gap: .8rem;
  flex-wrap: nowrap;
}
.site-header .brand {
  gap: .62rem;
  flex: 0 0 auto;
}
.site-header .brand-mark {
  width: 60px;
  height: 60px;
  flex-basis: 60px;
}
.site-header .brand-copy {
  flex: 0 0 auto;
  max-width: 222px;
  gap: .1rem;
}
.site-header .brand-name {
  font-size: 1rem;
}
.site-header .brand-tagline {
  font-size: .65rem;
}
.site-header .nav-wrap {
  flex: 1 1 auto;
  gap: .5rem;
  min-width: 0;
}
.site-header .site-nav {
  min-width: 0;
}
.site-header .site-nav-desktop {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: .14rem;
}
.site-header .site-nav-desktop a {
  white-space: nowrap;
  padding: .5rem .62rem;
  font-size: .84rem;
  line-height: 1.15;
}
.site-header .header-actions {
  gap: .45rem;
  flex: 0 0 auto;
  flex-wrap: nowrap;
}
.site-header .header-actions .button,
.site-header .header-actions .button-secondary {
  min-height: 40px;
  padding: .64rem .92rem;
  font-size: .84rem;
  white-space: nowrap;
}
.site-header .site-nav-mobile {
  display: none;
}
@media (max-width: 1080px) {
  .site-header .site-nav-desktop {
    display: none;
  }
  .site-header .site-nav-mobile {
    display: none;
    position: absolute;
    top: calc(var(--header-height) - .35rem);
    left: 0;
    right: 0;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255,253,249,0.98);
    border: 1px solid var(--color-border);
    box-shadow: 0 24px 45px rgba(36, 59, 83, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: .35rem;
  }
  .site-header .site-nav-mobile.is-open {
    display: flex;
  }
  .site-header .site-nav-mobile a {
    border-radius: var(--radius-sm);
    padding: .72rem .9rem;
    font-size: .92rem;
  }
}
@media (max-width: 720px) {
  .site-header .header-inner {
    min-height: 74px;
  }
  .site-header .brand-mark {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
  .site-header .brand-copy {
    max-width: none;
  }
}

.home-companies-layout {
  align-items: start;
}
.home-companies-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .78rem;
}
.home-companies-grid.logo-grid[data-company-logos] .logo-card {
  min-height: 142px;
  padding: .82rem .7rem;
}
.home-companies-grid.logo-grid[data-company-logos] .logo-slot {
  gap: .62rem;
}
.home-companies-grid.logo-grid[data-company-logos] .logo-media {
  min-height: 58px;
  padding: .08rem;
}
.home-companies-grid.logo-grid[data-company-logos] .logo-image {
  max-width: 108px;
  max-height: 42px;
}
.home-companies-grid.logo-grid[data-company-logos] .logo-image--huawei,
.home-companies-grid.logo-grid[data-company-logos] .logo-image--intel,
.home-companies-grid.logo-grid[data-company-logos] .logo-image--ecloudvalley,
.home-companies-grid.logo-grid[data-company-logos] .logo-image--ola-tech {
  max-width: 114px;
}
.home-companies-grid.logo-grid[data-company-logos] .logo-company-name {
  font-size: .83rem;
  line-height: 1.2;
}
@media (max-width: 1080px) {
  .home-companies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
  }
  .home-companies-grid.logo-grid[data-company-logos] .logo-card {
    min-height: 146px;
    padding: .9rem .8rem;
  }
  .home-companies-grid.logo-grid[data-company-logos] .logo-image {
    max-width: 122px;
    max-height: 46px;
  }
}
@media (max-width: 720px) {
  .home-companies-grid {
    grid-template-columns: 1fr;
    gap: .85rem;
  }
  .home-companies-grid.logo-grid[data-company-logos] .logo-card {
    min-height: 148px;
  }
  .home-companies-grid.logo-grid[data-company-logos] .logo-media {
    min-height: 64px;
  }
}

/* Final responsive layout layer */
:root {
  --container-max: 1180px;
  --content-gutter: clamp(1rem, 2vw, 1.5rem);
  --section-space: clamp(4.25rem, 7vw, 5.5rem);
  --section-space-tight: clamp(2rem, 4vw, 3rem);
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-size: 1rem;
}

body.menu-open {
  overflow: hidden;
}

.container {
  width: min(100% - (var(--content-gutter) * 2), var(--container-max));
}

main,
main > section,
.container,
.panel,
.card,
.form-card,
.placeholder-card,
.logo-card,
.contact-card {
  min-width: 0;
}

.section {
  padding: var(--section-space) 0;
}

.section-tight {
  padding: var(--section-space-tight) 0;
}

.page-hero {
  padding: calc(var(--header-height) + 1.85rem) 0 2.7rem;
}

.page-hero .container,
.page-hero .panel {
  max-width: 980px;
}

.lead,
.section-copy,
.hero-copy {
  line-height: 1.72;
}

.button,
.button-secondary,
.button-tertiary,
.menu-toggle,
.field input,
.field select,
.field textarea,
.faq-question {
  touch-action: manipulation;
}

.button,
.button-secondary,
.menu-toggle {
  min-height: 48px;
}

.button,
.button-secondary {
  padding-inline: 1.3rem;
}

.cta-row {
  gap: .85rem;
}

.hero-grid,
.split-grid,
.contact-grid,
.form-layout,
.two-column {
  gap: clamp(1.25rem, 2.4vw, 2rem);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
}

.hero-grid > .stack:first-child {
  max-width: 600px;
}

.hero-title {
  max-width: 11ch;
}

.hero-copy {
  max-width: 56ch;
}

.hero-grid .cta-row .button,
.hero-grid .cta-row .button-secondary {
  flex: 0 0 auto;
}

.hero-grid .hero-showcase-panel {
  align-self: stretch;
}

.hero-grid .hero-product-card,
.hero-grid .category-card,
.placeholder-card {
  overflow: hidden;
}

.hero-grid .hero-product-image,
.media-slot .media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid .hero-product-image {
  aspect-ratio: 4 / 3;
  max-height: min(30vw, 340px);
}

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

.hero-grid .category-image {
  aspect-ratio: 4 / 3;
  height: auto;
}

.hero-grid .home-festive-gifts-image {
  object-fit: cover;
  object-position: center;
  background: #f5ede3;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.placeholder-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.logo-grid[data-company-logos] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logo-grid[data-company-logos] .logo-card,
.home-companies-grid.logo-grid[data-company-logos] .logo-card {
  min-height: 148px;
}

.logo-grid[data-company-logos] .logo-media,
.home-companies-grid.logo-grid[data-company-logos] .logo-media {
  min-height: 64px;
}

.logo-grid[data-company-logos] .logo-company-name {
  line-height: 1.3;
}

.field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field input,
.field select,
.field textarea {
  min-width: 0;
}

.contact-grid > .stack,
.form-layout > .stack {
  gap: 1rem;
}

.site-header .header-inner {
  min-height: 78px;
  gap: .9rem;
}

.site-header .brand {
  min-width: 0;
}

.site-header .brand-copy {
  min-width: 0;
}

.site-header .brand-name,
.site-header .brand-tagline,
.site-header .site-nav a,
.site-header .header-actions .button,
.site-header .header-actions .button-secondary {
  white-space: nowrap;
}

.site-header .site-nav-desktop {
  flex-wrap: nowrap;
  gap: .14rem;
}

.site-header .header-actions {
  flex-wrap: nowrap;
}

.site-header .header-actions .button,
.site-header .header-actions .button-secondary {
  min-height: 42px;
  padding: .66rem .92rem;
}

.site-footer .footer-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr) minmax(0, .95fr);
  gap: 1.25rem;
}

.site-footer .footer-links,
.site-footer .footer-meta {
  align-content: start;
}

@media (max-width: 1080px) {
  :root {
    --content-gutter: 1rem;
    --section-space: clamp(3.6rem, 6vw, 4.6rem);
    --section-space-tight: clamp(1.8rem, 3vw, 2.4rem);
  }

  .page-hero {
    padding: calc(var(--header-height) + 1.5rem) 0 2.2rem;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .form-layout,
  .two-column,
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 1.25rem;
    align-items: start;
  }

  .hero-grid > .stack:first-child,
  .page-hero .container,
  .page-hero .panel {
    max-width: none;
  }

  .hero-title {
    max-width: 12ch;
    font-size: clamp(2.35rem, 6vw, 3.4rem);
  }

  .hero-copy {
    max-width: 62ch;
  }

  .hero-grid .hero-showcase-panel {
    max-width: 760px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .logo-grid[data-company-logos],
  .home-companies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header .header-inner {
    min-height: 76px;
  }

  .site-header .brand-mark {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .site-header .brand-copy {
    max-width: 220px;
  }

  .site-header .header-actions .button {
    min-width: 0;
  }

  .site-header .site-nav-mobile {
    top: calc(100% + .5rem);
    right: 0;
    left: auto;
    width: min(360px, 100vw - (var(--content-gutter) * 2));
    padding: .9rem;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 74px;
    --content-gutter: .875rem;
    --section-space: clamp(3rem, 8vw, 3.8rem);
    --section-space-tight: clamp(1.4rem, 5vw, 2rem);
  }

  .page-hero,
  .section-hero {
    padding-inline: 0;
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 1.15rem);
    padding-bottom: 1.85rem;
  }

  .section-hero {
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 2rem;
  }

  .hero-title,
  .page-title {
    font-size: clamp(2rem, 9vw, 2.65rem);
    max-width: 12ch;
  }

  .section-heading,
  .cta-title {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  .lead,
  .section-copy,
  .hero-copy,
  .card p,
  .panel p,
  .contact-card p,
  .form-card p {
    font-size: .98rem;
    line-height: 1.68;
  }

  .cta-row {
    width: 100%;
  }

  .cta-row .button,
  .cta-row .button-secondary,
  .header-actions .button {
    width: 100%;
    min-width: 0;
  }

  .card-grid,
  .placeholder-grid,
  .about-services-list,
  .faq-preview-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-grid {
    align-items: start;
  }

  .about-intro-grid > .card {
    height: auto;
  }

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

  .logo-grid[data-company-logos],
  .home-companies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid .hero-category-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid .hero-product-image {
    max-height: 240px;
  }

  .hero-grid .category-image {
    aspect-ratio: 16 / 10;
  }

  .site-header .header-inner {
    min-height: 72px;
    gap: .7rem;
  }

  .site-header .brand {
    gap: .55rem;
  }

  .site-header .brand-mark {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .site-header .brand-copy {
    max-width: 170px;
  }

  .site-header .brand-tagline {
    display: none;
  }

  .site-header .header-actions {
    gap: .55rem;
  }

  .site-header .header-actions .button {
    min-height: 44px;
    padding: .72rem .95rem;
    font-size: .84rem;
  }

  .menu-toggle {
    min-height: 44px;
    padding: .72rem .95rem;
  }

  .site-header .site-nav-mobile {
    width: min(320px, 100vw - (var(--content-gutter) * 2));
  }

  .panel,
  .form-card {
    padding: 1.15rem;
  }

  .card,
  .contact-card,
  .stat-card,
  .logo-card {
    padding: 1.1rem;
  }

  .whatsapp-float {
    left: auto;
    right: var(--content-gutter);
    bottom: .8rem;
  }

  .site-footer {
    padding: 1.7rem 0 1.45rem;
  }
}

@media (max-width: 540px) {
  .stats-grid,
  .logo-grid[data-company-logos],
  .home-companies-grid {
    grid-template-columns: 1fr;
  }

  .site-header .header-inner {
    gap: .55rem;
  }

  .site-header .brand-copy {
    max-width: 136px;
  }

  .site-header .brand-name {
    font-size: .92rem;
  }
}

/* Gift gallery pages */
.page-hero-compact {
  padding: calc(var(--header-height) + 1.2rem) 0 1rem;
}

.gift-page-intro {
  max-width: 760px;
  gap: .7rem;
}

.gift-page-title {
  max-width: none;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.gift-page-lead {
  max-width: 62ch;
  font-size: 1rem;
}

.section-gallery {
  padding-top: .6rem;
}

.gift-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.gift-gallery-card {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,253,249,0.9));
}

.gift-gallery-card::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 24%);
}

.gift-gallery-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(36, 59, 83, 0.1), rgba(167, 155, 142, 0.08)),
    linear-gradient(180deg, #f6f1e8, #ece4d8);
}

.gift-gallery-media::after {
  content: "";
  position: absolute;
  inset: auto -12% -28% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.36), transparent 68%);
  pointer-events: none;
}

.gift-gallery-slider {
  touch-action: pan-y;
}

.gift-gallery-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.gift-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .32s ease;
  pointer-events: none;
}

.gift-gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.gift-gallery-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-gallery-lightbox-trigger {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.gift-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.86);
  color: var(--color-primary);
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  box-shadow: 0 10px 24px rgba(36, 59, 83, 0.12);
  cursor: pointer;
}

.gift-gallery-nav-prev {
  left: .8rem;
}

.gift-gallery-nav-next {
  right: .8rem;
}

.gift-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: .95rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .38rem .55rem;
  border-radius: 999px;
  background: rgba(25, 39, 56, 0.26);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.gift-gallery-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.46);
  cursor: pointer;
}

.gift-gallery-dot.is-active {
  background: rgba(255,255,255,0.96);
}

.gift-gallery-zoom {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: .48rem .82rem;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.84);
  border: 1px solid rgba(36, 59, 83, 0.1);
  color: var(--color-primary);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: 0 10px 22px rgba(36, 59, 83, 0.1);
}

.gift-gallery-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .5rem;
  padding: 1.15rem 1.15rem 1.2rem;
}

.gift-gallery-copy .card-title {
  font-size: 1.15rem;
}

.gift-gallery-copy p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
}

.process-card-grid {
  align-items: stretch;
}

.process-card {
  gap: .82rem;
}

.process-card .card-title {
  font-size: clamp(1.14rem, 1.5vw, 1.32rem);
  line-height: 1.15;
}

.process-card p {
  margin: 0;
  line-height: 1.62;
}

.title-only-gallery .gift-gallery-copy,
.festive-gallery-title-only .gift-gallery-copy {
  min-height: 86px;
  align-content: center;
}

.title-only-gallery .gift-gallery-copy .card-title,
.festive-gallery-title-only .gift-gallery-copy .card-title {
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.18;
}

.gift-gallery-media.is-missing {
  background:
    linear-gradient(145deg, rgba(36, 59, 83, 0.14), rgba(167, 155, 142, 0.12)),
    linear-gradient(180deg, #f4ede3, #e9dfd2);
}

.gift-gallery-slide.is-missing .gift-gallery-slide-image {
  opacity: 0;
  pointer-events: none;
}

.gift-gallery-slide.is-missing::before {
  content: attr(data-fallback-label);
  position: absolute;
  inset: 1.25rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  border-radius: 18px;
  border: 1px dashed rgba(36, 59, 83, 0.18);
  color: rgba(36, 59, 83, 0.72);
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -.01em;
  text-align: center;
  background: rgba(255, 253, 249, 0.46);
  z-index: 1;
}

.gift-page-premium-cta {
  max-width: 100%;
  padding: clamp(1.5rem, 2.8vw, 2.25rem);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 22%),
    radial-gradient(circle at bottom left, rgba(167, 155, 142, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(28, 48, 70, 0.98), rgba(42, 66, 93, 0.96) 54%, rgba(57, 84, 110, 0.92));
  box-shadow: 0 28px 58px rgba(25, 39, 56, 0.22);
}

.gift-page-premium-cta-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.gift-page-premium-cta .stack {
  gap: .75rem;
}

.gift-page-premium-cta .eyebrow {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}

.gift-page-premium-cta .cta-title {
  max-width: 16ch;
  font-size: clamp(1.8rem, 2.6vw, 2.35rem);
}

.gift-page-premium-cta p {
  max-width: 58ch;
  color: rgba(248, 246, 240, 0.84);
}

.gift-page-premium-cta-actions {
  justify-content: flex-end;
  align-items: center;
  width: auto;
  gap: .8rem;
}

.gift-page-premium-cta-actions .button,
.gift-page-premium-cta-actions .button-secondary {
  min-width: 180px;
}

.gift-page-premium-cta-actions .button {
  background: linear-gradient(180deg, #f8f6f0 0%, #ebe4d8 100%);
  color: var(--color-primary-strong);
  box-shadow: 0 16px 30px rgba(8, 14, 21, 0.16);
}

.gift-page-premium-cta-actions .button:hover {
  box-shadow: 0 18px 34px rgba(8, 14, 21, 0.2);
}

.gift-page-premium-cta-actions .button-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

body.lightbox-open {
  overflow: hidden;
}

.site-lightbox[hidden] {
  display: none;
}

.site-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.site-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 34, 47, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: calc(100vh - 2.5rem);
  padding: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(247, 245, 240, 0.94);
  box-shadow: 0 36px 90px rgba(16, 26, 37, 0.3);
}

.site-lightbox-close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(36, 59, 83, 0.08);
  color: var(--color-primary);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.site-lightbox-figure {
  margin: 0;
  display: grid;
  gap: .85rem;
}

.site-lightbox-image {
  width: 100%;
  max-height: calc(100vh - 9rem);
  border-radius: 20px;
  object-fit: contain;
  background:
    linear-gradient(145deg, rgba(36, 59, 83, 0.08), rgba(167, 155, 142, 0.08)),
    linear-gradient(180deg, #f6f1e8, #ece4d8);
}

.site-lightbox-caption {
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -.01em;
}

@media (max-width: 1080px) {
  .gift-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-compact {
    padding: calc(var(--header-height) + 1.05rem) 0 .9rem;
  }

  .gift-page-premium-cta-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .gift-page-premium-cta-actions {
    justify-content: flex-start;
  }

  .gift-gallery-nav {
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .gift-gallery-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-compact {
    padding: calc(var(--header-height) + .9rem) 0 .75rem;
  }

  .gift-page-title {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
  }

  .gift-gallery-copy {
    padding: 1rem 1rem 1.05rem;
  }

  .title-only-gallery .gift-gallery-copy,
  .festive-gallery-title-only .gift-gallery-copy {
    min-height: 76px;
  }

  .gift-page-premium-cta {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .gift-page-premium-cta .cta-title {
    max-width: none;
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .gift-page-premium-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .gift-page-premium-cta-actions .button,
  .gift-page-premium-cta-actions .button-secondary {
    width: 100%;
    min-width: 0;
  }

  .gift-gallery-nav {
    width: 36px;
    height: 36px;
  }

  .gift-gallery-nav-prev {
    left: .65rem;
  }

  .gift-gallery-nav-next {
    right: .65rem;
  }

  .gift-gallery-dots {
    bottom: .8rem;
  }

  .site-lightbox {
    padding: .8rem;
  }

  .site-lightbox-dialog {
    padding: .8rem;
    border-radius: 22px;
  }

  .site-lightbox-image {
    max-height: calc(100vh - 8rem);
    border-radius: 16px;
  }
}

/* Premium motion layer */
:root {
  --motion-ease-premium: cubic-bezier(.22, 1, .36, 1);
  --motion-duration-fast: 220ms;
  --motion-duration-base: 520ms;
  --motion-duration-slow: 760ms;
  --header-height-compact: 72px;
}

.site-header {
  background: rgba(247, 245, 240, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 10px 30px rgba(36, 59, 83, 0.04);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition:
    background .38s var(--motion-ease-premium),
    border-color .38s var(--motion-ease-premium),
    box-shadow .38s var(--motion-ease-premium),
    backdrop-filter .38s var(--motion-ease-premium);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04));
  opacity: .9;
}

.site-header .header-inner {
  position: relative;
  z-index: 1;
  padding-block: .4rem;
  transition:
    min-height .38s var(--motion-ease-premium),
    padding .38s var(--motion-ease-premium),
    gap .38s var(--motion-ease-premium);
}

.site-header.is-scrolled {
  background: rgba(248, 246, 241, 0.86);
  border-color: rgba(36, 59, 83, 0.12);
  box-shadow: 0 18px 38px rgba(36, 59, 83, 0.08);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.site-header.is-scrolled .header-inner {
  min-height: var(--header-height-compact);
  padding-block: .22rem;
}

.button,
.button-secondary,
.button-tertiary,
.card,
.contact-card,
.logo-card,
.placeholder-card,
.stat-card,
.faq-item,
.panel,
.media-image,
.whatsapp-float a,
.faq-question span,
.site-nav a {
  transition-timing-function: var(--motion-ease-premium);
}

.card,
.contact-card,
.logo-card,
.placeholder-card,
.stat-card,
.panel,
.faq-item {
  transition:
    transform .34s var(--motion-ease-premium),
    box-shadow .34s var(--motion-ease-premium),
    border-color .34s var(--motion-ease-premium),
    background-color .34s var(--motion-ease-premium);
}

.media-slot .media-image {
  transform-origin: center center;
  transition:
    transform .7s var(--motion-ease-premium),
    opacity .55s ease;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover,
  .contact-card:hover,
  .logo-card:hover,
  .placeholder-card:hover,
  .stat-card:hover,
  .faq-item:hover {
    transform: translate3d(0, -6px, 0);
    box-shadow: 0 30px 54px rgba(36, 59, 83, 0.14);
    border-color: rgba(36, 59, 83, 0.18);
  }

  .media-slot:hover .media-image:not(.hero-product-image),
  .logo-card:hover .logo-image {
    transform: scale(1.028);
  }

  .site-nav a:hover {
    background: rgba(36, 59, 83, 0.055);
    transform: translate3d(0, -1px, 0);
  }

  .whatsapp-float a:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 28px 44px rgba(18, 92, 56, .34);
  }
}

.js [data-hero-animate] [data-hero-seq] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  will-change: transform, opacity;
}

.js [data-hero-animate].is-ready [data-hero-seq] {
  animation: hero-fade-up var(--motion-duration-slow) var(--motion-ease-premium) both;
  animation-delay: var(--hero-delay, 0ms);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity var(--motion-duration-base) var(--motion-ease-premium),
    transform var(--motion-duration-base) var(--motion-ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.faq-item {
  transition:
    transform .3s var(--motion-ease-premium),
    box-shadow .3s var(--motion-ease-premium),
    border-color .3s var(--motion-ease-premium),
    background-color .3s var(--motion-ease-premium);
}

.faq-question span {
  transition:
    transform .32s var(--motion-ease-premium),
    background-color .32s var(--motion-ease-premium),
    color .32s var(--motion-ease-premium);
}

.faq-item.is-open .faq-question span {
  transform: rotate(180deg);
  background: rgba(36, 59, 83, 0.14);
}

.faq-answer {
  display: block;
  opacity: 1;
  height: auto;
  overflow: hidden;
  transition:
    height .34s var(--motion-ease-premium),
    opacity .24s ease;
}

.accent-block {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.accent-block::after {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 78% 30%, rgba(167, 155, 142, 0.09), transparent 24%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.045) 70%, rgba(255, 255, 255, 0));
  opacity: .55;
  transform: translate3d(0, 0, 0);
  animation: accent-sheen 20s ease-in-out infinite alternate;
}

.accent-block > * {
  position: relative;
  z-index: 1;
}

.whatsapp-float a {
  animation: whatsapp-idle 4.8s ease-in-out infinite;
  will-change: transform, box-shadow;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes accent-sheen {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.035);
  }
}

@keyframes whatsapp-idle {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 24px 40px rgba(18, 92, 56, .32);
  }
  50% {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 28px 44px rgba(18, 92, 56, .35);
  }
}

@media (max-width: 1080px) {
  :root {
    --motion-duration-base: 460ms;
    --motion-duration-slow: 620ms;
    --header-height-compact: 70px;
  }

  .site-header.is-scrolled .header-inner {
    padding-block: .18rem;
  }

  .reveal-on-scroll {
    transform: translate3d(0, 18px, 0);
  }
}

@media (max-width: 720px) {
  :root {
    --motion-duration-base: 380ms;
    --motion-duration-slow: 520ms;
    --header-height-compact: 68px;
  }

  .site-header::before,
  .accent-block::after {
    animation: none;
  }

  .whatsapp-float a {
    animation-duration: 6.5s;
  }

  .reveal-on-scroll,
  .js [data-hero-animate] [data-hero-seq] {
    transform: translate3d(0, 14px, 0);
  }
}

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

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

  .js [data-hero-animate] [data-hero-seq],
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .accent-block::after,
  .whatsapp-float a {
    animation: none !important;
  }
}

/* Homepage hero image quality lock */
.hero-grid .hero-product-card {
  overflow: hidden;
}

.hero-grid .hero-product-card .hero-product-image {
  display: block;
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  max-height: min(30vw, 340px);
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  border-radius: 18px;
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
  transition: none;
}

@media (max-width: 1080px) {
  .hero-grid .hero-product-card .hero-product-image {
    max-height: 264px;
  }
}

@media (max-width: 720px) {
  .hero-grid .hero-product-card .hero-product-image {
    max-height: 236px;
    border-radius: 16px;
  }
}

/* Section visual upgrade layer */
.home-hero {
  position: relative;
}

.home-hero .hero-grid {
  align-items: center;
  gap: clamp(2rem, 5vw, 4.4rem);
}

.hero-grid .hero-showcase-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(.9rem, 1.5vw, 1.2rem);
  border: 1px solid rgba(36, 59, 83, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.92), rgba(247, 241, 232, 0.78)),
    linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0));
  box-shadow:
    0 34px 70px rgba(36, 59, 83, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.78);
  isolation: isolate;
}

.hero-grid .hero-showcase-panel::before,
.hero-grid .hero-showcase-panel::after {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
  border-radius: 28px;
  z-index: -1;
}

.hero-grid .hero-showcase-panel::before {
  inset: 1.1rem -1rem -1rem 2.2rem;
  background: rgba(36, 59, 83, 0.08);
  filter: blur(2px);
}

.hero-grid .hero-showcase-panel::after {
  inset: -1.1rem 2.4rem auto -1rem;
  height: 130px;
  border: 1px solid rgba(255,255,255,0.72);
  background: linear-gradient(135deg, rgba(255,255,255,0.54), rgba(167,155,142,0.12));
}

.hero-grid .hero-product-card {
  border-radius: 28px;
  border-color: rgba(36, 59, 83, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,253,249,0.82)),
    linear-gradient(145deg, rgba(167,155,142,0.12), rgba(36,59,83,0.04));
  box-shadow: 0 24px 48px rgba(36, 59, 83, 0.13);
}

.hero-grid .hero-product-card .hero-product-image {
  box-shadow: 0 18px 34px rgba(36, 59, 83, 0.13);
}

.hero-grid .hero-product-overlay,
.hero-grid .category-overlay {
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(36, 59, 83, 0.08);
  box-shadow: 0 14px 28px rgba(36, 59, 83, 0.08);
}

.hero-grid .category-card {
  border-radius: 24px;
  border-color: rgba(36, 59, 83, 0.11);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,244,237,0.82));
  box-shadow: 0 18px 34px rgba(36, 59, 83, 0.09);
}

.trust-strip {
  padding: .85rem;
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust-strip .stats-grid {
  gap: .7rem;
}

.trust-strip .stat-card {
  position: relative;
  min-height: 76px;
  justify-content: flex-start;
  padding: .9rem 1rem .9rem 3.15rem;
  border-radius: 999px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,245,238,0.82));
  box-shadow: 0 14px 28px rgba(36, 59, 83, 0.08);
}

.trust-strip .stat-card::before {
  content: "";
  position: absolute;
  left: .9rem;
  top: 50%;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(36, 59, 83, 0.92), rgba(62, 87, 111, 0.86)),
    var(--color-primary);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(36, 59, 83, 0.07);
}

.trust-strip .stat-card::after {
  content: "";
  position: absolute;
  left: 1.42rem;
  top: 50%;
  width: .45rem;
  height: .72rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-60%) rotate(42deg);
}

.card-grid[data-reveal-group="what-we-do-cards"] {
  gap: .95rem;
}

.card-grid[data-reveal-group="what-we-do-cards"] .card {
  min-height: 168px;
  gap: .58rem;
  justify-content: flex-start;
  padding: 1.12rem 1.18rem 1.18rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,253,249,0.86)),
    linear-gradient(135deg, rgba(167,155,142,0.08), rgba(36,59,83,0.035));
}

.card-grid[data-reveal-group="what-we-do-cards"] .card-title {
  font-size: 1.22rem;
  margin-bottom: .1rem;
}

.card-grid[data-reveal-group="what-we-do-cards"] .card p {
  margin-top: 0;
  line-height: 1.58;
}

.split-grid[data-reveal-group="why-herros"] .panel {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.split-grid[data-reveal-group="why-herros"] .panel::before {
  display: none;
}

.split-grid[data-reveal-group="why-herros"] .feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.split-grid[data-reveal-group="why-herros"] .feature-list li {
  min-height: 154px;
  padding: 1.1rem 1.1rem 1.1rem 3.15rem;
  border: 1px solid rgba(36, 59, 83, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,253,249,0.82));
  box-shadow: 0 18px 34px rgba(36, 59, 83, 0.08);
  transition: transform .32s var(--motion-ease-premium), box-shadow .32s var(--motion-ease-premium), border-color .32s var(--motion-ease-premium);
}

.split-grid[data-reveal-group="why-herros"] .feature-list li::before {
  left: 1.05rem;
  top: 1.12rem;
  width: 1.38rem;
  height: 1.38rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), #39546e);
  box-shadow: 0 0 0 5px rgba(36, 59, 83, 0.07);
}

.split-grid[data-reveal-group="why-herros"] .feature-list li::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 1.43rem;
  width: .38rem;
  height: .62rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(42deg);
}

.split-grid[data-reveal-group="why-herros"] .feature-list strong {
  display: block;
  margin-bottom: .24rem;
}

@media (hover: hover) and (pointer: fine) {
  .split-grid[data-reveal-group="why-herros"] .feature-list li:hover {
    transform: translateY(-4px);
    border-color: rgba(36, 59, 83, 0.18);
    box-shadow: 0 24px 44px rgba(36, 59, 83, 0.12);
  }
}

.card-grid[data-reveal-group="how-it-works"],
.process-card-grid {
  counter-reset: process-step;
  gap: 1rem;
}

.card-grid[data-reveal-group="how-it-works"] .card,
.process-card-grid .process-card {
  counter-increment: process-step;
  position: relative;
  min-height: 210px;
  padding: 1.35rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,253,249,0.86)),
    linear-gradient(135deg, rgba(36,59,83,0.045), rgba(167,155,142,0.09));
}

.card-grid[data-reveal-group="how-it-works"] .card::after,
.process-card-grid .process-card::after {
  content: counter(process-step, decimal-leading-zero);
  position: relative;
  order: -1;
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(36, 59, 83, 0.96), rgba(62, 87, 111, 0.88));
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 14px 26px rgba(36, 59, 83, 0.16);
}

.card-grid[data-reveal-group="how-it-works"] .card::before,
.process-card-grid .process-card::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.24), transparent 24%),
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(36,59,83,0.07) calc(100% - 1px));
}

.card-grid[data-reveal-group="how-it-works"] .card-title,
.process-card-grid .process-card .card-title {
  font-size: 1.17rem;
}

.home-companies-grid.logo-grid[data-company-logos],
.logo-grid[data-company-logos] {
  gap: 1rem;
}

.home-companies-grid.logo-grid[data-company-logos] .logo-card,
.logo-grid[data-company-logos] .logo-card {
  min-height: 154px;
  padding: 1rem;
  border-radius: 22px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,245,238,0.86));
}

.home-companies-grid.logo-grid[data-company-logos] .logo-media,
.logo-grid[data-company-logos] .logo-media {
  width: 100%;
  min-height: 76px;
  display: grid;
  place-items: center;
}

.home-companies-grid.logo-grid[data-company-logos] .logo-image,
.logo-grid[data-company-logos] .logo-image {
  width: min(100%, 156px);
  max-width: 156px;
  max-height: 58px;
  object-fit: contain;
}

.home-companies-grid.logo-grid[data-company-logos] .logo-company-name,
.logo-grid[data-company-logos] .logo-company-name {
  min-height: 1.6rem;
  display: grid;
  place-items: center;
  text-align: center;
}

.gift-gallery-grid {
  gap: 1.35rem;
}

.gift-gallery-card {
  border-radius: 26px;
  border-color: rgba(36, 59, 83, 0.12);
  box-shadow: 0 24px 48px rgba(36, 59, 83, 0.1);
}

.gift-gallery-media {
  aspect-ratio: 1 / 1;
  margin: .72rem .72rem 0;
  border-radius: 22px;
  border: 1px solid rgba(36, 59, 83, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.gift-gallery-slide-image {
  object-fit: cover;
  transition: transform .65s var(--motion-ease-premium), opacity .32s ease;
}

.gift-gallery-card:hover .gift-gallery-slide.is-active .gift-gallery-slide-image {
  transform: scale(1.035);
}

.gift-gallery-copy {
  min-height: 96px;
  padding: 1.15rem 1.25rem 1.3rem;
  align-content: center;
}

.gift-gallery-nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(36, 59, 83, 0.12);
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(36, 59, 83, 0.14);
  transition: transform .22s var(--motion-ease-premium), background .22s ease, box-shadow .22s ease;
}

.gift-gallery-nav:hover {
  background: #fff;
  box-shadow: 0 16px 30px rgba(36, 59, 83, 0.18);
}

.gift-gallery-dot {
  width: 7px;
  height: 7px;
  transition: width .22s var(--motion-ease-premium), background .22s ease;
}

.gift-gallery-dot.is-active {
  width: 20px;
}

.gift-gallery-zoom {
  right: .9rem;
  bottom: .9rem;
}

.quote-form-layout .form-card {
  position: relative;
  padding: clamp(1.25rem, 2vw, 2.1rem);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,253,249,0.88)),
    linear-gradient(135deg, rgba(167,155,142,0.1), rgba(36,59,83,0.04));
  box-shadow: 0 30px 64px rgba(36, 59, 83, 0.13);
}

.quote-form-layout .field-grid {
  gap: .95rem;
  padding-top: .25rem;
}

.quote-form-layout .field {
  padding: .95rem;
  border: 1px solid rgba(36, 59, 83, 0.09);
  border-radius: 18px;
  background: rgba(255,255,255,0.58);
}

.quote-form-layout .field:nth-child(-n+4) {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(249,245,238,0.58));
}

.quote-form-layout .field:nth-child(n+5):nth-child(-n+10) {
  background: linear-gradient(180deg, rgba(255,253,249,0.78), rgba(245,239,230,0.58));
}

.quote-form-layout .field:nth-child(n+11) {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,244,237,0.64));
}

.quote-form-layout .field input,
.quote-form-layout .field select,
.quote-form-layout .field textarea {
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
}

.quote-form-actions {
  padding-top: .25rem;
}

.faq-item {
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,253,249,0.84));
  box-shadow: 0 18px 34px rgba(36, 59, 83, 0.08);
}

.faq-question {
  min-height: 72px;
  padding: 1.15rem 1.25rem;
}

.faq-question span {
  position: relative;
  overflow: hidden;
  color: transparent;
  background: linear-gradient(180deg, rgba(36, 59, 83, 0.11), rgba(36, 59, 83, 0.06));
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: .82rem;
  height: 2px;
  border-radius: 999px;
  background: var(--color-primary);
  transform: translate(-50%, -50%);
}

.faq-question span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open {
  border-color: rgba(36, 59, 83, 0.18);
  box-shadow: 0 24px 44px rgba(36, 59, 83, 0.11);
}

.faq-item.is-open .faq-question span {
  transform: none;
  background: var(--color-primary);
}

.faq-item.is-open .faq-question span::before,
.faq-item.is-open .faq-question span::after {
  background: #fff;
}

.faq-item.is-open .faq-question span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 1.25rem 1.35rem;
}

@media (max-width: 1080px) {
  .trust-strip .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-grid[data-reveal-group="why-herros"] .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gift-gallery-media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 720px) {
  .home-hero .hero-grid {
    gap: 1.5rem;
  }

  .hero-grid .hero-showcase-panel {
    border-radius: 26px;
  }

  .hero-grid .hero-showcase-panel::before,
  .hero-grid .hero-showcase-panel::after {
    display: none;
  }

  .trust-strip .stats-grid,
  .split-grid[data-reveal-group="why-herros"] .feature-list {
    grid-template-columns: 1fr;
  }

  .trust-strip .stat-card {
    min-height: 68px;
    border-radius: 20px;
  }

  .card-grid[data-reveal-group="what-we-do-cards"] .card,
  .card-grid[data-reveal-group="how-it-works"] .card,
  .process-card-grid .process-card {
    min-height: 0;
  }

  .home-companies-grid.logo-grid[data-company-logos],
  .logo-grid[data-company-logos] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-companies-grid.logo-grid[data-company-logos] .logo-card,
  .logo-grid[data-company-logos] .logo-card {
    min-height: 136px;
  }

  .gift-gallery-media {
    aspect-ratio: 4 / 3;
    margin: .58rem .58rem 0;
    border-radius: 18px;
  }

  .quote-form-layout .field {
    padding: .78rem;
  }

  .faq-question {
    min-height: 64px;
    padding: 1rem;
  }

  .faq-answer {
    padding: 0 1rem 1.1rem;
  }
}

@media (max-width: 540px) {
  .home-companies-grid.logo-grid[data-company-logos],
  .logo-grid[data-company-logos] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-companies-grid.logo-grid[data-company-logos] .logo-card,
  .logo-grid[data-company-logos] .logo-card {
    min-height: 126px;
    padding: .8rem .65rem;
  }

  .home-companies-grid.logo-grid[data-company-logos] .logo-image,
  .logo-grid[data-company-logos] .logo-image {
    max-width: 118px;
    max-height: 44px;
  }
}

/* Brand logo display */
.brand-mark .site-logo,
.footer-logo .site-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.site-header .brand-mark {
  width: 78px;
  height: 78px;
  flex-basis: 78px;
  border-radius: 0;
  overflow: visible;
}

.site-footer .footer-logo {
  width: 76px;
  height: 76px;
  flex-basis: 76px;
  border-radius: 0;
  overflow: visible;
}

@media (max-width: 720px) {
  .site-header .brand-mark {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    border-radius: 0;
  }

  .site-footer .footer-logo {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    border-radius: 0;
  }
}

.portfolio-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.portfolio-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: #efe8dd;
  box-shadow: var(--shadow-soft);
}

.portfolio-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1080px) {
  .portfolio-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .portfolio-photo-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-photo-card {
    min-height: 220px;
  }
}

@media (max-width: 1080px) {
  .site-header .site-nav-mobile a[href="request-a-quote.html"] {
    margin-top: .25rem;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(180deg, #2f4a67 0%, var(--color-primary) 100%);
    color: #fff;
    box-shadow: 0 14px 26px rgba(36, 59, 83, 0.18);
  }
}

@media (max-width: 720px) {
  .site-header .header-inner {
    display: flex;
    min-height: 70px;
    padding: .55rem 0;
    gap: .65rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .site-header .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: .5rem;
    align-items: center;
  }

  .site-header .brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
  }

  .site-header .brand-copy {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    gap: .05rem;
  }

  .site-header .brand-name,
  .site-header .brand-tagline {
    display: block;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
  }

  .site-header .brand-name {
    font-size: .96rem;
    line-height: 1.08;
  }

  .site-header .brand-tagline {
    font-size: .62rem;
    line-height: 1.16;
  }

  .site-header .nav-wrap {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    justify-content: flex-end;
  }

  .site-header .header-actions {
    display: none;
  }

  .site-header .menu-toggle {
    min-height: 40px;
    padding: .58rem .78rem;
    align-items: center;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
  }

  .site-header .site-nav-mobile {
    top: calc(100% + .9rem);
    right: 0;
    left: auto;
    width: min(330px, calc(100vw - 1.5rem));
    max-height: calc(100vh - var(--header-height) - 1.5rem);
    overflow-y: auto;
    padding: .85rem;
    gap: .35rem;
    align-items: stretch;
  }

  .site-header .site-nav-mobile a {
    padding: .74rem .86rem;
    line-height: 1.18;
  }
}

@media (max-width: 360px) {
  .site-header .header-inner {
    gap: .5rem;
  }

  .site-header .brand {
    gap: .42rem;
  }

  .site-header .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .site-header .brand-name {
    font-size: .9rem;
  }

  .site-header .brand-tagline {
    font-size: .56rem;
  }

  .site-header .menu-toggle {
    min-height: 38px;
    padding: .54rem .66rem;
    font-size: .88rem;
  }
}
