:root {
  --teal: #0a7174;
  --teal-dark: #063f43;
  --ink: #102326;
  --muted: #5f7275;
  --paper: #f7fbfb;
  --white: #ffffff;
  --line: rgba(255,255,255,.2);
  --shadow: 0 18px 45px rgba(4, 45, 49, .18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; }
.site-header { background: var(--teal-dark); color: var(--white); }
.nav {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(3, 33, 36, .72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; }
/* .brand-mark removed */
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 34px;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
  font-size: 18px;
  letter-spacing: -2px;
  font-weight: 900;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; opacity: .9; }
.nav-cta { border: 1px solid rgba(255,255,255,.45); padding: 10px 14px; border-radius: 999px; }
.menu-button { display: none; background: none; color: white; border: 0; font-size: 28px; }
.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px 6vw 80px;
  background:
    radial-gradient(circle at 62% 35%, rgba(255,255,255,.38), transparent 0 12%, transparent 32%),
    linear-gradient(rgba(4,53,58,.62), rgba(4,53,58,.76)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 72px),
    linear-gradient(110deg, #071d22, #0b6e72 48%, #051b20);
}
.hero:before, .hero:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}
.hero:before { width: 520px; height: 520px; right: 10%; top: 150px; }
.hero:after { width: 320px; height: 320px; right: 16%; top: 250px; }
.hero-content { position: relative; z-index: 1; max-width: 950px; text-align: center; }
.eyebrow, .section-label { text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: 12px; }
.hero h1 { font-size: clamp(46px, 8vw, 104px); line-height: .95; margin: 18px 0 28px; letter-spacing: -.05em; }
.hero-text { max-width: 770px; margin: 0 auto 34px; font-size: 20px; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.button { display: inline-flex; padding: 14px 22px; border-radius: 999px; text-decoration: none; font-weight: 800; }
.primary { background: var(--white); color: var(--teal-dark); }
.secondary { border: 1px solid rgba(255,255,255,.5); color: var(--white); }
main section { padding: 90px 6vw; }
.intro { text-align: center; max-width: 1040px; margin: auto; }
.intro h2, .services h2, .approach h2, .proof h2, .cta h2 { font-size: clamp(32px, 4vw, 54px); line-height: 1.05; margin: 14px 0 22px; letter-spacing: -.035em; }
.intro p { font-size: 20px; color: var(--muted); }
.services, .proof { background: var(--white); }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 36px; }
.card { padding: 28px; border: 1px solid #d9e8e9; border-radius: 22px; background: linear-gradient(180deg, #fff, #f6fbfb); box-shadow: 0 10px 24px rgba(8,68,72,.06); }
.card h3 { margin-top: 0; font-size: 21px; }
.card p { color: var(--muted); margin-bottom: 0; }
.approach { background: var(--teal); color: white; }
.approach .section-label, .approach p { color: rgba(255,255,255,.82); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 38px; }
.steps div { padding: 26px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); }
.steps span { font-weight: 900; font-size: 13px; opacity: .65; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 34px; }
.stats div { padding: 30px; border-radius: 22px; background: var(--paper); }
.stats strong { display: block; font-size: 38px; letter-spacing: -.04em; }
.stats span { color: var(--muted); }
.cta { display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; align-items: center; background: #edf6f6; }
.contact-box { background: white; padding: 30px; border-radius: 24px; box-shadow: var(--shadow); }
.contact-box a { color: var(--teal); font-weight: 800; }
footer { text-align: center; padding: 48px 6vw; color: white; background: var(--teal-dark); }
.footer-brand { justify-content: center; }
footer p { opacity: .75; }
@media (max-width: 900px) {
  .menu-button { display: block; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; padding: 22px 6vw; background: rgba(3,33,36,.96); flex-direction: column; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .cards, .steps, .stats, .cta { grid-template-columns: 1fr; }
  .hero { min-height: 680px; }
}


.logo-image { height: 42px; width: auto; display:block; }
