:root {
  --deep-navy: #0a1b2e;
  --midnight-blue: #12263f;
  --slate-blue: #2e4056;
  --muted-teal: #1e6b6d;
  --warm-gold: #d8a94a;
  --warm-sand: #f1e6d1;
  --off-white: #f7f8fa;
  --white: #ffffff;
  --text-dark: #071827;
  --text-muted: #5e6a77;
  --border-soft: rgba(10, 27, 46, 0.1);
  --shadow-soft: 0 18px 45px rgba(10, 27, 46, 0.08);
  --font-heading: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 48px, 1260px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 24, 39, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 24, 39, 0.98);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 3px;
}

.brand-logo-wrap img {
  width: auto;
  height: 46px;
}

.brand-wordmark {
  display: grid;
  gap: 1px;
  color: var(--white);
  font-family: var(--font-heading);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-wordmark strong {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.brand-wordmark span {
  color: var(--warm-gold);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.48em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 28px 0 24px;
  opacity: 0.9;
  transition: color 160ms ease, opacity 160ms ease;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--warm-gold);
  transition: width 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--warm-gold);
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #061522;
  background: linear-gradient(180deg, #e9bd62, var(--warm-gold));
  box-shadow: 0 12px 26px rgba(216, 169, 74, 0.26);
}

.btn-gold:hover {
  box-shadow: 0 18px 36px rgba(216, 169, 74, 0.34);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(10, 27, 46, 0.28);
}

.btn-outline:hover {
  border-color: var(--warm-gold);
  background: rgba(216, 169, 74, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: clamp(620px, 72vw, 720px);
  overflow: hidden;
  background-image: url("assets/hero.png");
  background-position: center right;
  background-size: cover;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 29, 0.96) 0%, rgba(6, 17, 29, 0.82) 34%, rgba(6, 17, 29, 0.38) 70%, rgba(6, 17, 29, 0.08) 100%),
    linear-gradient(180deg, rgba(6, 17, 29, 0.18) 0%, rgba(6, 17, 29, 0.66) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-block: 72px;
}

.hero-copy {
  width: min(100%, 630px);
  margin-top: -16px;
}

.hero h1 {
  margin: 0 0 26px;
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5.2vw, 5.2rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 span {
  display: inline-block;
  color: var(--warm-gold);
}

.hero p {
  width: min(100%, 550px);
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.trust-strip {
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 169, 74, 0.08), transparent 28%),
    var(--off-white);
  border-bottom: 1px solid var(--border-soft);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(440px, 0.85fr);
  gap: 48px;
  align-items: center;
  padding-block: 22px;
}

.trust-summary {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.trust-summary p {
  margin: 0;
  max-width: 740px;
  color: #132236;
}

.round-mark,
.icon-circle,
.large-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-gold);
  background: radial-gradient(circle at 30% 20%, #0f314d, var(--deep-navy));
  border: 1px solid rgba(216, 169, 74, 0.18);
}

.round-mark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(10, 27, 46, 0.16);
}

.round-mark svg,
.icon-circle svg,
.large-lock svg,
.mini-icon svg,
.contact-icon svg {
  width: 56%;
  height: 56%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(10, 27, 46, 0.06);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.trust-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 92px;
  padding: 8px 6px;
  color: var(--deep-navy);
  text-align: center;
  font-size: 0.87rem;
  line-height: 1.24;
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--warm-gold);
  border: 1px solid rgba(216, 169, 74, 0.78);
  border-radius: 50%;
}

.section {
  padding-block: 62px;
}

.services-section {
  background: var(--white);
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2,
.about-panel h2,
.contact-copy h2 {
  position: relative;
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
}

.section-heading h2::after,
.about-panel h2::after,
.contact-copy h2::after {
  display: block;
  width: 38px;
  height: 3px;
  margin: 10px auto 0;
  content: "";
  background: var(--warm-gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 332px;
  padding: 28px 24px 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(10, 27, 46, 0.05);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
  width: 54px;
  height: 2px;
  margin-top: auto;
  content: "";
  background: var(--warm-gold);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 169, 74, 0.42);
  box-shadow: 0 24px 48px rgba(10, 27, 46, 0.12);
}

.icon-circle {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
}

.service-card h3 {
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--font-heading);
  font-size: 1.13rem;
  line-height: 1.28;
}

.service-card h3::after {
  display: block;
  width: 38px;
  height: 2px;
  margin: 14px auto 16px;
  content: "";
  background: var(--warm-gold);
}

.service-card p {
  margin: 0 0 26px;
  color: #26364a;
  font-size: 0.92rem;
  line-height: 1.55;
}

.approach-section {
  background:
    linear-gradient(180deg, #f9fafb 0%, #f4f7f8 100%),
    var(--off-white);
}

.approach-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr) 36px minmax(0, 1fr) 36px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.process-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  min-height: 144px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(10, 27, 46, 0.04);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--warm-gold);
  background: var(--deep-navy);
  border-radius: 50%;
  font-weight: 800;
}

.process-card h3 {
  margin: 1px 0 8px;
  color: var(--deep-navy);
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.process-card p {
  margin: 0;
  color: #27384c;
  font-size: 0.92rem;
  line-height: 1.55;
}

.flow-arrow {
  color: var(--deep-navy);
  font-size: 2rem;
  text-align: center;
}

.about-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-panel {
  min-height: 350px;
}

.panel-inner {
  position: relative;
  width: min(100% - 48px, 630px);
  height: 100%;
  padding-block: 54px;
}

.dark-panel {
  display: flex;
  justify-content: flex-end;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 20%, rgba(30, 107, 109, 0.42), transparent 36%),
    var(--deep-navy);
}

.dark-panel .panel-inner {
  padding-right: 60px;
}

.dark-panel h2 {
  color: var(--white);
}

.dark-panel h2::after,
.light-panel h2::after {
  margin-left: 0;
}

.about-panel p {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 20px 0 0;
}

.dark-panel p {
  color: rgba(255, 255, 255, 0.92);
}

.wave-art {
  position: absolute;
  right: 58px;
  bottom: 22px;
  width: min(50%, 320px);
  color: rgba(216, 169, 74, 0.62);
  pointer-events: none;
}

.wave-art path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.light-panel {
  display: flex;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 169, 74, 0.12), transparent 28%),
    var(--warm-sand);
}

.light-panel .panel-inner {
  padding-left: 60px;
}

.trust-panel-content {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.large-lock {
  width: 88px;
  height: 88px;
  border-radius: 50%;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 30%, rgba(216, 169, 74, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.contact-section::before,
.contact-section::after {
  position: absolute;
  width: 330px;
  height: 120px;
  content: "";
  border: 1px solid rgba(216, 169, 74, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section::before {
  left: -130px;
  bottom: 8px;
}

.contact-section::after {
  right: -140px;
  top: 36px;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 62px;
  align-items: center;
}

.contact-copy {
  text-align: center;
}

.contact-copy h2::after {
  margin-inline: auto;
}

.contact-copy p {
  width: min(100%, 720px);
  margin: 22px auto 28px;
  color: #29394d;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin: 0;
  padding-left: 56px;
  border-left: 1px solid rgba(10, 27, 46, 0.16);
  font-style: normal;
}

.contact-details a,
.contact-details span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--deep-navy);
  font-weight: 600;
}

.contact-details a:hover {
  color: var(--muted-teal);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--deep-navy);
  flex: 0 0 auto;
}

.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at 0% 0%, rgba(30, 107, 109, 0.3), transparent 28%),
    var(--deep-navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) minmax(120px, 0.55fr) minmax(120px, 0.55fr) minmax(230px, 0.9fr);
  gap: 42px;
  padding-block: 30px;
}

.footer-brand img {
  width: 190px;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 3px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 0.98rem;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.91rem;
}

.footer-links a:hover {
  color: var(--warm-gold);
}

.footer-bottom {
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-strip-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-cards {
    max-width: 620px;
  }

  .contact-details {
    width: min(100%, 560px);
    margin-inline: auto;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 980px) {
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
    order: 3;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(7, 24, 39, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 12px;
  }

  .main-nav a::after {
    bottom: 8px;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: 650px;
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 17, 29, 0.96) 0%, rgba(6, 17, 29, 0.78) 52%, rgba(6, 17, 29, 0.2) 100%),
      linear-gradient(180deg, rgba(6, 17, 29, 0.22) 0%, rgba(6, 17, 29, 0.68) 100%);
  }

  .approach-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .about-trust {
    grid-template-columns: 1fr;
  }

  .dark-panel,
  .light-panel {
    justify-content: center;
  }

  .dark-panel .panel-inner,
  .light-panel .panel-inner {
    padding-inline: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container,
  .panel-inner {
    width: min(100% - 32px, 1260px);
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-logo-wrap {
    width: 48px;
    height: 48px;
    padding: 4px;
  }

  .brand-logo-wrap img {
    width: auto;
    height: 40px;
  }

  .brand-wordmark strong {
    font-size: 0.98rem;
  }

  .brand-wordmark span {
    font-size: 0.5rem;
  }

  .main-nav {
    top: 68px;
    left: 16px;
    right: 16px;
  }

  .hero {
    min-height: 690px;
    background-position: 70% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(6, 17, 29, 0.96) 0%, rgba(6, 17, 29, 0.84) 72%, rgba(6, 17, 29, 0.5) 100%);
  }

  .hero-content {
    align-items: flex-end;
    padding-block: 54px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

  .hero-actions,
  .trust-summary,
  .trust-cards {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-summary {
    justify-items: center;
    text-align: center;
  }

  .trust-cards {
    max-width: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .section {
    padding-block: 48px;
  }

  .trust-panel-content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .large-lock {
    width: 76px;
    height: 76px;
  }

  .contact-copy {
    text-align: left;
  }

  .contact-copy h2::after {
    margin-left: 0;
  }

  .contact-details {
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 420px) {
  .btn {
    width: 100%;
    padding-inline: 18px;
  }

  .process-card {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 20px 18px;
  }

  .contact-details a,
  .contact-details span {
    align-items: flex-start;
    word-break: break-word;
  }
}
