:root {
  --navy: #08004a;
  --navy-2: #120061;
  --ink: #211f38;
  --muted: #686275;
  --cream: #faf7f1;
  --cream-2: #f3eee7;
  --white: #ffffff;
  --gold: #c9aa35;
  --rose: #f8eff2;
  --line: rgba(8, 0, 74, 0.15);
  --shadow: 0 22px 60px rgba(8, 0, 74, 0.10);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.narrow { width: min(100% - 40px, 820px); }
.section-pad { padding: 92px 0; }
.section-pad-sm { padding: 74px 0; }
.centered { text-align: center; }
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  z-index: 1000;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3 { color: var(--navy); line-height: 1.06; margin: 0; }
h1 { font-size: clamp(2.4rem, 5vw, 5rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2rem, 3.4vw, 3.35rem); letter-spacing: -0.045em; }
h3 { font-size: 1.15rem; letter-spacing: -0.02em; }
p { margin: 0; color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .45;
}
.section-head { max-width: 780px; margin-inline: auto; margin-bottom: 46px; }
.section-head p { margin-top: 14px; }
.text-flow p + p { margin-top: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 78px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8, 0, 74, 0.08);
  transition: box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled, .site-header.solid { box-shadow: 0 12px 34px rgba(8,0,74,.08); }
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 154px; height: auto; }
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 700;
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 18px;
  border-left: 1px solid var(--line);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.header-cta svg { width: 16px; height: 16px; fill: currentColor; }
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(8,0,74,.14); }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-soft { background: rgba(8, 0, 74, .06); color: var(--navy); }
.btn-gold { background: var(--gold); color: var(--navy); }

.hero { padding-top: 116px; background: linear-gradient(90deg, #fff 0%, #fbf8f3 100%); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  min-height: 560px;
  background: var(--cream);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-media { min-height: 560px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 36% center; }
.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(34px, 5vw, 72px);
  isolation: isolate;
}
.hero-content::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto auto;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(8,0,74,.08);
  border-radius: 45% 55% 65% 35%;
  z-index: -1;
}
.hero-content h1 span { display: inline-block; font-size: .72em; }
.hero-content p { max-width: 520px; margin: 22px 0 30px; color: #4d485d; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.intro-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 76px;
  align-items: start;
}
.intro { background: #fff; }
.online { background: #fff; }
.feature-grid {
  display: grid;
  gap: 26px;
}
.feature-grid.three { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  position: relative;
  padding: 34px 28px;
  background: var(--white);
  border: 1px solid rgba(8,0,74,.09);
  box-shadow: 0 14px 50px rgba(8,0,74,.05);
  min-height: 235px;
}
.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: rgba(8,0,74,.06);
  border-radius: 18px;
  margin-bottom: 24px;
}
.icon-box.pale { background: var(--rose); }
.icon-box svg, .contact-icon svg, .social-links svg { width: 26px; height: 26px; fill: currentColor; }
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { font-size: .95rem; }
.soft-cards .feature-card { border-radius: var(--radius); }

.about { position: relative; background: #fff; overflow: hidden; }
.about::before, .contact::before, .faq::before, .specialties::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 220px;
  border: 1px solid rgba(8,0,74,.08);
  border-radius: 50%;
  pointer-events: none;
}
.about::before { right: -110px; top: 90px; transform: rotate(-16deg); }
.about-grid {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 34px;
  align-items: stretch;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 560px; }
.about-card {
  position: relative;
  padding: clamp(42px, 6vw, 82px);
  background: var(--cream);
  overflow: hidden;
}
.about-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(8,0,74,.07);
  border-radius: 43% 57% 66% 34%;
}
.about-card p { margin-top: 18px; max-width: 760px; }
.signature { width: 178px; margin-top: 34px; }

.cta-strip { background: var(--navy); color: var(--white); }
.cta-strip-inner {
  min-height: 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.cta-strip h2 { color: var(--white); font-size: clamp(1.35rem, 2.4vw, 2.1rem); letter-spacing: -.03em; }

.specialties { position: relative; background: #fff; overflow: hidden; }
.specialties::before { left: -130px; top: 80px; transform: rotate(15deg); }
.process { background: #fff; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: steps;
}
.process-step {
  position: relative;
  min-height: 270px;
  padding: 72px 28px 34px;
  border: 1px solid rgba(8,0,74,.12);
  border-radius: 999px 999px 120px 120px;
  text-align: center;
  background: #fff;
}
.process-step span {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-size: .78rem;
  font-weight: 900;
}
.process-step h3 { margin-bottom: 12px; }
.process-step p { font-size: .91rem; }

.testimonials { background: #fff; }
.testimonial-shell { position: relative; }
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  overflow: hidden;
}
.testimonial-card {
  padding: 34px;
  border: 1px solid rgba(8,0,74,.08);
  background: #fff;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card p { margin: 22px 0 28px; color: #4b455f; }
.testimonial-card strong { display: block; color: var(--navy); font-size: .95rem; }
.testimonial-card span { color: var(--muted); font-size: .86rem; }
.stars { color: #f2a300; letter-spacing: .14em; font-size: 1rem; }
.slider-btn {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.slider-btn.prev { left: -22px; }
.slider-btn.next { right: -22px; }
.more-link { margin-top: 34px; }
.more-link .btn-gentle-motion {
  animation: gentleMove 2.8s ease-in-out infinite;
  will-change: transform;
}
.more-link .btn-gentle-motion:hover {
  animation-play-state: paused;
}
@keyframes gentleMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.contact {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.contact::before { right: -120px; top: -80px; transform: rotate(18deg); }
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 74px;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 14px;
  background: rgba(255,255,255,.55);
  padding: 28px;
  border: 1px solid rgba(8,0,74,.08);
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 700;
  font-size: .88rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8,0,74,.38);
  background: rgba(255,255,255,.8);
  padding: 12px 14px;
  color: var(--ink);
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,170,53,.18); }
.contact-form button { justify-self: start; margin-top: 8px; }
.contact-form button:disabled {
  opacity: .72;
  cursor: wait;
  transform: none;
  box-shadow: none;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  min-height: 1.35em;
  margin: 2px 0 0;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--muted);
}
.form-status.is-loading { color: var(--navy); }
.form-status.is-success { color: #177a3a; }
.form-status.is-error { color: #a11e1e; }
.contact-info h2 { margin-bottom: 18px; }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 22px; }
.contact-list li { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  flex: 0 0 auto;
}
.contact-list strong { display: block; color: var(--navy); line-height: 1.3; }
.contact-list a, .contact-list span { color: var(--muted); }

.faq { position: relative; background: var(--cream); overflow: hidden; }
.faq::before { left: -160px; bottom: 100px; transform: rotate(-12deg); }
.faq-wrap { max-width: 820px; }
.accordion { display: grid; gap: 0; }
.accordion-item { border-bottom: 1px solid rgba(8,0,74,.22); }
.accordion-item button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 4px;
  color: var(--navy);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.accordion-item button::after { content: "+"; font-size: 1.1rem; }
.accordion-item.active button::after { content: "−"; }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.accordion-item.active .accordion-panel { max-height: 190px; }
.accordion-panel p { padding: 0 4px 20px; font-size: .95rem; }

.site-footer { background: var(--navy); color: rgba(255,255,255,.78); padding: 72px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .55fr; gap: 70px; }
.footer-logo { width: 170px; margin-bottom: 24px; }
.site-footer h2 { color: var(--white); font-size: 1rem; margin-bottom: 20px; letter-spacing: 0; }
.site-footer a, .site-footer span { display: block; color: rgba(255,255,255,.78); margin-bottom: 8px; }
.site-footer p { color: rgba(255,255,255,.72); max-width: 540px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  color: #fff;
  margin: 0;
  font-weight: 900;
}
.social-links svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: .82rem;
}

.inner-hero { padding-top: 140px; background: var(--cream); }
.inner-hero-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 54px; align-items: center; }
.inner-hero p { margin: 18px 0 28px; }
.inner-hero img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.testimonial-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card.large { min-height: 360px; border-radius: var(--radius); }
.placeholder-card { border-style: dashed; opacity: .78; }
.legal-page { padding-top: 150px; }
.legal-page h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 26px; }
.legal-page h2 { font-size: 1.4rem; margin: 32px 0 10px; }
.legal-page a { color: var(--navy); font-weight: 800; }

@media (prefers-reduced-motion: reduce) {
  .more-link .btn-gentle-motion { animation: none; }
}

@media (max-width: 1050px) {
  .header-cta { display: none; }
  .main-nav { gap: 22px; }
  .hero-grid, .intro-grid, .about-grid, .contact-grid, .inner-hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 420px; order: 2; }
  .hero-content { order: 1; }
  .about-photo img { min-height: 420px; max-height: 580px; }
  .feature-grid.three, .process-grid, .testimonial-track, .testimonial-page-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-radius: var(--radius); min-height: 230px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 68px 0; }
  .section-pad-sm { padding: 58px 0; }
  .site-header, .header-inner { height: 70px; min-height: 70px; }
  .brand img { width: 136px; }
  .nav-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; background: currentColor; }
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 24px 28px 30px;
    display: grid;
    gap: 18px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav.simple { position: static; transform: none; opacity: 1; pointer-events: auto; display: flex; padding: 0; background: transparent; border: 0; }
  .hero { padding-top: 92px; }
  .hero-grid { min-height: auto; }
  .hero-media { min-height: 330px; }
  .hero-content { padding: 36px 22px; }
  .hero-content p { margin: 18px 0 24px; }
  .btn { width: 100%; }
  .feature-grid.three, .process-grid, .testimonial-track, .testimonial-page-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .cta-strip-inner { align-items: stretch; flex-direction: column; padding: 30px 0; }
  .cta-strip-inner .btn { width: auto; align-self: flex-start; }
  .slider-btn { display: none; }
  .contact-grid { gap: 40px; }
  .footer-bottom { flex-direction: column; }
  .inner-hero { padding-top: 112px; }
}


.floating-whatsapp {
  position: fixed;
  right: clamp(18px, 3vw, 32px);
  bottom: clamp(18px, 3vw, 32px);
  z-index: 90;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.35), 0 6px 18px rgba(8, 0, 74, 0.18);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  animation: whatsappFloat 3.4s ease-in-out infinite;
}
.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  background: #20bf5a;
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.45), 0 8px 22px rgba(8, 0, 74, 0.2);
}
.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}
@keyframes whatsappFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 640px) {
  .floating-whatsapp {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
  .floating-whatsapp svg {
    width: 31px;
    height: 31px;
  }
}
