/* =============================================
   BEYOND BLUPRINT — Main Stylesheet
   style.css
   ============================================= */

/* ── CSS VARIABLES ── */
:root {
  --navy:   #0B1F3A;
  --navy2:  #0F2647;
  --blue:   #1A4B8C;
  --blue2:  #2563C4;
  --gold:   #C9A84C;
  --gold2:  #F0C96A;
  --light:  #F4F7FC;
  --white:  #FFFFFF;
  --text:   #1A1A2E;
  --muted:  #5A6A80;
  --border: rgba(26, 75, 140, 0.15);
  --shadow: 0 20px 60px rgba(11, 31, 58, 0.10);
  --radius: 10px;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9999; transition: transform .1s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid var(--blue2);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9998; transition: all .15s ease; opacity: .7;
}

/* ── TYPOGRAPHY ── */
.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue2); margin-bottom: 16px;
}
.sec-label::before { content:''; width: 24px; height: 2px; background: var(--blue2); }
.sec-label.light { color: var(--gold2); }
.sec-label.light::before { background: var(--gold2); }

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700; line-height: 1.1;
  color: var(--navy); margin-bottom: 20px;
}
.sec-title em { font-style: normal; color: var(--navy); }
.sec-title.light { color: #fff; }
.sec-title.light em { color: var(--white); }

.sec-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 580px;
}
.sec-text.light { color: rgba(255,255,255,.65); }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn-blue {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue2); color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 6px;
  border: none; cursor: pointer; transition: all .3s;
}
.btn-blue:hover {
  background: var(--gold); color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,99,196,.3);
}

.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--navy2); background: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 15px 32px; border: 2px solid var(--navy2);
  border-radius: 6px; cursor: pointer; transition: all .3s;
}
.btn-outline-navy:hover {
  background: var(--navy2); color: #fff;
  transform: translateY(-1px);
}

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-size: 13px; font-weight: 600;
  letter-spacing: .08em;
  padding: 15px 32px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 6px; transition: all .3s;
}
.btn-outline-white:hover {
  border-color: #fff; background: rgba(255,255,255,.08);
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 80px; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all .3s ease;
}
nav.scrolled { box-shadow: 0 2px 30px rgba(11,31,58,.1); }

.nav-logo img {height: 55px;object-fit: contain;cursor: pointer;}

.nav-links {
  display: flex; gap: 4px;
}
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 6px;
  transition: all .25s;
  cursor: pointer;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue2); background: rgba(37,99,196,.07); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.nav-phone i { color: var(--blue2); }

.nav-cta {
  background: var(--blue2);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 11px 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .3s;
}
.nav-cta:hover {
  background: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37,99,196,.3);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: .3s;
}

/* Mobile Nav */
.mob-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(11,31,58,.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-size: 22px; font-weight: 600; color: #fff;
  padding: 16px 40px; letter-spacing: .04em; cursor: pointer; transition: color .3s;
}
.mob-nav a:hover { color: var(--gold2); }
.mob-nav .mob-close {
  position: absolute; top: 30px; right: 30px;
  font-size: 28px; color: rgba(255,255,255,.5); cursor: pointer;
  background: none; border: none; transition: color .3s;
}
.mob-nav .mob-close:hover { color: #fff; }
.mob-nav .mob-phone {
  color: var(--gold2) !important; margin-top: 10px; font-size: 18px;
}

/* ── SECTION BASE ── */
section { padding: 100px 60px; }
.section-dark { background: var(--navy); }
.section-light { background: var(--light); }
.section-white { background: var(--white); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: .4; }
  50%       { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HERO ── */
.hero-section {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 40%, #0D3060 100%);
  padding: 0 60px;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .18;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,31,58,.95) 50%, rgba(11,31,58,.5));
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; padding: 120px 0 80px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold2); margin-bottom: 28px;
  opacity: 0; animation: fadeUp .8s ease .2s forwards;
}
.hero-tag::before { content:''; width: 28px; height: 1.5px; background: var(--gold2); }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp .9s ease .4s forwards;
}
.hero-h1 em { font-style: normal; color: var(--white); }
.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,.72); max-width: 540px; margin-bottom: 48px;
  opacity: 0; animation: fadeUp .9s ease .6s forwards;
}
.hero-btns {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s ease .8s forwards;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 60px;
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  opacity: 0; animation: fadeUp .8s ease 1.2s forwards;
}
.scroll-bar {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2s ease-in-out infinite;
}

/* ── POSITIONING SECTION ── */
.pos-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.pos-img-wrap {
  position: relative;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(11,31,58,.15);
}
.pos-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.pos-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--blue2); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 18px 24px; border-radius: 8px;
  box-shadow: 0 10px 30px rgba(37,99,196,.4);
}
.why-list { margin-top: 36px; }
.why-list li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; line-height: 1.65; color: var(--muted);
  transition: color .3s;
}
.why-list li:hover { color: var(--text); }
.why-list li i { color: var(--blue2); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.why-list li strong { display: block; font-weight: 600; color: var(--navy); margin-bottom: 3px; }

/* ── CAPABILITIES ── */
.cap-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 60px; gap: 40px;
}
.cap-header-right { font-size: 15px; color: var(--muted); max-width: 340px; line-height: 1.7; text-align: right; }
.cap-img { border-radius: 12px; overflow: hidden; height: 400px; margin-bottom: 60px; box-shadow: var(--shadow); }
.cap-img img { width: 100%; height: 100%; object-fit: cover; }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.cap-card {
  padding: 40px 36px; background: var(--light);
  border: 1px solid transparent;
  transition: all .35s ease; position: relative; overflow: hidden;
}
.cap-card::after {
  content:''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--blue2);
  transition: width .4s ease;
}
.cap-card:hover { border-color: var(--border); background: #fff; box-shadow: 0 10px 40px rgba(11,31,58,.06); }
.cap-card:hover::after { width: 100%; }
.cap-icon {
  width: 50px; height: 50px; border-radius: 10px;
  background: rgba(37,99,196,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--blue2); margin-bottom: 20px;
  transition: all .3s;
}
.cap-card:hover .cap-icon { background: var(--blue2); color: #fff; }
.cap-card h3 {font-size: 21px;font-weight: 700;color: var(--navy);margin-bottom: 10px;line-height: 1.3;}
.cap-card p {font-size: 16px;line-height: 1.75;color: var(--muted);}

/* ── EXECUTION MODEL ── */
.model-section {
  background: var(--navy); position: relative;
  overflow: hidden; padding: 100px 60px;
}
.model-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .08;
}
.model-overlay { position: absolute; inset: 0; background: rgba(11,31,58,.92); }
.model-inner { position: relative; z-index: 2; }
.model-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 60px; }
.model-step {
  padding: 44px 32px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  transition: all .35s; position: relative;
}
.model-step:hover { background: rgba(255,255,255,.08); border-color: rgba(201,168,76,.3); }
.step-num {
  font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 700;
  color: rgba(201,168,76,.12); position: absolute; top: 16px; right: 20px; line-height: 1;
}
.step-icon { font-size: 26px; color: var(--gold2); margin-bottom: 20px; }
.step-title { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px; font-family: 'Playfair Display', serif; }
.step-text {font-size: 16px;line-height: 1.75;color: rgba(255,255,255,.55);}

/* ── CLOSING BANNER ── */
.closing-banner {
  position: relative; overflow: hidden;
  padding: 100px 60px; text-align: center; background: var(--navy);
}
.closing-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .15;
}
.closing-overlay { position: absolute; inset: 0; background: rgba(11,31,58,.85); }
.closing-content { position: relative; z-index: 2; }
.closing-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 700; color: #fff; margin-bottom: 16px;
}
.closing-content h2 em { font-style: normal; color: var(--white); }
.closing-tag { font-size: 18px; color: rgba(255,255,255,.6); margin-bottom: 40px; letter-spacing: .05em; }

/* ── ABOUT ── */
.about-hero {
  background: var(--navy); padding: 140px 60px 80px;
  position: relative; overflow: hidden;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .12;
}
.about-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,31,58,.97) 60%, rgba(11,31,58,.7));
}
.about-hero-content { position: relative; z-index: 2; max-width: 700px; }

.about-main { padding: 100px 60px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-img { border-radius: 12px; overflow: hidden; height: 560px; box-shadow: 0 30px 80px rgba(11,31,58,.12); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content .sec-text { margin-bottom: 24px; }
.about-pillars { margin-top: 40px; }
.pillar { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.pillar i { color: var(--blue2); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.pillar strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 5px; font-size: 15px; }
.pillar span { font-size: 14px; color: var(--muted); line-height: 1.65; }

.about-diff { background: var(--light); padding: 100px 60px; }
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 60px; }
.diff-card {
  background: #fff; padding: 40px;
  border: 1px solid var(--border); transition: all .3s;
}
.diff-card:hover { box-shadow: 0 10px 40px rgba(11,31,58,.07); transform: translateY(-4px); }
.diff-card i { font-size: 26px; color: var(--blue2); margin-bottom: 18px; display: block; }
.diff-card h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.diff-card p { font-size: 14px; line-height: 1.75; color: var(--muted); }

/* ── SERVICES ── */
.services-hero {
  background: var(--navy); padding: 140px 60px 80px;
  position: relative; overflow: hidden;
}
.services-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .1;
}
.services-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,.97), rgba(15,38,71,.85));
}
.services-hero-content { position: relative; z-index: 2; max-width: 650px; }

.services-list { padding: 80px 60px; background: #fff; }
.svc-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border: 1px solid var(--border);
  margin-bottom: 2px; overflow: hidden; transition: box-shadow .3s;
}
.svc-item:hover { box-shadow: 0 10px 40px rgba(11,31,58,.08); }
.svc-item:nth-child(even) { direction: rtl; }
.svc-item:nth-child(even) > * { direction: ltr; }
.svc-img { height: 380px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc-item:hover .svc-img img { transform: scale(1.04); }
.svc-content {
  padding: 60px; display: flex; flex-direction: column;
  justify-content: center; background: var(--light);
}
.svc-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: rgba(37,99,196,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--blue2); margin-bottom: 22px;
}
.svc-content h3 {
  font-size: 24px; font-weight: 700; color: var(--navy);
  margin-bottom: 14px; font-family: 'Playfair Display', serif;
}
.svc-content p { font-size: 15px; line-height: 1.8; color: var(--muted); }

/* ── FAQ ── */
.faq-hero {
  background: var(--navy); padding: 140px 60px 80px;
  position: relative; overflow: hidden;
}
.faq-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .07;
}
.faq-hero-ov { position: absolute; inset: 0; background: rgba(11,31,58,.93); }
.faq-hero-content { position: relative; z-index: 2; max-width: 600px; }

.faq-main { padding: 80px 60px; background: #fff; }
.faq-img {
  border-radius: 12px; overflow: hidden; height: 420px;
  margin-bottom: 60px; box-shadow: var(--shadow);
  max-width: 860px; margin-left: auto; margin-right: auto;
}
.faq-img img { width: 100%; height: 100%; object-fit: cover; }

.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 12px; overflow: hidden; transition: box-shadow .3s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(11,31,58,.07); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 32px;
  cursor: pointer;
  background: #2563c4;
  transition: background .2s;
}
.faq-q:hover {background: #0b1f3a;}
.faq-q-text {font-size: 16px;font-weight: 600;color: #ffffff;}
.faq-q i { color: var(--blue2); font-size: 14px; transition: transform .3s; flex-shrink: 0; margin-left: 20px; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; background: var(--light); transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 24px 32px 28px; font-size: 15px; line-height: 1.8; color: var(--muted); }

/* ── CONTACT ── */
.contact-hero {
  background: var(--navy); padding: 140px 60px 80px;
  position: relative; overflow: hidden;
}
.contact-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .12;
}
.contact-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,.97), rgba(15,38,71,.88));
}
.contact-hero-content { position: relative; z-index: 2; max-width: 600px; }

.contact-main { padding: 80px 60px; background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }

.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: #2563c4;
  padding: 20px 15px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all .3s;
}
.info-card:hover { box-shadow: 0 8px 30px rgba(11,31,58,.08); transform: translateY(-2px); }
.info-icon {
  width: 20px;
  height: 46px;
  border-radius: 10px;
  /* background: rgb(11 31 58); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  flex-shrink: 0;
}
.info-card strong {display: block;font-weight: 700;font-size: 22px;color: #ffffff;margin-bottom: 4px;}
.info-card span {font-size: 16px;color: #ffffff;}

.contact-form-wrap {
  background: #fff; padding: 48px; border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(11,31,58,.06);
}
.contact-form-wrap h3 {
  font-size: 24px; font-weight: 700; color: var(--navy);
  margin-bottom: 8px; font-family: 'Playfair Display', serif;
}
.contact-form-wrap > p {font-size: 16px;color: var(--muted);margin-bottom: 32px;}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: #fff;
  border: 1.5px solid #D8E2F0; color: var(--text);
  font-family: 'Outfit', sans-serif; font-size: 14px;
  padding: 14px 18px; border-radius: 8px;
  outline: none; transition: border-color .3s; appearance: none;
}
.form-group select { background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6A80' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 16px center; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue2); box-shadow: 0 0 0 3px rgba(37,99,196,.1); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A0AFBE; }

/* ── FOOTER ── */
.site-footer {background: #f4f7fc;padding: 70px 60px 30px;}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; max-width: 1200px; margin: 0 auto 50px;
}
.footer-logo img {height: 88px;margin-bottom: 18px;}
.footer-brand p {font-size: 16px;line-height: 1.75;color: rgb(0 0 0 / 50%);max-width: 280px;}
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 14px; transition: all .3s;
}
.footer-socials a:hover { border-color: var(--gold2); color: var(--gold2); }
.footer-col h4 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {font-size: 16px;color: rgb(0 0 0 / 50%);transition: color .3s;cursor: pointer;}
.footer-col ul a:hover { color: #fff; }
.footer-col ul a i { margin-right: 6px; color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgb(37 99 196);
  padding-top: 28px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {font-size: 16px;color: rgb(0 0 0);}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 30px; }
  nav .nav-links, nav .nav-right { display: none; }
  .hamburger { display: flex; }
  section,
  .hero-section,
  .about-hero, .about-main, .about-diff,
  .services-hero, .services-list,
  .faq-hero, .faq-main,
  .contact-hero, .contact-main,
  .closing-banner,
  .model-section { padding-left: 30px; padding-right: 30px; }
  .pos-grid, .about-grid, .contact-grid, .diff-grid { grid-template-columns: 1fr; gap: 50px; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .model-steps { grid-template-columns: 1fr 1fr; }
  .svc-item { grid-template-columns: 1fr; }
  .svc-item:nth-child(even) { direction: ltr; }
  .svc-img { height: 240px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cap-header { flex-direction: column; align-items: flex-start; }
  .cap-header-right { text-align: left; }
}

@media (max-width: 640px) {
  .cap-grid, .model-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 38px; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
}

.about-hero {
      background: var(--navy);
      padding: 140px 60px 90px;
      position: relative;
      overflow: hidden;
      min-height: 520px;
      display: flex;
      align-items: center;
    }
    .about-hero-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: .13;
    }
    .about-hero-ov {
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(11,31,58,.97) 55%, rgba(11,31,58,.6));
    }
    .about-hero-content {
      position: relative; z-index: 2; max-width: 720px;
    }
    .about-hero-content p {
      font-size: 17px; line-height: 1.85;
      color: rgba(255,255,255,.68);
      margin-top: 22px; max-width: 640px;
    }

    /* ─── SECTION 2: WHO WE ARE ─── */
    .about-who {
      padding: 100px 60px;
      background: #fff;
    }
    .about-who-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
      max-width: 1200px; margin: 0 auto;
    }
    .about-who-img {
      border-radius: 14px;
      overflow: hidden;
      height: 400px;
      box-shadow: 0 30px 80px rgba(11,31,58,.12);
      position: relative;
    }
    .about-who-img img { width: 100%; height: 100%; object-fit: cover; }
    .about-who-badge {
      position: absolute; bottom: 28px; left: 28px;
      background: var(--blue2); color: #fff;
      padding: 16px 22px; border-radius: 10px;
      font-size: 12px; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      box-shadow: 0 10px 30px rgba(37,99,196,.45);
    }
    .about-who-badge span {
      display: block; font-size: 30px;
      font-family: 'Playfair Display', serif;
      color: var(--gold2); line-height: 1; margin-bottom: 4px;
    }
    .about-who-text .sec-text { margin-bottom: 18px; }
    .about-pillars { margin-top: 36px; }
    .pillar {
      display: flex; gap: 18px;
      padding: 20px 0; border-bottom: 1px solid var(--border);
    }
    .pillar i { color: var(--blue2); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
    .pillar strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 5px; font-size: 15px; }
    .pillar span { font-size: 14px; color: var(--muted); line-height: 1.65; }

    /* ─── SECTION 3: WHY WE EXIST (dark) ─── */
    .about-why {
      padding: 100px 60px;
      background: var(--navy);
      position: relative; overflow: hidden;
    }
    .about-why::before {
      content: 'WHY';
      position: absolute; right: -30px; top: 50%;
      transform: translateY(-50%);
      font-family: 'Playfair Display', serif;
      font-size: 240px; font-weight: 700;
      color: rgba(255,255,255,.025);
      pointer-events: none; line-height: 1;
    }
    .about-why-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start;
      position: relative; z-index: 1;
    }
    .about-why-left .sec-text {
      color: rgba(255,255,255,.62);
      max-width: 100%; margin-bottom: 20px;
    }
    .purpose-box {
      margin-top: 36px;
      padding: 28px 32px;
      border-left: 4px solid var(--gold2);
      background: rgba(201,168,76,.06);
      border-radius: 0 10px 10px 0;
    }
    .purpose-box label {
      display: block; font-size: 11px; font-weight: 700;
      letter-spacing: .2em; text-transform: uppercase;
      color: var(--gold2); margin-bottom: 10px;
    }
    .purpose-box p {
      font-size: 17px; font-weight: 500;
      color: rgba(255,255,255,.88);
      line-height: 1.7; font-style: italic;
    }

    /* Vision cards on right */
    .vision-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 12px; padding: 36px;
      margin-bottom: 16px; transition: all .3s;
    }
    .vision-card:last-child { margin-bottom: 0; }
    .vision-card:hover {
      background: rgba(255,255,255,.08);
      border-color: rgba(201,168,76,.25);
      transform: translateY(-3px);
    }
    .vision-icon {
      width: 46px; height: 46px; border-radius: 10px;
      background: rgba(201,168,76,.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; color: var(--gold2); margin-bottom: 18px;
    }
    .vision-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 700;
      color: #fff; margin-bottom: 12px;
    }
    .vision-card p {
      font-size: 14px; line-height: 1.8;
      color: rgba(255,255,255,.55);
    }

    /* ─── SECTION 4: WHAT MAKES US DIFFERENT ─── */
    .about-different {
      padding: 100px 60px;
      background: var(--light);
    }
    .about-diff-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: end;
      max-width: 1200px; margin: 0 auto 60px;
    }
    .about-diff-header .sec-text { max-width: 100%; }

    /* Approach integrates panel */
    .approach-panel {
      max-width: 1200px; margin: 0 auto 48px;
      background: var(--navy);
      border-radius: 14px; overflow: hidden;
      display: grid; grid-template-columns: 1fr 1fr;
    }
    .approach-panel-left {
      padding: 52px 48px;
    }
    .approach-panel-left h3 {
      font-family: 'Playfair Display', serif;
      font-size: 26px; font-weight: 700;
      color: #fff; margin-bottom: 16px; line-height: 1.2;
    }
    .approach-panel-left h3 em { font-style: normal; color: var(--white); }
    .approach-panel-left p {
      font-size: 15px; line-height: 1.8;
      color: rgba(255,255,255,.55);
    }
    .approach-panel-right {
      padding: 52px 48px;
      background: rgba(255,255,255,.04);
      border-left: 1px solid rgba(255,255,255,.08);
      display: flex; align-items: center;
    }
    .approach-list {
      list-style: none;
      width: 100%;
      display: flex; flex-direction: column; gap: 12px;
    }
    .approach-list li {
      display: flex; align-items: center; gap: 14px;
      font-size: 15px; font-weight: 500;
      color: rgba(255,255,255,.85);
      padding: 14px 18px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 8px;
      transition: all .25s;
    }
    .approach-list li:hover {
      background: rgba(201,168,76,.08);
      border-color: rgba(201,168,76,.2);
      transform: translateX(4px);
    }
    .approach-list li i {
      color: var(--gold2); font-size: 15px;
      width: 20px; flex-shrink: 0;
    }

    /* 4 diff cards */
    .diff-cards-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 16px; max-width: 1200px; margin: 0 auto;
    }
    .diff-card-new {
      background: #fff; border: 1px solid var(--border);
      border-radius: 12px; padding: 32px 26px;
      transition: all .3s; position: relative; overflow: hidden;
    }
    .diff-card-new::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 3px; background: var(--blue2);
      transition: width .4s;
    }
    .diff-card-new:hover { box-shadow: 0 12px 40px rgba(11,31,58,.09); transform: translateY(-5px); }
    .diff-card-new:hover::after { width: 100%; }
    .diff-card-new .dc-icon {
      width: 48px; height: 48px; border-radius: 10px;
      background: rgba(37,99,196,.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; color: var(--blue2); margin-bottom: 18px;
      transition: all .3s;
    }
    .diff-card-new:hover .dc-icon { background: var(--blue2); color: #fff; }
    .diff-card-new h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
    .diff-card-new p { font-size: 13px; line-height: 1.75; color: var(--muted); }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .about-hero { padding: 120px 30px 70px; min-height: auto; }
      .about-who, .about-why, .about-different { padding: 70px 30px; }
      .about-who-grid, .about-why-inner, .about-diff-header { grid-template-columns: 1fr; gap: 40px; }
      .approach-panel { grid-template-columns: 1fr; }
      .approach-panel-left, .approach-panel-right { padding: 36px 30px; }
      .approach-panel-right { border-left: none; border-top: 1px solid rgba(255,255,255,.08); }
      .diff-cards-grid { grid-template-columns: 1fr 1fr; }
      .about-who-img { height: 360px; }
    }
    @media (max-width: 640px) {
      .diff-cards-grid { grid-template-columns: 1fr; }
    }