/* =====================================================
   BABAR BROTHERS — Style Sheet (ShadcnSpace-Inspired Enhancement)
   ===================================================== */

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

:root {
  /* ── Blues pulled from the BABAR logo ── */
  --royal:        #1a35b8;
  --royal-dark:   #122690;
  --royal-deeper: #0c1a6b;

  /* ── Dark backgrounds (blue-tinted, not black) ── */
  --dark:       #07102a;
  --dark-2:     #0b1736;
  --dark-3:     #101f48;

  /* ── Legacy navy aliases kept for compatibility ── */
  --navy:       #0c1a6b;
  --navy-light: #1a35b8;

  /* ── Accent ── */
  --gold:       #ffffff;
  --gold-light: #d4deff;

  /* ── Neutrals ── */
  --white:      #ffffff;
  --off-white:  #f7f8fc;
  --gray-50:    #fafafa;
  --gray-100:   #eaeffe;
  --gray-200:   #d3dbf8;
  --gray-400:   #7b8ec8;
  --gray-600:   #4a5a9a;
  --gray-800:   #1e2d6b;
  --text:       #0c1540;

  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow-xs:  0 1px 4px rgba(26,53,184,0.06);
  --shadow-sm:  0 2px 16px rgba(26,53,184,0.08);
  --shadow-md:  0 8px 40px rgba(26,53,184,0.12);
  --shadow-lg:  0 24px 80px rgba(26,53,184,0.18);
  --transition: 0.25s ease;
  --font:       'Inter', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--royal); color: var(--white); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section--off { background: var(--off-white); }
.section--dark { background: var(--off-white); }

/* Smooth focus rings */
:focus-visible {
  outline: 2px solid var(--royal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =====================================================
   ANNOUNCEMENT BAR
   ===================================================== */
.announcement-bar {
  background: var(--royal);
  color: rgba(255,255,255,0.95);
  text-align: center;
  padding: 9px 24px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1001;
}
.announcement-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announcement-bar__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  margin: 0 10px;
  vertical-align: middle;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.2px;
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.btn:active::after { opacity: 1; }

.btn--gold {
  background: var(--royal);
  color: var(--white);
  border-color: var(--royal);
  box-shadow: 0 1px 3px rgba(26,53,184,0.3);
}
.btn--gold:hover {
  background: var(--royal-dark);
  border-color: var(--royal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,53,184,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--royal);
  border-color: rgba(26,53,184,0.3);
}
.btn--ghost:hover {
  background: rgba(26,53,184,0.05);
  border-color: var(--royal);
  transform: translateY(-1px);
}
.btn--dark {
  background: var(--royal);
  color: var(--white);
  border-color: var(--royal);
  box-shadow: 0 1px 3px rgba(26,53,184,0.3);
}
.btn--dark:hover {
  background: var(--royal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,53,184,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--royal);
  border-color: var(--gray-200);
}
.btn--outline:hover {
  border-color: var(--royal);
  background: rgba(26,53,184,0.04);
}
.btn--full { width: 100%; justify-content: center; }

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--royal);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(26,53,184,0.07);
  border-radius: 50px;
  border: 1px solid rgba(26,53,184,0.12);
}
.section__eyebrow--gold { color: var(--royal); }

.section__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section__title--white { color: var(--text); }

.section__subtitle {
  font-size: 0.97rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.section__subtitle--dim { color: var(--gray-600); }

.section__header { text-align: center; margin-bottom: 64px; }
.section__header--light .section__eyebrow { color: var(--royal); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  overflow: hidden;
  max-height: 68px;
}

.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 0px;
}

.nav__logo-img {
  display: block;
  height: 46px;
  width: 150px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}

.nav__logo-brothers {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.42rem;
  letter-spacing: 4px;
  color: var(--royal);
  text-transform: uppercase;
  display: block;
  margin-top: -1px;
}

/* Nav links — shadcnspace style */
.nav__menu { display: flex; align-items: center; gap: 2px; }
.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 7px;
  transition: all var(--transition);
  color: #4a5568;
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--text);
  background: var(--gray-50);
}
.nav__link.active {
  color: var(--text);
  background: var(--gray-100);
  font-weight: 600;
}

.nav__link--cta {
  background: var(--royal);
  color: var(--white) !important;
  font-weight: 600;
  padding: 8px 16px;
  margin-left: 6px;
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(26,53,184,0.3);
}
.nav__link--cta:hover {
  background: var(--royal-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,53,184,0.35);
}

/* Nav divider */
.nav__divider {
  width: 1px;
  height: 18px;
  background: var(--gray-200);
  margin: 0 6px;
  flex-shrink: 0;
}

/* Hamburger */
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #ffffff;
  overflow: hidden;
}

/* Subtle dot grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,53,184,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.hero__bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(26,53,184,0.06) 0%, transparent 70%);
  top: 50%;
  right: -80px;
  left: auto;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Inner split layout */
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  padding-top: 140px;
  padding-bottom: 80px;
  width: 100%;
}

.hero__content { flex: 0 0 auto; max-width: 600px; }

/* Eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--royal);
  margin-bottom: 24px;
  padding: 5px 14px;
  background: rgba(26,53,184,0.07);
  border: 1px solid rgba(26,53,184,0.14);
  border-radius: 50px;
}
.hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--royal);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Title */
.hero__title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--royal);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero__title span { color: var(--royal-dark); display: block; }

/* Subtitle */
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-600);
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.6;
}
.hero__typed-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.hero__typed { color: var(--royal); font-weight: 600; }
.hero__cursor {
  color: var(--royal);
  font-weight: 300;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.hero__description {
  font-size: 0.93rem;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Trust badges below buttons */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 500;
}
.hero__trust-item i {
  color: var(--royal);
  font-size: 0.82rem;
}
.hero__trust-sep {
  width: 1px;
  height: 14px;
  background: var(--gray-200);
}

/* Since 1976 */
.hero__year-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__year {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(6rem, 14vw, 16rem);
  line-height: 0.95;
  letter-spacing: -2px;
  user-select: none;
  display: block;
  text-align: center;
  background: linear-gradient(180deg, rgba(26,53,184,0.07) 0%, rgba(26,53,184,0.12) 40%, rgba(26,53,184,0.04) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(0.4px);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-indicator span {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--royal), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* =====================================================
   STATS STRIP — shadcn-inspired cleaner layout
   ===================================================== */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: none;
  padding: 40px 0;
}
.stats-strip__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stats-strip__item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
}
.stats-strip__divider {
  width: 1px;
  height: 44px;
  background: var(--gray-100);
  flex-shrink: 0;
}
.stats-strip__num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--royal);
  display: inline;
  line-height: 1;
  letter-spacing: -1px;
}
.stats-strip__num-wrap {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
  line-height: 1;
  min-height: 1em;
}
.stats-strip__suffix {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--royal);
  line-height: 1;
  letter-spacing: -1px;
}
.stats-strip__label {
  font-size: 0.72rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  font-weight: 500;
}

/* =====================================================
   MARQUEE STRIP
   ===================================================== */
.marquee-strip {
  background: var(--royal);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
  position: relative;
}
.marquee-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 40s linear infinite;
}
.marquee-track span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.88);
  padding: 0 22px;
  white-space: nowrap;
}
.marquee-dot {
  color: rgba(255,255,255,0.3) !important;
  padding: 0 4px !important;
  font-size: 0.9rem !important;
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* =====================================================
   ABOUT
   ===================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.about__image-wrap { position: relative; border-radius: var(--radius-xl); overflow: visible; }

/* About visual — layered showcase */
.about__showcase {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
  box-shadow:
    0 4px 0 rgba(244, 185, 66, 0.3),
    0 28px 70px rgba(6, 18, 56, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(155deg, #0a1f66 0%, #1a35b8 42%, #061238 100%);
}
.about__showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 10% 0%, rgba(61, 108, 255, 0.22) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.about__showcase:hover {
  box-shadow:
    0 6px 0 rgba(244, 185, 66, 0.5),
    0 36px 90px rgba(6, 18, 56, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}
.about__showcase-bloom {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 50% 50%, rgba(244, 185, 66, 0.12) 0%, transparent 42%);
  animation: aboutBloom 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes aboutBloom {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
.about__showcase-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  position: relative;
  z-index: 2;
  filter: saturate(1.08) contrast(1.03);
}
.about__showcase-scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: aboutScan 6.5s ease-in-out infinite;
  mix-blend-mode: overlay;
}
@keyframes aboutScan {
  0%, 12% { background-position: 120% 0; }
  45%, 100% { background-position: -120% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .about__showcase-bloom,
  .about__showcase-scan { animation: none; }
  .about__showcase { transition: box-shadow 0.3s ease; }
}

/* About licence badge */
.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: rgba(26,53,184,0.07);
  border: 1px solid rgba(26,53,184,0.14);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--royal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.about__badge i { font-size: 0.75rem; }

.about__content { padding-left: 8px; }
.about__lead { font-size: 1.05rem; font-weight: 500; color: var(--gray-800); line-height: 1.75; margin-bottom: 14px; }
.about__text { font-size: 0.93rem; color: var(--gray-600); line-height: 1.85; margin-bottom: 32px; }
.about__pillars { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  border-left: 3px solid var(--royal);
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.pillar:hover {
  border-color: rgba(26,53,184,0.3);
  border-left-color: var(--royal);
  transform: translateX(3px);
  box-shadow: var(--shadow-sm);
}
.pillar i { font-size: 1.2rem; color: var(--royal); flex-shrink: 0; }
.pillar strong { display: block; font-weight: 700; color: var(--royal-deeper); font-size: 0.9rem; }
.pillar span { font-size: 0.8rem; color: var(--gray-600); }

/* =====================================================
   SERVICES — shadcnspace card style
   ===================================================== */
.services__grid--two   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.services__grid--three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card--glass {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card--glass:hover {
  border-color: rgba(26,53,184,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(26,53,184,0.1);
}

/* Colorful top stripe on cards */
.service-card--glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--royal-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card--glass:hover::before {
  opacity: 1;
}

.service-card--gold-border { border-color: var(--gray-100); }
.service-card--gold-border:hover { border-color: rgba(26,53,184,0.2); }

/* Card inner padding area */
.service-card--glass .service-card__inner {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(26,53,184,0.08);
  color: var(--royal);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(26,53,184,0.12);
}
.service-card__badge--accent {
  background: rgba(18,38,144,0.08);
  color: var(--royal-dark);
  border-color: rgba(18,38,144,0.14);
}
.service-card--glass .service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(26,53,184,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
  color: var(--royal);
  border: 1px solid rgba(26,53,184,0.12);
}

.service-card__icon--warehouse {
  width: 80px !important;
  height: 52px !important;
  background: transparent !important;
  border: none !important;
  padding: 0;
}

.service-card__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.service-card--glass h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.service-card--glass p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 12px;
}
.service-card__sub {
  font-style: italic;
  border-left: 2px solid rgba(26,53,184,0.2);
  padding-left: 12px;
  color: var(--gray-400) !important;
  font-size: 0.83rem !important;
  margin-bottom: 14px !important;
}

.service-card__licence {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--royal);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.service-card__licence i {
  font-size: 0.72rem;
  opacity: 0.85;
}

.service-card__licence strong {
  font-weight: 800;
  letter-spacing: 0.5px;
}
.service-card__list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.service-card__list li { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: var(--gray-600); }
.service-card__list i { font-size: 0.68rem; color: var(--royal); flex-shrink: 0; }

/* shadcn-style "Preview" link at bottom of card */
.service-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.2px;
  padding: 16px 28px;
  border-top: 1px solid var(--gray-100);
  transition: all var(--transition);
  margin-top: auto;
}
.service-card__link:hover {
  color: var(--royal);
  background: rgba(26,53,184,0.03);
}
.service-card__link i { font-size: 0.85rem; transition: transform var(--transition); }
.service-card__link:hover i { transform: translateX(3px); }

/* =====================================================
   WHAT WE STORE — MATERIALS
   ===================================================== */
.materials__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.material-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
}
.material-card:hover {
  border-color: rgba(26,53,184,0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.material-card--highlight {
  background: var(--royal-deeper);
  border-color: transparent;
}
.material-card--highlight:hover {
  background: var(--royal-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,53,184,0.3);
}
.material-card--highlight .material-card__icon { color: var(--gold-light); font-size: 1.7rem; }
.material-card--highlight .material-card__name { color: rgba(255,255,255,0.8); }
.material-card__icon { font-size: 1.4rem; color: var(--royal); }
.material-card__name { font-size: 0.75rem; font-weight: 600; color: var(--gray-600); text-align: center; line-height: 1.4; }
.materials__note {
  text-align: center;
  font-size: 0.86rem;
  color: var(--gray-600);
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--gray-100);
}
.materials__note i { color: var(--royal); }
.materials__note a { color: var(--royal); font-weight: 700; }

/* =====================================================
   PROCESS
   ===================================================== */
.process__steps { display: flex; align-items: flex-start; gap: 0; }
.process__connector {
  flex-shrink: 0;
  width: 80px;
  height: 1.5px;
  background: linear-gradient(to right, var(--royal-deeper), var(--royal));
  margin-top: 35px;
  position: relative;
}
.process__connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3.5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--royal);
}
.process__connector::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: inherit;
  filter: blur(3px);
  opacity: 0.35;
  z-index: -1;
}
.process__step { flex: 1; text-align: center; padding: 0 14px; }
.process__step-number {
  width: 64px;
  height: 64px;
  background: var(--royal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 18px;
  box-shadow: 0 4px 20px rgba(26,53,184,0.3);
  transition: all var(--transition);
}
.process__step:hover .process__step-number { background: var(--royal-dark); transform: scale(1.06); }
.process__step-content h3 { font-size: 0.97rem; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.process__step-content p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.65; }

/* =====================================================
   FEATURES
   ===================================================== */
.features__grid--three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* Legal docs highlight card */
.feature-card--highlight {
  background: var(--royal) !important;
  border-color: var(--royal-dark) !important;
  box-shadow: 0 8px 32px rgba(26,53,184,0.3) !important;
}
.feature-card--highlight h3 { color: #ffffff !important; }
.feature-card--highlight p { color: rgba(255,255,255,0.82) !important; }
.feature-card__icon--white {
  background: rgba(255,255,255,0.18) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  box-shadow: none !important;
}

.feature-card--dark {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.feature-card--dark:hover {
  border-color: rgba(26,53,184,0.18);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26,53,184,0.08);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
  background: var(--royal);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(26,53,184,0.22);
}
.feature-card__icon--gold {
  background: var(--royal-dark);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(18,38,144,0.28);
}
.feature-card--dark h3 { font-size: 0.97rem; font-weight: 700; color: var(--text); margin-bottom: 9px; letter-spacing: -0.1px; }
.feature-card--dark p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.7; }

/* =====================================================
   CLIENTELE — Logo Marquee
   ===================================================== */
.logo-marquee {
  overflow: hidden;
  padding: 44px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin: 0 0 64px;
}
.logo-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: logoScroll 35s linear infinite;
}
.logo-marquee__track:hover { animation-play-state: paused; }
.logo-marquee__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 44px;
  border-right: 1px solid var(--gray-100);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-marquee__item i { font-size: 1.3rem; color: var(--gray-400); }
.logo-marquee__item span { font-size: 0.85rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; }
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Testimonial */
.testimonial__block { max-width: 720px; margin: 0 auto; }
.testimonial__quote {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.testimonial__icon { font-size: 2.2rem; color: var(--royal); margin-bottom: 22px; display: block; opacity: 0.4; }
.testimonial__quote p { font-size: 1.05rem; color: var(--gray-800); line-height: 1.85; font-style: italic; margin-bottom: 32px; }
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar { width: 46px; height: 46px; background: rgba(26,53,184,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--royal); font-size: 1.1rem; flex-shrink: 0; }
.testimonial__author strong { display: block; color: var(--text); font-size: 0.88rem; font-weight: 700; }
.testimonial__author span { font-size: 0.8rem; color: var(--gray-600); }

/* =====================================================
   CONTACT
   ===================================================== */
.contact__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 0; }
.contact__info-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--gray-100); }
.contact__info-item:last-of-type { border-bottom: none; }
.contact__info-icon { width: 40px; height: 40px; background: rgba(26,53,184,0.08); color: var(--royal); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; border: 1px solid rgba(26,53,184,0.12); }
.contact__info-item strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.contact__info-item span { font-size: 0.85rem; color: var(--gray-600); }
.contact__social { display: flex; gap: 10px; margin-top: 20px; }
.contact__social a { width: 40px; height: 40px; background: var(--off-white); border: 1px solid var(--gray-100); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--royal); transition: all var(--transition); }
.contact__social a:hover { background: var(--royal); color: var(--white); border-color: var(--royal); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(26,53,184,0.3); }

.contact__form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form__group label { font-size: 0.78rem; font-weight: 600; color: var(--dark); text-transform: uppercase; letter-spacing: 0.5px; }
.form__group label span { color: var(--royal); }
.form__group input,
.form__group select,
.form__group textarea {
  padding: 10px 14px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--royal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,53,184,0.08);
}
.form__group textarea { resize: vertical; min-height: 96px; }
.form__success { display: none; align-items: center; gap: 9px; background: #e8f5e9; color: #2e7d32; border-radius: var(--radius); padding: 12px 16px; font-size: 0.88rem; font-weight: 600; margin-top: 10px; }
.form__success.show { display: flex; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--royal-deeper);
  color: rgba(255,255,255,0.55);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(26,53,184,0.6), transparent);
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 44px;
  padding: 72px 28px 56px;
}

.footer__brand .footer__logo { display: flex; align-items: center; text-decoration: none; }
.footer__brand .footer__logo { margin-bottom: 18px; }

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

.footer__logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer__logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  filter: invert(1) grayscale(1) brightness(10);
  mix-blend-mode: screen;
}

.footer__logo-brothers-line {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 3px;
}

.footer__brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.footer__brand p { font-size: 0.85rem; line-height: 1.8; max-width: 270px; }
.footer__main h4, .footer__top h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links ul, .footer__services ul { display: flex; flex-direction: column; gap: 11px; }
.footer__links a, .footer__services a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
  display: inline-block;
}
.footer__links a:hover, .footer__services a:hover {
  color: var(--white);
  transform: translateX(3px);
}
.footer__contact ul { display: flex; flex-direction: column; gap: 13px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.85rem; }
.footer__contact i { color: var(--gold-light); margin-top: 2px; flex-shrink: 0; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.footer__bottom p { color: rgba(255,255,255,0.28); }

/* =====================================================
   SCROLL TO TOP
   ===================================================== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--royal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26,53,184,0.35);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: var(--royal-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,53,184,0.4); }

/* =====================================================
   ANIMATIONS
   ===================================================== */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-animate].animated { opacity: 1; transform: translateY(0); }
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }

/* =====================================================
   RESPONSIVE — Tablet
   ===================================================== */
@media (max-width: 1024px) {
  .services__grid--two   { grid-template-columns: 1fr; }
  .services__grid--three { grid-template-columns: 1fr; }
  .features__grid--three { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 44px; }
  .about__visual { max-width: 480px; margin: 0 auto; }
  .about__content { padding-left: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process__steps { flex-wrap: wrap; justify-content: center; gap: 36px; }
  .process__connector { display: none; }
  .process__step { flex: 0 0 calc(50% - 18px); }
  .contact__grid { grid-template-columns: 1fr; }
  .materials__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .announcement-bar { font-size: 0.7rem; padding: 7px 16px; }

  /* Nav */
  .nav__menu {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 84px 20px 28px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.3);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__link { width: 100%; padding: 11px 14px; }
  .nav__link--cta { margin-left: 0; margin-top: 10px; width: 100%; justify-content: center; }
  .nav__toggle { display: flex; z-index: 1000; }
  .nav__divider { display: none; }

  /* Hero */
  .hero__inner { flex-direction: column; padding-top: 148px; padding-bottom: 72px; gap: 0; }
  .hero__content { max-width: 100%; }
  .hero__year-wrap { display: none; }
  .hero__title { font-size: clamp(3.5rem, 14vw, 5.5rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { justify-content: center; }

  /* Stats */
  .stats-strip__grid { flex-wrap: wrap; }
  .stats-strip__item { flex: 0 0 50%; }
  .stats-strip__divider { display: none; }

  /* Materials */
  .materials__grid { grid-template-columns: repeat(2, 1fr); }

  /* Features */
  .features__grid--three { grid-template-columns: 1fr; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 28px; padding: 48px 28px 36px; }
  .footer__bottom { flex-direction: column; gap: 7px; text-align: center; }

  /* Process */
  .process__step { flex: 0 0 100%; }

  /* Contact */
  .contact__form { padding: 24px 18px; }
  .form__row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .materials__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__badge { font-size: 0.68rem; }
  .testimonial__quote { padding: 28px 20px; }
  .section__eyebrow { font-size: 0.65rem; }
}

/* =====================================================
   LEAD GENERATION COMPONENTS
   ===================================================== */

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 96px;
  right: 22px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 11px 18px 11px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.whatsapp-btn i { font-size: 1.3rem; }
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.whatsapp-btn__label { font-family: 'Inter', sans-serif; }

/* Sticky Bottom CTA Bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--royal-deeper);
  border-top: 1.5px solid rgba(26,53,184,0.5);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.sticky-cta.hidden { transform: translateY(110%); }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.sticky-cta__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sticky-cta__text strong {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}
.sticky-cta__text span {
  color: rgba(255,255,255,0.6);
  font-size: 0.76rem;
}
.sticky-cta__actions { display: flex; align-items: center; gap: 9px; }
.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.sticky-cta__btn--call {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
}
.sticky-cta__btn--call:hover { border-color: #fff; background: rgba(255,255,255,0.07); }
.sticky-cta__btn--quote {
  background: var(--royal);
  color: #fff;
  border: 1.5px solid transparent;
}
.sticky-cta__btn--quote:hover { background: var(--royal-dark); }
.sticky-cta__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 7px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}
.sticky-cta__close:hover { color: #fff; }

/* Exit Intent Popup */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.exit-popup.active { display: flex; }
.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,16,42,0.7);
  backdrop-filter: blur(4px);
}
.exit-popup__box {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  animation: popIn 0.3s ease;
  border: 1px solid var(--gray-100);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.exit-popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
}
.exit-popup__close:hover { color: var(--text); }
.exit-popup__icon {
  width: 48px;
  height: 48px;
  background: rgba(26,53,184,0.08);
  border: 1px solid rgba(26,53,184,0.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--royal);
  margin-bottom: 16px;
}
.exit-popup__box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 9px;
  letter-spacing: -0.2px;
}
.exit-popup__box p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}
.exit-popup__form {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.exit-popup__form input,
.exit-popup__form select {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s, background 0.2s;
}
.exit-popup__form input:focus,
.exit-popup__form select:focus {
  outline: none;
  border-color: var(--royal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,53,184,0.08);
}
.exit-popup__note {
  font-size: 0.76rem !important;
  text-align: center;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  color: var(--gray-400) !important;
}
.exit-popup__note a { color: var(--royal); font-weight: 700; }

/* Responsive */
@media (max-width: 640px) {
  .whatsapp-btn__label { display: none; }
  .whatsapp-btn { padding: 13px; border-radius: 50%; bottom: 86px; }
  .sticky-cta__text span { display: none; }
  .sticky-cta__inner { gap: 10px; }
}

/* ===== FORM VALIDATION ===== */
.contact__form input.input-error,
.contact__form textarea.input-error,
.contact__form select.input-error {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12);
}
.form__error {
  display: block;
  color: #e53e3e;
  font-size: 0.76rem;
  margin-top: 4px;
  font-weight: 500;
}
.form__error--global {
  background: rgba(229, 62, 62, 0.07);
  border-left: 3px solid #e53e3e;
  padding: 9px 13px;
  border-radius: 4px;
  margin-bottom: 14px;
  font-size: 0.83rem;
}

/* ===== OUR STORY TIMELINE ===== */
.story__timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.story__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: var(--gray-100);
  transform: translateX(-50%);
}
.story__item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 52px;
  position: relative;
}
.story__item--right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}
.story__marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 1;
}
.story__year {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  color: var(--royal);
  letter-spacing: 0.05em;
  white-space: nowrap;
  background: var(--off-white);
  padding: 0 7px;
}
.story__dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--royal);
  transition: all 0.3s;
}
.story__dot--active {
  background: var(--royal);
  border-color: var(--royal);
  box-shadow: 0 0 0 4px rgba(26,53,184,0.12);
}
.story__card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  max-width: 380px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.25s, transform 0.25s;
}
.story__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.story__card--active {
  border-color: rgba(26,53,184,0.22);
  background: linear-gradient(135deg, rgba(26,53,184,0.03) 0%, var(--white) 100%);
}
.story__card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--royal-deeper);
  margin-bottom: 9px;
}
.story__card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.75;
}
.story__gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 0.86rem;
}
@media (max-width: 700px) {
  .story__timeline::before { left: 20px; }
  .story__item,
  .story__item--right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 54px;
  }
  .story__marker { left: 20px; }
  .story__card { max-width: 100%; }
}

/* ===== CAPACITY & CAPABILITIES ===== */
.capacity { background: var(--white); }

.capacity__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.capacity__card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.capacity__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(26,53,184,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.capacity__card:hover {
  transform: translateY(-3px);
  border-color: rgba(26,53,184,0.2);
  box-shadow: 0 10px 28px rgba(26,53,184,0.08);
}
.capacity__card:hover::before { opacity: 1; }

.capacity__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(26,53,184,0.08);
  border: 1px solid rgba(26,53,184,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--royal);
  margin-bottom: 18px;
}

.capacity__value {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  color: var(--royal-deeper);
  line-height: 1;
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.capacity__value--sm {
  font-size: 1.4rem;
  line-height: 1.15;
}
.capacity__unit {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--royal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.capacity__label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.capacity__desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.capacity__highlight {
  margin-top: 36px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  align-items: flex-start;
}

.capacity__highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 250px;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.capacity__highlight-item i {
  color: var(--royal);
  font-size: 1.05rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.capacity__highlight-item strong { color: var(--royal-deeper); }

/* Responsive */
@media (max-width: 1000px) {
  .capacity__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .capacity__grid { grid-template-columns: 1fr; }
  .capacity__highlight { padding: 18px; }
}

/* ===== FAQ SECTION ===== */
.faq__contact-link { color: var(--royal); font-weight: 600; text-decoration: underline; }
.faq__contact-link:hover { color: var(--royal-dark); }

.faq__grid {
  max-width: 820px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq__item.is-open {
  border-color: rgba(26,53,184,0.22);
  box-shadow: 0 4px 16px rgba(26,53,184,0.07);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.4;
  transition: background 0.2s;
}
.faq__question:hover { background: rgba(26,53,184,0.03); }
.faq__item.is-open .faq__question { background: rgba(26,53,184,0.03); }

.faq__chevron {
  font-size: 0.75rem;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s;
}
.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
  color: var(--royal);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 22px;
}
.faq__item.is-open .faq__answer {
  max-height: 300px;
  padding: 0 22px 18px;
}
.faq__answer p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
  padding-top: 14px;
}

/* ===== MAP SECTION ===== */
.map-section { background: var(--off-white); padding: 100px 0 0; }
.map-section__header { text-align: center; padding-bottom: 44px; }
.map-section__embed {
  width: 100%;
  line-height: 0;
  border-top: 1px solid var(--gray-100);
}
.map-section__embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
@media (max-width: 640px) {
  .map-section__embed iframe { height: 260px; }
}

/* ===== PRINT ===== */
@media print {
  .header, .scroll-top, .hero__scroll-indicator,
  .marquee-strip, .contact__form button { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  body { color: #000; }
}

/* ===== CARD WILL-CHANGE OPTIMIZATION ===== */
.service-card--glass,
.feature-card--dark,
.material-card,
.pillar,
.capacity__card,
.faq__item,
.story__card {
  will-change: transform;
}

/* ===== ENSURE CONSISTENT LINE HEIGHTS ===== */
h1, h2, h3, h4 { line-height: 1.2; }

/* ===== SMOOTH IMAGE RENDERING ===== */
img { image-rendering: -webkit-optimize-contrast; }

/* =====================================================
   PREMIUM ENHANCEMENTS — shadcnspace polish
   ===================================================== */

/* ── Hero: subtle grid texture ── */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.95));
  pointer-events: none;
  z-index: 0;
}

/* ── Section separators ── */
.section + .section,
.section--off + .section,
.section + .section--off {
  position: relative;
}

/* ── Bento-style capacity grid: 1st card wide ── */
.capacity__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  margin-top: 52px;
}

/* ── About section: visual polish ── */
.about.section {
  position: relative;
  overflow: hidden;
}
.about.section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,53,184,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Services section accent ── */
.services.section--dark {
  position: relative;
  overflow: hidden;
}
.services.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,53,184,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* ── Feature cards: numbered accent ── */
.feature-card--dark {
  counter-increment: feature-count;
  position: relative;
}

/* ── Material cards grid improvement ── */
.materials__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

/* ── FAQ: improved open state ── */
.faq__item.is-open {
  background: var(--white);
}
.faq__item {
  background: var(--off-white);
}

/* ── Testimonial: star rating ── */
.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.testimonial__stars i {
  color: #f59e0b;
  font-size: 0.9rem;
}

/* ── Contact: info section badge ── */
.contact__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,53,184,0.07);
  border: 1px solid rgba(26,53,184,0.14);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--royal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* ── Form: improved styling ── */
.contact__form-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.contact__form-sub {
  font-size: 0.84rem;
  color: var(--gray-600);
  margin-bottom: 28px;
}

/* ── Process section ── */
.process.section--off {
  position: relative;
  overflow: hidden;
}
.process.section--off::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,53,184,0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Process step hover line ── */
.process__step-number {
  position: relative;
}
.process__step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.process__step:hover .process__step-number::after {
  border-color: rgba(26,53,184,0.25);
}

/* ── Footer: enhanced link hover ── */
.footer__links li,
.footer__services li {
  position: relative;
}
.footer__links a::before,
.footer__services a::before {
  content: '→';
  position: absolute;
  left: -14px;
  opacity: 0;
  transition: all 0.2s;
  color: var(--gold-light);
  font-size: 0.75rem;
}
.footer__links a:hover::before,
.footer__services a:hover::before {
  opacity: 1;
  left: -12px;
}

/* ── Footer bottom: styled copyright ── */
.footer__bottom {
  position: relative;
}
.footer__bottom::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.07), transparent);
}

/* ── Scroll-to-top: refined ── */
.scroll-top {
  border-radius: 10px;
}

/* ── Stagger animations ── */
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }
[data-animate-delay="6"] { transition-delay: 0.6s; }

/* ── Capacity section: featured card ── */
.capacity__card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--royal-deeper) 0%, var(--royal) 100%);
  border-color: transparent;
  color: white;
}
.capacity__card--featured .capacity__value,
.capacity__card--featured .capacity__label,
.capacity__card--featured .capacity__desc {
  color: rgba(255,255,255,0.9);
}
.capacity__card--featured .capacity__icon {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
  color: white;
}
.capacity__card--featured .capacity__label {
  color: rgba(255,255,255,0.6);
}
.capacity__card--featured:hover {
  box-shadow: 0 16px 40px rgba(26,53,184,0.4);
  transform: translateY(-4px);
  border-color: transparent;
}
.capacity__card--featured::before {
  background: rgba(255,255,255,0.04);
  opacity: 1;
}

/* ── Materials: hover icon bounce ── */
.material-card:hover .material-card__icon {
  transform: scale(1.15);
  transition: transform 0.25s ease;
}
.material-card__icon {
  transition: transform 0.25s ease;
}

/* ── Nav: active indicator dot ── */
.nav__link.active {
  position: relative;
}

/* ── Section eyebrow on dark bg ── */
.section--dark .section__eyebrow,
.capacity .section__eyebrow,
.faq .section__eyebrow {
  background: rgba(26,53,184,0.07);
  border-color: rgba(26,53,184,0.12);
  color: var(--royal);
}

/* ── Link underline animation ── */
.service-card__link {
  position: relative;
}

/* ── Map section ── */
.map-section__embed {
  border-radius: 0;
  overflow: hidden;
}

/* ── Section transition blending ── */
.stats-strip {
  border-bottom: none;
}
.marquee-strip {
  position: relative;
}

/* ── Hero trust badges mobile ── */
@media (max-width: 480px) {
  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hero__trust-sep { display: none; }
}

/* ── Services grid on tablet: 2 columns ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .services__grid--three {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Features grid on tablet: 3 columns ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .features__grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Announcement bar: mobile ── */
@media (max-width: 640px) {
  .announcement-bar {
    font-size: 0.7rem;
    padding: 7px 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .announcement-bar__dot { margin: 0 6px; }
}

/* ── Button: pulse effect on CTA ── */
.btn--gold {
  position: relative;
}
.btn--gold::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--royal);
  opacity: 0;
  z-index: -1;
  transition: all 0.3s;
}

/* ── Card shimmer effect on hover ── */
.service-card--glass::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255,255,255,0.06),
    transparent
  );
  transition: left 0.5s ease;
  pointer-events: none;
}
.service-card--glass:hover::after {
  left: 150%;
}

/* ── FAQ answer link ── */
.faq__contact-link {
  font-weight: 700;
  text-underline-offset: 3px;
}

/* ── Ensure capacity 4-col on desktop ── */
@media (min-width: 1025px) {
  .capacity__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .capacity__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .capacity__grid {
    grid-template-columns: 1fr;
  }
}
/* ── 4-column features grid ── */
.features__grid--four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) {
  .features__grid--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features__grid--four { grid-template-columns: 1fr; }
}

/* ── 2-column services grid: centered, capped width ── */
.services__grid--two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .services__grid--two { grid-template-columns: 1fr; max-width: 540px; }
}

/* ── Stats strip: even 4-col layout ── */
.stats-strip__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

/* ── Mid-page CTA Strip ── */
.midpage-cta {
  background: linear-gradient(135deg, var(--royal-deeper) 0%, var(--royal) 100%);
  padding: 64px 28px;
  position: relative;
  overflow: hidden;
}
.midpage-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.midpage-cta::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.midpage-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.midpage-cta__text { flex: 1; min-width: 260px; }
.midpage-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.midpage-cta__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.midpage-cta__sub {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 480px;
}
.midpage-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.midpage-cta__btn--primary {
  background: #ffffff;
  color: var(--royal-deeper);
  border: none;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.midpage-cta__btn--primary:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.midpage-cta__btn--secondary {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.3);
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius);
}
.midpage-cta__btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .midpage-cta__inner { flex-direction: column; text-align: center; }
  .midpage-cta__actions { justify-content: center; }
  .midpage-cta__sub { margin: 0 auto; }
}

/* =====================================================
   MOBILE FIXES — Comprehensive phone compatibility
   ===================================================== */

/* --- Materials grid: fix 5-col overflow on mobile --- */
@media (max-width: 768px) {
  .materials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .materials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* --- Stats strip: show all 4 in a 2×2 grid on phone --- */
@media (max-width: 600px) {
  .stats-strip__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    flex-wrap: unset;
  }
  .stats-strip__item {
    flex: unset;
    border-bottom: 1px solid var(--gray-100);
    padding: 20px 12px;
  }
  .stats-strip__item:nth-child(odd) {
    border-right: 1px solid var(--gray-100);
  }
  .stats-strip__divider { display: none; }
  .stats-strip__num,
  .stats-strip__suffix {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
}

/* --- Hero: ensure title doesn't overflow narrow screens --- */
@media (max-width: 400px) {
  .hero__title {
    font-size: clamp(3rem, 16vw, 4.5rem);
    letter-spacing: -1px;
  }
  .hero__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    padding: 4px 10px;
  }
}

/* --- Trust badges: centered properly on all phones --- */
@media (max-width: 480px) {
  .hero__trust {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
  }
  .hero__trust-sep { display: none; }
}

/* --- Sticky CTA: compact layout + clear footer space --- */
@media (max-width: 600px) {
  .sticky-cta {
    padding: 10px 14px;
    gap: 8px;
  }
  .sticky-cta__inner {
    gap: 8px;
  }
  .sticky-cta__text strong {
    font-size: 0.82rem;
  }
  .sticky-cta__btn {
    padding: 8px 12px;
    font-size: 0.76rem;
  }
}

/* --- Footer: add bottom padding so content isn't behind sticky CTA --- */
.footer__bottom {
  padding-bottom: 80px; /* push above sticky CTA bar */
}
@media (min-width: 769px) {
  .footer__bottom {
    padding-bottom: 28px; /* restore on desktop where sticky CTA is hidden after scroll */
  }
}

/* --- Contact form rows: single column on narrow screens --- */
@media (max-width: 600px) {
  .form__row {
    grid-template-columns: 1fr;
  }
  .contact__form {
    padding: 20px 16px;
  }
}

/* --- Contact grid: proper stacking & info panel spacing on mobile --- */
@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact__info {
    padding-right: 0;
  }
}

/* --- Section padding reduction on very small screens --- */
@media (max-width: 400px) {
  .section { padding: 56px 0; }
  .section__header { margin-bottom: 40px; }
  .container { padding: 0 18px; }
}

/* --- WhatsApp + scroll-to-top: avoid overlap with sticky CTA --- */
@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 80px;
  }
  .scroll-top {
    bottom: 80px;
    right: 16px;
  }
}

/* --- FAQ: ensure question text wraps well on mobile --- */
@media (max-width: 480px) {
  .faq__question {
    font-size: 0.87rem;
    padding: 16px 16px;
  }
  .faq__answer {
    padding: 0 16px;
  }
  .faq__item.is-open .faq__answer {
    padding: 0 16px 16px;
  }
  .faq__grid {
    margin-top: 36px;
  }
}

/* --- Process steps: full width on mobile, better spacing --- */
@media (max-width: 480px) {
  .process__step {
    flex: 0 0 100%;
  }
  .process__step-number {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }
}

/* --- Capacity cards: single column on phone --- */
@media (max-width: 480px) {
  .capacity__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }
  .capacity__card {
    padding: 22px 20px;
  }
}

/* --- About section: reduce gap and padding on small screens --- */
@media (max-width: 480px) {
  .about__grid {
    gap: 28px;
  }
  .about__lead { font-size: 0.97rem; }
  .about__text { font-size: 0.87rem; }
  .pillar {
    padding: 11px 14px;
    gap: 10px;
  }
}

/* --- Service cards: reduce inner padding on mobile --- */
@media (max-width: 480px) {
  .service-card--glass .service-card__inner {
    padding: 22px 20px;
  }
  .service-card__list li {
    font-size: 0.82rem;
  }
}

/* --- Feature cards: compact on phone --- */
@media (max-width: 480px) {
  .feature-card--dark {
    padding: 24px 20px;
  }
  .features__grid--three {
    gap: 12px;
  }
}

/* --- Map iframe height on small screens --- */
@media (max-width: 480px) {
  .map-section__embed iframe {
    height: 220px;
  }
  .map-section {
    padding-top: 60px;
  }
}

/* --- Section eyebrow: prevent wrapping on narrow screens --- */
@media (max-width: 400px) {
  .section__eyebrow {
    font-size: 0.6rem;
    letter-spacing: 2px;
    white-space: nowrap;
  }
}

/* --- Testimonial block: mobile padding --- */
@media (max-width: 480px) {
  .testimonial__quote {
    padding: 24px 18px;
  }
  .testimonial__quote p {
    font-size: 0.88rem;
  }
}

/* --- Logo marquee: slightly smaller text on mobile --- */
@media (max-width: 480px) {
  .logo-marquee__item {
    padding: 0 16px;
    font-size: 0.78rem;
  }
}

/* --- Hero inner: tighten up top padding on very small screens --- */
@media (max-width: 400px) {
  .hero__inner {
    padding-top: 110px;
    padding-bottom: 56px;
  }
  .hero__description {
    font-size: 0.87rem;
    margin-bottom: 28px;
  }
  .hero__actions { gap: 10px; }
}

/* --- Prevent any horizontal scroll from oversized elements --- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: border-box;
}


