:root {
  --navy: #0f2444;
  --navy-deep: #081730;
  --navy-soft: #1c3461;
  --orange: #ff8a1f;
  --yellow: #ffd11a;
  --green: #2ecf6c;
  --blue: #2a5cff;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-muted: #eef1f7;
  --text: #131c2e;
  --text-muted: #5b6478;
  --border: #e3e8f0;
  --shadow-sm: 0 1px 3px rgba(15, 36, 68, .08);
  --shadow-md: 0 8px 24px rgba(15, 36, 68, .12);
  --shadow-lg: 0 18px 48px rgba(15, 36, 68, .18);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --container: 1200px;
  --gradient: linear-gradient(90deg, #ff8a1f 0%, #ffd11a 33%, #2ecf6c 66%, #2a5cff 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; margin: 0 0 .6em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 138, 31, .28);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(255, 138, 31, .4); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-ghost {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-block { display: flex; width: 100%; }

.gradient-bar {
  height: 4px;
  background: var(--gradient);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 76px;
}
.nav__logo img { height: 44px; width: auto; }
.nav__menu {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.nav__menu a {
  color: var(--text);
  font-weight: 500;
  padding: .5rem 0;
  position: relative;
  transition: color .15s;
}
.nav__menu a:hover, .nav__menu a.is-active { color: var(--navy); }
.nav__menu a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  border-radius: 3px;
  background: var(--gradient);
}
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.nav__toggle svg { width: 22px; height: 22px; color: var(--navy); }

.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -20%, rgba(255,138,31,.16), transparent 60%),
    radial-gradient(1200px 500px at -10% 120%, rgba(42,92,255,.18), transparent 60%),
    var(--navy-deep);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero/bg-handshake.jpg");
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: saturate(.5);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 6rem 24px 5rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .35rem .85rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.25rem;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gradient);
}
.hero h1 {
  color: #fff;
  margin: 0 0 1rem;
}
.hero h1 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin: 0 0 2rem;
  max-width: 560px;
}
.hero__cta { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero__art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1024/398;
  background: var(--navy-deep);
}
.hero__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: heroSlideshow 24s infinite;
}
.hero__art img:nth-child(1) { animation-delay: 0s; }
.hero__art img:nth-child(2) { animation-delay: 6s; }
.hero__art img:nth-child(3) { animation-delay: 12s; }
.hero__art img:nth-child(4) { animation-delay: 18s; }

@keyframes heroSlideshow {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  25%  { opacity: 1; }
  29%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero__dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: .4rem;
  z-index: 2;
}
.hero__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  animation: heroDot 24s infinite;
}
.hero__dots span:nth-child(1) { animation-delay: 0s; }
.hero__dots span:nth-child(2) { animation-delay: 6s; }
.hero__dots span:nth-child(3) { animation-delay: 12s; }
.hero__dots span:nth-child(4) { animation-delay: 18s; }
@keyframes heroDot {
  0%, 25%   { background: #fff; transform: scale(1.2); }
  29%, 100% { background: rgba(255,255,255,.45); transform: scale(1); }
}

.section { padding: 5rem 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2 { color: #fff; }

.section__head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section__eyebrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .8rem;
}
.section__lead { color: var(--text-muted); font-size: 1.05rem; }

.promises {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.promise {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.promise:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.promise__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(255,138,31,.12), rgba(42,92,255,.12));
  color: var(--navy);
}
.promise__icon svg { width: 26px; height: 26px; }
.promise h3 { margin-bottom: .35rem; color: var(--navy); }
.promise p { color: var(--text-muted); margin: 0; font-size: .95rem; }

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-muted);
}
.service__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service:hover .service__image img { transform: scale(1.05); }
.service__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service__body h3 { margin-bottom: .5rem; }
.service__body p { color: var(--text-muted); margin: 0 0 1.25rem; font-size: .95rem; flex: 1; }
.service__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--orange);
  font-weight: 600;
  font-size: .95rem;
}
.service__link::after { content: "→"; transition: transform .2s; }
.service__link:hover::after { transform: translateX(3px); }

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-preview__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5/4;
}
.about-preview__media img { width: 100%; height: 100%; object-fit: cover; }
.about-preview ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: .65rem;
}
.about-preview li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: var(--text);
}
.about-preview li::before {
  content: "✓";
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: .8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.checklist { margin: 0 0 1.5rem; }
.checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .65rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: var(--text);
}
.checklist li::before {
  content: "✓";
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: .8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.contact-card__icon--inline { margin: 0; }
.contact-card__link { margin-top: .75rem; }
.form__title { margin-bottom: 1.25rem; }
.section--flush-top { padding-top: 0; }

.cta-banner {
  background:
    linear-gradient(135deg, rgba(15,36,68,.85), rgba(8,23,48,.92)),
    url("../img/cta-bg.jpg") center/cover;
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 2rem; }
.cta-banner__actions { display: inline-flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }

.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 4.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gradient);
  opacity: .08;
}
.page-hero__inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin: 0; }
.crumbs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}
.crumbs a { color: rgba(255,255,255,.85); }
.crumbs a:hover { color: #fff; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value {
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}
.value__num {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: .75rem;
}
.value h3 { margin-bottom: .35rem; }
.value p { color: var(--text-muted); margin: 0; font-size: .95rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.contact-card {
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
}
.contact-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,138,31,.14), rgba(42,92,255,.14));
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card h3 { margin-bottom: .4rem; font-size: 1.05rem; }
.contact-card p { margin: 0; color: var(--text-muted); font-size: .95rem; }
.contact-card a { color: var(--text); }
.contact-card a:hover { color: var(--orange); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info ul { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 1rem; }
.contact-info li { display: flex; align-items: flex-start; gap: .75rem; }
.contact-info li strong { display: block; color: var(--navy); }
.contact-info li span { color: var(--text-muted); font-size: .95rem; }

.form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.form__row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.field label { font-weight: 500; font-size: .92rem; color: var(--navy); }
.field input, .field textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem .9rem;
  font: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,138,31,.18);
}
.field textarea { min-height: 130px; resize: vertical; }
.form__hint { font-size: .85rem; color: var(--text-muted); margin: .25rem 0 1rem; }

.map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.78);
  padding: 4rem 0 0;
  margin-top: 0;
}
.site-footer h4 { color: #fff; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 1rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand img { height: 64px; width: auto; margin-bottom: 1rem; background: #fff; padding: 8px 12px; border-radius: 10px; }
.footer-brand p { color: rgba(255,255,255,.65); margin: 0; font-size: .92rem; max-width: 320px; }

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .45), 0 4px 8px rgba(0,0,0,.15);
  z-index: 60;
  transition: transform .15s ease, box-shadow .2s ease;
}
.whatsapp-fab:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 14px 30px rgba(37, 211, 102, .55), 0 6px 12px rgba(0,0,0,.2); }
.whatsapp-fab svg { width: 32px; height: 32px; }
.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .5);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.wa-inline {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-left: .5rem;
  padding: 2px 10px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  vertical-align: middle;
}
.wa-inline:hover { background: #1ebe5b; color: #fff; }
.wa-inline svg { width: 14px; height: 14px; }

@media (max-width: 720px) {
  .whatsapp-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .whatsapp-fab svg { width: 28px; height: 28px; }
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer a:hover { color: #fff; }
.site-footer address { font-style: normal; line-height: 1.65; font-size: .92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; padding: 4rem 24px 3.5rem; }
  .promises { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr; }
  .about-preview, .split, .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse > :first-child { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu, .nav__cta { display: none; }
  .nav.is-open .nav__menu,
  .nav.is-open .nav__cta {
    display: flex;
    position: absolute;
    left: 0; right: 0; top: 76px;
    background: #fff;
    padding: 1rem 24px;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    margin: 0;
  }
  .nav.is-open .nav__menu li { padding: .65rem 0; border-bottom: 1px solid var(--border); }
  .nav.is-open .nav__menu li:last-child { border-bottom: 0; }
  .nav.is-open .nav__cta { padding-top: 1rem; }
  .promises, .services { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 3.5rem 0; }
}
