*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #062f63;
  --navy-dark: #042650;
  --blue: #1f7fa8;
  --blue-light: #eaf4f9;
  --text: #1d2a36;
  --muted: #5d6975;
  --white: #ffffff;
  --border: #e4eaf0;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: #fff;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 72px;
  height: 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-left svg {
  opacity: .85;
}

.top-right {
  display: flex;
  gap: 36px;
}

.top-right a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-right a svg {
  opacity: .85;
}

/* ── HEADER ── */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 72px;
  height: 104px;
}

.logo img {
  height: 88px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-placeholder {
  height: 88px;
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.1;
}

nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

nav a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-decoration: none;
  color: var(--text);
  padding-bottom: 4px;
}

nav a.active,
nav a:hover {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}

.nav-cta {
  background: var(--blue);
  color: #fff;
  padding: 13px 26px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-decoration: none;
  white-space: nowrap;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 510px;
  background: url('images/hero.jpg') right center / cover no-repeat, #cfd8e3;
  display: flex;
  align-items: center;
  padding: 64px 72px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, .97) 28%,
    rgba(255, 255, 255, .76) 50%,
    rgba(255, 255, 255, .18) 70%,
    rgba(255, 255, 255, 0) 85%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--blue);
  margin-bottom: 14px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--blue);
}

.hero-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: #4f5c69;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 18px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-white {
  background: #fff;
  color: var(--navy);
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .7);
}

/* ── TRUST BADGES ── */
.trust-badges {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--navy);
}

.trust-badge svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* ── SERVICES ── */
.services {
  padding: 60px 72px;
  background: #fff;
  text-align: center;
}

.section-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 0;
}

.title-rule {
  width: 60px;
  height: 3px;
  background: var(--blue);
  margin: 12px auto 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}

.svc-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-icon svg {
  color: var(--blue);
}

.service-card h3 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--navy);
}

.service-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* ── ABOUT ── */
.about {
  padding: 60px 72px;
  background: var(--blue-light);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 18px;
}

.about p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 14px;
}

.about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-badge {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-badge-icon svg {
  color: var(--blue);
}

.about-badge span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
}

/* ── SERVICE AREA ── */
.area {
  padding: 56px 72px;
  background: #fff;
  text-align: center;
}

.area h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 10px;
}

.area-inner {
  max-width: 700px;
  margin: 0 auto;
}

.area > .area-inner > p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-tag {
  background: var(--blue-light);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid #c2daea;
}

/* ── CONTACT ── */
.contact-strip {
  background: var(--navy);
  color: #fff;
  padding: 52px 72px;
  text-align: center;
}

.contact-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 10px;
}

.contact-strip p {
  font-size: 15px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 30px;
}

.contact-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ── DARK BAR ── */
.dark-bar {
  background: var(--navy-dark);
  padding: 40px 72px;
}

.dark-bar-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.dark-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.dark-item:first-child {
  padding-left: 0;
}

.dark-item:last-child {
  border-right: none;
}

.dark-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dark-icon svg {
  color: #fff;
  opacity: .9;
}

.dark-item h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: #fff;
  margin-bottom: 5px;
}

.dark-item p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: #021e41;
  color: rgba(255, 255, 255, .6);
  text-align: center;
  padding: 18px;
  font-size: 13px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .top-bar,
  header,
  .hero,
  .services,
  .about,
  .area,
  .contact-strip,
  .dark-bar {
    padding-left: 32px;
    padding-right: 32px;
  }

  .service-grid,
  .dark-bar-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 680px) {
  header {
    flex-wrap: wrap;
    height: auto;
    padding: 16px 20px;
    gap: 16px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .service-grid,
  .dark-bar-grid {
    grid-template-columns: 1fr;
  }

  .dark-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    padding: 16px 0;
  }

  .dark-item:last-child {
    border-bottom: none;
  }

  .hero {
    padding: 44px 20px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .top-bar {
    flex-direction: column;
    height: auto;
    padding: 10px 20px;
    gap: 6px;
  }

  .top-right {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }
}