:root {
  --dark: #071522;
  --dark2: #102b40;
  --gold: #f4b83f;
  --gold2: #ffe09a;
  --bg: #f5f8fb;
  --text: #102131;
  --muted: #687986;
  --border: #e0e8ee;
  --shadow: 0 15px 45px rgba(7, 21, 34, 0.09);
  --radius: 18px;
}

.hero {
  min-height: 590px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(3, 14, 24, 0.93),
      rgba(3, 14, 24, 0.58),
      rgba(3, 14, 24, 0.22)
    ),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=88")
      center/cover;
}

.hero:after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -220px;
  top: -200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 184, 63, 0.18),
    transparent 68%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 80px 0;
}

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(40px, 5.3vw, 72px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -3px;
  max-width: 720px;
  margin: 14px 0 22px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  color: #d6e0e6;
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.hero-outline:hover {
  background: #fff;
  color: var(--dark);
}

.stats-strip {
  margin-top: -58px;
  position: relative;
  z-index: 5;
}

.stats-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 24px;
}

.stat {
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border: 0;
}

.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
}

.stat span {
  font-size: 10px;
  color: var(--muted);
}

.section {
  padding: 85px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 45px;
}

.section-head .eyebrow {
  color: #d19a28;
}

.section-head h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 9px 0 13px;
}

.section-head p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.story-image {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(7, 21, 34, 0.92);
  color: #fff;
  border-radius: 12px;
  padding: 17px 19px;
}

.story-badge strong {
  display: block;
  color: var(--gold);
  font-size: 23px;
}

.story-badge small {
  font-size: 9px;
  color: #cbd5dc;
}

.story h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 10px 0 16px;
}

.story p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}

.story-check {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.story-check li {
  font-size: 11px;
  font-weight: 700;
  margin: 12px 0;
  padding-left: 28px;
  position: relative;
}

.story-check li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e9f8ee;
  color: #168044;
  text-align: center;
  line-height: 20px;
}

.dark-section {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.dark-section:before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  right: -180px;
  top: -150px;
  background: radial-gradient(
    circle,
    rgba(244, 184, 63, 0.12),
    transparent 68%
  );
}

.dark-section .section-head p {
  color: #aebbc4;
}

.values-card {
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 16px;
  transition: 0.3s;
}

.values-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(244, 184, 63, 0.35);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(244, 184, 63, 0.13);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 23px;
  margin-bottom: 20px;
}

.values-card h5 {
  font-size: 15px;
  font-weight: 800;
}

.values-card p {
  font-size: 10px;
  line-height: 1.8;
  color: #aebbc4;
  margin: 0;
}

.process-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(7, 21, 34, 0.04);
}

.process-number {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 20px;
}

.process-card h5 {
  font-size: 14px;
  font-weight: 800;
}

.process-card p {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.why-image {
  height: 430px;
  border-radius: 18px;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-list {
  display: grid;
  gap: 13px;
}

.why-item {
  display: flex;
  gap: 13px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 15px;
}

.why-item i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 9px;
  background: #fff5d9;
  color: #d99b20;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.why-item h6 {
  font-size: 11px;
  font-weight: 800;
  margin: 0 0 4px;
}

.why-item p {
  font-size: 9px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.team-card img {
  height: 270px;
  width: 100%;
  object-fit: cover;
}

.team-body {
  padding: 17px;
}

.team-body h5 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
}

.team-body span {
  font-size: 9px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial {
  background: linear-gradient(135deg, #0b2031, #153a54);
  color: #fff;
  border-radius: 22px;
  padding: 55px;
  position: relative;
  overflow: hidden;
}

.testimonial:after {
  content: "“";
  position: absolute;
  right: 25px;
  top: -35px;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.05);
  font-family: Georgia;
}

.quote {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 600;
  max-width: 800px;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}

.person img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.person small {
  display: block;
  color: #aebbc4;
  font-size: 9px;
  margin-top: 3px;
}

.stars {
  color: var(--gold);
  font-size: 12px;
}

.cta {
  padding: 70px 0;
  background: #edf3f7;
}

.cta-box {
  background: var(--dark);
  border-radius: 22px;
  padding: 55px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-box:after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -170px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 184, 63, 0.18),
    transparent 68%
  );
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
}

.cta-box p {
  color: #aebbc4;
  font-size: 11px;
  max-width: 580px;
}

footer {
  background: #071522;
  color: #aab7c0;
  padding: 48px 0 20px;
}

footer a {
  display: block;
  color: #aab7c0;
  font-size: 10px;
  margin-top: 9px;
}

footer a:hover {
  color: var(--gold);
}

footer h6 {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 991px) {
  .dn-nav .nav-link {
    padding: 10px 0 !important;
  }

  .hero {
    min-height: 560px;
  }

  .stats-strip {
    margin-top: -35px;
  }

  .story-image {
    height: 420px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 70px 0;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .stats-strip {
    margin-top: -25px;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 60px 0;
  }

  .section-head h2,
  .story h2 {
    font-size: 30px;
  }

  .story-image,
  .why-image {
    height: 330px;
  }

  .testimonial,
  .cta-box {
    padding: 30px 24px;
  }

  .quote {
    font-size: 17px;
  }
}
