:root {
  --bg: #f0f9ff;
  --bg-alt: #e0f2fe;
  --primary: #0369a1;
  --primary-deep: #0c4a6e;
  --accent: #06b6d4;
  --accent-deep: #0891b2;
  --accent-soft: #ecfeff;
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(6, 182, 212, 0.16);
  --footer-rule: #67e8f9;
  --success: #059669;
  --error: #dc2626;
  --surface: #ffffff;
  --surface-tint: #f1f5f9;
  --shadow-soft: 0 14px 30px rgba(3, 105, 161, 0.08);
  --shadow-lift: 0 24px 50px rgba(3, 105, 161, 0.12);
  --container: 1240px;
  --header-height: 78px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.15), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(6, 182, 212, 0.12), transparent 20%),
    linear-gradient(180deg, #f8fafc 0%, #f0f9ff 38%, #f0fdfa 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before,
body::after {
  content: "";
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(18px);
  opacity: 0.34;
}
body::before {
  top: -110px;
  left: -80px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.25), transparent 68%);
}
body::after {
  right: -120px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%);
}
body.menu-open { overflow: hidden; }
body.page-loading { overflow: hidden; }
.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(7, 27, 39, 0.95), rgba(6, 44, 57, 0.96));
  color: white;
}
.page-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 320ms ease;
}
.preloader-spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(255, 255, 255, 0.18);
  border-top-color: #06b6d4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; border-radius: 0; }
button { cursor: pointer; }
:focus-visible { outline: 1.5px solid var(--primary); outline-offset: 2px; }

/* Premium focus states for better accessibility */
.nav-link:focus-visible {
  outline-offset: 4px;
  background: rgba(186, 230, 253, 0.56);
}

.button:focus-visible {
  outline-offset: 3px;
}

.text-link:focus-visible {
  outline-offset: 2px;
}
.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  height: var(--header-height);
  z-index: 100;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(6, 182, 212, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(3, 105, 161, 0.06);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
}
.nav-shell { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }
.brand, .footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.nav-link { position: relative; padding: 10px 14px; font-size: 14px; font-weight: 600; color: var(--text); border-radius: 999px; transition: color 150ms ease, background-color 150ms ease; }
.nav-link::after { display: none; }
.nav-link:hover, .nav-link-active { color: var(--primary); background: rgba(186, 230, 253, 0.56); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.language-toggle-buttons {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.language-toggle-button {
  min-height: auto;
  padding: 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.language-toggle-separator {
  color: rgba(15, 23, 42, 0.35);
  font-size: 12px;
  font-weight: 700;
}
.language-toggle-button.is-active {
  color: var(--primary);
}
.language-toggle-mobile {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  position: relative;
  overflow: hidden;
}
.button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}
.button:hover {
  transform: translateY(-2px);
}
.button:hover::before {
  opacity: 1;
}
.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 30px rgba(3, 105, 161, 0.28);
}
.button-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 24px 38px rgba(3, 105, 161, 0.34); }
.button-secondary { background: rgba(255, 255, 255, 0.82); color: var(--text); border-color: rgba(6, 182, 212, 0.18); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.button-secondary:hover { background: rgba(255, 255, 255, 0.96); color: var(--primary); border-color: rgba(6, 182, 212, 0.35); }
.button-ghost { border-color: rgba(255, 255, 255, 0.7); color: #fff; background: transparent; }
.button-ghost:hover { background: #fff; color: var(--primary); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(6, 182, 212, 0.14); background: rgba(255,255,255,0.72); border-radius: 14px; flex-direction: column; justify-content: center; gap: 5px; }
.menu-toggle span { display: block; width: 18px; height: 1.5px; margin: 0 auto; background: var(--text); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(15, 30, 30, 0.24); opacity: 0; pointer-events: none; transition: opacity 180ms ease; z-index: 15; }
.mobile-overlay.is-visible { opacity: 1; pointer-events: auto; }
.hero, .page-hero { padding-top: calc(var(--header-height) + 32px); }
.hero { padding-bottom: 32px; }
.hero-grid, .countries-grid, .quote-layout { display: grid; gap: 24px; }
.hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); align-items: center; }
.display-title, .section-title, .page-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--primary);
}
.display-title { font-size: clamp(2.2rem, 5.5vw, 4rem); }
.page-title { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.hero-text, .page-hero-content p, .countries-copy p { max-width: 620px; font-size: 15px; margin: 10px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.section-label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.section-line { width: 32px; height: 1px; background: var(--accent); }
.section-label-text { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); }
.hero-visual {
  position: relative;
  border: 1px solid rgba(23, 53, 45, 0.18);
  background: var(--surface);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-visual img { min-height: 360px; object-fit: cover; }
.departure-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  padding: 20px 22px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);
}
.departure-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.stats-strip, .countries-section { background: linear-gradient(135deg, rgba(76, 29, 149, 0.96), rgba(109, 40, 217, 0.88)); color: #f3e8ff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 28px 0; }
.stat-item strong { display: block; font-size: 28px; font-weight: 800; color: #fff; }
.stat-item span { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: #91a5a2; }
.section { padding: 20px; border-radius: 0; background: rgba(255, 255, 255, 0.68); border: 1px solid rgba(139, 92, 246, 0.1); box-shadow: var(--shadow-soft); backdrop-filter: blur(14px); overflow: hidden; position: relative; }
.section::before {
  display: none;
}
.section-alt { background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(245, 238, 255, 0.94)); margin: 0; }
.section-head { max-width: 780px; margin-bottom: 16px; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
.section-title-light, .quote-panel-dark .page-title, .quote-panel-dark .section-label-text, .quote-panel-dark .section-line { color: #fff; }
.quote-panel-dark .section-line { background: var(--accent); }
.card { background: rgba(255,255,255,0.86); border: 1px solid var(--border); box-shadow: var(--shadow-soft); border-radius: 12px; backdrop-filter: blur(12px); }
.service-grid, .product-category-grid, .comparison-grid, .process-grid, .products-grid, .footer-grid { display: grid; gap: 16px; }
.service-grid, .comparison-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-category-grid, .products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card, .category-card, .comparison-card, .product-card { padding: 16px; }
.card-image { aspect-ratio: 4 / 3; object-fit: cover; background: var(--surface-tint); border: 1px solid var(--border); margin-bottom: 12px; border-radius: 1rem; }
.card h3, .comparison-card h3, .product-card h3, .process-card h3, .flow-step h3, .site-footer h3 { margin: 0 0 10px; color: var(--primary); }
.text-link { display: inline-block; margin-top: 18px; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); }
.text-link:hover { color: var(--accent); }
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.product-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(168, 135, 74, 0));
  opacity: 0;
  transition: opacity 220ms ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 53, 45, 0.35);
  box-shadow: var(--shadow-lift);
}
.product-card:hover::after {
  opacity: 1;
}
.product-card .card-image {
  margin-bottom: 0;
}
.product-card-body {
  display: grid;
  gap: 8px;
  padding: 12px 0 0;
}
.product-card-category {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.product-card-category-link {
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
}
.product-card-category-link:hover {
  color: var(--primary);
}
.product-card h3 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.02em;
}
.product-card-price {
  margin: 0;
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}
.product-card-description {
  margin: 0;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.6em * 3);
}
.product-card-link {
  width: 100%;
  margin-top: auto;
}
.process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-card { position: relative; padding: 30px 24px 24px; overflow: hidden; border-radius: 1.5rem; background: var(--surface); }
.process-number { position: absolute; right: 18px; top: 8px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 82px; line-height: 1; color: rgba(225, 132, 58, 0.12); font-weight: 800; }
.countries-section { padding: 48px 0; }
.countries-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); align-items: center; }
.countries-copy p { color: #a4b1af; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pill-list span { padding: 10px 14px; border: 1px solid rgba(255,255,255,0.18); color: #fff; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 999px; background: rgba(255,255,255,0.04); }
.map-card { border: 1px solid rgba(255,255,255,0.16); padding: 28px; background: rgba(255, 255, 255, 0.04); border-radius: 1.6rem; }

.contact-cta-section {
  background:
    linear-gradient(135deg, rgba(3, 105, 161, 0.05), rgba(6, 182, 212, 0.03)),
    radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.1), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08), transparent 50%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.contact-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23036ba1' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.contact-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-cta-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-item span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.2);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(3, 105, 161, 0.15);
  border-color: var(--accent);
}

.whatsapp-method:hover {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.method-icon {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.1);
}

.whatsapp-method .method-icon {
  background: rgba(37, 211, 102, 0.1);
}

.contact-method strong {
  display: block;
  font-weight: 600;
  color: var(--text);
}

.contact-method span {
  font-size: 0.9rem;
  color: var(--muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.contact-method:hover .method-icon {
  animation: pulse 0.6s ease;
}

.contact-form-panel {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 32px 64px rgba(3, 105, 161, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.1);
  backdrop-filter: blur(20px);
  animation: float 6s ease-in-out infinite;
}

.quick-quote-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
  text-align: center;
}

.quote-form-compact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.quote-form-compact .field {
  margin-bottom: 16px;
}

.quote-form-compact label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text);
}

.quote-form-compact input,
.quote-form-compact select,
.quote-form-compact textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.quote-form-compact input:focus,
.quote-form-compact select:focus,
.quote-form-compact textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
  background: white;
}

.quote-form-compact textarea {
  resize: vertical;
  min-height: 80px;
}

.quote-form-compact button[type="submit"] {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(3, 105, 161, 0.3);
}

.quote-form-compact button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(3, 105, 161, 0.4);
}

/* Trust Strip - Compact horizontal section */
.trust-strip-section {
  padding: 16px 0;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.9));
  border-top: 1px solid rgba(6, 182, 212, 0.12);
  border-bottom: 1px solid rgba(6, 182, 212, 0.12);
}

.trust-strip-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-text {
  flex: 1;
  min-width: 240px;
}

.trust-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.5;
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.rating-stars {
  display: inline-flex;
  gap: 4px;
  font-size: 18px;
  color: #fbbf24;
}

.rating-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

/* Sticky Mobile CTA - Fixed bottom on mobile only */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 -4px 16px rgba(3, 105, 161, 0.16);
  z-index: 40;
}

.sticky-cta-button {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  border-radius: 12px;
  transition: all 200ms ease;
  text-decoration: none;
}

.sticky-cta-button:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }

  .product-category-grid, .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .contact-form-panel {
    padding: 24px;
  }

  .quote-form-compact .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-strip-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .trust-rating {
    width: 100%;
    justify-content: space-between;
  }
}

.testimonials-section {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.9));
  padding: 32px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(3, 105, 161, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(3, 105, 161, 0.15);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 4rem;
  color: rgba(6, 182, 212, 0.2);
  font-family: serif;
  line-height: 1;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
  padding-left: 20px;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid rgba(6, 182, 212, 0.2);
  padding-top: 16px;
}

.testimonial-author strong {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card {
    padding: 24px;
  }
}
.page-main { padding-top: var(--header-height); }
.page-hero { padding-bottom: 0; }
.page-hero-content { padding: 20px 0 10px; }
.section + .section { margin-top: -4px; }
.hero-trade {
  padding-top: calc(var(--header-height) + 44px);
  padding-bottom: 84px;
}

.hero-trade-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 220px;
  gap: 24px;
  align-items: start;
}

.hero-trade-grid .hero-copy {
  grid-column: 1 / 2;
  padding: 28px 0 0;
}

.hero-visual-large {
  grid-column: 1 / 2;
  margin-top: 8px;
}

.hero-trade-rail {
  grid-column: 2 / 3;
  grid-row: 1 / span 2;
  display: grid;
  gap: 14px;
  position: sticky;
  top: calc(var(--header-height) + 22px);
}

.trade-rail-block,
.page-hero-sidecard,
.catalog-intro-panel,
.catalog-results-panel,
.story-panel,
.route-step,
.intro-band-stats article {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.trade-rail-block {
  padding: 18px;
}

.trade-rail-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.trade-rail-block strong,
.page-hero-sidecard strong {
  color: var(--primary);
  font-size: 1.05rem;
  line-height: 1.4;
}

.section-intro-band {
  padding-top: 0;
}

.intro-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 16px;
  align-items: start;
}

.intro-band-stats {
  display: grid;
  gap: 12px;
}

.intro-band-stats article {
  padding: 16px;
}

.intro-band-stats strong {
  display: block;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
}

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

.story-panel {
  min-height: 200px;
  overflow: hidden;
}

.story-panel-dark,
.story-panel-accent,
.story-panel-light {
  padding: 16px;
}

.story-panel-dark {
  background: linear-gradient(145deg, var(--primary), #245043);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.84);
}

.story-panel-dark p,
.story-panel-dark .section-label-text,
.story-panel-dark .section-title {
  color: #fff;
}

.story-panel-dark .section-line {
  background: rgba(255,255,255,0.5);
}

.story-panel-accent {
  background: linear-gradient(160deg, #f3d8c7, #f1ede4);
}

.story-panel-light {
  background: var(--surface);
}

.story-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.stacked-categories-head {
  max-width: 900px;
  margin-bottom: 16px;
}

.category-strips {
  display: grid;
  gap: 12px;
}

.category-strip {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-top: 1px solid var(--border);
}

.category-strip:first-child {
  border-top: none;
}

.category-strip-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 1.1rem;
}

.category-strip span,
.quote-process-mini span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.section-route-flow {
  background: linear-gradient(180deg, rgba(243,234,220,0.4), rgba(235,226,211,0.75));
}

.route-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.route-timeline {
  display: grid;
  gap: 18px;
}

.route-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  align-items: start;
}

.route-step span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.countries-grid-reframed {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.page-hero-split {
  padding-bottom: 28px;
}

.page-hero-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 280px;
  gap: 24px;
  align-items: end;
}

.page-hero-sidecard {
  padding: 22px;
}

.service-feature-layout,
.source-layout,
.catalog-reframed {
  display: grid;
  gap: 28px;
}

.comparison-grid-reframed {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.source-flow-vertical {
  grid-template-columns: 1fr;
  gap: 16px;
}

.catalog-reframed {
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
}

.catalog-intro-panel,
.catalog-results-panel {
  padding: 22px;
}

.filter-bar-stacked {
  display: grid;
  gap: 12px;
}

.filter-bar-stacked .filter-tab {
  width: 100%;
  justify-content: flex-start;
}

.quote-layout-reframed {
  grid-template-columns: 360px minmax(0, 1fr);
  min-height: calc(100vh - var(--header-height));
}

.quote-panel-summary {
  display: grid;
  align-content: start;
  gap: 12px;
}

.quote-panel-formwide {
  border-left: 1px solid var(--border);
}

.quote-process-mini {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.quote-process-mini article {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.feature-list { margin: 0; padding-left: 18px; }
.horizontal-flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.flow-step { padding: 26px 20px; position: relative; border-right: none; border-radius: 1.3rem; }
.flow-step:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: -12px; width: 24px; height: 1px; background: var(--accent); }
.flow-step span { display: inline-block; margin-bottom: 14px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 36px; color: var(--accent); font-weight: 800; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.filter-tab, .service-option { min-height: 48px; padding: 0 18px; border: 1px solid var(--border); background: var(--surface); color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 999px; }
.filter-tab.is-active, .service-option.is-active { border-color: var(--primary); background: var(--primary); color: #fff; }
.empty-state { margin: 16px 0 0; padding: 14px; border: 1px solid var(--border); background: #fff; }
.thank-you-card { max-width: 880px; padding: 48px; border-radius: 1.8rem; background: var(--surface); box-shadow: var(--shadow-lift); }
.thank-you-title {
  margin-bottom: 18px;
}
.thank-you-copy {
  max-width: 56ch;
  font-size: 17px;
  margin: 0 0 14px;
}
.quote-layout { grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr); min-height: calc(100vh - var(--header-height)); }
.quote-panel { padding: 32px 24px; }
.quote-panel-dark { background: linear-gradient(135deg, var(--primary), #21493d); color: #dbe5e3; border-radius: 1.8rem 0 0 1.8rem; }
.quote-panel-dark p { color: #a4b1af; }
.quote-contact-list { display: grid; gap: 10px; margin-top: 16px; }
.quote-contact-list p { display: grid; gap: 6px; margin: 0; }
.quote-contact-list strong { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.quote-panel-form { background: var(--surface); border-radius: 0 1.8rem 1.8rem 0; }
.quote-form { max-width: 720px; }
.service-selector { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field { display: grid; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); background: #fff; color: var(--text); min-height: 48px; border-radius: 1rem; }
.field textarea { resize: vertical; min-height: 148px; }
.field input:focus, .field select:focus, .field textarea:focus { border-width: 1.5px; border-color: var(--primary); outline: none; }
.field-error { min-height: 16px; margin: 0; font-size: 11px; color: var(--error); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--error); }
.is-hidden { display: none; }
.form-submit { margin-top: 12px; }
.site-footer { background: linear-gradient(180deg, var(--primary-deep), #102b24); color: #98aaa1; border-top: 1px solid var(--footer-rule); }
.footer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; padding: 32px 0 16px; }
.footer-copy { max-width: 280px; }
.site-footer h3 { font-size: 14px; margin-bottom: 14px; color: #fff; }
.site-footer a, .site-footer p { display: block; margin: 0 0 10px; font-size: 14px; color: #6a7e7e; }
.site-footer a:hover { color: #fff; }
.footer-whatsapp, .footer-whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  border: 2px solid rgba(37, 211, 102, 0.2);
}

.footer-whatsapp:hover,
.footer-whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.footer-whatsapp svg,
.footer-whatsapp-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.footer-bottom { border-top: 1px solid var(--footer-rule); }
.footer-bottom-row { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; }
.footer-bottom-row p:last-child { color: var(--accent); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center; background: var(--success); color: #fff; z-index: 18; border-radius: 50%; box-shadow: var(--shadow-lift); }
.whatsapp-float svg { width: 24px; height: 24px; }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 550ms ease, transform 550ms ease; transition-delay: calc(var(--reveal-delay, 0) * 90ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.product-page-hero {
  padding-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.product-page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 40px;
  width: min(38vw, 420px);
  height: 160px;
  background: linear-gradient(90deg, rgba(168, 135, 74, 0.18), rgba(168, 135, 74, 0));
  pointer-events: none;
}

.product-page-section {
  padding-top: 0;
}

.product-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: start;
}

.product-page-intro {
  max-width: 720px;
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: #526174;
}

.product-media-panel,
.product-details-panel,
.product-detail-card,
.product-loading-block,
.product-fetch-error {
  min-width: 0;
}

.product-main-image-frame {
  width: 100%;
  padding: 0;
  border: 1px solid rgba(251, 146, 60, 0.14);
  border-radius: 32px;
  background: linear-gradient(180deg, #fffaf6, #ffffff);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(148, 76, 24, 0.12);
}

.product-main-image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  min-height: 520px;
  transition: transform 320ms ease;
}

.product-main-image-frame:hover .product-main-image {
  transform: scale(1.018);
}

.product-thumbnail-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.product-thumbnail-button {
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(251, 146, 60, 0.14);
  border-radius: 20px;
  background: #fffaf7;
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-thumbnail-button.is-active {
  border-color: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(245, 158, 11, 0.16);
}

.product-thumbnail-button img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-thumb-skeleton,
.skeleton {
  position: relative;
  overflow: hidden;
  background: #edece8;
}

.product-thumb-skeleton::after,
.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(237, 236, 232, 0), rgba(255, 255, 255, 0.5), rgba(237, 236, 232, 0));
  transform: translateX(-100%);
  animation: shimmer 1.5s infinite;
}

.product-thumb-skeleton {
  min-height: 96px;
  border: 1px solid var(--border);
}

.product-detail-card,
.product-loading-block,
.product-fetch-error {
  border: 1px solid rgba(251, 146, 60, 0.14);
  background:
    radial-gradient(circle at top right, rgba(254, 215, 170, 0.22), transparent 28%),
    linear-gradient(180deg, #fffdfb, #ffffff);
  border-radius: 32px;
  box-shadow: 0 26px 58px rgba(148, 76, 24, 0.12);
  padding: 34px;
  position: static;
}

.product-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.product-category-chip,
.product-stock-pill {
  margin: 0;
  padding: 9px 14px;
  border: 1px solid rgba(251, 146, 60, 0.14);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-category-chip {
  color: #b45309;
  background: rgba(255, 237, 213, 0.7);
}

.product-stock-pill {
  color: #047857;
  background: rgba(209, 250, 229, 0.9);
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-detail-title {
  margin: 0;
  color: #0f172a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.share-product-button {
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(251, 146, 60, 0.18);
  border-radius: 999px;
  background: #fff7ed;
  color: #c2410c;
}

.share-product-button svg {
  width: 20px;
  height: 20px;
}

.share-product-button.is-copied {
  background: var(--primary);
  color: #fff;
}

.product-detail-price {
  margin: 16px 0 10px;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 800;
}

.product-detail-description {
  margin: 0 0 20px;
  max-width: 62ch;
  color: #334155;
  line-height: 1.75;
}

.product-support-note {
  margin: 0 0 20px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff7ed, #fffdf9);
  border: 1px solid rgba(251, 146, 60, 0.12);
  color: #7c4a16;
  line-height: 1.7;
}

.product-selection-group {
  padding: 20px;
  border: 1px solid rgba(251, 146, 60, 0.12);
  border-radius: 24px;
  margin-bottom: 16px;
  background: #fffaf7;
}

.product-selection-group.has-error {
  border-color: var(--error);
}

.selector-block + .selector-block {
  margin-top: 12px;
}

.selector-label {
  display: block;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #7c4a16;
}

.color-swatch-row,
.option-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.color-swatch,
.option-choice,
.size-option {
  min-width: 44px;
  min-height: 44px;
}

.color-swatch {
  padding: 0;
  border: 1px solid var(--border);
  clip-path: circle(50%);
}

.color-swatch.is-active {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.option-choice,
.size-option {
  position: relative;
  padding: 0 18px;
  border: 1px solid rgba(251, 146, 60, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: #9a3412;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.option-choice:hover,
.size-option:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 158, 11, 0.44);
  box-shadow: 0 10px 18px rgba(245, 158, 11, 0.12);
}

.option-choice.is-active,
.size-option.is-active {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 24px rgba(249, 115, 22, 0.22);
}

.option-choice.sold-out,
.size-option.sold-out {
  border-color: var(--border);
  color: rgba(74, 74, 66, 0.4);
}

.option-choice.sold-out::after,
.size-option.sold-out::after {
  content: "";
  position: absolute;
  inset: 50% 6px auto 6px;
  height: 1px;
  background: currentColor;
  transform: rotate(-18deg);
}

.option-choice.is-unavailable {
  border-style: dashed;
  color: rgba(74, 74, 66, 0.3);
}

.selector-error {
  min-height: 16px;
  margin: 14px 0 0;
  color: var(--error);
  font-size: 11px;
}

.product-selection-copy {
  margin: 0;
  color: #7c4a16;
  font-weight: 600;
}

.product-selection-copy-soft {
  margin-bottom: 18px;
  padding: 0 2px;
  font-size: 14px;
  line-height: 1.6;
}

.product-meta-value {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
}

.product-demo-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.mobile-quote-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 17;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 18px 36px rgba(201, 102, 30, 0.28);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

body.has-mobile-quote-bar {
  padding-bottom: 92px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--shadow-soft);
}

.trust-bar article {
  display: grid;
  gap: 6px;
}

.trust-bar strong {
  color: var(--primary);
  font-size: 15px;
}

.trust-bar span {
  color: var(--muted);
  font-size: 13px;
}

.hero-route-map {
  position: relative;
  min-height: 520px;
  padding: 36px;
  background:
    radial-gradient(circle at 20% 20%, rgba(225, 132, 58, 0.18), transparent 11rem),
    linear-gradient(180deg, #fffaf3 0%, #f8efe2 100%);
}

.hero-route-map svg {
  width: 100%;
  height: auto;
}

.route-dot-card {
  position: absolute;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow-soft);
}

.route-dot-card strong {
  display: block;
  color: var(--primary);
  font-size: 14px;
}

.route-dot-card span {
  color: var(--muted);
  font-size: 12px;
}

.route-dot-card-origin {
  top: 44px;
  right: 44px;
}

.route-dot-card-destination {
  left: 34px;
  bottom: 42px;
}

.service-zigzag {
  display: grid;
  gap: 30px;
}

.service-zigzag-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.service-zigzag-row:nth-child(even) .service-zigzag-copy {
  order: 2;
}

.service-zigzag-row:nth-child(even) .service-zigzag-visual {
  order: 1;
}

.service-zigzag-copy,
.service-zigzag-visual {
  padding: 30px;
  border-radius: 1.8rem;
}

.service-zigzag-copy {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.service-zigzag-visual {
  background: linear-gradient(180deg, #fff8ee 0%, #f3e6d6 100%);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
}

.service-zigzag-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 22px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
}

.service-zigzag-copy h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.service-zigzag-copy ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text);
}

.catalog-intro-panel,
.catalog-results-panel,
.page-hero-sidecard {
  background: rgba(255, 253, 249, 0.82);
}

.page-hero-sidecard {
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.filter-tab {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.filter-tab.is-active,
.filter-tab:hover {
  background: var(--accent-soft);
  border-color: rgba(225, 132, 58, 0.45);
  color: var(--primary);
}

.quote-stepper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.quote-step {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
}

.quote-step span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.quote-step strong {
  display: block;
  color: var(--primary);
  font-size: 14px;
  margin-top: 4px;
}

.quote-step.is-active {
  border-color: rgba(225, 132, 58, 0.45);
  background: var(--accent-soft);
}

.quote-stage {
  display: none;
}

.quote-stage.is-active {
  display: block;
}

.quote-step-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 16px;
}

.quote-step-actions .button {
  min-width: 160px;
}

.quote-prefill-note {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 1rem;
  border: 1px solid rgba(225, 132, 58, 0.35);
  background: var(--accent-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

.product-cta-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.product-direct-order,
.product-quote-link {
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
}

.product-action-note {
  margin: 14px 4px 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.hero-panel-benchmark {
  position: relative;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(56, 189, 248, 0.22), transparent 20%),
    radial-gradient(circle at 82% 20%, rgba(56, 189, 248, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(7, 62, 82, 0.94), rgba(2, 28, 39, 0.96)),
    url("https://images.unsplash.com/photo-1517104015683-300d0a4883df?auto=format&fit=crop&w=1600&q=80") center/cover;
  min-height: 380px;
  background-blend-mode: overlay;
}

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

.hero-panel-benchmark::before {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -120px;
  background: rgba(59, 130, 246, 0.18);
  filter: blur(80px);
}

.hero-panel-benchmark::after {
  width: 280px;
  height: 280px;
  bottom: -80px;
  left: -80px;
  background: rgba(16, 185, 129, 0.16);
  filter: blur(72px);
}

.hero-shell-benchmark {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  gap: 20px;
  align-items: center;
  padding: 32px;
  min-height: 380px;
}

.hero-copy-benchmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  color: #fff;
  max-width: 660px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-spotlight {
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.hero-rotator-line {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 42ch;
}

.hero-highlight {
  display: inline-flex;
  color: #7dd3fc;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.metric-card {
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8fafc;
}

.metric-card strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 6px;
}

.metric-card span {
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hero-image-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #f3e8ff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy-benchmark h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
  color: #fff;
}

.hero-copy-benchmark .hero-text {
  color: rgba(255, 255, 255, 0.86);
  max-width: 54ch;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f5eefe;
  font-size: 12px;
  font-weight: 600;
}

.hero-points i {
  color: #d8b4fe;
}

.spotlight-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 60px rgba(17, 24, 39, 0.16);
  color: #fff;
}

.spotlight-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e9d5ff;
  margin-bottom: 18px;
}

.spotlight-stat strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.spotlight-stat span {
  color: rgba(255,255,255,0.74);
}

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

.spotlight-grid strong {
  display: block;
  margin-bottom: 4px;
}

.spotlight-grid span {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

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

.trust-item {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.trust-kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.placeholder-image {
  background: linear-gradient(135deg, rgba(192,132,252,0.18), rgba(109,40,217,0.08));
}

.placeholder-image img,
.story-art,
.category-strip-image,
.card-image,
.product-main-image {
  filter: saturate(0.78) contrast(1.02);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 550ms ease, transform 550ms ease;
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}

[data-reveal="fade-left"] {
  transform: translateX(28px);
}

[data-reveal="fade-right"] {
  transform: translateX(-28px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.product-whatsapp-cta {
  width: min(100%, calc(var(--container) - 64px));
  margin: 6px auto 48px;
  display: grid;
  gap: 4px;
  align-items: center;
  justify-items: center;
  min-height: 74px;
  padding: 14px 26px;
  border: 1.5px solid transparent;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 24px 38px rgba(3, 105, 161, 0.2);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.product-whatsapp-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

.product-whatsapp-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-whatsapp-meta {
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.84;
}

.product-whatsapp-cta.is-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  z-index: 50;
  box-shadow: 0 -6px 18px rgba(15, 30, 30, 0.14);
}

body.product-cta-sticky {
  padding-bottom: 56px;
}

.skeleton-label { width: 160px; height: 14px; margin-bottom: 18px; }
.skeleton-title { width: 72%; height: 80px; margin-bottom: 18px; }
.skeleton-price { width: 140px; height: 28px; margin-bottom: 20px; }
.skeleton-copy { width: 100%; height: 16px; margin-bottom: 12px; }
.skeleton-copy.short { width: 68%; margin-bottom: 28px; }
.skeleton-selector { width: 100%; height: 54px; margin-bottom: 14px; }
.skeleton-cta { width: 100%; height: 56px; margin-top: 18px; }

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: #0f1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.image-modal.is-hidden {
  display: none;
}

.image-modal-content {
  width: auto;
  max-width: min(100%, 1200px);
  max-height: calc(100vh - 48px);
  object-fit: contain;
}

.image-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 1080px) {
  .product-category-grid, .products-grid, .horizontal-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid, .countries-grid, .quote-layout, .service-grid, .comparison-grid, .process-grid, .hero-trade-grid, .intro-band-grid, .split-story-grid, .route-flow-grid, .countries-grid-reframed, .page-hero-split-grid, .catalog-reframed, .service-zigzag-row, .trust-bar { grid-template-columns: 1fr; }
  .quote-layout { min-height: auto; }
  .quote-layout-reframed { min-height: auto; }
  .product-page-layout { grid-template-columns: 1fr; gap: 28px; }
  .product-cta-stack { grid-template-columns: 1fr; }
  .hero-trade-rail {
    position: static;
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .route-dot-card-origin,
  .route-dot-card-destination {
    position: static;
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  /* Container and spacing */
  .container {
    width: min(calc(100% - 32px), var(--container));
    padding: 0 16px;
  }

  /* Header improvements */
  .site-header {
    padding: 0 16px;
  }

  .nav-shell {
    gap: 16px;
  }

  .brand {
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    width: min(300px, calc(100% - 32px));
    padding: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    display: grid;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 16;
    box-shadow: 0 20px 40px rgba(3, 105, 161, 0.15);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
  }

  /* Typography improvements */
  .display-title, .page-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 1.1;
  }

  .hero-text, .page-hero-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Hero improvements */
  .hero-panel-benchmark {
    min-height: 560px;
  }

  .hero-shell-benchmark {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-copy-benchmark {
    animation: none;
  }

  .hero-spotlight {
    animation: none;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .hero-image-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-image-grid img {
    height: 160px;
  }

  .hero-rotator-line {
    max-width: 100%;
    margin: 0 auto;
  }

  /* Button improvements */
  .button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 16px;
  }

  /* Grid layouts */
  .trust-band-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-stats {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .stat-item {
    min-width: 120px;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .contact-method {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Form improvements */
  .contact-form-panel {
    padding: 24px;
    margin: 0 16px;
  }

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

  .quote-form-compact input,
  .quote-form-compact select,
  .quote-form-compact textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 14px 16px;
  }

  /* Testimonial improvements */
  .testimonial-card {
    padding: 24px;
    text-align: center;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  /* Quote page improvements */
  .quote-stepper {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .quote-step {
    padding: 16px;
    text-align: center;
  }

  .quote-step span {
    font-size: 14px;
  }

  .quote-step strong {
    font-size: 16px;
    margin-top: 6px;
  }

  .quote-panel {
    padding: 32px 24px;
  }

  .quote-contact-list p {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
  }

  .quote-contact-list strong {
    font-size: 14px;
    color: var(--primary);
  }

  .quote-contact-list span {
    font-size: 14px;
    color: #a4b1af;
  }

  .quote-process-mini {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .quote-process-mini article {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  }

  .quote-process-mini span {
    background: var(--accent);
    color: var(--primary);
    padding: 4px 8px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
  }

  .quote-process-mini p {
    font-size: 14px;
    margin: 0;
  }

  /* Quote form mobile improvements */
  .quote-form .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 14px 16px;
    border-radius: 12px;
  }

  .quote-form textarea {
    min-height: 100px;
    resize: vertical;
  }

  .quote-step-actions {
    flex-direction: column;
    gap: 12px;
  }

  .quote-step-actions .button {
    width: 100%;
    min-width: auto;
    padding: 14px 20px;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Footer alignment improvements */
  .footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-grid h3 {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 18px;
  }

  .footer-grid a {
    margin-bottom: 8px;
    color: var(--muted);
    text-decoration: none;
    transition: color 180ms ease;
  }

  .footer-grid a:hover {
    color: var(--accent);
  }

  .footer-copy {
    margin: 16px 0 24px;
    max-width: 280px;
    line-height: 1.5;
  }

  .footer-whatsapp, .footer-whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    padding: 12px 20px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 180ms ease;
    box-shadow: 0 4px 12px rgba(225, 132, 58, 0.3);
  }

  .footer-whatsapp:hover,
  .footer-whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(225, 132, 58, 0.4);
  }

  .footer-whatsapp svg,
  .footer-whatsapp-button svg {
    width: 20px;
    height: 20px;
  }

  /* Page specific improvements */
  .page-hero-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-hero-content {
    text-align: center;
  }

  .category-strips {
    gap: 24px;
  }

  .category-strip {
    grid-template-columns: 1fr;
    text-align: center;
  padding: 16px;
    order: -1;
    margin-bottom: 16px;
  }

  /* Route flow improvements */
  .route-timeline {
    padding: 0;
  }

  .route-step {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 16px;
  }

  /* WhatsApp float positioning */
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  /* Extra small screen improvements */
  .container {
    width: min(calc(100% - 24px), var(--container));
    padding: 0 12px;
  }

  .site-header {
    padding: 0 12px;
  }

  .display-title, .page-title {
    font-size: clamp(2rem, 14vw, 3.5rem);
  }

  /* Product grid single column on mobile */
  .product-category-grid, .products-grid { 
    grid-template-columns: 1fr; 
    gap: 12px;
  }

  .product-card {
    padding: 12px;
  }

  .product-card h3 {
    font-size: 16px;
  }

  .product-card-price {
    font-size: 16px;
  }

  .product-card-description {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }

  .hero-panel-benchmark {
    min-height: 400px;
  }

  .hero-shell-benchmark {
    padding: 32px 16px;
  }

  .eyebrow-pill {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .hero-text {
    font-size: 15px;
  }

  .button {
    min-height: 44px;
    font-size: 15px;
  }

  .contact-form-panel {
    margin: 0 12px;
    padding: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .footer-whatsapp, .footer-whatsapp-button {
    padding: 10px 16px;
    font-size: 13px;
  }

  .stat-item strong {
    font-size: 2rem;
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 16px;
  }

  .section {
    padding: 16px;
    border-radius: 16px;
  }

  .catalog-reframed {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .catalog-intro-panel {
    padding: 12px;
  }

  .catalog-results-panel {
    padding: 0;
  }
}
  .product-detail-card,
  .product-loading-block,
  .product-fetch-error {
    padding: 20px;
  }
  .product-highlight-band {
    gap: 14px;
    padding: 16px;
  }
  .product-whatsapp-cta {
    width: 100%;
    margin-bottom: 24px;
    min-height: 74px;
    padding: 12px 20px;
  }
  .mobile-quote-bar {
    display: inline-flex;
  }
  
  /* Adjust WhatsApp float when quote bar is visible */
  body.has-mobile-quote-bar .whatsapp-float {
    bottom: 86px;
  }
  .hero-route-map {
    min-height: auto;
    padding: 22px;
  }
  .service-zigzag-copy,
  .service-zigzag-visual {
    padding: 22px;
  }
  .quote-step-actions {
    flex-direction: column;
  }
  .quote-step-actions .button {
    width: 100%;
  }
}

/* Light corporate redesign */
:root {
  --bg: #f5f7fb;
  --bg-alt: #edf2f8;
  --primary: #003b79;
  --primary-deep: #05244a;
  --accent: #f58220;
  --accent-deep: #d7670d;
  --accent-soft: #fff3e8;
  --text: #15253c;
  --muted: #607086;
  --border: rgba(0, 59, 121, 0.12);
  --footer-rule: rgba(245, 130, 32, 0.3);
  --surface: #ffffff;
  --surface-tint: #f7f9fc;
  --shadow-soft: 0 18px 40px rgba(10, 37, 64, 0.06);
  --shadow-lift: 0 24px 60px rgba(10, 37, 64, 0.1);
}

body {
  background:
    linear-gradient(180deg, #f6f8fb 0%, #f1f5fa 42%, #f7f9fc 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

body::before,
body::after {
  display: none;
}

.page-preloader {
  background: linear-gradient(180deg, #f3f7fc, #eef4fb);
}

.preloader-spinner {
  border: 4px solid rgba(0, 59, 121, 0.12);
  border-top-color: var(--accent);
}

.display-title,
.section-title,
.page-title,
.brand,
.footer-brand,
.product-card h3,
.product-detail-title,
.service-zigzag-copy h3 {
  font-family: "Manrope", sans-serif;
}

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

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(8, 42, 82, 0.08);
  box-shadow: 0 8px 28px rgba(10, 37, 64, 0.05);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.brand,
.footer-brand {
  color: var(--primary);
  font-size: 1.18rem;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(180px, 18vw, 250px);
  height: auto;
  object-fit: contain;
}

.footer-logo {
  display: block;
  width: min(100%, 270px);
  height: auto;
  border-radius: 14px;
  object-fit: contain;
}

.site-nav {
  gap: 16px;
}

.nav-link {
  padding: 10px 14px;
  color: #42546a;
  font-size: 14px;
  border-radius: 10px;
}

.nav-link:hover,
.nav-link-active {
  background: #eef4fb;
  color: var(--primary);
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), #0d56a4);
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 59, 121, 0.16);
}

.button-primary:hover {
  box-shadow: 0 20px 38px rgba(0, 59, 121, 0.22);
}

.button-secondary {
  background: #fff;
  color: var(--primary);
  border-color: rgba(0, 59, 121, 0.14);
  box-shadow: none;
}

.button-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.section {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.site-main,
.light-corporate-main {
  display: grid;
  gap: 28px;
  padding-bottom: 56px;
}

.corp-kicker {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.corp-display-title {
  font-size: clamp(2.9rem, 5.2vw, 5.25rem);
  line-height: 0.98;
  color: var(--primary);
}

.corp-lead,
.corp-support-copy {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.corp-section-block {
  padding: 0;
}

.corp-section-head {
  margin-bottom: 24px;
}

.corp-hero {
  padding-top: calc(var(--header-height) + 32px);
}

.corp-hero-grid,
.corp-page-hero-grid,
.corp-cta-grid,
.corp-route-layout,
.corp-detail-grid,
.corp-catalog-grid {
  display: grid;
  gap: 24px;
}

.corp-hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: stretch;
}

.corp-page-hero,
.corp-hero,
.corp-strip-section,
.corp-section-block,
.corp-cta-shell {
  width: min(calc(100% - 56px), 1280px);
  margin: 0 auto;
}

.corp-hero-grid,
.corp-page-hero-grid,
.corp-strip-grid,
.corp-service-grid,
.corp-process-grid,
.corp-category-grid,
.corp-cta-grid,
.corp-route-layout,
.corp-detail-grid,
.corp-catalog-grid {
  background: #fff;
  border: 1px solid rgba(8, 42, 82, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.corp-hero-grid,
.corp-page-hero-grid,
.corp-cta-grid,
.corp-route-layout,
.corp-detail-grid,
.corp-catalog-grid {
  padding: 34px;
}

.corp-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.corp-inline-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.corp-inline-metric {
  padding: 16px 18px;
  background: var(--surface-tint);
  border: 1px solid rgba(8, 42, 82, 0.08);
  border-radius: 16px;
}

.corp-inline-metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 1.4rem;
  font-family: "Manrope", sans-serif;
}

.corp-inline-metric span {
  color: var(--muted);
  font-size: 0.92rem;
}

.corp-hero-panel,
.corp-media-card {
  display: grid;
  gap: 18px;
}

.corp-panel-media,
.corp-media-card .card-image {
  overflow: hidden;
  border-radius: 22px;
  margin: 0;
  border: 1px solid rgba(8, 42, 82, 0.08);
}

.corp-panel-media img,
.corp-media-card .card-image {
  min-height: 320px;
  object-fit: cover;
  filter: none;
}

.corp-panel-card,
.corp-side-stat,
.corp-detail-card,
.corp-service-card,
.corp-process-card,
.corp-category-card,
.corp-strip-card,
.corp-quote-card,
.corp-catalog-sidebar,
.corp-catalog-results,
.thank-you-card-light,
.quote-panel-summary-light {
  background: #fff;
  border: 1px solid rgba(8, 42, 82, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 280ms cubic-bezier(0.23, 1, 0.320, 1);
}

.corp-panel-card,
.corp-detail-card,
.corp-service-card,
.corp-process-card,
.corp-catalog-sidebar,
.corp-catalog-results,
.quote-panel-summary-light,
.thank-you-card-light {
  padding: 24px;
}

.corp-panel-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.corp-check-list,
.corp-mini-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.corp-check-list li,
.corp-mini-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
}

.corp-check-list i,
.corp-mini-list li::before {
  color: var(--accent);
}

.corp-mini-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

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

.corp-strip-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(6, 182, 212, 0.12);
  transition: all 280ms cubic-bezier(0.23, 1, 0.320, 1);
}
.corp-strip-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(6, 182, 212, 0.28);
  box-shadow: 0 16px 40px rgba(3, 105, 161, 0.1);
}

.corp-strip-card i,
.corp-icon-badge {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 1.2rem;
}

.corp-strip-card h2,
.corp-service-card h3,
.corp-detail-card h3,
.corp-process-card h3,
.corp-category-card h3 {
  margin: 0 0 8px;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
}

.corp-strip-card p,
.corp-service-card p,
.corp-detail-card p,
.corp-process-card p,
.corp-category-card p,
.corp-media-caption span,
.corp-side-stat span,
.corp-loading-panel p {
  margin: 0;
  color: var(--muted);
}

.corp-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

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

.corp-route-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.corp-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.corp-process-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-size: 2rem;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
}

.corp-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.corp-category-card {
  overflow: hidden;
  padding: 0;
}

.corp-category-card img {
  height: 230px;
  object-fit: cover;
  filter: none;
}

.corp-category-card div {
  padding: 20px 22px 22px;
}

.corp-service-card:hover,
.corp-category-card:hover,
.corp-detail-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.28);
  box-shadow: 0 24px 48px rgba(3, 105, 161, 0.12);
}

.corp-cta-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: start;
}

.corp-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.corp-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--surface-tint);
  border: 1px solid rgba(8, 42, 82, 0.08);
  color: var(--primary);
  font-weight: 700;
}

.corp-quote-card h3 {
  margin: 0 0 16px;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
}

.quote-form-compact label {
  color: #3b4d62;
}

.quote-form-compact input,
.quote-form-compact select,
.quote-form-compact textarea,
.quote-form input,
.quote-form select,
.quote-form textarea {
  border: 1px solid rgba(8, 42, 82, 0.14);
  border-radius: 12px;
  background: #fff;
}

.quote-form-compact input:focus,
.quote-form-compact select:focus,
.quote-form-compact textarea:focus,
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(0, 59, 121, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 59, 121, 0.08);
}

.corp-page-hero-grid {
  grid-template-columns: minmax(0, 1.1fr) 320px;
}

.corp-page-hero-copy {
  display: grid;
  gap: 16px;
}

.corp-page-hero-side {
  display: grid;
  gap: 16px;
}

.corp-side-stat {
  padding: 20px;
}

.corp-side-stat strong,
.corp-media-caption strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
}

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

.corp-media-caption {
  padding: 0 4px;
}

.corp-catalog-grid {
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
}

.corp-loading-panel {
  grid-column: 1 / -1;
  min-height: 320px;
  display: grid;
  place-items: center;
  gap: 10px;
  color: var(--muted);
  border-radius: 20px;
  border: 1px dashed rgba(8, 42, 82, 0.14);
  background: var(--surface-tint);
}

.corp-loading-panel i {
  font-size: 1.25rem;
  color: var(--accent);
}

.catalog-intro-panel,
.catalog-results-panel {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.filter-bar-stacked {
  display: grid;
  gap: 10px;
}

.filter-tab,
.service-option {
  justify-content: flex-start;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(8, 42, 82, 0.12);
  background: #fff;
  color: var(--primary);
  letter-spacing: 0.08em;
}

.filter-tab.is-active,
.service-option.is-active {
  background: #eef4fb;
  border-color: rgba(0, 59, 121, 0.22);
  color: var(--primary);
}

.quote-layout {
  width: min(calc(100% - 56px), 1280px);
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 26px);
  gap: 0;
}

.quote-panel {
  padding: 32px 28px;
}

.quote-panel-dark,
.quote-panel-form,
.quote-panel-formwide {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(8, 42, 82, 0.08);
  box-shadow: var(--shadow-soft);
}

.quote-panel-dark {
  border-radius: 24px 0 0 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.quote-panel-dark p,
.quote-contact-list span {
  color: var(--muted);
}

.quote-panel-form {
  border-radius: 0 24px 24px 0;
}

.quote-panel-formwide {
  border-left: none;
}

.quote-summary-points {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.quote-summary-points div,
.thank-you-highlights div {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
}

.quote-summary-points i,
.thank-you-highlights i {
  color: var(--accent);
}

.quote-step,
.quote-prefill-note {
  border-radius: 14px;
}

.quote-step {
  background: #fff;
}

.quote-step.is-active {
  background: #eef4fb;
  border-color: rgba(0, 59, 121, 0.16);
}

.thank-you-card {
  border-radius: 24px;
}

.thank-you-card-light {
  max-width: 880px;
  margin: 0 auto;
}

.thank-you-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 8px;
}

.site-footer {
  background: linear-gradient(180deg, #082647 0%, #061c34 100%);
  color: rgba(230, 237, 247, 0.72);
  border-top: 1px solid var(--footer-rule);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  padding: 40px 0 18px;
  align-items: start;
}

.site-footer h3 {
  color: #fff;
}

.site-footer a,
.site-footer p {
  color: rgba(230, 237, 247, 0.72);
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.footer-contact-intro {
  margin: 0 0 16px;
  max-width: 26ch;
  line-height: 1.55;
  color: rgba(230, 237, 247, 0.62);
}

.footer-contact-stack {
  display: grid;
  gap: 12px;
  width: 100%;
}

.footer-contact-item {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  width: 100%;
}

.footer-contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 130, 32, 0.42);
  background: rgba(255, 255, 255, 0.07);
}

.footer-contact-item i {
  width: 20px;
  margin-top: 2px;
  color: rgba(245, 130, 32, 0.92);
  text-align: center;
  flex-shrink: 0;
}

.footer-contact-item span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.footer-contact-item strong {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-contact-item small {
  color: rgba(230, 237, 247, 0.72);
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer-contact-note {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 14px !important;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(245, 130, 32, 0.12);
  color: rgba(245, 130, 32, 0.92) !important;
  font-size: 0.76rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-whatsapp-button,
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-whatsapp-button svg {
  width: 20px;
  height: 20px;
}

.footer-bottom-row p:last-child {
  color: rgba(245, 130, 32, 0.92);
}

.whatsapp-float {
  right: 20px;
  bottom: 20px;
  border-radius: 14px;
  background: #25d366;
}

@media (max-width: 1080px) {
  .corp-hero-grid,
  .corp-page-hero-grid,
  .corp-cta-grid,
  .corp-route-layout,
  .corp-detail-grid,
  .corp-catalog-grid,
  .corp-service-grid-three {
    grid-template-columns: 1fr;
  }

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

  .quote-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .quote-panel-dark,
  .quote-panel-form {
    border-radius: 24px;
  }

  .quote-panel-formwide {
    border-left: 1px solid rgba(8, 42, 82, 0.08);
  }
}

@media (max-width: 768px) {
  .container,
  .corp-page-hero,
  .corp-hero,
  .corp-strip-section,
  .corp-section-block,
  .corp-cta-shell,
  .quote-layout {
    width: min(calc(100% - 28px), 1280px);
  }

  .site-header {
    padding: 0 12px;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 10px;
    justify-items: center;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
    text-align: center;
    max-width: 240px;
    line-height: 1.2;
  }

  .brand-logo {
    width: min(100%, 220px);
  }

  .nav-actions {
    grid-column: 3;
    justify-self: end;
  }

  .menu-toggle {
    border: 1px solid rgba(8, 42, 82, 0.12);
    background: #fff;
  }

  .site-nav {
    top: calc(var(--header-height) + 10px);
    left: 50%;
    right: auto;
    width: min(340px, calc(100vw - 28px));
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(8, 42, 82, 0.08);
    box-shadow: var(--shadow-soft);
    border-radius: 18px;
    transform: translate(-50%, -10px);
    text-align: center;
  }

  .site-nav.is-open {
    transform: translate(-50%, 0);
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    text-align: center;
  }

  .language-toggle {
    display: none;
  }

  .language-toggle-mobile {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 8px;
    padding: 10px 0 0;
  }

  .corp-hero-grid,
  .corp-page-hero-grid,
  .corp-cta-grid,
  .corp-route-layout,
  .corp-detail-grid,
  .corp-catalog-grid {
    padding: 22px;
  }

  .corp-display-title,
  .display-title,
  .page-title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .corp-hero-copy,
  .corp-page-hero-copy,
  .corp-section-head,
  .corp-route-copy,
  .corp-cta-copy,
  .quote-panel-summary-light,
  .thank-you-card-light {
    text-align: center;
    justify-items: center;
  }

  .corp-hero-copy .corp-lead,
  .corp-page-hero-copy .corp-lead,
  .corp-route-copy .corp-support-copy,
  .corp-cta-copy .corp-support-copy {
    margin-inline: auto;
  }

  .corp-inline-metrics,
  .corp-strip-grid,
  .corp-service-grid,
  .corp-process-grid,
  .corp-category-grid {
    grid-template-columns: 1fr;
  }

  .corp-inline-metric,
  .corp-side-stat,
  .corp-strip-card,
  .corp-service-card,
  .corp-process-card,
  .corp-detail-card,
  .corp-catalog-sidebar,
  .corp-catalog-results,
  .quote-panel,
  .thank-you-card-light {
    width: 100%;
  }

  .corp-strip-card {
    align-items: center;
    text-align: left;
  }

  .corp-service-card,
  .corp-process-card,
  .corp-detail-card,
  .corp-side-stat {
    text-align: left;
  }

  .corp-icon-badge,
  .corp-strip-card i {
    flex-shrink: 0;
  }

  .corp-strip-card {
    padding: 18px;
  }

  .corp-panel-media img,
  .corp-media-card .card-image,
  .corp-category-card img {
    min-height: 220px;
    height: 220px;
  }

  .corp-contact-actions,
  .thank-you-highlights {
    flex-direction: column;
    align-items: stretch;
  }

  .corp-contact-chip {
    justify-content: center;
  }

  .quote-panel,
  .quote-panel-summary-light,
  .thank-you-card-light {
    padding: 22px;
  }

  .quote-panel-summary-light .quote-contact-list,
  .quote-panel-summary-light .quote-summary-points,
  .thank-you-highlights {
    width: 100%;
  }

  .quote-contact-list p,
  .quote-summary-points div,
  .thank-you-highlights div {
    justify-content: center;
    text-align: center;
  }

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

  .footer-grid > div {
    align-items: stretch;
    text-align: left;
  }

  .footer-whatsapp,
  .footer-whatsapp-button {
    width: 100%;
    justify-content: center;
  }

  .footer-contact-intro {
    max-width: none;
  }

  .footer-contact-item {
    padding: 13px 14px;
  }

  .footer-contact-note {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .container,
  .corp-page-hero,
  .corp-hero,
  .corp-strip-section,
  .corp-section-block,
  .corp-cta-shell,
  .quote-layout {
    width: min(calc(100% - 20px), 1280px);
  }

  .corp-hero-grid,
  .corp-page-hero-grid,
  .corp-cta-grid,
  .corp-route-layout,
  .corp-detail-grid,
  .corp-catalog-grid {
    padding: 18px;
    border-radius: 18px;
  }

  .corp-panel-card,
  .corp-detail-card,
  .corp-service-card,
  .corp-process-card,
  .corp-catalog-sidebar,
  .corp-catalog-results,
  .quote-panel-summary-light,
  .thank-you-card-light {
    padding: 18px;
    border-radius: 16px;
  }

  .corp-inline-metric {
    padding: 14px;
  }

  .nav-shell {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .brand {
    max-width: 200px;
    font-size: 0.96rem;
  }

  .brand-logo {
    width: min(100%, 188px);
  }

  .site-nav {
    width: min(320px, calc(100vw - 20px));
    padding: 16px;
  }

  .button {
    min-height: 46px;
    width: 100%;
  }

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

  .product-page-intro {
    font-size: 15px;
  }

  .product-detail-card,
  .product-loading-block,
  .product-fetch-error {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .product-main-image-frame {
    border-radius: 24px;
  }

  .product-main-image {
    min-height: 360px;
  }

  .product-thumbnail-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .product-detail-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .product-detail-price {
    font-size: 1.85rem;
  }

  .product-support-note,
  .product-selection-group {
    padding: 16px;
    border-radius: 20px;
  }

  .product-direct-order,
  .product-quote-link {
    min-height: 54px;
  }
}
