

/* ─── TOKENS ─── */
:root {
  --blue:       #3a5fb0;
  --blue-dk:    #2e4e9a;
  --blue-lt:    #edf1fb;
  --blue-mid:   #c5d0ee;
  --blue-glow:  rgba(58, 95, 176, 0.12);
  --ink:        #1a1f2e;
  --ink-mid:    #3d4660;
  --ink-soft:   #8390a8;
  --surface:    #f6f8fd;
  --white:      #ffffff;
  --border:     #e4e9f4;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --r:          12px;
  --r-sm:       8px;
  --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md:  0 8px 28px rgba(0, 0, 0, 0.09);
  --shadow-lg:  0 20px 56px rgba(58, 95, 176, 0.14);
}

/* ─── RESET ─── */
.about-page *,
.about-page *::before,
.about-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── SHARED UTILITIES ─── */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}
.center-eyebrow {
  justify-content: center;
}
.center-eyebrow::before {
  display: none;
}
.vision-eyebrow {
  color: var(--blue-mid);
}
.vision-eyebrow::before {
  background: var(--blue-mid);
}

h2.sec {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
h2.sec em {
  font-style: italic;
  color: var(--blue);
}

.sub {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 520px;
}

.lead {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 14px;
}

.body-txt {
  font-family: var(--ff-body);
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 14px;
}

.center-header {
  text-align: center;
  margin-bottom: 48px;
}
.center-header .sub {
  margin: 10px auto 0;
}


/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  margin-top: 155px;
  position: relative;
  background: var(--blue);
  overflow: hidden;
  padding: 88px 32px 80px;
  display: flex;
  align-items: center;
  min-height: 420px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.hero-deco::after {
  content: '';
  position: absolute;
  inset: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 5px 14px 5px 6px;
  border-radius: 20px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: fadeUp 0.5s ease both;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #a5c0ff;
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue-mid);
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: 15.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 400px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  animation: fadeUp 0.6s 0.28s ease both;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r);
  padding: 22px 20px;
  backdrop-filter: blur(6px);
}

.hero-stat-n {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-l {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}


/* ══════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════ */
.about {
  padding: 80px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.about-chip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-chip-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.about-chip-num {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.about-chip-txt {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.3;
  letter-spacing: 0.03em;
  max-width: 80px;
}

.about-corner {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 88px;
  height: 88px;
  border: 2px solid var(--blue-lt);
  border-radius: var(--r);
  z-index: -1;
}

.about-quote {
  margin-top: 20px;
  border-left: 3px solid var(--blue);
  background: var(--blue-lt);
  padding: 16px 20px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--ff-body);
  font-size: 14px;
  font-style: italic;
  color: var(--blue-dk);
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════
   HOW WE WORK
══════════════════════════════════════════════════ */
.how {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid), var(--blue));
  opacity: 0.3;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.step:hover .step-num {
  background: var(--blue);
  color: #fff;
}

.step h4 {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.step p {
  font-family: var(--ff-body);
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.75;
}


/* ══════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════ */
.services {
  padding: 80px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-lt) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.svc-card:hover::before {
  opacity: 1;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}
.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--blue-glow);
  border-color: var(--blue-mid);
}

.svc-icon {
  width: 46px;
  height: 46px;
  background: var(--blue-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  transition: background 0.3s;
}
.svc-card:hover .svc-icon {
  background: var(--blue);
}

.svc-card h4 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transition: color 0.25s;
}
.svc-card:hover h4 {
  color: var(--blue);
}

.svc-card p {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════ */
.why {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.why-img {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 16px 48px var(--blue-glow);
  position: relative;
}
.why-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.why-img-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--blue);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

.why-list {
  display: flex;
  flex-direction: column;
}

.why-item {
  display: flex;
  gap: 18px;
  padding: 22px 20px;
  border-radius: var(--r-sm);
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: background 0.25s;
}
.why-item:last-child {
  border-bottom: none;
}
.why-item:hover {
  background: var(--blue-lt);
}

.why-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-lt);
  border-radius: 9px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.25s;
}
.why-item:hover .why-icon {
  background: var(--blue);
}

.why-item h4 {
  font-family: var(--ff-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.why-item p {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════
   VISION STRIP
══════════════════════════════════════════════════ */
.vision {
  padding: 64px 0;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.vision-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.vision h2 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.vision p {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  max-width: 560px;
}

.vision-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
  color: var(--blue);
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--r-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  color: var(--blue);
  text-decoration: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: #fff;
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}


/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
.faq {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.faq-tag {
  display: inline-block;
  background: var(--blue-lt);
  color: var(--blue);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 24px;
}

.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.22s;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item.open {
  background: var(--blue-lt);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.22s;
}
.faq-q:hover {
  color: var(--blue);
}
.faq-item.open .faq-q {
  color: var(--blue);
}

.faq-ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-lt);
  border: 1.5px solid var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
  transition: background 0.25s, transform 0.3s;
}
.faq-item.open .faq-ico {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.34s ease, padding 0.28s ease;
}
.faq-item.open .faq-a {
  max-height: 180px;
  padding: 0 24px 20px;
}

.faq-a p {
  font-family: var(--ff-body);
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.8;
  border-left: 2px solid var(--blue-mid);
  padding-left: 14px;
}


/* ══════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .why-grid,
  .faq-wrap,
  .vision-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .how-steps::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 64px 24px 60px;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 0;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vision-inner {
    grid-template-columns: 1fr;
  }

  .vision-btns {
    flex-direction: row;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}