/* ============================================
   Nest Elevate — Components
   ============================================ */

/* ----- Logo ----- */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
  max-width: 100%;
}

.logo-img {
  display: block;
  height: clamp(48px, 5.2vw, 64px);
  width: auto;
  max-width: min(100%, 110px);
  object-fit: contain;
  object-position: left center;
}

/* Official logo stays readable on dark footer */
.logo-light {
  background: #ffffff;
  border-radius: 8px;
  padding: 0.28rem 0.4rem;
  max-width: 100%;
}

.logo-light .logo-img {
  height: clamp(42px, 4.6vw, 54px);
  max-width: min(100%, 100px);
}

/* ----- Top bar ----- */
.top-bar {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8125rem;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.top-bar a,
.top-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.88);
}

.top-bar a:hover {
  color: var(--color-white);
}

.top-bar i,
.top-bar svg {
  width: 14px;
  height: 14px;
  color: var(--color-orange);
  opacity: 1;
}

.top-bar-right a + a {
  position: relative;
  padding-left: 1.35rem;
}

.top-bar-right a + a::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}

/* ----- Main header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  /* Keep header height stable while scrolling — size changes cause sticky jump/buffer */
  transition: box-shadow var(--transition-normal);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-header);
}

.main-nav-bar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}

.main-nav-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: 100%;
  min-width: 0;
  flex-wrap: nowrap;
}

.main-nav-bar > .container {
  min-height: 84px;
  gap: 0.45rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  min-width: 0;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-small);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active,
.nav-item:hover > .nav-link {
  color: var(--color-orange);
}

.nav-link i,
.nav-link svg {
  width: 14px;
  height: 14px;
  padding: 0.2rem;
  margin: -0.2rem -0.1rem -0.2rem 0.1rem;
  box-sizing: content-box;
  transition: transform var(--transition-fast);
}

.nav-item:hover > .nav-link i,
.nav-item:hover > .nav-link svg,
.nav-item.open > .nav-link i,
.nav-item.open > .nav-link svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  z-index: 100;
}

.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown,
.nav-item.open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  color: var(--color-text);
  border-radius: var(--radius-small);
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: var(--color-green-light);
  color: var(--color-green);
}

.nav-dropdown-catalog {
  min-width: min(720px, 92vw);
  left: 50%;
  transform: translate(-50%, 8px);
  padding: 1.35rem 1.25rem 1.2rem;
  border-radius: 14px;
  max-height: none;
  overflow: visible;
}

.nav-item:hover > .nav-dropdown-catalog,
.nav-item:focus-within > .nav-dropdown-catalog,
.nav-item.open > .nav-dropdown-catalog {
  transform: translate(-50%, 0);
}

.catalog-mega {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem 2rem;
}

.catalog-mega-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.85rem;
  padding: 0 0.15rem;
}

.catalog-mega-col a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.15rem;
  font-size: 0.9rem;
  color: var(--color-text);
  border-radius: 0;
}

.catalog-mega-col a:hover,
.catalog-mega-col a.active {
  background: transparent;
  color: var(--color-orange);
}

.catalog-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: inline-block;
  background: var(--color-orange);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-actions .btn {
  white-space: nowrap;
}

.header-product-search {
  width: 220px;
  min-width: 170px;
  flex: 0 1 220px;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.85rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(6, 26, 51, 0.05);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.header-product-search:focus-within {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(241, 101, 33, 0.12);
}

.header-product-search > i,
.header-product-search > svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--color-muted);
}

.header-product-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-size: 0.72rem;
}

.header-product-search input::placeholder {
  color: #b4bac2;
  opacity: 1;
}

.header-product-search button {
  flex: 0 0 auto;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 600;
  transition: background var(--transition-fast);
}

.header-product-search button:hover {
  background: var(--color-orange-dark);
}

.btn-portal {
  background: transparent;
  color: var(--color-green);
  border: 1.5px solid var(--color-green);
  padding: 0.6rem 0.85rem;
  font-size: 0.8125rem;
}

.nav-actions .btn-orange {
  padding: 0.6rem 0.9rem;
  font-size: 0.8125rem;
}

.btn-portal:hover {
  background: var(--color-green);
  color: var(--color-white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-small);
  border: 1px solid var(--color-border);
  color: var(--color-navy);
  position: relative;
  z-index: 980;
  background: var(--color-white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background var(--transition-fast);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition-fast), top var(--transition-fast);
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 26, 51, 0.45);
  z-index: 940;
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.nav-backdrop.is-visible {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* ----- Cards ----- */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  padding: 1.85rem 1.55rem;
  box-shadow: none;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-border-green);
}

.card-icon {
  width: 44px;
  height: 44px;
  color: var(--color-green);
  margin-bottom: 1rem;
  transition: transform var(--transition-normal);
}

.card:hover .card-icon {
  transform: translateY(-2px);
}

.card-icon i,
.card-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.75;
}

.card-icon-lg {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-lg i,
.card-icon-lg svg {
  width: 32px;
  height: 32px;
}

.card-title {
  font-size: var(--fs-card);
  margin-bottom: 0.6rem;
  color: var(--color-navy);
}

.card-text {
  font-size: 0.9375rem;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-green);
  margin-top: auto;
}

.card-link:hover {
  color: var(--color-green-dark);
}

.card-link i,
.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.card-link:hover i,
.card-link:hover svg {
  transform: translateX(3px);
}

.card-center {
  text-align: center;
  align-items: center;
}

.card-center .card-text {
  text-align: center;
}

/* Service grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

/* ----- Dual audience card ----- */
.audience-card {
  background: var(--color-white);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-large);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.audience-half {
  padding: 2.15rem 2.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.audience-half + .audience-half {
  border-left: 1px solid var(--color-border);
}

.audience-half.orange {
  background: linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
}

.audience-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-icon.green {
  background: var(--color-green-light);
  color: var(--color-green);
}

.audience-icon.orange {
  background: var(--color-orange-light);
  color: var(--color-orange);
}

.audience-icon i,
.audience-icon svg {
  width: 22px;
  height: 22px;
}

.audience-half h3 {
  font-size: 1.25rem;
}

.audience-half.green h3 { color: var(--color-green); }
.audience-half.orange h3 { color: var(--color-orange); }

.audience-half p {
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
}

/* ----- Stats bar ----- */
.stats-bar {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 3rem 0;
}

.stats-bar.green {
  background: var(--color-green-dark);
}

.stats-bar.soft {
  background: var(--color-background);
  color: var(--color-text);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stats-grid.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.stat-item {
  padding: 0.5rem 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stats-bar.soft .stat-item:not(:last-child)::after {
  background: var(--color-border);
}

.stat-icon {
  color: var(--color-green-mid);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
}

.stats-bar.green .stat-icon {
  color: rgba(255, 255, 255, 0.85);
}

.stats-bar.soft .stat-icon {
  color: var(--color-orange);
}

.stat-icon i,
.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.25rem;
  color: var(--color-white);
}

.stats-bar.soft .stat-value {
  color: var(--color-navy);
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.85;
}

.stats-bar.soft .stat-label {
  color: var(--color-muted);
  opacity: 1;
}

.stats-bar-features {
  padding: 2.75rem 0;
}

.stats-bar-features .stats-grid {
  text-align: left;
  gap: 1.5rem 1.25rem;
}

.stats-bar-features .stat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.35rem 1.1rem;
  text-align: left;
}

.stats-bar-features .stat-item:not(:last-child)::after {
  top: 10%;
  height: 80%;
}

.stats-bar-features .stat-icon {
  margin-bottom: 0;
  justify-content: flex-start;
  flex-shrink: 0;
  color: var(--color-orange);
}

.stats-bar-features .stat-icon i,
.stats-bar-features .stat-icon svg {
  width: 28px;
  height: 28px;
}

.stats-bar-features .stat-body {
  min-width: 0;
}

.stats-bar-features .stat-value {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  margin-bottom: 0.1rem;
  color: var(--color-navy);
}

.stats-bar-features .stat-value-text {
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
}

.stats-bar-features .stat-label {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  opacity: 1;
}

.stats-bar-features .stat-desc {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-muted);
  max-width: 17rem;
}

/* ----- Process timeline ----- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  counter-reset: step;
}

.process-timeline.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  width: 100%;
  height: 2px;
  border-top: 2px dashed var(--color-border-green);
  z-index: 0;
}

.process-step:last-child::before {
  display: none;
}

.process-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-green);
  background: var(--color-white);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  position: relative;
  z-index: 1;
}

.process-icon i,
.process-icon svg {
  width: 24px;
  height: 24px;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--color-navy);
}

.process-step p {
  font-size: 0.85rem;
}

/* ----- FAQ ----- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: var(--color-white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-navy);
  background: var(--color-white);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--color-background);
}

.faq-question i,
.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-green);
  transition: transform var(--transition-normal);
}

.faq-item.is-open .faq-question {
  background: var(--color-background);
}

.faq-item.is-open .faq-question i,
.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-inner {
  padding: 0 1.2rem 1.15rem;
  font-size: 0.925rem;
  color: var(--color-muted);
}

/* ----- Forms ----- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group .required {
  color: var(--color-error);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input[type="file"] {
  padding: 0.65rem 0.75rem;
  background: var(--color-background-soft);
  cursor: pointer;
}

.file-upload {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.file-hint {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(8, 122, 68, 0.12);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--color-error);
}

.field-error {
  font-size: 0.8rem;
  color: var(--color-error);
  display: none;
}

.form-group.has-error .field-error {
  display: block;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.form-checkbox input {
  margin-top: 0.2rem;
  width: auto;
  flex-shrink: 0;
}

.form-checkbox span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.form-success {
  display: none;
  padding: 1.25rem;
  background: var(--color-green-light);
  border: 1px solid var(--color-border-green);
  border-radius: var(--radius-medium);
  color: var(--color-green-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.form-success.is-visible {
  display: block;
}

.form-success strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-green);
}

.form-error-banner {
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  background: #fdecea;
  border: 1px solid #f5c2c0;
  border-radius: var(--radius-medium);
  color: var(--color-error);
  font-size: 0.95rem;
}

.form-error-banner[hidden] {
  display: none;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.btn-loading {
  pointer-events: none;
  opacity: 0.75;
}

/* ----- Hero variants ----- */
.hero-home {
  position: relative;
  min-height: 0;
  max-height: none;
  display: flex;
  align-items: flex-start;
  background: var(--color-navy);
  overflow: hidden;
  /* Desktop: tighter height while keeping room for overlap card */
  padding: clamp(3.5rem, 5.5vw, 4.75rem) 0 clamp(7.25rem, 11vw, 9.5rem);
}

.hero-home-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 68% center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-home.is-ready .hero-home-bg {
  transform: scale(1);
}

.hero-home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(6, 26, 51, 0.97) 0%,
    rgba(6, 26, 51, 0.92) 32%,
    rgba(6, 26, 51, 0.55) 55%,
    rgba(6, 26, 51, 0.18) 78%,
    rgba(6, 26, 51, 0.05) 100%
  );
}

.hero-home .container {
  position: relative;
  z-index: 2;
}

.hero-home-content {
  max-width: 640px;
}

.hero-home h1 {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  color: var(--color-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

@media (min-width: 993px) {
  .hero-home h1 .hero-line {
    display: block;
  }
}

.hero-home p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.hero-overlap {
  margin-top: clamp(-4.5rem, -6.5vw, -6rem);
  position: relative;
  z-index: 4;
  padding-bottom: 0.5rem;
}

.section-services {
  padding-top: calc(var(--section-pad) - 1rem);
}

/* Service page hero */
.hero-service {
  padding: clamp(2.25rem, 4vw, 3rem) 0 clamp(2rem, 3vw, 2.75rem);
  background: var(--color-white);
  overflow: visible;
}

.hero-service-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.hero-service h1 {
  font-size: var(--fs-page-hero);
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.hero-service h1 .accent {
  color: var(--color-green);
}

.hero-service .lead {
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--color-border);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.hero-feature i,
.hero-feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-green);
  flex-shrink: 0;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: none;
  min-height: 0;
  clip-path: none;
  background: var(--color-background-soft);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  min-height: 0;
}

.hero-media.angled,
.hero-media.diagonal-border {
  clip-path: none;
  border-radius: var(--radius-large);
}

/* Shared reference hero for distribution and marketplace pages */
.showcase-hero {
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(18, 128, 73, 0.065) 1px, transparent 1.2px) 0 0 / 18px 18px,
    #ffffff;
}

.showcase-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  min-height: 520px;
  align-items: stretch;
}

.showcase-hero-copy {
  align-self: center;
  min-width: 0;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
}

.showcase-breadcrumb {
  margin-bottom: 1.35rem;
  color: #647184;
  font-size: 0.8rem;
}

.showcase-breadcrumb span {
  color: var(--color-green);
  font-weight: 600;
}

.showcase-hero h1 {
  margin: 0 0 1.15rem;
  color: var(--color-navy);
  font-size: clamp(2.4rem, 3.7vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.showcase-hero h1 > span {
  display: block;
}

.showcase-title-accent {
  color: var(--color-green);
}

.showcase-lead {
  max-width: 510px;
  margin-bottom: 1.7rem;
  color: #556172;
  line-height: 1.65;
}

.showcase-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.7rem;
}

.showcase-feature {
  min-width: 0;
  color: var(--color-navy);
  font-size: 0.68rem;
  line-height: 1.35;
}

.showcase-feature span {
  width: 44px;
  height: 44px;
  margin-bottom: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eff8f2;
  color: var(--color-green);
}

.showcase-feature i,
.showcase-feature svg {
  width: 21px;
  height: 21px;
}

.showcase-feature strong {
  display: block;
  font-weight: 600;
}

.showcase-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.showcase-hero-actions .btn {
  min-height: 46px;
}

.showcase-trust {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.showcase-trust-avatars {
  display: flex;
  align-items: center;
}

.showcase-trust-avatars span,
.showcase-trust-avatars strong {
  width: 32px;
  height: 32px;
  margin-left: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #28465f;
}

.showcase-trust-avatars span:first-child {
  margin-left: 0;
  background: #c6875d;
}

.showcase-trust-avatars span:nth-child(2) {
  background: #6b7f8e;
}

.showcase-trust-avatars span:nth-child(3) {
  background: #cc9f7a;
}

.showcase-trust-avatars strong {
  width: 39px;
  background: var(--color-green);
  font-size: 0.68rem;
}

.showcase-trust-avatars i,
.showcase-trust-avatars svg {
  width: 15px;
  height: 15px;
}

.showcase-trust p {
  margin: 0;
  color: #637083;
  font-size: 0.74rem;
}

.showcase-trust p strong {
  color: var(--color-green);
}

.showcase-hero-visual {
  position: relative;
  min-width: 0;
  min-height: 520px;
}

.showcase-hero-visual::before {
  content: "";
  position: absolute;
  inset: 8px 0;
  z-index: 0;
  background: var(--color-green);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 4% 100%, 0 62%);
}

.showcase-hero-image {
  position: absolute;
  inset: 0 0 0 5px;
  z-index: 1;
  overflow: hidden;
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 5% 100%, 1% 62%);
}

.showcase-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Warehouse reference hero */
.warehouse-hero {
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(18, 128, 73, 0.065) 1px, transparent 1.2px) 0 0 / 18px 18px,
    #ffffff;
}

.warehouse-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  min-height: 520px;
  align-items: stretch;
}

.warehouse-hero-copy {
  align-self: center;
  min-width: 0;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
}

.warehouse-breadcrumb {
  margin-bottom: 1.35rem;
  color: #647184;
  font-size: 0.8rem;
}

.warehouse-breadcrumb span {
  color: var(--color-green);
  font-weight: 600;
}

.warehouse-hero h1 {
  margin: 0 0 1.15rem;
  color: var(--color-navy);
  font-size: clamp(2.45rem, 3.8vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.warehouse-hero h1 > span {
  display: block;
}

.warehouse-title-accent {
  color: var(--color-green);
}

.warehouse-lead {
  max-width: 500px;
  margin-bottom: 1.7rem;
  color: #556172;
  line-height: 1.65;
}

.warehouse-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.7rem;
}

.warehouse-feature {
  min-width: 0;
  color: var(--color-navy);
  font-size: 0.68rem;
  line-height: 1.35;
}

.warehouse-feature span {
  width: 44px;
  height: 44px;
  margin-bottom: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eff8f2;
  color: var(--color-green);
}

.warehouse-feature i,
.warehouse-feature svg {
  width: 21px;
  height: 21px;
}

.warehouse-feature strong {
  display: block;
  font-weight: 600;
}

.warehouse-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.warehouse-hero-actions .btn {
  min-height: 46px;
}

.warehouse-trust {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.warehouse-trust-avatars {
  display: flex;
  align-items: center;
}

.warehouse-trust-avatars span,
.warehouse-trust-avatars strong {
  width: 32px;
  height: 32px;
  margin-left: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #28465f;
}

.warehouse-trust-avatars span:first-child {
  margin-left: 0;
  background: #c6875d;
}

.warehouse-trust-avatars span:nth-child(2) {
  background: #6b7f8e;
}

.warehouse-trust-avatars span:nth-child(3) {
  background: #cc9f7a;
}

.warehouse-trust-avatars strong {
  width: 39px;
  background: var(--color-green);
  font-size: 0.68rem;
}

.warehouse-trust-avatars i,
.warehouse-trust-avatars svg {
  width: 15px;
  height: 15px;
}

.warehouse-trust p {
  margin: 0;
  color: #637083;
  font-size: 0.74rem;
}

.warehouse-trust p strong {
  color: var(--color-green);
}

.warehouse-hero-visual {
  position: relative;
  min-width: 0;
  min-height: 520px;
}

.warehouse-hero-visual::before {
  content: "";
  position: absolute;
  inset: 8px 0 8px 0;
  z-index: 0;
  background: var(--color-green);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 4% 100%, 0 62%);
}

.warehouse-hero-image {
  position: absolute;
  inset: 0 0 0 5px;
  z-index: 1;
  overflow: hidden;
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 5% 100%, 1% 62%);
}

.warehouse-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Reseller reference hero */
.reseller-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(18, 128, 73, 0.08) 1px, transparent 1.2px) 0 0 / 18px 18px,
    #ffffff;
}

.reseller-hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.32fr);
  gap: 0;
  min-height: 540px;
}

.reseller-hero-copy {
  position: relative;
  z-index: 3;
  padding: clamp(2rem, 3.5vw, 3rem) 2rem clamp(2rem, 3.5vw, 3rem) 0;
  align-self: center;
}

.reseller-breadcrumb {
  margin-bottom: 1.2rem;
  color: #647184;
  font-size: 0.8rem;
}

.reseller-breadcrumb span {
  color: var(--color-green);
  font-weight: 600;
}

.reseller-hero h1 {
  margin: 0 0 1.1rem;
  color: var(--color-navy);
  font-size: clamp(2.65rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.reseller-hero h1 > span {
  display: block;
}

.reseller-hero h1 .reseller-title-accent {
  color: var(--color-green);
}

.reseller-lead {
  max-width: 390px;
  margin-bottom: 1rem;
  color: #556172;
  font-size: 0.95rem;
  line-height: 1.65;
}

.reseller-benefits {
  width: min(100%, 380px);
  margin: 0 0 1.15rem;
}

.reseller-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 38px;
  border-bottom: 1px solid #e3e8e5;
  color: var(--color-navy);
  font-size: 0.87rem;
  font-weight: 600;
}

.reseller-benefit-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eff8f2;
  color: var(--color-green);
}

.reseller-benefit-icon i,
.reseller-benefit-icon svg {
  width: 15px;
  height: 15px;
}

.reseller-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.reseller-hero-actions .btn {
  min-height: 44px;
  padding-inline: 1rem;
  font-size: 0.82rem;
}

.reseller-trust {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.reseller-trust-avatars {
  display: flex;
  align-items: center;
}

.reseller-trust-avatars span,
.reseller-trust-avatars strong {
  width: 31px;
  height: 31px;
  margin-left: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #27445d;
}

.reseller-trust-avatars span:first-child {
  margin-left: 0;
  background: #c6875d;
}

.reseller-trust-avatars span:nth-child(2) {
  background: #6b7f8e;
}

.reseller-trust-avatars span:nth-child(3) {
  background: #cc9f7a;
}

.reseller-trust-avatars strong {
  width: 38px;
  background: var(--color-green);
  font-size: 0.68rem;
}

.reseller-trust-avatars i,
.reseller-trust-avatars svg {
  width: 15px;
  height: 15px;
}

.reseller-trust p {
  margin: 0;
  color: #637083;
  font-size: 0.72rem;
}

.reseller-trust p strong {
  color: var(--color-green);
}

.reseller-hero-visual {
  position: relative;
  min-width: 0;
  min-height: 540px;
}

.reseller-hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 8px -2px 8px 0;
  background: var(--color-green);
  clip-path: polygon(21% 0, 100% 0, 100% 100%, 1% 100%, 0 62%);
}

.reseller-hero-image {
  position: absolute;
  z-index: 1;
  inset: 0 -2px 0 4px;
  overflow: hidden;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 2% 100%, 0 62%);
}

.reseller-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.reseller-hero-stats {
  position: absolute;
  z-index: 4;
  left: 10%;
  right: 2.5%;
  bottom: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 1rem 0.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 40px rgba(6, 26, 51, 0.22);
}

.reseller-hero-stat {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.5rem;
  text-align: center;
}

.reseller-hero-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8%;
  right: 0;
  width: 1px;
  height: 84%;
  background: #e1e6e3;
}

.reseller-hero-stat i,
.reseller-hero-stat svg {
  width: 26px;
  height: 26px;
  margin-bottom: 0.25rem;
  color: var(--color-green);
}

.reseller-hero-stat strong {
  color: var(--color-navy);
  font-size: 1.45rem;
  line-height: 1.15;
}

.reseller-hero-stat span {
  color: #617083;
  font-size: 0.67rem;
  line-height: 1.3;
}

/* Brands navy hero */
.hero-brands {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0;
  overflow: hidden;
}

.hero-brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 0;
  gap: 1.5rem;
}

.hero-brands-content {
  padding: clamp(2.75rem, 5vw, 4rem) 1.5rem clamp(2.75rem, 5vw, 4rem) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-brands h1 {
  color: var(--color-white);
  font-size: var(--fs-page-hero);
  margin-bottom: 1rem;
}

.hero-brands p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 460px;
}

.hero-brands-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: none;
  min-height: 0;
  overflow: hidden;
  clip-path: none;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.06);
}

.hero-brands-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  min-height: 0;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  color: var(--color-text);
}

.check-list i,
.check-list svg {
  width: 18px;
  height: 18px;
  color: var(--color-green);
  flex-shrink: 0;
}

/* Industry / category icons */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.icon-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

a.icon-tile {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.icon-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.15rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: var(--color-white);
  text-align: center;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.icon-tile:hover {
  border-color: var(--color-border-green);
  box-shadow: var(--shadow-small);
  transform: translateY(-2px);
}

.icon-tile i,
.icon-tile svg {
  width: 26px;
  height: 26px;
  color: var(--color-green);
}

.icon-tile span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
}

a.category-item {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  min-width: 90px;
}

.category-item .cat-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-green-light);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.category-item:hover .cat-icon {
  transform: translateY(-3px);
  background: var(--color-green);
  color: var(--color-white);
}

.category-item .cat-icon i,
.category-item .cat-icon svg {
  width: 28px;
  height: 28px;
}

.category-item span {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Partners Tools & Resources */
.section-partner-tools {
  background: var(--color-background);
}

.section-heading {
  text-align: center;
  margin-bottom: 0.25rem;
}

.section-accent-line {
  display: block;
  width: 48px;
  height: 3px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-round);
  background: var(--color-green);
}

.section-heading .section-title {
  margin-bottom: 0.65rem;
}

.section-heading .section-subtitle {
  margin-bottom: 2.5rem;
}

.partner-tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.partner-tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.65rem 0.85rem 1.4rem;
  background: var(--color-white);
  border: none;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

.partner-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.partner-tool-card .ptc-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-green-light);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}

.partner-tool-card .ptc-icon i,
.partner-tool-card .ptc-icon svg {
  width: 28px;
  height: 28px;
}

.partner-tool-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: var(--fw-heading);
  color: var(--color-navy);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.partner-tool-card p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-muted);
  margin: 0 0 1.1rem;
  flex: 1;
}

.partner-tool-card .ptc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-green);
}

.partner-tool-card .ptc-link i,
.partner-tool-card .ptc-link svg {
  width: 16px;
  height: 16px;
}

.partner-tool-card:hover .ptc-link {
  color: var(--color-green-dark);
}

/* Legacy tools grid (kept for other pages if needed) */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.tool-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.tool-card .tool-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-green-light);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.tool-card .tool-icon i,
.tool-card .tool-icon svg {
  width: 22px;
  height: 22px;
}

.tool-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.tool-card p {
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
  flex-grow: 1;
}

/* Why + Industries — two halves (photo+benefits | industries) */
.why-industries-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.75rem 0;
  align-items: stretch;
}

.why-block {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 1.5rem;
  align-items: start;
  min-width: 0;
  padding-right: clamp(1.75rem, 3vw, 2.75rem);
}

.why-photo {
  border-radius: var(--radius-large);
  overflow: hidden;
  width: 100%;
  min-height: 0;
  aspect-ratio: 3 / 4;
  align-self: stretch;
}

.why-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

.why-content h2,
.industries-content h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  margin: 0 0 1.35rem;
  line-height: 1.25;
  color: var(--color-navy);
}

.why-content h2 {
  text-align: left;
}

.industries-content {
  padding-left: clamp(1.75rem, 3vw, 2.75rem);
  border-left: 1px solid var(--color-border);
}

.industries-content h2 {
  text-align: center;
}

.industries-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}

.industries-grid .icon-tile {
  grid-column: span 2;
  padding: 1.15rem 0.5rem;
  background: var(--color-white);
  border: none;
  box-shadow: var(--shadow-small);
  min-height: 110px;
}

/* Row 3: last 2 cards centered */
.industries-grid .icon-tile:nth-child(7) {
  grid-column: 2 / span 2;
}

.industries-grid .icon-tile:nth-child(8) {
  grid-column: 4 / span 2;
}

.industries-grid .icon-tile:hover {
  background: var(--color-white);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(7, 32, 45, 0.12);
}

.section-brands {
  padding-top: calc(var(--section-pad) * 0.75);
  padding-bottom: calc(var(--section-pad) * 0.75);
  background: var(--color-white);
  overflow: hidden;
}

.section-brands .section-title {
  text-align: center;
  margin-bottom: 2.25rem;
}

.section-final-cta {
  padding-top: calc(var(--section-pad) * 0.75);
}

/* Logo carousel — full-bleed strip + orange arrows */
.logo-carousel {
  position: relative;
  width: 100%;
  display: block;
}

.logo-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--color-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.logo-carousel-prev {
  left: 0.35rem;
}

.logo-carousel-next {
  right: 0.35rem;
}

.logo-carousel-arrow:hover {
  color: var(--color-orange-dark);
  background: var(--color-orange-light);
}

.logo-carousel-arrow i,
.logo-carousel-arrow svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(3rem, 6vw, 5.5rem);
  padding-block: 0.75rem;
  animation: logo-marquee 70s linear infinite;
}

.logo-marquee-track.is-reversed {
  animation-direction: reverse;
}

.logo-carousel:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-marquee-item {
  flex: 0 0 auto;
  width: clamp(160px, 18vw, 220px);
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.logo-marquee-item img {
  width: 100%;
  height: 100%;
  max-width: 200px;
  max-height: 84px;
  object-fit: contain;
  display: block;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 1.5rem 2rem;
  }

  .logo-marquee-track .logo-marquee-item:nth-child(n + 39) {
    display: none;
  }
}

.marketplace-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 2.5rem;
}

.marketplace-logos .mp-logo {
  font-family: var(--font-heading);
  font-weight: var(--fw-heading);
  font-size: 1.1rem;
  color: var(--color-muted);
  padding: 0.5rem 0.75rem;
}

/* CTA banners */
.cta-banner {
  border-radius: var(--radius-large);
  overflow: hidden;
  position: relative;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-title,
.section-subtitle,
.lead,
.hero-home p,
.hero-service .lead,
.hero-brands p,
.page-hero p,
.cta-banner h2,
.cta-banner p,
.audience-half p,
.card p,
.faq-answer-inner {
  overflow-wrap: break-word;
}

.cta-banner.navy {
  background: var(--color-navy);
  color: var(--color-white);
}

.cta-banner.green {
  background: var(--color-green-dark);
  color: var(--color-white);
}

.cta-banner.has-bg {
  background-size: cover;
  background-position: center;
}

.cta-banner.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 51, 0.88);
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}

/* Split CTA — large left image + green body (service pages) */
.cta-banner.cta-split {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) 1fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  flex-wrap: nowrap;
  min-height: 240px;
}

.cta-banner.cta-split .cta-banner-media {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 0;
  aspect-ratio: auto;
  align-self: stretch;
}

.cta-banner.cta-split .cta-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-banner-body {
  padding: clamp(1.75rem, 3vw, 2.75rem) clamp(1.5rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-banner.cta-split .cta-banner-actions {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
}

.cta-banner.cta-split .btn-white {
  border-radius: 999px;
  padding-inline: 1.35rem;
}

.cta-banner.cta-split .phone-link {
  color: var(--color-white);
  font-weight: 600;
}

.cta-banner.cta-split .phone-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.cta-banner-media {
  width: 168px;
  height: 112px;
  border-radius: var(--radius-medium);
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 3 / 2;
}

.cta-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-banner.has-bg {
  background-size: cover;
  background-position: center;
  min-height: 0;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-weight: 600;
}

.phone-link i,
.phone-link svg {
  width: 18px;
  height: 18px;
}

.phone-hours {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.8;
  display: block;
  margin-left: 1.6rem;
}

/* Floating WhatsApp widget */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #25d366;
  color: #fff;
  padding: 0.85rem 1.1rem 0.85rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #1ebe57;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  color: #fff;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.whatsapp-float-label {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 0.85rem;
  }

  .whatsapp-float-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

/* About banner — reference: navy | thick orange diagonal | warehouse photo + floating mission */
.about-banner {
  position: relative;
  background: #061a33;
  color: var(--color-white);
  overflow: visible;
  padding: 0;
}

.about-banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  /* Photo stays on the right with the same diagonal edge as the reference. */
  clip-path: polygon(59% 0, 100% 0, 100% 100%, 49% 100%);
}

.about-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scaleX(-1) scale(1.03);
}

/* Thick orange diagonal slash — sits flush on photo’s left edge */
.about-banner-slash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #f58220;
  clip-path: polygon(56.5% 0, 60% 0, 50% 100%, 46.5% 100%);
}

.about-banner-inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(2.75rem, 5vw, 4rem);
  padding-bottom: clamp(4rem, 6vw, 5rem);
  min-height: clamp(330px, 32vw, 410px);
  display: flex;
  align-items: flex-start;
}

.about-banner-content {
  max-width: min(570px, 52%);
  padding-bottom: 0.35rem;
}

.about-banner-crumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.about-banner-crumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-white);
}

.about-banner-crumb a:hover {
  color: #ffb366;
}

.about-banner-crumb a i,
.about-banner-crumb a svg {
  color: var(--color-orange);
  width: 15px;
  height: 15px;
}

.about-banner-crumb .crumb-sep {
  color: rgba(255, 255, 255, 0.55);
}

.about-banner-crumb > span:last-child {
  color: var(--color-orange);
}

.about-banner h1 {
  color: var(--color-white);
  font-size: clamp(2.15rem, 3.6vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.12;
  font-weight: 700;
}

.about-banner .hero-anim-text {
  color: rgba(255, 255, 255, 0.92);
  max-width: 500px;
  margin-bottom: 1.5rem;
  line-height: 1.65;
  font-size: 0.98rem;
}

.about-banner-features {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  align-items: center;
  gap: 0.75rem 0;
}

.about-banner-feature {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-white);
  padding-right: 0.85rem;
  margin-right: 0.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  white-space: nowrap;
}

.about-banner-feature:nth-child(even) {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.about-banner-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-orange);
  border: 1.5px solid var(--color-orange);
}

.about-banner-feature-icon i,
.about-banner-feature-icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

/* Mission card: over diagonal cut, hangs into Our Story */
.about-mission-anchor {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  margin-top: -4.35rem;
  margin-bottom: -3.1rem;
  padding-bottom: 0;
}

.about-mission-card {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 1.05rem;
  background: var(--color-white);
  color: var(--color-text);
  border-radius: 12px;
  padding: 1.2rem 1.35rem;
  box-shadow: 0 16px 40px rgba(6, 26, 51, 0.2);
  max-width: 430px;
  width: min(430px, 100%);
  margin-right: clamp(0.5rem, 3.5vw, 2.75rem);
}

.about-mission-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-orange);
  color: var(--color-white);
}

.about-mission-icon i,
.about-mission-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.about-mission-copy h2 {
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
  line-height: 1.25;
  font-weight: 700;
}

.about-mission-copy p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #5a6577;
}

.about-story-section {
  /* Clear the hanging mission card + breathing room */
  padding-top: clamp(4.25rem, 6.5vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
  background:
    radial-gradient(circle, rgba(6, 26, 51, 0.055) 1.1px, transparent 1.2px);
  background-size: 16px 16px;
  background-color: #f2f4f6;
}

.about-story {
  max-width: 100%;
  text-align: center;
}

.about-story .eyebrow,
.about-vision .eyebrow,
.about-why-section .eyebrow,
.about-values-section .eyebrow {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
}

.about-story .section-title {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 0.75rem;
}

.about-story-rule {
  display: block;
  width: 52px;
  height: 3px;
  background: var(--color-orange);
  border-radius: 2px;
  margin: 0 auto 1.25rem;
}

.about-story-copy {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.about-story-copy p {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 1rem;
}

.about-story-copy p:last-child {
  margin-bottom: 0;
}

.about-story-media {
  margin-top: 2.25rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-story-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 2.4 / 1;
  max-height: 440px;
}

.about-vision {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.about-vision .eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}

.about-vision .section-title {
  margin-bottom: 1rem;
  text-align: center;
}

.about-vision p {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 38rem;
}

.about-why-section .section-title,
.about-values-section .section-title {
  text-align: center;
}

.about-why-grid .card-icon {
  color: var(--color-orange);
}

.about-why-grid .card-icon i,
.about-why-grid .card-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

.about-value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-orange-light);
  color: var(--color-orange);
}

.about-value-icon i,
.about-value-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.85;
}

.about-cta {
  align-items: center;
  gap: 1.5rem;
}

.about-cta-copy {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  min-width: 0;
}

.about-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 130, 32, 0.18);
  color: var(--color-orange);
}

.about-cta-icon i,
.about-cta-icon svg {
  width: 26px;
  height: 26px;
}

.section-connect {
  padding-top: calc(var(--section-pad) * 0.65);
  padding-bottom: calc(var(--section-pad) * 0.55);
}

.connect-banner {
  background: linear-gradient(180deg, #050a18 0%, #ff5a00 100%);
  border-radius: var(--radius-large);
  padding: clamp(2.5rem, 5vw, 3.5rem) 2rem;
  text-align: center;
  color: var(--color-white);
}

.connect-banner h2 {
  color: var(--color-white);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: var(--fw-heading);
  margin-bottom: 1.35rem;
}

.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.social-row a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #050a18;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.social-row a:hover {
  background: var(--color-navy);
  transform: translateY(-2px);
}

.social-row a i,
.social-row a svg {
  width: 20px;
  height: 20px;
}

/* Split content */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-media {
  border-radius: var(--radius-large);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 320px;
  min-height: 0;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 0;
}

/* Compact image next to short text blocks (About page, etc.) */
.split-media.compact {
  aspect-ratio: 16 / 10;
  max-height: 240px;
  height: auto;
  align-self: center;
}

.split-media.compact img {
  min-height: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-item .benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-green-light);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item .benefit-icon i,
.benefit-item .benefit-icon svg {
  width: 20px;
  height: 20px;
}

.benefit-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.benefit-item p {
  font-size: 0.9rem;
}

/* Form panel layout */
.form-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

.form-panel-aside {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.form-panel-aside.green {
  background: var(--color-green-dark);
}

.form-panel-aside h2 {
  color: var(--color-white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.form-panel-aside p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.75rem;
}

.form-panel-aside .contact-bits {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-panel-aside .contact-bits a,
.form-panel-aside .contact-bits span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-white);
  font-weight: 500;
}

.form-panel-aside .contact-bits i,
.form-panel-aside .contact-bits svg {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
}

.form-panel-aside.green .contact-bits i,
.form-panel-aside.green .contact-bits svg {
  color: rgba(255, 255, 255, 0.9);
}

.form-panel-body {
  background: var(--color-white);
  padding: 2.75rem 2.25rem;
}

.aside-image {
  margin-top: 1.75rem;
  flex: 1 1 auto;
  min-height: 220px;
  border-radius: var(--radius-medium);
  overflow: hidden;
  width: 100%;
  background: rgba(0, 0, 0, 0.12);
}

.aside-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Catalog table */
.catalog-preview {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
  background: var(--color-white);
}

.catalog-sheet-fallback {
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--color-muted);
}

.catalog-sheet-fallback p {
  margin: 0 0 1rem;
}

.catalog-table a {
  color: var(--color-green);
  font-weight: 600;
}

.catalog-table a:hover {
  color: var(--color-orange);
}

.catalog-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.875rem;
}

.catalog-table thead {
  background: var(--color-green-dark);
  color: var(--color-white);
}

.catalog-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
  font-family: var(--font-heading);
}

.catalog-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.catalog-table tbody tr:nth-child(even) {
  background: var(--color-background);
}

.catalog-table tbody tr:hover {
  background: var(--color-green-light);
}

/* Why choose strip */
.why-strip {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}

.why-strip-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.why-strip-item {
  text-align: center;
}

.why-strip-item i,
.why-strip-item svg {
  width: 28px;
  height: 28px;
  color: var(--color-green);
  margin-bottom: 0.65rem;
}

.why-strip-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.why-strip-item p {
  font-size: 0.8rem;
}

/* Footer */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.95fr 1.15fr 0.95fr 1.25fr;
  gap: 1.75rem;
  padding-bottom: 3rem;
}

.footer-grid > * {
  min-width: 0;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 1rem 0 1.25rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.footer-social a i,
.footer-social a svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1.15rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--color-orange);
}

.footer-contact-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

.footer-contact-item i,
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  color: var(--color-orange);
  flex-shrink: 0;
}

.footer-map {
  margin-top: 1rem;
  border-radius: var(--radius-small);
  overflow: hidden;
  height: 140px;
  background: var(--color-navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  flex: 1 1 220px;
}

.footer-copy p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-credit a {
  color: var(--color-white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: var(--color-orange);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  flex: 1 1 180px;
  min-width: 0;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content .legal-updated {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1.75rem;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: var(--color-navy);
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--color-text);
  line-height: 1.7;
  font-size: 0.98rem;
}

.legal-content p {
  margin-bottom: 0.9rem;
}

.legal-content ul {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
}

.legal-content li {
  margin-bottom: 0.45rem;
}

.legal-content a {
  color: var(--color-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--color-orange);
}

.footer-contact-item a,
.footer-contact-item span {
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}

/* Page hero simple */
.page-hero {
  background-color: var(--color-navy);
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 clamp(2.5rem, 4vw, 3.25rem);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.page-hero.has-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-hero.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(6, 26, 51, 0.94) 0%,
    rgba(6, 26, 51, 0.88) 45%,
    rgba(6, 26, 51, 0.72) 100%
  );
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--color-white);
  font-size: var(--fs-page-hero);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
}

.page-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.65);
}

.page-hero .breadcrumb span {
  color: var(--color-orange);
}

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.contact-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
}

.contact-card .cc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-green-light);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-card .cc-icon i,
.contact-card .cc-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.contact-card a {
  color: var(--color-green);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--color-green-dark);
}

.map-placeholder {
  height: 360px;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  overflow: hidden;
  padding: 0;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-placeholder .map-fallback {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color-muted);
}

/* Careers */
.careers-hero {
  background-color: var(--color-navy);
  background-image: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.careers-hero.has-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.careers-hero.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 26, 51, 0.88) 0%,
    rgba(6, 26, 51, 0.82) 55%,
    rgba(6, 26, 51, 0.9) 100%
  );
  pointer-events: none;
}

.careers-hero .container {
  position: relative;
  z-index: 1;
}

.careers-hero h1 {
  color: var(--color-white);
  font-size: var(--fs-hero);
  margin-bottom: 1rem;
  overflow-wrap: break-word;
}

.careers-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 1.75rem;
}

.careers-hero .btn {
  max-width: 100%;
  white-space: normal;
}

.quote-form-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
}

.form-section-title {
  font-size: 1.15rem;
  color: var(--color-navy);
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-green-light);
}

.form-section-title:first-child {
  margin-top: 0;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  cursor: pointer;
}

/* Catalog */
.section-catalog {
  background: var(--color-background);
}

.catalog-trust {
  background: var(--color-navy);
  color: #fff;
  padding: 1rem 0;
}

.catalog-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.catalog-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.catalog-trust-item i,
.catalog-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
  flex-shrink: 0;
}

.catalog-howto {
  background: var(--color-white);
  border: 1px solid #e8ecef;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.75rem;
}

.catalog-howto-title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--color-navy);
}

.catalog-howto-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.catalog-howto-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.catalog-howto-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.catalog-howto-step h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  color: var(--color-navy);
}

.catalog-howto-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

.catalog-sidebar {
  background: var(--color-white);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
  padding: 1.25rem 1rem;
  position: sticky;
  top: calc(var(--topbar-height) + 84px + 12px);
}

.catalog-sidebar h2 {
  font-size: 1.05rem;
  margin: 0 0 1rem;
  color: var(--color-navy);
}

.catalog-cat-group {
  margin: 1rem 0 0.35rem;
  padding: 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.catalog-cat-link {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-small);
  font-size: 0.875rem;
  color: var(--color-text);
}

.catalog-cat-link:hover,
.catalog-cat-link.active {
  background: var(--color-green-light);
  color: var(--color-green);
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1rem;
  margin-bottom: 1.25rem;
}

.catalog-count {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.catalog-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.catalog-search {
  position: relative;
  display: block;
  min-width: min(100%, 240px);
}

.catalog-search i,
.catalog-search svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--color-muted);
  pointer-events: none;
}

.catalog-search input {
  width: 100%;
  min-width: 220px;
  border: 1px solid #d9e0e6;
  border-radius: var(--radius-small);
  background: var(--color-white);
  padding: 0.65rem 0.85rem 0.65rem 2.25rem;
  font: inherit;
  font-size: 0.9rem;
  color: var(--color-text);
}

.catalog-search input:focus {
  outline: 2px solid var(--color-green);
  outline-offset: 1px;
}

.catalog-sort select {
  border: 1px solid #d9e0e6;
  border-radius: var(--radius-small);
  background: var(--color-white);
  padding: 0.65rem 2rem 0.65rem 0.85rem;
  font: inherit;
  font-size: 0.9rem;
  color: var(--color-text);
  cursor: pointer;
}

.catalog-sort select:focus {
  outline: 2px solid var(--color-green);
  outline-offset: 1px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #eceff1;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.product-card-media {
  position: relative;
  aspect-ratio: 1;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.product-card-moq {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 1;
  background: var(--color-navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.28rem 0.5rem;
  border-radius: var(--radius-small);
  line-height: 1.2;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #ffffff;
  mix-blend-mode: normal;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1rem 1.15rem;
  flex: 1;
  background: #ffffff;
}

.product-card-cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-green);
}

.product-card-title {
  font-size: 0.95rem;
  font-weight: var(--fw-heading);
  color: var(--color-navy);
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-top: auto;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-green);
}

.product-card-link i,
.product-card-link svg {
  width: 15px;
  height: 15px;
}

.catalog-empty {
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-medium);
  text-align: center;
  color: var(--color-muted);
}

.catalog-cta-bar {
  background: linear-gradient(135deg, #0f2744 0%, #16375f 55%, #1a4a3a 100%);
  color: #fff;
  padding: 2rem 0;
}

.catalog-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.catalog-cta-copy h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: #fff;
}

.catalog-cta-copy p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

.catalog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.catalog-cta-actions .btn-outline-green {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.catalog-cta-actions .btn-outline-green:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.section-product-detail {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
  background: var(--color-white);
}

.product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.product-breadcrumb a {
  color: var(--color-muted);
}

.product-breadcrumb a:hover {
  color: var(--color-orange);
}

.crumb-sep {
  opacity: 0.55;
}

.crumb-current {
  color: var(--color-text);
}

.product-nav-btns {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.product-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  background: var(--color-white);
}

.product-nav-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.product-nav-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.product-nav-btn i,
.product-nav-btn svg {
  width: 18px;
  height: 18px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem 3rem;
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.product-gallery:not(:has(.product-thumbs)) {
  grid-template-columns: 1fr;
}

.product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.product-thumb {
  width: 84px;
  height: 84px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background: #f7f8f8;
  cursor: pointer;
}

.product-thumb.is-active,
.product-thumb:hover {
  border-color: var(--color-orange);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-main-image {
  position: relative;
  background: #f7f8f8;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-discount-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.product-title {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  line-height: 1.25;
  margin: 0 0 0.85rem;
  color: var(--color-navy);
}

.product-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.product-sale-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: #e11d48;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-price-old {
  color: #9aa3a8;
  font-size: 1.05rem;
  text-decoration: line-through;
}

.product-price-current {
  color: var(--color-orange);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 2rem;
  margin: 0 0 1.15rem;
  padding: 1.35rem 1.25rem;
  background: #f5f7f6;
  border: 1px solid #edf0ef;
  border-radius: var(--radius-medium);
}

.product-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.product-info-item span {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-info-item strong {
  color: var(--color-navy);
  font-size: 1rem;
  line-height: 1.35;
}

.product-bulk-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
  padding: 0.75rem 0.9rem;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  border-radius: var(--radius-small);
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-text);
}

.product-bulk-note i,
.product-bulk-note svg {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.product-bulk-note strong {
  color: var(--color-navy);
}

.product-eligibility-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  padding: 0.95rem;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: var(--radius-small);
  color: var(--color-text);
  font-size: 0.88rem;
  line-height: 1.55;
}

.product-eligibility-note i,
.product-eligibility-note svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 0.1rem;
  color: #2563eb;
}

.product-eligibility-note strong {
  color: var(--color-navy);
}

.product-short-desc {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1.35rem;
  font-size: 0.95rem;
}

.product-short-desc p,
.product-tab-panel p {
  margin: 0 0 0.85rem;
}

.product-short-desc ul,
.product-tab-panel ul {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
}

.product-short-desc li,
.product-tab-panel li {
  margin-bottom: 0.35rem;
}

.product-cart-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.product-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  height: 48px;
}

.product-qty button {
  width: 42px;
  height: 100%;
  border: 0;
  background: #f3f5f4;
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--color-navy);
}

.product-qty input {
  width: 56px;
  height: 100%;
  border: 0;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  -moz-appearance: textfield;
}

.product-qty input::-webkit-outer-spin-button,
.product-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-order-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn-order-whatsapp,
.btn-order-email {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-order-whatsapp {
  background: var(--color-green);
}

.btn-order-whatsapp:hover {
  background: var(--color-green-dark);
  color: #fff;
}

.btn-order-email {
  background: #2563eb;
}

.btn-order-email:hover {
  background: #1d4ed8;
  color: #fff;
}

.product-order-note {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.product-order-note strong {
  color: var(--color-text);
  font-weight: 700;
}

.product-assurances {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--color-border);
}

.product-assurances span {
  min-width: 0;
  padding: 0 0.55rem;
  color: var(--color-text);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.product-assurances span + span {
  border-left: 1px solid var(--color-border);
}

.product-assurances i,
.product-assurances svg {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto 0.35rem;
  color: var(--color-green);
}

.product-meta {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.product-meta a {
  color: var(--color-text);
}

.product-meta a:hover {
  color: var(--color-orange);
}

.product-meta-label {
  font-weight: 600;
  color: var(--color-navy);
  margin-right: 0.35rem;
}

.product-tabs {
  margin-top: 3rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
}

.product-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.product-tabs-nav button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.75rem 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
}

.product-tabs-nav button.is-active {
  color: var(--color-navy);
  border-bottom-color: var(--color-navy);
}

.product-tab-panel {
  display: none;
  max-width: 920px;
  margin: 0 auto;
  line-height: 1.7;
  color: var(--color-text);
}

.product-tab-panel.is-active {
  display: block;
}

.product-community-cta {
  margin-top: 1.25rem;
  min-height: 220px;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-medium);
  background:
    linear-gradient(110deg, rgba(15, 39, 68, 0.92) 0%, rgba(22, 55, 95, 0.88) 55%, rgba(26, 74, 58, 0.9) 100%),
    url("../images/general/cta-boxes.webp") center / cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.product-community-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.product-community-cta > :not(.product-community-video) {
  position: relative;
  z-index: 2;
}

.product-community-copy h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.95);
}

.product-community-copy p {
  margin: 0;
  max-width: 34rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.95);
}

.product-community-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.btn-community-whatsapp,
.btn-community-telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 140px;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-community-whatsapp i,
.btn-community-whatsapp svg,
.btn-community-telegram i,
.btn-community-telegram svg {
  width: 16px;
  height: 16px;
}

.btn-community-whatsapp {
  background: #25d366;
  border-color: #fff;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.18), 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-community-whatsapp:hover {
  background: #149e45;
  color: #fff;
  transform: scale(1.12) translateY(-1px);
}

.btn-community-telegram {
  background: rgba(0, 0, 0, 0.3);
  border-color: #2aabee;
  color: #fff;
}

.btn-community-telegram:hover {
  background: #1486bd;
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}

/* ----- Distribution redesign ----- */
.dist-hero {
  background: linear-gradient(90deg, #f7faf8 0%, #fff 42%, #fff 100%);
  padding: clamp(2.25rem, 4vw, 3rem) 0 clamp(2rem, 3vw, 2.75rem);
  overflow: hidden;
}

.dist-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.dist-hero-copy {
  min-width: 0;
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dist-kicker,
.dist-audience-label {
  color: var(--color-green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dist-hero h1 {
  color: var(--color-navy);
  font-size: clamp(2.15rem, 3.5vw, 3.35rem);
  line-height: 1.08;
  margin: 0.8rem 0 1rem;
}

.dist-hero h1 .dist-title-main,
.dist-hero h1 .dist-title-accent {
  display: block;
  white-space: nowrap;
}

.dist-hero h1 .dist-title-main {
  color: var(--color-navy);
}

.dist-hero h1 .dist-title-accent {
  color: var(--color-green);
}

.dist-heading-line {
  display: block;
  width: 54px;
  height: 3px;
  background: var(--color-green);
  margin-bottom: 1.5rem;
}

.dist-lead {
  color: var(--color-text);
  line-height: 1.65;
  max-width: 31rem;
  margin-bottom: 1.5rem;
}

.dist-hero-media {
  min-width: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-large);
  overflow: hidden;
}

.dist-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dist-trust-strip {
  background: var(--color-white);
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--color-border);
}

.dist-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.dist-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.4rem 1.75rem;
  position: relative;
}

.dist-trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5%;
  height: 90%;
  width: 1px;
  background: var(--color-border);
}

.dist-trust-icon {
  color: var(--color-green);
  flex-shrink: 0;
}

.dist-trust-icon svg {
  width: 36px;
  height: 36px;
}

.dist-trust-item h3 {
  color: var(--color-navy);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.dist-trust-item p {
  color: var(--color-muted);
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 0;
  max-width: 15rem;
}

.dist-audience {
  background: var(--color-white);
}

.dist-audience-resellers {
  background: #f7f9f8;
}

.dist-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(2rem, 4vw, 4.5rem);
  padding: clamp(3rem, 5vw, 4.5rem) 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.dist-audience-media {
  overflow: hidden;
  min-width: 0;
  height: 440px;
  border-radius: 14px;
}

.dist-audience-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.dist-audience-copy {
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.dist-audience-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.dist-audience-label span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-green);
}

.dist-audience-label svg {
  width: 20px;
  height: 20px;
}

.dist-audience-copy h2 {
  color: var(--color-navy);
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.14;
  margin-bottom: 1rem;
}

.dist-audience-copy > p {
  color: var(--color-text);
  line-height: 1.65;
  max-width: 38rem;
  margin-bottom: 1.1rem;
}

.dist-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.dist-check-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
}

.dist-check-list svg {
  width: 17px;
  height: 17px;
  color: var(--color-green);
  fill: rgba(34, 139, 74, 0.1);
  flex-shrink: 0;
}

.dist-stats {
  background: var(--color-white);
  padding: 2.1rem 0;
}

.dist-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--color-border);
  background: #fbfcfb;
}

.dist-stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dist-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 17%;
  height: 66%;
  width: 1px;
  background: var(--color-border);
}

.dist-stat-item > svg {
  width: 29px;
  height: 29px;
  color: var(--color-green);
  margin-bottom: 0.6rem;
}

.dist-stat-item strong {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

.dist-stat-item > span {
  color: var(--color-text);
  font-size: 0.78rem;
  line-height: 1.4;
  max-width: 9rem;
}

.dist-network {
  color: var(--color-white);
  background:
    linear-gradient(rgba(3, 50, 38, 0.94), rgba(3, 50, 38, 0.94)),
    url("../images/home/hero-warehouse.webp") center / cover;
  padding: 2.8rem 0;
}

.dist-network-grid {
  display: grid;
  grid-template-columns: 1.75fr repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.dist-network-intro h2 {
  color: var(--color-white);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin-bottom: 0.6rem;
}

.dist-network-intro p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  max-width: 31rem;
}

.dist-network-feature {
  text-align: center;
}

.dist-network-feature svg {
  width: 34px;
  height: 34px;
  color: #7fd4a6;
  margin-bottom: 0.65rem;
}

.dist-network-feature h3 {
  color: var(--color-white);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.dist-network-feature p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 9rem;
}

/* ----- Exclusive Group page ----- */
.eg-hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
}

.eg-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  min-height: clamp(420px, 52vh, 560px);
}

.eg-hero-copy {
  max-width: 34rem;
  padding-bottom: 0.5rem;
}

.eg-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6fce7f;
  margin-bottom: 0.9rem;
}

.eg-hero h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 4.2vw, 3.25rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.eg-hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.65rem;
}

.eg-hero-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: clamp(280px, 42vh, 480px);
  height: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.eg-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.eg-hero-bar {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.eg-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.eg-hero-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.15rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  position: relative;
}

.eg-hero-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 28%;
  height: 44%;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.eg-hero-feature i,
.eg-hero-feature svg {
  width: 20px;
  height: 20px;
  color: #6fce7f;
  flex-shrink: 0;
}

.eg-section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.eg-section-head .eyebrow {
  display: block;
  margin-bottom: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.eg-section-head .section-title {
  margin-bottom: 0;
}

.eg-benefits-section {
  background: var(--color-white);
}

.eg-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.eg-benefit-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 2rem 1.6rem 1.75rem;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(7, 32, 45, 0.05);
}

.eg-benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 139, 74, 0.1);
  color: var(--color-green);
  margin-bottom: 1.2rem;
}

.eg-benefit-icon i,
.eg-benefit-icon svg {
  width: 26px;
  height: 26px;
}

.eg-benefit-card h3 {
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: 0.7rem;
}

.eg-benefit-card > p {
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 28ch;
}

.eg-check-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 1.2rem 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  text-align: left;
  border-top: 1px solid var(--color-border);
}

.eg-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
}

.eg-check-list i,
.eg-check-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-green);
  margin-top: 0.1rem;
}

.eg-steps-section {
  background: var(--color-background);
}

.eg-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.eg-steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 10%;
  right: 10%;
  border-top: 2px dashed rgba(34, 139, 74, 0.35);
  z-index: 0;
}

.eg-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eg-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 6px var(--color-background);
}

.eg-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 139, 74, 0.1);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.eg-step-icon i,
.eg-step-icon svg {
  width: 28px;
  height: 28px;
}

.eg-step h4 {
  font-size: 0.98rem;
  color: var(--color-navy);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.eg-step p {
  font-size: 0.86rem;
  color: var(--color-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 18ch;
}

.eg-cta-section {
  padding-top: calc(var(--section-pad) * 0.65);
  padding-bottom: calc(var(--section-pad) * 0.65);
  background: var(--color-white);
}

.eg-cta {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 16px;
  padding: 2.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.eg-cta-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
  flex: 1;
}

.eg-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 139, 74, 0.18);
  color: #6fce7f;
}

.eg-cta-icon i,
.eg-cta-icon svg {
  width: 28px;
  height: 28px;
}

.eg-cta-copy h2 {
  color: var(--color-white);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.25;
  margin-bottom: 0.45rem;
}

.eg-cta-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  max-width: 40rem;
}

.eg-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.eg-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  text-decoration: none;
}

.eg-cta-link i,
.eg-cta-link svg {
  width: 16px;
  height: 16px;
}

.eg-cta-link:hover {
  color: var(--color-orange);
}

.eg-trust-bar {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
}

.eg-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
}

.eg-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
  position: relative;
}

.eg-trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--color-border);
}

.eg-trust-item i,
.eg-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-green);
  flex-shrink: 0;
}

.related-products {
  margin-top: 3.5rem;
}

.related-products h2 {
  text-align: center;
  margin-bottom: 1.75rem;
  color: var(--color-navy);
}

.related-grid {
  grid-template-columns: repeat(4, 1fr);
}
