:root {
  --teal: #276d77;
  --teal-dark: #123f46;
  --teal-deep: #092e34;
  --teal-soft: #dfecee;
  --ink: #111718;
  --muted: #5d686a;
  --line: #dce3e3;
  --paper: #f6f7f5;
  --white: #ffffff;
  --sand: #d4c3a2;
  --shadow: 0 24px 70px rgba(12, 50, 55, .16);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--teal-dark);
  transform: translateY(-150%);
  border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 112px 0; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-light { color: #a9d4d9; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { margin-bottom: 26px; font-size: clamp(3rem, 6.3vw, 6.25rem); font-weight: 760; }
h2 { margin-bottom: 24px; font-size: clamp(2.25rem, 4.5vw, 4.25rem); font-weight: 740; }
h3 { font-size: 1.35rem; }
h1 span, h2 span { color: var(--teal); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 82px;
  background: rgba(246, 247, 245, .84);
  border-bottom: 1px solid rgba(39, 109, 119, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.95); box-shadow: 0 8px 30px rgba(10, 46, 51, .08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 1rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .69rem; letter-spacing: .15em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { position: relative; font-size: .92rem; font-weight: 650; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--teal);
  transition: right .22s ease;
}
.main-nav a:not(.nav-cta):hover::after, .main-nav a.active::after { right: 0; }
.nav-cta { padding: 12px 20px; color: var(--white); background: var(--teal); border-radius: 999px; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; background: transparent; border: 0; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }

.hero { position: relative; min-height: 100svh; padding-top: 150px; overflow: hidden; background: linear-gradient(145deg, #f7f8f6 0%, #edf3f2 100%); }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 64px; }
.hero-lead { max-width: 650px; margin-bottom: 34px; color: #435052; font-size: clamp(1.08rem, 1.6vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg, .office-card a svg { width: 18px; margin-left: 10px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { color: var(--white); background: var(--teal); box-shadow: 0 12px 30px rgba(39, 109, 119, .25); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 16px 34px rgba(39, 109, 119, .32); }
.btn-ghost { color: var(--teal-dark); border-color: rgba(39, 109, 119, .35); }
.btn-ghost:hover { background: var(--white); }
.hero-facts { display: flex; gap: 32px; margin-top: 48px; }
.hero-facts div { display: grid; gap: 2px; }
.hero-facts strong { font-size: 1.05rem; }
.hero-facts span { color: var(--muted); font-size: .84rem; }
.hero-facts div + div { padding-left: 32px; border-left: 1px solid var(--line); }

.hero-media { position: relative; }
.video-shell { position: relative; overflow: hidden; padding: 10px; background: #0b3136; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.video-shell::before { content: ""; display: block; padding-top: 68%; }
.video-shell video { position: absolute; inset: 50px 10px 10px; width: calc(100% - 20px); height: calc(100% - 60px); object-fit: cover; background: #fff; border-radius: 24px; }
.video-topline { position: absolute; top: 0; left: 0; right: 0; height: 50px; display: flex; align-items: center; gap: 9px; padding: 0 19px; color: rgba(255,255,255,.74); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; background: #78d7b4; border-radius: 50%; box-shadow: 0 0 0 5px rgba(120, 215, 180, .12); }
.video-replay { position: absolute; right: 24px; bottom: 24px; z-index: 2; padding: 9px 13px; color: var(--white); background: rgba(9, 46, 52, .78); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: .76rem; opacity: 0; transform: translateY(8px); transition: .25s ease; backdrop-filter: blur(8px); }
.video-shell:hover .video-replay, .video-replay:focus-visible { opacity: 1; transform: translateY(0); }
.floating-note { position: absolute; right: -26px; bottom: -42px; display: flex; align-items: center; gap: 13px; max-width: 290px; padding: 17px 21px; background: var(--white); border: 1px solid rgba(39,109,119,.12); border-radius: 18px; box-shadow: 0 18px 50px rgba(8,45,51,.14); }
.floating-note > span { display: grid; place-items: center; width: 47px; height: 47px; flex: 0 0 auto; color: var(--white); background: var(--teal); border-radius: 50%; font-weight: 850; }
.floating-note p { margin: 0; color: var(--muted); font-size: .79rem; line-height: 1.35; }
.floating-note strong { color: var(--ink); font-size: .86rem; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { top: -220px; right: -220px; width: 540px; height: 540px; background: rgba(39,109,119,.09); }
.hero-orb-two { left: -140px; bottom: 70px; width: 300px; height: 300px; background: rgba(212,195,162,.17); }
.trust-strip { display: flex; align-items: center; gap: 28px; margin-top: 90px; padding-top: 27px; border-top: 1px solid rgba(39,109,119,.15); color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.trust-strip > span { flex: 0 0 auto; font-weight: 800; color: var(--teal-dark); }
.trust-items { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
.trust-items i { width: 3px; height: 3px; background: var(--teal); border-radius: 50%; }

.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 92px; align-items: start; }
.section-heading { position: sticky; top: 125px; }
.section-heading h2 { max-width: 530px; }
.about-content { max-width: 690px; }
.about-content p { color: var(--muted); font-size: 1.03rem; }
.about-content .lead-copy { color: var(--ink); font-size: 1.24rem; line-height: 1.55; }
blockquote { position: relative; margin: 42px 0 0; padding: 30px 32px 30px 72px; color: var(--teal-dark); background: var(--teal-soft); border-radius: var(--radius-md); font-size: 1.12rem; font-weight: 650; }
blockquote > span { position: absolute; left: 24px; top: 9px; color: var(--teal); font: 700 4.8rem/1 Georgia, serif; opacity: .55; }

.services { color: var(--white); background: var(--teal-deep); }
.section-intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: 50px; align-items: end; margin-bottom: 48px; }
.section-intro h2 { max-width: 700px; margin: 0; }
.section-intro > p { max-width: 470px; margin: 0 0 6px; color: #c7d5d7; font-size: 1.03rem; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
.service-card { position: relative; min-height: 330px; padding: 28px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); transition: background .25s ease, transform .25s ease; }
.service-card:hover { z-index: 2; background: rgba(255,255,255,.07); transform: translateY(-4px); }
.service-card-accent { background: var(--teal); }
.service-number { margin-bottom: 48px; color: #7ea4aa; font-size: .75rem; font-weight: 800; letter-spacing: .13em; }
.service-icon { width: 36px; height: 36px; margin-bottom: 28px; fill: none; stroke: #a8d2d7; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: 14px; }
.service-card p { margin: 0; color: #b9c9cb; font-size: .92rem; line-height: 1.55; }
.service-card-accent p { color: #e7f0f1; }
.service-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 38px; padding: 30px 34px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); }
.service-cta div { display: grid; }
.service-cta span { color: #aebfc1; }
.btn-light { color: var(--teal-deep); background: var(--white); }

.values { background: #eef2f1; }
.values-head { max-width: 820px; margin-bottom: 58px; }
.values-head > p:last-child { max-width: 650px; color: var(--muted); font-size: 1.05rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-item { position: relative; min-height: 245px; padding: 32px; overflow: hidden; background: rgba(255,255,255,.68); border: 1px solid rgba(39,109,119,.1); border-radius: var(--radius-md); transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.value-item:hover { transform: translateY(-5px); background: var(--white); box-shadow: 0 18px 40px rgba(14,56,62,.08); }
.value-item span { display: inline-block; margin-bottom: 46px; color: var(--teal); font-size: .78rem; font-weight: 850; letter-spacing: .15em; }
.value-item h3 { margin-bottom: 12px; font-size: 1.55rem; }
.value-item p { margin: 0; color: var(--muted); }
.value-item::after { content: ""; position: absolute; right: -32px; bottom: -32px; width: 100px; height: 100px; border: 16px solid rgba(39,109,119,.05); border-radius: 50%; }

.offices { background: var(--white); }
.offices-heading { position: static; margin-bottom: 48px; }
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.office-card { position: relative; min-height: 330px; padding: 42px; overflow: hidden; color: var(--white); background: linear-gradient(145deg, var(--teal), var(--teal-dark)); border-radius: var(--radius-lg); box-shadow: 0 20px 50px rgba(20,77,85,.15); }
.office-card:nth-child(2) { background: linear-gradient(145deg, #1c2729, #0b343a); }
.office-card::before { content: ""; position: absolute; right: -65px; bottom: -65px; width: 250px; height: 250px; border: 28px solid rgba(255,255,255,.08); border-radius: 50%; }
.office-city { display: inline-flex; padding: 8px 13px; margin-bottom: 74px; color: #d6eef1; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.office-card h3 { max-width: 470px; margin-bottom: 8px; font-size: clamp(1.75rem, 3vw, 2.7rem); }
.office-card p { color: rgba(255,255,255,.68); }
.office-card a { display: inline-flex; align-items: center; margin-top: 18px; font-weight: 760; }
.office-card a svg { width: 17px; }

.contact { color: var(--white); background: #101819; }
.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: start; }
.contact-copy h2 { max-width: 550px; }
.contact-copy > p { max-width: 530px; color: #aebabb; font-size: 1.06rem; }
.contact-links { display: grid; gap: 13px; margin-top: 42px; }
.contact-links a { display: flex; align-items: center; gap: 16px; padding: 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; transition: background .2s ease, transform .2s ease; }
.contact-links a:hover { background: rgba(255,255,255,.05); transform: translateX(4px); }
.contact-icon { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 auto; color: var(--teal-deep); background: #acd5da; border-radius: 50%; font-size: .78rem; font-weight: 900; }
.contact-links a > span:last-child { display: grid; }
.contact-links small { color: #879698; }
.contact-links strong { font-size: .95rem; }
.contact-form { padding: 34px; color: var(--ink); background: var(--white); border-radius: var(--radius-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 18px; font-size: .83rem; font-weight: 760; }
.contact-form input, .contact-form textarea { width: 100%; color: var(--ink); background: #f3f6f5; border: 1px solid transparent; border-radius: 13px; outline: 0; transition: border .2s ease, background .2s ease, box-shadow .2s ease; }
.contact-form input { min-height: 52px; padding: 0 15px; }
.contact-form textarea { resize: vertical; padding: 14px 15px; }
.contact-form input:focus, .contact-form textarea:focus { background: var(--white); border-color: var(--teal); box-shadow: 0 0 0 4px rgba(39,109,119,.1); }
.form-actions { display: flex; gap: 12px; margin-top: 8px; }
.btn-form { border: 0; }
.btn-whatsapp { color: #124331; background: #dff4e8; border-color: #b7e5cc; }
.form-note { margin: 14px 0 0; color: #7a8586; font-size: .74rem; }

.site-footer { color: #d5dcdc; background: #081012; }
.footer-top { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 70px; padding: 74px 0 52px; }
.footer-brand img { width: 170px; height: auto; padding: 10px; background: #f5f5f3; border-radius: 18px; }
.footer-brand p { max-width: 430px; margin: 24px 0 0; color: #879395; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-col h3 { margin-bottom: 8px; color: var(--white); font-size: 1rem; letter-spacing: 0; }
.footer-col a { color: #9eabad; font-size: .9rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,.08); color: #768486; font-size: .78rem; }
.footer-bottom p { margin: 0; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 950; display: grid; place-items: center; width: 58px; height: 58px; color: var(--white); background: #25d366; border-radius: 50%; box-shadow: 0 14px 35px rgba(10,70,41,.32); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 30px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.2,1); }
.reveal-delay { transition-delay: .13s; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { gap: 35px; }
  .floating-note { right: -10px; }
}

@media (max-width: 860px) {
  .section-pad { padding: 86px 0; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 26px; padding: 90px 30px; background: rgba(246,247,245,.98); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .25s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { font-size: 1.28rem; }
  .nav-cta { margin-top: 8px; }
  .hero { padding-top: 128px; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 58px; }
  .hero-copy { max-width: 720px; }
  .hero-media { max-width: 720px; }
  .section-heading { position: static; }
  .about-grid, .contact-grid { gap: 38px; }
  .section-intro { grid-template-columns: 1fr; gap: 12px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.3fr .7fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 72px 0; }
  h1 { font-size: clamp(2.65rem, 15vw, 4rem); }
  h2 { font-size: clamp(2.05rem, 11vw, 3rem); }
  .brand-copy strong { font-size: .9rem; }
  .brand-copy small { font-size: .61rem; }
  .brand img { width: 46px; height: 46px; }
  .hero-actions, .form-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-facts { flex-direction: column; gap: 18px; }
  .hero-facts div + div { padding: 18px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .floating-note { position: relative; right: auto; bottom: auto; margin: 14px 8px 0; }
  .trust-strip { align-items: flex-start; flex-direction: column; gap: 13px; margin-top: 62px; }
  .trust-items { gap: 11px; }
  .trust-items i { display: none; }
  .trust-items span { padding: 7px 10px; background: rgba(39,109,119,.07); border-radius: 999px; }
  .about-content .lead-copy { font-size: 1.12rem; }
  blockquote { padding: 28px 22px 28px 57px; }
  blockquote > span { left: 16px; }
  .service-grid, .values-grid, .office-grid, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .service-cta { align-items: stretch; flex-direction: column; padding: 26px; }
  .office-card { min-height: 285px; padding: 30px; }
  .office-city { margin-bottom: 54px; }
  .contact-form { padding: 24px 19px; border-radius: 24px; }
  .contact-links strong { font-size: .84rem; word-break: break-word; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
