/* ── ABOUT PAGE ── */
.about-page { background: #f1f5fb; }

/* ── STATS BAR ── */
.ab-stats {
  background: var(--blue, #015ea0);
  padding: .9rem 0;
}
.ab-stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.ab-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  padding: .6rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.18);
}
.ab-stat:last-child { border-right: none; }
.ab-stat strong {
  font-family: var(--font-serif, 'Bebas Neue');
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
  letter-spacing: .04em;
}
.ab-stat span {
  font-size: .72rem;
  color: rgba(255,255,255,.72);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── MAIN ── */
.ab-main { padding: 0 0 0; }

/* ── SHARED SECTION HELPERS ── */
.ab-section { padding: 5rem 0; }
.ab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue, #015ea0);
  background: var(--blue-l, #e8f2fb);
  padding: .35rem .85rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.ab-title {
  font-family: var(--font-serif, 'Bebas Neue');
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.08;
  color: var(--dark, #0d1b2a);
  letter-spacing: .02em;
  margin: 0 0 1.2rem;
}
.ab-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.ab-section-sub {
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

/* ── BUTTONS ── */
.ab-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: var(--radius, 6px);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  cursor: pointer;
}
.ab-btn:hover { transform: translateY(-1px); }
.ab-btn--primary {
  background: var(--blue, #015ea0);
  color: #fff;
}
.ab-btn--primary:hover { background: var(--blue-d, #014a80); }
.ab-btn--outline {
  background: transparent;
  color: var(--blue, #015ea0);
  border: 2px solid var(--blue, #015ea0);
}
.ab-btn--outline:hover {
  background: var(--blue-l, #e8f2fb);
}
.ab-btn--white {
  background: #fff;
  color: var(--blue, #015ea0);
}
.ab-btn--white:hover { background: #e8f2fb; }
.ab-btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.ab-btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── INTRO SECTION ── */
.ab-intro { background: #fff; }
.ab-intro__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ab-intro__text p {
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.ab-intro__actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}
.ab-intro__img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(1,94,160,.18);
}
.ab-intro__img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ab-intro__img-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(5,13,30,.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.ab-intro__img-badge svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: #39adff;
}
.ab-intro__img-badge strong {
  display: block;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
}
.ab-intro__img-badge span {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .72rem;
}

/* ── PRODUCTS SECTION ── */
.ab-products { background: #f1f5fb; }
.ab-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.ab-product-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .7rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ab-product-card:hover {
  border-color: var(--blue, #015ea0);
  box-shadow: 0 8px 24px rgba(1,94,160,.1);
  transform: translateY(-2px);
}
.ab-product-card__icon {
  width: 40px; height: 40px;
  background: var(--blue-l, #e8f2fb);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ab-product-card__icon svg {
  width: 20px; height: 20px;
  color: var(--blue, #015ea0);
}
.ab-product-card span {
  font-size: .85rem;
  font-weight: 600;
  color: #1a2744;
  line-height: 1.4;
}
.ab-products__note {
  text-align: center;
  font-size: .9rem;
  color: #4a5568;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* ── EXPERTISE SECTION ── */
.ab-expertise { background: #fff; }
.ab-expertise__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ab-expertise__img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(1,94,160,.18);
}
.ab-expertise__img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.ab-expertise__text p {
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.ab-check-list {
  list-style: none;
  padding: 0; margin: 1rem 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.ab-check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.ab-check-list__icon {
  width: 22px; height: 22px;
  background: var(--blue, #015ea0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .05rem;
}
.ab-check-list__icon svg {
  width: 11px; height: 11px;
  color: #fff;
}
.ab-check-list span {
  font-size: .9rem;
  color: #2d3748;
  font-weight: 500;
  line-height: 1.5;
}
.ab-expertise__quote {
  background: var(--blue-l, #e8f2fb);
  border-left: 3px solid var(--blue, #015ea0);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.2rem;
  font-size: .9rem;
  color: #1a2744;
  font-style: italic;
  line-height: 1.65;
  margin-top: 1.2rem;
}

/* ── BUILD SECTION ── */
.ab-build { background: #f1f5fb; }
.ab-build__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.ab-build__inner p {
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.ab-surfaces {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.ab-surface {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ab-surface:hover {
  border-color: var(--blue, #015ea0);
  box-shadow: 0 6px 20px rgba(1,94,160,.1);
  transform: translateY(-3px);
}
.ab-surface__icon {
  width: 48px; height: 48px;
  background: var(--blue-l, #e8f2fb);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-surface__icon svg {
  width: 24px; height: 24px;
  color: var(--blue, #015ea0);
}
.ab-surface span {
  font-size: .78rem;
  font-weight: 600;
  color: #1a2744;
  line-height: 1.35;
}

/* ── VISIT / LOCATIONS ── */
.ab-visit { background: #fff; }
.ab-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}
.ab-location-card {
  background: #f7faff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.ab-location-card:hover {
  box-shadow: 0 16px 48px rgba(1,94,160,.13);
  transform: translateY(-3px);
}
.ab-location-card__accent {
  height: 5px;
  background: linear-gradient(90deg, var(--blue, #015ea0), #39adff);
}
.ab-location-card__accent--gold {
  background: linear-gradient(90deg, #b8860b, #f0c040);
}
.ab-location-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem 1rem;
}
.ab-location-card__pin {
  width: 46px; height: 46px;
  background: var(--blue-l, #e8f2fb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ab-location-card__pin svg {
  width: 22px; height: 22px;
  color: var(--blue, #015ea0);
}
.ab-location-card__pin--gold { background: #fef9e7; }
.ab-location-card__pin--gold svg { color: #b8860b; }
.ab-location-card__head h3 {
  font-family: var(--font-serif, 'Bebas Neue');
  font-size: 1.6rem;
  color: var(--dark, #0d1b2a);
  letter-spacing: .03em;
  margin: 0 0 .1rem;
}
.ab-location-card__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue, #015ea0);
}
.ab-location-card__body {
  padding: .4rem 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.ab-info-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.ab-info-row svg {
  width: 17px; height: 17px;
  flex-shrink: 0;
  color: var(--blue, #015ea0);
  margin-top: .15rem;
}
.ab-info-row p, .ab-info-row div {
  font-size: .87rem;
  color: #4a5568;
  line-height: 1.55;
  margin: 0;
}
.ab-info-row strong {
  display: block;
  font-size: .87rem;
  color: #1a2744;
  margin-bottom: .1rem;
}
.ab-link { color: var(--blue, #015ea0); font-size: .87rem; text-decoration: none; font-weight: 500; }
.ab-link:hover { text-decoration: underline; }
.ab-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: 0 1.6rem 1.6rem;
  padding: .8rem;
  background: var(--blue, #015ea0);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  transition: background .2s;
}
.ab-directions-btn svg { width: 16px; height: 16px; }
.ab-directions-btn:hover { background: var(--blue-d, #014a80); }
.ab-directions-btn--gold { background: #b8860b; }
.ab-directions-btn--gold:hover { background: #9a7209; }

/* ── CTA BAND ── */
.ab-cta-band {
  background: linear-gradient(108deg, #012d50 0%, #015ea0 60%, #014a80 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.ab-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(57,173,255,.18) 0%, transparent 60%);
}
.ab-cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.ab-cta-band__text { flex: 1; min-width: 260px; }
.ab-cta-band__text h2 {
  font-family: var(--font-serif, 'Bebas Neue');
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #fff;
  letter-spacing: .03em;
  margin: 0 0 .6rem;
}
.ab-cta-band__text p {
  color: rgba(255,255,255,.72);
  font-size: .95rem;
  line-height: 1.65;
  margin: 0;
}
.ab-cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .ab-products__grid { grid-template-columns: repeat(3, 1fr); }
  .ab-surfaces { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .ab-intro__layout,
  .ab-expertise__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .ab-expertise__image { order: -1; }
  .ab-intro__img-wrap img,
  .ab-expertise__img-wrap img { height: 280px; }
  .ab-locations { grid-template-columns: 1fr; }
  .ab-stat { padding: .5rem 1.5rem; }
}
@media (max-width: 700px) {
  .ab-section { padding: 3.5rem 0; }
  .ab-products__grid { grid-template-columns: repeat(2, 1fr); }
  .ab-surfaces { grid-template-columns: repeat(2, 1fr); }
  .ab-cta-band__inner { flex-direction: column; text-align: center; }
  .ab-cta-band__actions { justify-content: center; }
  .ab-stats__inner { gap: 0; }
  .ab-stat { padding: .4rem 1rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .ab-stat:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .ab-products__grid { grid-template-columns: 1fr 1fr; }
  .ab-surfaces { grid-template-columns: 1fr 1fr; }
}
