:root {
  --navy: #0f2f3a;
  --navy-2: #123d49;
  --teal: #2f8b86;
  --aqua: #d9f0ed;
  --cream: #f6f0e6;
  --gold: #c59b5d;
  --text: #1c2b2f;
  --muted: #65777d;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(15, 47, 58, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbf8f1 0%, #ffffff 45%, #f6fbfa 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15,47,58,0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.brand img { width: 44px; height: 44px; }

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-weight: 650;
}

.nav a:hover { color: var(--teal); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(47,139,134,0.22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(47,139,134,0.30);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(15,47,58,0.16);
  box-shadow: none;
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(0,0,0,0.14);
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 60px -220px auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(47,139,134,0.24), rgba(47,139,134,0) 68%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 900;
}

h1, h2, h3 { color: var(--navy); line-height: 1.05; }

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 7vw, 82px);
  letter-spacing: -0.055em;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.trust span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(47,139,134,0.10);
  color: var(--navy-2);
  font-size: 14px;
  font-weight: 750;
}

.hero-card {
  position: relative;
  padding: 44px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.95), rgba(246,240,230,0.86)),
    url("assets/pattern.svg");
  background-size: cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,47,58,0.08);
  text-align: center;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto 36px -18px 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(15,47,58,0.12);
  filter: blur(18px);
  z-index: -1;
}

.hero-logo { width: 250px; height: 250px; }

.hero-card h2 {
  margin: 20px 0 8px;
  font-size: 32px;
  letter-spacing: -0.03em;
}

.hero-card p { color: var(--muted); margin: 0; }

.mini-divider {
  width: 64px;
  height: 4px;
  background: var(--gold);
  border-radius: 99px;
  margin: 24px auto;
}

.card-text {
  max-width: 300px;
  margin: 0 auto !important;
  font-size: 18px;
  line-height: 1.55;
}

.section {
  padding: 78px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading h2, .about h2, .cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: -0.045em;
}

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

.service-card {
  padding: 28px;
  min-height: 300px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(15,47,58,0.08);
  box-shadow: 0 16px 44px rgba(15,47,58,0.07);
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  padding: 88px clamp(20px, 5vw, 72px);
  background: var(--navy);
}

.about h2, .about .eyebrow { color: var(--white); }
.about .eyebrow { color: var(--gold); }

.about-text {
  color: rgba(255,255,255,0.78);
  font-size: 19px;
  line-height: 1.8;
}

.about-text p:first-child { margin-top: 0; }

.cta {
  margin: 78px clamp(20px, 5vw, 72px);
  padding: clamp(32px, 6vw, 64px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta h2 { color: var(--white); }
.cta p { max-width: 680px; line-height: 1.7; color: rgba(255,255,255,0.82); }

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid rgba(15,47,58,0.08);
}

.footer p { margin: 0; }

@media (max-width: 960px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .site-header { padding: 14px 18px; }
  .brand span { display: none; }
  .hero { padding-top: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-card { padding: 32px 22px; }
  .btn { width: 100%; }
  .btn-small { width: auto; }
}
