/* ----------------------------------------------------
   SITESUPPLY: PREMIUM INDUSTRIAL CSS DESIGN SYSTEM
   Inspired by Stripe, Linear, and Tesla
---------------------------------------------------- */

/* --- Custom Variables & Tokens --- */
:root {
  --color-slate-950: #0b0f19;
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-slate-700: #334155;
  --color-slate-600: #475569;
  --color-slate-400: #94a3b8;
  --color-slate-300: #cbd5e1;
  --color-slate-200: #e2e8f0;
  --color-slate-100: #f1f5f9;
  --color-slate-50: #f8fafc;
  
  --color-amber-600: #d97706;
  --color-amber-500: #f59e0b;
  --color-amber-400: #fbbf24;
  --color-amber-50: #fef3c7;
  
  --color-emerald-600: #059669;
  --color-emerald-500: #10b981;
  --color-emerald-50: #ecfdf5;

  --color-whatsapp: #0f965c;
  --color-whatsapp-hover: #0c7f4e;

  /* SiteSupply Rich Brand Identity */
  --color-brand-navy: #090e1a;
  --color-brand-orange: #ff6f00;
  --color-brand-orange-hover: #e65c00;

  /* Typography System */
  --font-display: 'Plus Jakarta Sans', 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Shadow Profiles */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
  --shadow-premium: 0 20px 25px -5px rgba(15, 23, 42, 0.25), 0 8px 10px -6px rgba(15, 23, 42, 0.25);

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base Reset & Performance Setup --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-slate-50);
  color: var(--color-slate-900);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Typography elements */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.text-orange-gradient {
  background: linear-gradient(90deg, var(--color-brand-orange) 0%, #ff8800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

p {
  color: var(--color-slate-700);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  content-visibility: auto; /* Performance optimization */
}

/* Layout Core Elements */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: 1200px;
}

/* Significantly reduced whitespace variables to improve scroll momentum */
.section-padding {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

/* --- Location Trust Bar --- */
.location-trust-bar {
  background-color: var(--color-slate-950);
  color: var(--color-slate-400);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.location-trust-bar span {
  display: inline-block;
  margin: 0 0.75rem;
  color: var(--color-amber-500);
}

/* --- Premium Header --- */
.site-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-slate-200);
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo img {
  height: 2rem;
  width: auto;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-slate-900);
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.header-cta-btn:hover {
  background-color: var(--color-brand-orange);
  transform: translateY(-1px);
}

.header-cta-btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

/* --- Hero Section with Construction Background & Dark Overlay --- */
.hero-section {
  position: relative;
  background-color: #f8fafc; /* clean off-white background */
  background-image: radial-gradient(var(--color-slate-200) 1px, transparent 1px);
  background-size: 24px 24px;
  color: var(--color-slate-950);
  padding-top: 4.5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--color-slate-200);
}



.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  background-color: rgba(255, 111, 0, 0.1);
  border: 1px solid var(--color-brand-orange);
  color: var(--color-brand-orange);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: 1.75rem;
  font-weight: 850;
  color: var(--color-slate-950);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-shadow: none;
}

.hero-headline .text-orange-gradient {
  white-space: nowrap;
}

.hero-subheadline {
  font-size: 0.925rem;
  color: var(--color-slate-600);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.hero-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-slate-800);
}

.hero-bullet-list li svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--color-emerald-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Crisp White Callback Form Card for Light Background */
.hero-card {
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 20px 40px rgba(9, 14, 26, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-slate-950);
  text-align: center;
}

.hero-card-subtitle {
  font-size: 0.8rem;
  color: var(--color-slate-500);
  text-align: center;
  margin-top: -1rem;
}

/* Light Theme overrides for Form Inputs inside hero-card */
.hero-card .form-label {
  color: var(--color-slate-600);
}

.hero-card .form-divider {
  color: var(--color-slate-400);
}

.hero-card .form-divider::before,
.hero-card .form-divider::after {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.hero-card .form-input,
.hero-card .form-select {
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  color: var(--color-slate-900);
}

.hero-card .form-input::placeholder {
  color: var(--color-slate-400);
}

.hero-card .form-input:focus,
.hero-card .form-select:focus {
  border-color: var(--color-brand-orange);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.15);
}

.btn-whatsapp-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--color-whatsapp);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(15, 150, 92, 0.3);
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
  width: 100%;
}

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

.btn-whatsapp-primary:active {
  transform: scale(0.98);
}

.btn-whatsapp-primary svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.form-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--color-slate-400);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-divider:not(:empty)::before {
  margin-right: .5em;
}

.form-divider:not(:empty)::after {
  margin-left: .5em;
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-slate-300);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form-input, .form-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.675rem 0.875rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: white;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-select option {
  background-color: var(--color-slate-900);
  color: white;
}

.btn-form-submit {
  background-color: white;
  color: var(--color-slate-950);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 100%;
}

.btn-form-submit:hover {
  background-color: var(--color-slate-100);
}

.btn-form-submit:active {
  transform: scale(0.98);
}

/* --- High-Energy Trust Strip Section (B2B Badges Overhaul) --- */
.trust-strip {
  background-color: var(--color-slate-950);
  border-bottom: 2px solid var(--color-brand-orange);
  padding: 2.25rem 0;
  position: relative;
  z-index: 10;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 576px) {
  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .trust-strip-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .trust-strip-inner {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

.trust-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.trust-item:hover {
  border-color: rgba(255, 111, 0, 0.4);
  background: rgba(255, 111, 0, 0.04);
  transform: translateY(-2px);
}

.trust-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(255, 111, 0, 0.12);
  border: 1px solid rgba(255, 111, 0, 0.25);
  border-radius: 50%;
  color: var(--color-brand-orange);
  flex-shrink: 0;
}

.trust-icon-container svg {
  width: 1.75rem;
  height: 1.75rem;
}

.trust-text-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.trust-desc {
  font-size: 0.725rem;
  color: var(--color-slate-400);
  font-weight: 500;
}

/* --- Section Heading Styles (Compact & Energetic) --- */
.section-title {
  text-align: center;
  font-size: 1.65rem;
  font-weight: 850;
  color: var(--color-slate-950);
  margin-bottom: 0.35rem;
}

.section-subtitle {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-slate-600);
  max-width: 580px;
  margin: 0 auto 1.75rem auto;
}

/* --- Asymmetric Mosaic Delivery Gallery --- */
.gallery-section {
  background-color: var(--color-slate-50);
  border-bottom: 1px solid var(--color-slate-200);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.gallery-featured-card {
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.gallery-featured-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-slate-400);
  box-shadow: var(--shadow-lg);
}

.gallery-featured-img {
  aspect-ratio: 16/10;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: var(--color-slate-50);
}

.gallery-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-featured-card:hover .gallery-featured-img img {
  transform: scale(1.03);
}

.gallery-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 576px) {
  .gallery-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-card {
  background-color: white;
  border: 1px solid var(--color-slate-200);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.gallery-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-slate-400);
  box-shadow: var(--shadow-lg);
}

.gallery-img-container {
  aspect-ratio: 4/3;
  width: 100%;
  background-color: var(--color-slate-50);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--color-slate-200);
}

.gallery-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-img-container img {
  transform: scale(1.04);
}

.gallery-loc-tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-loc-tag svg {
  width: 0.65rem;
  height: 0.65rem;
  color: var(--color-amber-500);
}

.gallery-verification-badge {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  background-color: var(--color-emerald-50);
  border: 1px solid var(--color-emerald-500);
  color: var(--color-emerald-600);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-transform: uppercase;
}

.gallery-card-content {
  padding: 1rem;
  background-color: white;
}

.gallery-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-slate-950);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.gallery-card-desc {
  font-size: 0.8rem;
  color: var(--color-slate-600);
  line-height: 1.4;
}

/* --- Brand Partner Logos (Split-Pane Redesign) --- */
.logos-section {
  background-color: var(--color-brand-navy);
  color: white;
  border-bottom: 3px solid var(--color-brand-orange);
  position: relative;
}

.logos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}

.logos-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}

.logos-text-block {
  text-align: center;
}

.logos-text-block h2 {
  font-size: 1.85rem;
  font-weight: 850;
  line-height: 1.25;
  color: white;
  margin-bottom: 0.75rem;
}

.logos-text-block p {
  font-size: 0.95rem;
  color: var(--color-slate-400);
  line-height: 1.6;
}

.logos-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.logo-card {
  background: white;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.35rem 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
  height: 6.2rem; /* Mobile: compact height to eliminate empty vertical whitespace */
}

.logo-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--color-brand-orange);
  box-shadow: 0 12px 35px rgba(255, 111, 0, 0.25);
}

.logo-card img {
  height: 4.5rem; /* Mobile: large visual presence */
  width: 98%;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-card {
    height: 7.8rem; /* Desktop: optimized to contain larger logo and reduce empty space */
    padding: 0.45rem 0.5rem;
    gap: 0.2rem;
  }
  .logo-card img {
    height: 6.2rem; /* Desktop: 90.7% increase from original 3.25rem, 45.8% from 4.25rem */
  }
}

.logo-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Google Reviews Section (Split Layout) --- */
.reviews-section {
  background-color: white;
  border-bottom: 1px solid var(--color-slate-200);
}

.reviews-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}

.reviews-badge-card {
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.reviews-badge-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--color-amber-500);
}

.reviews-badge-stars svg {
  width: 1.35rem;
  height: 1.35rem;
}

.reviews-badge-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-slate-900);
}

.reviews-badge-sub {
  font-size: 0.75rem;
  color: var(--color-slate-500);
  line-height: 1.4;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card {
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: 12px;
  padding: 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--color-brand-orange);
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.review-author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-slate-950);
}

.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-emerald-500);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.review-verified-badge svg {
  width: 0.8rem;
  height: 0.8rem;
  color: var(--color-emerald-500);
  stroke-width: 3.5;
}

.review-author-loc {
  font-size: 0.725rem;
  color: var(--color-slate-400);
}

.review-stars {
  display: flex;
  gap: 0.1rem;
  color: var(--color-amber-500);
}

.review-stars svg {
  width: 0.875rem;
  height: 0.875rem;
}

.review-text {
  font-size: 0.825rem;
  color: var(--color-slate-700);
  line-height: 1.45;
  font-style: italic;
}

.review-sourcing-strip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-slate-100);
  border: 1px solid var(--color-slate-200);
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
}

.review-sourcing-strip span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-slate-600);
}

.review-sourcing-strip .bullet {
  color: var(--color-brand-orange);
  font-weight: 800;
}

.review-date {
  font-size: 0.675rem;
  color: var(--color-slate-400);
  margin-top: 0.125rem;
  align-self: flex-end;
}

/* --- Tabbed Product Showcase --- */
.showcase-section {
  background-color: white;
  border-bottom: 1px solid var(--color-slate-200);
}

.tab-switcher-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.tab-switcher {
  display: flex;
  background-color: var(--color-slate-100);
  padding: 0.3rem;
  border-radius: 9999px;
  border: 1px solid var(--color-slate-200);
}

.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-slate-700);
  padding: 0.45rem 1.15rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn.active {
  background-color: var(--color-brand-orange);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.25);
}

/* Cement Brand Sub-Tabs & Unified Showcase Grid Styling */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
}

@media (min-width: 576px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Catalog Main Title & Subtitle Styling */
.catalog-main-title {
  font-size: 1.65rem;
  font-weight: 850;
  color: var(--color-brand-navy);
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
}

.catalog-main-subtitle {
  font-size: 0.85rem;
  color: var(--color-slate-500);
  margin-bottom: 1.75rem;
}

/* Grid Brand Header inside the Products Grid */
.grid-brand-header {
  grid-column: 1 / -1; /* Spans all columns */
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--color-slate-100);
  padding-bottom: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.products-grid > .grid-brand-header:first-of-type {
  margin-top: 0;
}

.grid-brand-title {
  font-size: 1.25rem;
  font-weight: 850;
  color: var(--color-brand-navy);
  letter-spacing: -0.01em;
}

.grid-brand-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card {
  background-color: white;
  border: 1px solid var(--color-slate-200);
  border-radius: 12px;
  padding: 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  height: 100%;
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--color-slate-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.product-card-header-bar {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  height: auto;
  margin-bottom: 0;
}

.card-badge {
  background-color: rgba(255, 111, 0, 0.1);
  border: 1px solid var(--color-brand-orange);
  color: var(--color-brand-orange);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product-image-container {
  width: 100%;
  height: 12rem;
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .product-image-container {
    height: 14rem;
  }
}

.product-image-container img {
  max-height: 85%;
  max-width: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-image-container img {
  transform: scale(1.05);
}

.product-info-wrap {
  margin-bottom: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.product-card-title {
  font-size: 1.05rem;
  font-weight: 850;
  color: var(--color-slate-950);
  line-height: 1.25;
  margin-bottom: 0.1rem;
}

.product-card-type {
  font-size: 0.675rem;
  color: var(--color-brand-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  margin-top: auto; /* Push CTAs and features to the bottom */
}

/* Extremely compact list of features to reduce dominance */
.product-card-features {
  list-style: none;
  border-top: 1px dashed var(--color-slate-200);
  padding-top: 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.product-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  font-size: 0.675rem;
  color: var(--color-slate-500);
  line-height: 1.3;
}

.product-card-features li svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--color-slate-400);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* Promotional Modal Backdrop & Styles */
.promo-modal {
  border: none;
  border-radius: 20px;
  padding: 0;
  max-width: 620px;
  width: 90%;
  background-color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  outline: none;
}

.promo-modal::backdrop {
  background-color: rgba(9, 14, 26, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.promo-modal-content {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.promo-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-slate-400);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
  z-index: 10;
}

.promo-modal-close:hover {
  color: var(--color-slate-950);
}

.promo-modal-header {
  text-align: center;
}

.promo-modal-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--color-brand-navy);
  line-height: 1.25;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.promo-modal-title .text-orange {
  color: var(--color-brand-orange);
}

.promo-modal-subtitle {
  font-size: 0.825rem;
  color: var(--color-slate-500);
  font-weight: 600;
}

.promo-modal-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 576px) {
  .promo-modal-body {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.5rem;
  }
}

.promo-modal-graphic {
  background-color: var(--color-slate-50);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-slate-100);
}

.delivery-truck-svg {
  width: 100%;
  height: auto;
  max-height: 100px;
}

.promo-modal-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.promo-modal-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: var(--color-slate-700);
  line-height: 1.35;
}

.promo-modal-benefits li strong {
  color: var(--color-slate-900);
}

.promo-modal-benefits li .check-icon {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--color-brand-orange);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.promo-modal-footer {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn-promo-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
  width: 100%;
  border: none;
}

.btn-promo-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-promo-whatsapp svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.btn-card-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn-card-whatsapp:hover {
  background: linear-gradient(135deg, #20ba59 0%, #0e7569 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-card-whatsapp svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.btn-card-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  color: var(--color-slate-700);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.btn-card-call:hover {
  background-color: var(--color-slate-100);
  border-color: var(--color-slate-400);
  color: var(--color-slate-900);
}

/* --- Compact Horizontal Process Section (Dark Slate Background) --- */
.process-section {
  background-color: var(--color-brand-navy);
  color: white;
  border-bottom: 3px solid var(--color-brand-orange);
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.process-section .section-title {
  color: white;
}

.process-section .section-subtitle {
  color: var(--color-slate-400);
  margin-bottom: 1.75rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.process-step {
  display: flex;
  align-items: center;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  gap: 1.15rem;
  position: relative;
  transition: var(--transition-smooth);
}

.process-step:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--color-brand-orange);
  transform: translateY(-2px);
}

.process-num {
  font-size: 1.25rem;
  font-weight: 850;
  color: var(--color-brand-orange);
  width: 2.75rem;
  height: 2.75rem;
  background-color: rgba(255, 111, 0, 0.08);
  border: 1.5px solid rgba(255, 111, 0, 0.3);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 111, 0, 0.1);
}

.process-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.process-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.process-desc {
  font-size: 0.775rem;
  color: var(--color-slate-400);
}

/* --- FAQ Accordion Section (Clean White) --- */
.faq-section {
  background-color: white;
  border-bottom: 1px solid var(--color-slate-200);
}

.faq-wrapper {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item {
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-slate-950);
  cursor: pointer;
}

.faq-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--color-slate-400);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active {
  border-color: var(--color-brand-orange);
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.05);
}

.faq-item.active .faq-header {
  color: var(--color-brand-orange);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-brand-orange);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
  padding: 0 1.25rem 1rem 1.25rem;
  font-size: 0.825rem;
  color: var(--color-slate-700);
  line-height: 1.55;
}

/* --- Final Call To Action (Bottom) --- */
.final-cta-section {
  background: linear-gradient(135deg, var(--color-brand-navy) 0%, #050811 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 111, 0, 0.015) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 1.85rem;
  color: white;
  margin-bottom: 0.75rem;
}

.final-cta-desc {
  font-size: 0.9rem;
  color: var(--color-slate-400);
  margin-bottom: 2rem;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.btn-final-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--color-whatsapp);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.btn-final-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
}

.btn-final-whatsapp svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.btn-final-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.btn-final-call:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: white;
}

/* --- Footer Elements --- */
.site-footer {
  background-color: var(--color-slate-950);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 0 6.5rem 0; /* Add bottom padding to prevent sticky bar overlap */
  color: var(--color-slate-400);
  font-size: 0.75rem;
  text-align: center;
}

.site-footer p {
  color: var(--color-slate-400);
}

/* --- Sticky Bottom Mobile Navigation --- */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-slate-200);
  display: flex;
  padding: 0.675rem 1rem;
  gap: 0.675rem;
  z-index: 90;
  box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.04);
}

.sticky-btn-whatsapp {
  flex: 7.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-whatsapp);
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem;
  border-radius: 8px;
  transition: var(--transition-fast);
  box-shadow: 0 2px 6px rgba(15, 150, 92, 0.15);
}

.sticky-btn-call {
  flex: 2.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-slate-900);
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.sticky-btn-whatsapp svg, .sticky-btn-call svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

/* Hide on desktop, show on mobile */
@media (min-width: 768px) {
  .sticky-mobile-bar {
    display: none;
  }
  .site-footer {
    padding-bottom: 2.5rem;
  }
}

/* --- CSS Micro-Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 15px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }

/* --- Responsive Media Queries (Desktop Layouts) --- */
@media (min-width: 768px) {
  .hero-badge {
    margin-bottom: 1.25rem;
  }

  .hero-headline {
    font-size: 2.15rem;
  }

  .hero-subheadline {
    font-size: 1.1rem;
  }



  .logos-split {
    text-align: left;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 992px) {
  .section-padding {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .hero-section {
    padding-top: 4.5rem;
    padding-bottom: 5.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }

  .gallery-mosaic {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.25rem;
  }
  
  .gallery-featured-img {
    aspect-ratio: auto;
    height: 100%;
  }

  .gallery-details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .logos-split {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
  }
  
  .logos-compact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .reviews-split {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 3.5rem;
  }



  .final-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .btn-final-whatsapp, .btn-final-call {
    width: auto;
    min-width: 220px;
  }


}





/* Clean up obsolete brand headers */
.grid-brand-header, .grid-brand-title, .grid-brand-subtitle {
  display: none !important;
}

/* Promotional Modal benefits emoji styling */
.promo-modal-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.promo-modal-benefits li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.825rem;
  color: var(--color-slate-700);
  line-height: 1.35;
}

.promo-emoji {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Collage Scaling */
@media (max-width: 768px) {
  .hero-products-collage {
    margin-top: 2rem;
    gap: 0.5rem;
  }
  .collage-item {
    height: 7.5rem;
  }
  .collage-item.bag-ultratech {
    height: 8.5rem;
  }
  .collage-item.saria-steel {
    height: 6.5rem;
  }
  .collage-truck {
    height: 4.8rem;
    width: 9rem;
    padding: 0.4rem;
  }
}

@media (max-width: 480px) {
  .hero-products-collage {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
  }
  .collage-item {
    height: 6.5rem;
    max-width: 30%;
  }
  .collage-item.bag-acc {
    transform: none;
  }
  .collage-item.bag-ultratech {
    height: 7.2rem;
    transform: none;
  }
  .collage-item.bag-jk {
    transform: none;
  }
  .collage-item.saria-steel {
    height: 5.5rem;
    transform: none;
  }
  .collage-truck {
    display: none; /* Hide truck visual on narrow screens */
  }
}


/* --- Hero USPs List (Clean vertical list on the left column) --- */
.hero-usps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.hero-usps-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-slate-700);
  line-height: 1.4;
}

.hero-usps-list li strong {
  color: var(--color-slate-950);
  font-weight: 750;
}

.usp-emoji {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: white;
  border: 1px solid var(--color-slate-200);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

/* --- Hero Cement Brands Row (Compact capsule badges on the left) --- */
.hero-cement-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
  width: 100%;
}

.hero-cement-item {
  background-color: white;
  border: 1px solid var(--color-slate-200);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-cement-item:hover {
  transform: translateY(-2px);
  border-color: var(--color-brand-orange);
  box-shadow: var(--shadow-md);
}

.hero-cement-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(9, 14, 26, 0.08));
}

.hero-cement-details {
  display: flex;
  flex-direction: column;
}

.hero-cement-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-slate-950);
  line-height: 1.2;
}

.hero-cement-sub {
  font-size: 0.675rem;
  color: var(--color-slate-500);
  font-weight: 500;
  margin-top: 0.1rem;
}

/* Tablet & Mobile Adjustments */
@media (max-width: 768px) {
  .hero-usps-list {
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .header-logo img {
    height: 1.5rem;
  }
  .header-cta-btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
  }
  .hero-headline {
    font-size: 1.45rem;
  }
  .hero-subheadline {
    font-size: 0.825rem;
    line-height: 1.4;
    margin-bottom: 0.85rem;
  }
  .hero-usps-list li {
    font-size: 0.8rem;
    gap: 0.5rem;
  }
  .usp-emoji {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.95rem;
    border-radius: 6px;
  }
  .hero-cement-row {
    gap: 0.75rem;
  }
  .hero-cement-item {
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    flex: 1 1 calc(50% - 0.375rem); /* two column wrap on small mobile */
  }
  .hero-cement-img {
    height: 45px;
  }
  .hero-cement-name {
    font-size: 0.8rem;
  }
  .hero-cement-sub {
    font-size: 0.65rem;
  }
  .hero-card {
    padding: 1.25rem 1rem;
    gap: 1rem;
  }
  .hero-card-title {
    font-size: 1.15rem;
  }
  .hero-card-subtitle {
    font-size: 0.75rem;
    margin-top: -0.75rem;
  }
}
