:root {
  --navy: #08396f;
  --blue: #056fe4;
  --sky: #e8f7ff;
  --turquoise: #00b9c6;
  --coral: #ff4f91;
  --orange: #ff8a2a;
  --gold: #ffc43b;
  --ink: #12304c;
  --muted: #587187;
  --white: #fff;
  --shadow: 0 22px 60px rgba(8,57,111,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: "DM Sans", sans-serif; font-size: 16px; line-height: 1.65; }
a { color: inherit; }
.site-header { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 12px 5vw 0; position: relative; z-index: 5; background: rgba(255,255,255,.96); }
.site-header::before { content: ""; position: absolute; inset: 0 0 auto; height: 12px; background: linear-gradient(90deg, var(--turquoise) 0 56%, var(--blue) 56% 79%, var(--coral) 79% 91%, var(--orange) 91% 100%); }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; font-family: "Outfit", sans-serif; font-size: 1.24rem; color: var(--navy); }
.brand-name { display: flex; flex-wrap: wrap; column-gap: .28rem; line-height: 1.05; }
.brand-name small { flex-basis: 100%; margin-top: .25rem; color: var(--muted); font-family: "DM Sans", sans-serif; font-size: .67rem; font-weight: 600; letter-spacing: .025em; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 14px 5px 14px 5px; color: white; font-weight: 800; background: linear-gradient(145deg, var(--blue), var(--turquoise)); box-shadow: 0 8px 18px rgba(12,114,202,.23); }
nav { display: flex; align-items: center; gap: 2rem; }
nav a { text-decoration: none; font-weight: 600; }
.nav-cta { color: #fff; padding: .65rem 1.15rem; background: var(--coral); border-radius: 999px; }
.menu-button { display: none; border: 0; background: var(--sky); border-radius: 10px; padding: .6rem .9rem; color: var(--navy); font: inherit; font-weight: 700; }

.hero { min-height: 670px; position: relative; display: grid; align-items: center; overflow: hidden; background: #eef9ff; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 32%, rgba(255,255,255,.05) 62%); }
.hero-copy { position: relative; z-index: 1; width: min(600px, 90vw); margin-left: 7vw; padding: 4rem 0; }
.eyebrow { margin: 0 0 .8rem; color: var(--blue); text-transform: uppercase; letter-spacing: .15em; font-weight: 800; font-size: .8rem; }
h1,h2,h3 { font-family: "Outfit", sans-serif; line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(3rem, 5vw, 5.4rem); margin-bottom: 1.3rem; letter-spacing: -.045em; color: var(--navy); }
h1 span { color: var(--coral); }
.hero-lead { max-width: 520px; margin: 0 0 2rem; font-size: 1.2rem; color: #3e5b74; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: .75rem 1.35rem; border-radius: 999px; text-decoration: none; border: 2px solid transparent; font: inherit; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.primary { background: var(--blue); color: white; box-shadow: 0 10px 24px rgba(12,114,202,.2); }
.secondary { border-color: #a7cce6; color: var(--navy); background: rgba(255,255,255,.85); }

.intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 5rem; align-items: end; padding: 7rem 7vw 3rem; }
.intro h2, .contact-copy h2 { font-size: clamp(2.4rem, 4vw, 4rem); color: var(--navy); margin-bottom: 0; letter-spacing: -.03em; }
.intro > p { color: var(--muted); font-size: 1.08rem; margin-bottom: .3rem; }
.services { padding: 1rem 7vw 7rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card { padding: 2.25rem; border-radius: 25px; min-height: 410px; box-shadow: var(--shadow); border-top: 7px solid; }
.service-card.coral { background: #fff2f8; border-color: var(--coral); }
.service-card.blue { background: #eef8ff; border-color: var(--blue); }
.service-card.gold { background: #fff8e2; border-color: var(--orange); }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; color: white; background: var(--navy); font-size: 1.4rem; margin-bottom: 1.6rem; }
.service-card h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: .85rem; }
.service-card p { color: var(--muted); }
.service-card .represented-label { margin: 1.2rem 0 .2rem; color: var(--navy); font-size: .92rem; font-weight: 700; }
.service-card ul { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.service-card li { padding: .5rem 0 .5rem 1.55rem; position: relative; font-weight: 600; }
.service-card li::before { content: "✓"; position: absolute; left: 0; color: var(--turquoise); font-weight: 800; }

.approach { margin: 0 4vw; border-radius: 32px; padding: 5.5rem 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; background: var(--navy); color: white; position: relative; overflow: hidden; }
.approach::before { content:""; position:absolute; width:330px; height:330px; border-radius:50%; background:var(--turquoise); opacity:.15; right:-110px; top:-150px; }
.light { color: #67e4df; }
.approach h2 { font-size: clamp(2.4rem, 4vw, 4rem); margin-bottom: 1.4rem; letter-spacing: -.03em; }
.experience-badge { display: inline-flex; align-items: center; gap: .8rem; margin: .2rem 0 1.5rem; padding: .7rem 1rem; border: 1px solid rgba(255,255,255,.22); border-radius: 16px; background: rgba(255,255,255,.08); }
.experience-badge strong { font-family: "Outfit", sans-serif; color: var(--gold); font-size: 2rem; line-height: 1; }
.experience-badge span { max-width: 145px; color: #fff; font-weight: 700; line-height: 1.2; }
.approach-copy p:last-child { color: #cce0f2; font-size: 1.08rem; }
.steps { align-self: center; }
.steps div { display: grid; grid-template-columns: 56px 1fr; align-items: center; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,.16); padding: 1.2rem 0; }
.steps span { color: var(--gold); font-family: "Outfit"; font-weight: 800; font-size: 1.2rem; }
.steps p { margin: 0; font-size: 1.08rem; }

.contact-section { padding: 7rem 7vw; display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; align-items: center; background: linear-gradient(150deg, #fff 50%, #e8f8f8 50%); }
.contact-copy p { color: var(--muted); font-size: 1.08rem; }
.email-link { display: inline-block; margin-top: 1rem; color: var(--blue); font-weight: 700; font-size: 1.06rem; }
.contact-form { background: white; border-radius: 26px; padding: 2rem; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 1rem; font-size: .95rem; }
label span { color: var(--muted); font-weight: 400; }
input, textarea { width: 100%; margin-top: .35rem; border: 1px solid #bad1e2; border-radius: 11px; padding: .8rem .9rem; font: inherit; color: var(--ink); background: #fbfdff; }
input:focus, textarea:focus { outline: 3px solid rgba(12,114,202,.17); border-color: var(--blue); }
textarea { resize: vertical; }
.submit { width: 100%; }
.form-note { text-align: center; color: var(--muted); margin: .8rem 0 0; font-size: .82rem; }
footer { padding: 3rem 7vw 2.5rem; display: grid; grid-template-columns: auto 1fr auto; gap: 3rem; align-items: center; position: relative; background: #062c56; color: #c8d8e8; font-size: .8rem; }
footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 8px; background: linear-gradient(90deg, var(--turquoise) 0 56%, var(--blue) 56% 79%, var(--coral) 79% 91%, var(--orange) 91% 100%); }
.footer-brand { color: white; }
.footer-brand .brand-name small { color: #a9c2d8; }
footer p { margin: 0; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  nav { display: none; position: absolute; top: 74px; left: 4vw; right: 4vw; padding: 1rem; flex-direction: column; background: white; box-shadow: var(--shadow); border-radius: 16px; }
  nav.open { display: flex; }
  .hero { min-height: 720px; align-items: start; }
  .hero-image { object-position: 63% bottom; opacity: .66; }
  .hero::after { background: linear-gradient(180deg, white 0%, rgba(255,255,255,.95) 42%, rgba(255,255,255,.05) 79%); }
  .hero-copy { margin: 0 auto; padding-top: 4rem; width: 86vw; }
  h1 { font-size: clamp(2.8rem, 12vw, 4.5rem); max-width: 650px; }
  .intro, .approach, .contact-section { grid-template-columns: 1fr; gap: 2rem; }
  .intro { padding-top: 5rem; }
  .services { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .approach { margin: 0 3vw; padding: 4rem 7vw; }
  .contact-section { background: linear-gradient(160deg,#fff 45%,#e8f8f8 45%); }
  footer { grid-template-columns: 1fr; gap: 1.2rem; }
}

@media (max-width: 560px) {
  .site-header { padding: 12px 5vw 0; min-height: 84px; }
  .brand { font-size: 1.05rem; }
  .hero { min-height: 690px; }
  .hero-copy { padding-top: 3.2rem; }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions { display: grid; }
  .intro { gap: 1.4rem; }
  .intro, .services, .contact-section { padding-left: 5vw; padding-right: 5vw; }
  .services { padding-bottom: 5rem; }
  .service-card, .contact-form { padding: 1.5rem; border-radius: 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
