html {
  background: linear-gradient(to bottom, #1e3a8a 0%, #0d1f4e 100%);
  background-attachment: fixed;
  overscroll-behavior: none;
}

:root {
  --topbar-bg: #1e3a8a;
  --header-bg: #ffffff;
  --accent: #e53935;
  --accent-hover: #c62828;
  --blue-primary: #1d4ed8;
  --blue-dark: #1e3a8a;
  --blue-deeper: #0d1f4e;
  --header-text: #0a0a0a;
  --header-text-muted: rgba(10, 10, 10, 0.55);
  --container-max: 1280px;
  --topbar-height: 56px;
  --header-height: 120px;
}

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

/* ── iOS Safari: kill auto-styling on tel/email links ── */
a[href^="tel"],
a[href^="mailto"] {
  text-decoration: inherit;
  font-size: inherit;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.reveal--visible,
.reveal-right.reveal--visible {
  opacity: 1;
  transform: translateX(0);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overscroll-behavior: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--topbar-bg);
  height: var(--topbar-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1001;
  position: sticky;
  top: 0;
}


.topbar-inner {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  max-width: 100%;
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.topbar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  white-space: nowrap;
  pointer-events: none;
}

.topbar-center * {
  pointer-events: auto;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  flex-shrink: 0;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  flex-shrink: 0;
}

.topbar-inner > .topbar-item:first-child {
  flex-shrink: 0;
}

.topbar-item a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.topbar-item a:hover {
  color: #ffffff;
}

.topbar-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: var(--accent);
}

/* ── MOBILE STANDBY BAR (hidden on desktop) ── */
.mobile-standby {
  display: none;
}

/* ── MAIN HEADER ── */
.site-header {
  background: var(--header-bg);
  height: var(--header-height);
  z-index: 1000;
  position: sticky;
  top: var(--topbar-height);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  position: relative;
}

.site-logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--header-text);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  text-transform: uppercase;
  margin-left: -30px;
}

.site-logo-img {
  height: 110px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 140px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.main-nav a {
  display: block;
  padding: 6px 18px;
  color: #374151;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--blue-primary);
}

.main-nav a.active {
  color: var(--blue-primary);
  font-weight: 700;
}

.nav-contact-mobile,
.main-nav .nav-contact-mobile {
  display: none;
}

.nav-contact-btn {
  background: var(--accent);
  color: #ffffff;
  border-radius: 50px;
  padding: 9px 26px;
  font-weight: 600;
  font-size: 1rem;
  margin-left: auto;
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-contact-btn:hover {
  background: var(--accent-hover);
  color: #ffffff;
}

.btn-quote {
  flex-shrink: 0;
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid var(--accent);
  color: var(--header-text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.btn-quote:hover {
  background: var(--accent);
  color: #ffffff;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--header-text);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-height) - var(--header-height));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero/jasminum-officinale-CzwSsqq4V2c-unsplash.jpg') right center / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 28, 80, 0.93) 35%, rgba(10, 28, 80, 0.62) 65%, rgba(10, 28, 80, 0.12) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  color: #ffffff;
  padding: 20vh 5vw 64px;
  display: flex;
  align-items: stretch;
  width: 100%;
}

.hero-body {
  width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-estimate-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2.4rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cta--pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.2s;
}

.hero-cta--pill:hover {
  background: var(--accent-hover);
}

.hero-cta--pill svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  flex-shrink: 0;
}

.hero-cta--quote {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hero-cta--quote:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #0d1b2a;
}

.hero-cta--text {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.hero-cta--text:hover {
  gap: 12px;
}

.hero-bottom {
  margin-top: auto;
  padding-top: 2rem;
}

.hero-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.25rem;
}

.hero-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.social-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.social-icon:hover {
  border-color: #ffffff;
  color: #ffffff;
}

/* ── CLIENTS MARQUEE ── */
.clients-strip {
  padding: 48px 160px;
  background: #ffffff;
  overflow: hidden;
}

.clients-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #e53935;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.clients-label__line {
  display: block;
  flex: 0 0 48px;
  height: 1.5px;
  background: #e53935;
  opacity: 0.5;
  border-radius: 2px;
}

.clients-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  user-select: none;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.clients-track:hover {
  animation-play-state: running;
}

.client-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
}

.client-logo img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── SPLIT IMAGE CARD ── */
.split-card {
  width: 720px;
  height: 560px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: #ffffff;
}

.split-card__half {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.split-card__half--1 {
  clip-path: polygon(0 0, 59% 0, 35% 100%, 0 100%);
  background-color: #2a2a2a;
}

.split-card__half--2 {
  clip-path: polygon(65% 0, 100% 0, 100% 100%, 41% 100%);
  background-color: #444444;
}

/* ── SECTION 1 — ABOUT MINI ── */
.section-1 {
  display: flex;
  align-items: flex-start;
  padding: 80px 0 80px;
  background: #ffffff;
}

.about-mini {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.about-mini__left {
  flex: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 24px;
}

.section-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-mini__heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.about-mini__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555555;
  margin: 0;
}

.about-mini__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.2s;
}

.about-mini__link:hover {
  gap: 10px;
}

/* Image cards */
.about-mini__images {
  flex: 0 0 auto;
  position: relative;
  margin-right: -80px;
}

.about-stats-overlay {
  position: absolute;
  bottom: -24px;
  left: -56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  z-index: 10;
}

.stat-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 160px;
}

.stat-box__num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-box__label {
  font-size: 0.72rem;
  color: #777777;
  line-height: 1.35;
}

.about-img-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.about-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-card--1 {
  width: 68%;
  height: 240px;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 1;
  object-position: top center;
}

.about-img-card--2 {
  width: 68%;
  height: 240px;
  bottom: 0;
  right: 0;
  transform: rotate(2deg);
  z-index: 2;
  object-position: bottom center;
}

/* ── SERVICES SECTION ── */
.services-section {
  padding: 60px 0 0;
  background: #ffffff;
  overflow: hidden;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
  padding: 0 48px;
}

.services-header__left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.services-header__left .section-tag {
  color: var(--accent);
}

.services-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

/* ── SLIDER NAV BUTTONS ── */
.svc-slider-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.svc-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid #cccccc;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.svc-nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: #444444;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-nav-btn--fill {
  background: var(--accent);
  border-color: var(--accent);
}

.svc-nav-btn--fill svg {
  stroke: #ffffff;
}

.svc-nav-btn:hover:not(.svc-nav-btn--fill) {
  border-color: #888888;
}

.svc-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* ── SLIDER ── */
.svc-slider-outer {
  padding-left: 48px;
  padding-right: 48px;
  overflow: hidden;
  padding-bottom: 100px;
}

.svc-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.svc-slide {
  flex-shrink: 0;
  width: 390px;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.svc-slide__bg {
  position: absolute;
  inset: 0;
  background: #c8c8c8;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.svc-slide:hover .svc-slide__bg {
  transform: scale(1.04);
}

.svc-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.svc-slide__content {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  color: #ffffff;
}

.svc-slide__num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.svc-slide__title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

/* ── WHY CHOOSE US ── */
.why-choose-us {
  padding: 120px 0;
  background: #0a0a0a;
  color: #ffffff;
}

.why-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.why-left {
  flex: 1;
  max-width: 480px;
}

.why-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}

.why-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}

.why-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-box {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 32px;
  border-radius: 16px;
  transition: transform 0.3s, background 0.3s;
}

.feature-box:hover {
  background: #181818;
  transform: translateY(-5px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(229, 57, 53, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ── MOBILE ── */

/* ── WHY CHOOSE US ── */
.wcu-section {
  background: #eef4ff;
  padding: 90px 64px 100px 120px;
}

.wcu-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: flex-start;
  column-gap: 64px;
  margin-bottom: 48px;
}

.wcu-heading {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin: 0;
}

.wcu-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  column-gap: 64px;
  align-items: stretch;
}

.wcu-image {
  border-radius: 16px;
  overflow: hidden;
  height: 620px;
  margin-top: -160px;
}

.wcu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.wcu-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-content: start;
  padding-top: 8px;
}

.wcu-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 20px 22px;
}

.wcu-step-icon {
  width: 44px;
  height: 44px;
  background: rgba(29, 78, 216, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wcu-step-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wcu-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.3;
}

/* ── SERVICES PAGE ── */
.services-content {
  background: #ffffff;
  padding: 80px 64px;
}

.svc-row {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  align-items: stretch;
  padding-bottom: 48px;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 48px;
}

.svc-row--reverse {
  direction: rtl;
}

.svc-row--reverse>* {
  direction: ltr;
}

.svc-row__img {
  background: #d8d8d8;
  overflow: hidden;
  height: 380px;
}

.svc-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-row__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 40px 60px;
}

.svc-row__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

.svc-row__desc {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

.svc-row__tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-row__tags span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
}

.svc-row__tags span::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e53935' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

.svc-row__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0a0a0a;
  text-decoration: none;
  border: 1px solid #cccccc;
  border-radius: 6px;
  padding: 10px 20px;
  width: fit-content;
  transition: border-color 0.2s, color 0.2s;
}

.svc-row__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  height: 38vh;
  min-height: 260px;
  background: #111111 url('../images/hero/jasminum-officinale-CzwSsqq4V2c-unsplash.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 28, 80, 0.80) 0%, rgba(10, 28, 80, 0.55) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  width: 100%;
}

.page-hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

/* ── CTA STRIP ── */
.cta-strip {
  position: relative;
  background: #111111 url('../images/home/compagnons-r9PeXDCJyEw-unsplash.jpg') center top/cover no-repeat;
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 28, 80, 0.90) 0%, rgba(13, 31, 78, 0.85) 100%);
}

.cta-strip__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-strip__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.cta-strip__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0 0 40px;
}

.cta-strip__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-strip__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-strip__btn--fill {
  background: var(--accent);
  color: #ffffff;
  border: 2px solid var(--accent);
}

.cta-strip__btn--fill:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.cta-strip__btn--outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-strip__btn--outline:hover {
  border-color: #ffffff;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--blue-deeper);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 44px 48px 40px 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 20px;
  justify-content: flex-start;
}

.footer-brand {
  text-align: left;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1.2;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin: 0 0 32px;
  margin-left: -20px;
  max-width: 480px;
  text-align: left;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 24px;
}

.footer-links {
  margin: 0 auto;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact {
  margin-left: auto;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-contact-list svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #080e2a;
}

.footer-bottom__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-copy,
.footer-reg {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── ABOUT PAGE ── */

.ab-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.ab-section-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 12px 0 16px;
}

.ab-section-sub {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* 1. Overview */
.ab-overview {
  background: #fff;
  padding: 90px 64px;
}

.ab-overview__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ab-overview__text .section-tag {
  display: block;
  margin-bottom: 16px;
}

.ab-overview__heading {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 24px;
}

.ab-overview__p {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  margin: 0 0 14px;
}

.ab-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.ab-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 10px;
  border-right: 1px solid #e5e7eb;
}

.ab-stat:last-child {
  border-right: none;
}

.ab-stat strong {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1;
  margin-bottom: 6px;
}

.ab-stat span {
  font-size: 0.72rem;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ab-overview__img {
  border-radius: 16px;
  overflow: hidden;
  height: 520px;
}

.ab-overview__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* 2. Vision & Mission */
.ab-vm {
  background: #eef4ff;
  padding: 90px 64px;
}

.ab-vm__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ab-vm__card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #1e40af;
  position: relative;
}

.ab-vm__marker {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e53935;
}

.ab-vm__icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.ab-vm__icon svg {
  width: 24px;
  height: 24px;
  stroke: #1e40af;
}

.ab-vm__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0d1b2a;
  margin: 0 0 16px;
}

.ab-vm__text {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

/* 3. Credentials */
.ab-credentials {
  background: #fff;
  padding: 90px 64px;
}

.ab-credentials__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ab-cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ab-cred-card {
  background: #f0f6ff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ab-cred-icon {
  width: 40px;
  height: 40px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.ab-cred-icon svg {
  width: 20px;
  height: 20px;
  stroke: #1e40af;
}

.ab-cred-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ab-cred-value {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.35;
}

/* 4. What We Do */
.ab-wwd {
  background: #eef4ff;
  padding: 90px 64px;
}

.ab-wwd__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ab-wwd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ab-wwd-block {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ab-wwd-block:hover {
  border-color: #1e40af;
  box-shadow: 0 4px 24px rgba(30, 64, 175, 0.08);
}

.ab-wwd-icon {
  width: 52px;
  height: 52px;
  background: #eff6ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ab-wwd-icon svg {
  width: 26px;
  height: 26px;
  stroke: #1e40af;
}

.ab-wwd-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0 0 12px;
}

.ab-wwd-text {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* 5. Core Principles */
.ab-principles {
  background: #fff;
  padding: 90px 64px;
}

.ab-principles__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ab-principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.ab-principle-card {
  flex: 0 1 calc(25% - 16px);
  min-width: 180px;
  background: #f0f6ff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ab-principle-card:hover {
  border-color: #e53935;
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.08);
}

.ab-principle-icon {
  width: 44px;
  height: 44px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-principle-icon svg {
  width: 22px;
  height: 22px;
  stroke: #1e40af;
}

.ab-principle-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.3;
}

/* 6. Trust Section */
.ab-trust {
  background: #eef4ff;
  padding: 90px 64px;
}

.ab-trust__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ab-trust__panel {
  border-radius: 16px;
  overflow: hidden;
  height: 520px;
}

.ab-trust__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-trust__text .section-tag {
  display: block;
  margin-bottom: 16px;
}

.ab-trust__heading {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 20px;
}

.ab-trust__p {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.75;
  margin: 0 0 32px;
}

.ab-trust-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ab-trust-point {
  display: flex;
  align-items: center;
  font-size: 0.93rem;
  font-weight: 600;
  color: #0d1b2a;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 3px solid #1e40af;
  border-radius: 8px;
}

/* 7. Leadership */
.ab-leadership {
  background: var(--blue-deeper);
  padding: 90px 64px;
}

.ab-leadership__inner {
  max-width: 880px;
  margin: 0 auto;
}

.ab-leadership .section-tag {
  color: #e53935;
  display: block;
  margin-bottom: 16px;
}

.ab-leadership__heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 20px;
}

.ab-leadership__p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin: 0 0 40px;
}

.ab-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ab-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.ab-pillar svg {
  width: 18px;
  height: 18px;
  stroke: #60a5fa;
  flex-shrink: 0;
}

/* 8. About CTA */
.ab-cta {
  background: #1e40af;
  padding: 90px 64px;
  text-align: center;
}

.ab-cta__inner {
  max-width: 720px;
  margin: 0 auto;
}

.ab-cta__heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px;
}

.ab-cta__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0 0 36px;
}

.ab-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.ab-cta__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.ab-cta__btn--fill {
  background: #fff;
  color: #1e40af;
  border: 2px solid #fff;
}

.ab-cta__btn--fill:hover {
  background: transparent;
  color: #fff;
}

.ab-cta__btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.ab-cta__btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ── VMV 3-CARD SECTION ── */
.ab-vmv {
  background: #fff;
  padding: 90px 64px;
  border-top: 1px solid #eeeeee;
}

.ab-vmv__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ab-vmv__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.ab-vmv__heading {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px;
}

.ab-vmv__sub {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

.ab-vmv__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ab-vmv__card {
  background: #fff;
  border: 1.5px solid #d1d5db;
  border-radius: 24px;
  border-top-left-radius: 0;
  padding: 80px 36px 44px;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ab-vmv__card--wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.ab-vmv__principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 40px;
  margin-top: 8px;
}

.ab-vmv__principle strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 6px;
}

.ab-vmv__principle p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.ab-vmv__card::before {
  content: '';
  position: absolute;
  top: -1.5px;
  left: -1.5px;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 0 0 44px 0;
  box-shadow: 3px 3px 0 0 #d1d5db;
}

.ab-vmv__star {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 32px;
  height: 32px;
}

.ab-vmv__star::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background: #e53935;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.ab-vmv__title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 900;
  color: #0d1b2a;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 20px;
}

.ab-vmv__text {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
  max-width: 340px;
}

/* ── ABOUT STATS BAR ── */
.ab-statsbar {
  background: #fff;
  padding: 0 64px 56px;
}

.ab-statsbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border: 1.5px solid #d1d5db;
  border-radius: 14px;
  overflow: hidden;
}

.ab-statsbar__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 36px;
}

.ab-statsbar__item strong {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1;
  white-space: nowrap;
}

.ab-statsbar__item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.ab-statsbar__divider {
  width: 1px;
  height: 50px;
  background: #d1d5db;
  flex-shrink: 0;
}

/* ── BUILT FOR CRITICAL WORK ── */
.ab-critical {
  background: #fff;
  padding: 100px 64px;
  position: relative;
  overflow: hidden;
}

.ab-critical::before {
  content: none;
  pointer-events: none;
}

.ab-critical__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
}

.ab-critical__left .section-tag {
  display: block;
  margin-bottom: 18px;
}

.ab-critical__heading {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 24px;
}

.ab-critical__intro {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.ab-critical__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ab-critical__row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}

.ab-critical__row:first-child {
  padding-top: 0;
}

.ab-critical__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ab-critical__row::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 28px;
  bottom: 0;
  width: 3px;
  background: #1e40af;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s;
}

.ab-critical__row:first-child::before {
  top: 0;
}

.ab-critical__row:hover::before {
  opacity: 1;
}

.ab-critical__num {
  font-size: 0.72rem;
  font-weight: 800;
  color: #e53935;
  letter-spacing: 0.1em;
  padding-top: 4px;
  flex-shrink: 0;
  width: 24px;
}

.ab-critical__content {
  flex: 1;
}

.ab-critical__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0 0 8px;
}

.ab-critical__text {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */

.ct-section {
  background: #fff;
  padding: 80px 64px 100px;
}

.ct-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

/* Heading row */
.ct-heading-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.ct-main-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  color: #0d1b2a;
  letter-spacing: -0.03em;
  line-height: 1;
}

.ct-main-sub {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

/* Cards row */
.ct-cards {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: start;
}

.ct-card {
  background: #f0f6ff;
  border-radius: 20px;
  padding: 40px 36px;
}

.ct-card-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* Form */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ct-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-form__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0d1b2a;
  letter-spacing: 0.08em;
}

.ct-form__input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #0d1b2a;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  font-family: inherit;
}

.ct-form__input:focus {
  border-color: var(--blue-primary);
}

.ct-form__input::placeholder {
  color: #b0b0b0;
  font-size: 0.85rem;
}

.ct-form__textarea {
  resize: vertical;
  min-height: 130px;
}

.ct-form__btn {
  align-self: flex-start;
  background: #c62828;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.ct-form__btn:hover {
  background: #b71c1c;
}

/* Info card */
.ct-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.ct-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ct-info-item--full {
  margin-bottom: 36px;
}

.ct-info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-info-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #e53935;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ct-info-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.ct-info-val {
  font-size: 0.9rem;
  color: #374151;
  text-decoration: none;
  line-height: 1.5;
  display: block;
}

.ct-info-val:hover {
  color: #e53935;
}

/* Hours */
.ct-hours {
  border-top: 1px solid #e0e0e0;
  padding-top: 28px;
}

.ct-hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ct-hours-grid>div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-hours-day {
  font-size: 0.7rem;
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ct-hours-time {
  font-size: 0.88rem;
  color: #374151;
}

.ct-hours-closed {
  color: #e53935 !important;
  font-weight: 700;
}

/* Map */
.ct-map {
  width: 100%;
  line-height: 0;
}

.ct-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

/* Responsive */

/* ── CLIENTS LIST ── */
.cl-section {
  background: #ffffff;
  padding: 80px 64px 100px;
}

.cl-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.cl-header {
  max-width: 700px;
  margin-bottom: 56px;
}

.cl-heading {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 12px 0 16px;
}

.cl-sub {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
}

.cl-roster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  border-top: 1.5px solid #e5e7eb;
}

.cl-col {
  display: flex;
  flex-direction: column;
}

.cl-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  transition: padding-left 0.18s;
  cursor: default;
}

.cl-row:hover {
  padding-left: 8px;
}

.cl-row:hover .cl-num {
  color: var(--accent);
}

.cl-row:hover .cl-name {
  color: var(--blue-primary);
}

.cl-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: #9ca3af;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  min-width: 24px;
  transition: color 0.18s;
}

.cl-name {
  font-size: 0.925rem;
  font-weight: 600;
  color: #0d1b2a;
  line-height: 1.4;
  transition: color 0.18s;
}

/* ── GALLERY ── */
.gal-section {
  background: #fff;
  padding: 64px;
}

.gal-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.gal-item {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  background: #e5e7eb;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.gal-item {
  cursor: pointer;
}

.gal-item:hover img {
  transform: scale(1.05);
}

.lb-img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

/* ── LIGHTBOX ── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lb-overlay--open {
  display: flex;
}

.lb-img-wrap {
  position: relative;
  width: min(92vw, 1200px);
  height: min(88vh, 900px);
  overflow: hidden;
  cursor: grab;
}

.lb-img-wrap:active {
  cursor: grabbing;
}

.lb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: transform;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10000;
}

.lb-close:hover {
  opacity: 1;
}

.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}

.lb-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lb-arrow--prev {
  left: 20px;
}

.lb-arrow--next {
  right: 20px;
}

/* ══════════════════════════════
   CAREERS PAGE
══════════════════════════════ */

/* ── 1. Intro ── */
.cr-intro {
  background: #fff;
  padding: 80px 64px;
}

.cr-intro__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}

.cr-intro__heading {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 14px 0 20px;
}

.cr-intro__p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 36px;
}

.cr-intro__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cr-btn {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.cr-btn--fill {
  background: #1e40af;
  color: #fff;
}

.cr-btn--fill:hover {
  background: #1e3a8a;
}

.cr-btn--outline {
  background: transparent;
  color: #1e40af;
  border: 1.5px solid #1e40af;
}

.cr-btn--outline:hover {
  background: #eff6ff;
}

.cr-intro__visual {
  display: flex;
  justify-content: center;
}

.cr-intro__badge {
  border: 1.5px solid #d1d5db;
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  background: #f0f6ff;
  width: 100%;
}

.cr-intro__badge svg {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.cr-intro__badge span {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 6px;
}

.cr-intro__badge p {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}

/* ── 2. Why Work With Us ── */
.cr-why {
  background: #eef4ff;
  padding: 80px 64px;
}

.cr-why__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.cr-why__header {
  margin-bottom: 48px;
}

.cr-why__heading {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.03em;
  margin: 12px 0 0;
}

.cr-why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cr-why__card {
  position: relative;
  background: #fff;
  border: 1.5px solid #d1d5db;
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.cr-why__card:hover {
  transform: translateY(-4px);
  border-color: #1e40af;
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.08);
}

.cr-why__dot {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e53935;
}

.cr-why__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 10px;
  color: #1e40af;
  margin-bottom: 20px;
}

.cr-why__icon svg {
  width: 22px;
  height: 22px;
}

.cr-why__line {
  width: 36px;
  height: 2px;
  background: #1e40af;
  border-radius: 2px;
  margin-bottom: 14px;
}

.cr-why__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0 0 10px;
}

.cr-why__text {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* ── 3. Areas ── */
.cr-areas {
  background: #fff;
  padding: 80px 64px;
}

.cr-areas__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.cr-areas__header {
  margin-bottom: 40px;
}

.cr-areas__heading {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.03em;
  margin: 12px 0 12px;
}

.cr-areas__sub {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
}

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

.cr-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #1e40af;
  color: #1e40af;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  background: #fff;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}

.cr-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e53935;
  flex-shrink: 0;
}

.cr-tag:hover {
  background: #eff6ff;
}

/* ── 4. Form ── */
.cr-form-section {
  background: #eef4ff;
  padding: 80px 64px;
}

.cr-form-section__inner {
  max-width: 860px;
  margin: 0 auto;
}

.cr-form-section__header {
  margin-bottom: 44px;
}

.cr-form-section__heading {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.03em;
  margin: 12px 0 12px;
}

.cr-form-section__sub {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.75;
}

.cr-form {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 44px 48px;
}

.cr-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.cr-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.cr-form__group:not(.cr-form__row .cr-form__group) {
  margin-bottom: 20px;
}

.cr-form__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cr-form__label span {
  color: #e53935;
}

.cr-form__input {
  padding: 12px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #0d1b2a;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

.cr-form__input:focus {
  border-color: #1e40af;
}

.cr-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.cr-form__file {
  padding: 10px 16px;
  cursor: pointer;
  color: #6b7280;
  font-size: 0.85rem;
}

.cr-form__textarea {
  resize: vertical;
  min-height: 130px;
}

.cr-form__footer {
  margin-top: 28px;
}

.cr-form__btn {
  background: #1e40af;
  color: #fff;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.cr-form__btn:hover {
  background: #1e3a8a;
}

/* ── 5. CTA ── */
.cr-cta {
  position: relative;
  background: var(--blue-deeper);
  padding: 100px 64px;
  text-align: center;
  overflow: hidden;
}

.cr-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.cr-cta__content {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.cr-cta__heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 16px;
}

.cr-cta__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 36px;
}

.cr-cta__btn {
  display: inline-block;
  background: #e53935;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.cr-cta__btn:hover {
  background: #c62828;
}

/* ── Careers Responsive ── */

/* ══════════════════════════════
   CAREER APPLICATION FORM
══════════════════════════════ */
.ca-section {
  background: #eef4ff;
  padding: 80px 64px;
}

.ca-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

/* ── Left Info Panel ── */
.ca-info {
  position: sticky;
  top: 100px;
}

.ca-info__heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 16px;
}

.ca-info__text {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 28px;
}

.ca-info__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ca-info__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0d1b2a;
}

.ca-info__icon {
  width: 32px;
  height: 32px;
  background: #eff6ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e40af;
  flex-shrink: 0;
}

.ca-info__icon svg {
  width: 16px;
  height: 16px;
}

.ca-info__note {
  font-size: 0.8rem;
  color: #9ca3af;
  line-height: 1.65;
  border-left: 3px solid #e53935;
  padding-left: 12px;
  margin: 0;
}

/* ── Right Form Card ── */
.ca-card {
  position: relative;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 18px;
  padding: 48px 48px 52px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.ca-card__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 4px;
  background: #e53935;
  border-radius: 0 18px 0 4px;
}

.ca-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid #f3f4f6;
}

/* ── Form Blocks ── */
.ca-block {
  margin-bottom: 36px;
}

.ca-block__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ca-block__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #1e40af;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 8px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.ca-block__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0d1b2a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ca-block__divider {
  height: 1px;
  background: #f3f4f6;
  margin-bottom: 20px;
}

/* ── Form Fields ── */
.ca-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ca-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ca-form__group--full {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}

.ca-form__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ca-form__label em {
  color: #e53935;
  font-style: normal;
  margin-left: 2px;
}

.ca-form__input {
  padding: 11px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #0d1b2a;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

.ca-form__input:focus {
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.ca-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.ca-form__textarea {
  resize: vertical;
  min-height: 110px;
}

/* ── Chips ── */
.ca-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ca-chip {
  border: 1.5px solid #cbd5e1;
  background: #fff;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  font-family: inherit;
}

.ca-chip:hover {
  border-color: #1e40af;
  color: #1e40af;
}

.ca-chip--active {
  border-color: #1e40af;
  background: #1e40af;
  color: #fff;
}

/* ── Upload ── */
.ca-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  padding: 36px 24px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
  background: #f9fafb;
}

.ca-upload:hover {
  border-color: #1e40af;
  background: #eff6ff;
}

.ca-upload svg {
  width: 32px;
  height: 32px;
  color: #1e40af;
}

.ca-upload__text {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}

.ca-upload__hint {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* ── Consent ── */
.ca-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #4b5563;
  cursor: pointer;
  margin-top: 20px;
}

.ca-consent input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #1e40af;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Submit ── */
.ca-form__submit {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1.5px solid #f3f4f6;
}

.ca-submit {
  background: #1e40af;
  color: #fff;
  border: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 15px 48px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.ca-submit:hover {
  background: #1e3a8a;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
}

/* ── CA Responsive ── */

/* ══════════════════════════════════════
   MOBILE — 768px
══════════════════════════════════════ */

/* ══════════════════════════════════════
   SMALL MOBILE — 480px
══════════════════════════════════════ */

/* ══════════════════════════════════════
   ABOUT — CARD GRID SECTIONS
══════════════════════════════════════ */

.ab-cgs {
  padding: 90px 64px;
  border-top: 1px solid #eee;
}

.ab-cgs--alt {
  background: #f5f7f9;
}

.ab-cgs__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ab-cgs__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.ab-cgs__tag {
  display: block;
  margin-bottom: 12px;
}

.ab-cgs__heading {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px;
}

.ab-cgs__sub {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

.ab-cgs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ab-cgs__card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ab-cgs--alt .ab-cgs__card {
  background: #fff;
}

.ab-cgs__card:hover {
  border-color: #1e40af;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
}

.ab-cgs__num {
  font-size: 0.68rem;
  font-weight: 800;
  color: #e53935;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.ab-cgs__title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0 0 10px;
  line-height: 1.35;
}

.ab-cgs__text {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════
   ABOUT — CREDENTIALS / LOGOS STRIP
══════════════════════════════════════ */

.ab-creds {
  background: #f5f7f9;
  padding: 64px 64px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.ab-creds__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ab-creds__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 36px;
}

.ab-creds__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.ab-creds__logo {
  flex: 1 1 0;
  min-width: 100px;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  border-right: 1px solid #e0e0e0;
}

.ab-creds__logo:last-child {
  border-right: none;
}

.ab-creds__logo img {
  max-height: 64px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.25s, opacity 0.25s;
}

.ab-creds__logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ══════════════════════════════════════
   TOPBAR — 24HR STANDBY
══════════════════════════════════════ */

.topbar-standby {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 0 16px;
  height: 26px;
  white-space: nowrap;
  flex-shrink: 0;
}

.topbar-standby__label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.topbar-standby__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f87171;
  flex-shrink: 0;
  animation: standby-blink 1.2s step-start infinite;
}

.topbar-standby__sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.topbar-standby__nums {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-standby__num {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.2s;
  animation: standby-blink-num 1.2s step-start infinite;
}

.topbar-standby__num:nth-child(3) {
  animation-delay: 0.6s;
}

.topbar-standby__num:hover {
  color: #fca5a5;
  animation: none;
}

.topbar-standby__divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.25);
}

@keyframes standby-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes standby-blink-num {
  0%, 74%  { opacity: 1; }
  75%, 100% { opacity: 0.35; }
}

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-deeper);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 900;
  text-decoration: none;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

