@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f3f8fd;
  --surface: #ffffff;
  --surface-alt: #eef5fb;
  --primary: #0c5ea9;
  --primary-deep: #083a67;
  --accent: #12aee0;
  --accent-soft: rgba(18, 174, 224, 0.12);
  --ink: #10213a;
  --muted: #5b6a82;
  --border: rgba(12, 94, 169, 0.14);
  --success: #0e8f6a;
  --warning: #ffedd5;
  --shadow-lg: 0 22px 55px rgba(8, 58, 103, 0.12);
  --shadow-md: 0 14px 35px rgba(8, 58, 103, 0.1);
  --shadow-sm: 0 10px 20px rgba(8, 58, 103, 0.07);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 86px;
  --font-body: 'Manrope', sans-serif;
  --font-display: 'Fraunces', serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(18, 174, 224, 0.12), transparent 32%),
    radial-gradient(circle at right 10% top 12%, rgba(12, 94, 169, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
  line-height: 1.6;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

body.has-mobile-cta {
  padding-bottom: 90px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -60px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--primary-deep);
  color: #fff;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.section-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.1;
}

.section-copy,
.lede {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.card.pad-lg {
  padding: 30px;
}

.card.pad-md {
  padding: 24px;
}

.btn-row,
.hero-actions,
.cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #1471bf);
  color: #fff;
  box-shadow: 0 16px 28px rgba(12, 94, 169, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.75);
  color: var(--primary-deep);
  border-color: rgba(12, 94, 169, 0.18);
}

.btn-ghost {
  background: rgba(18, 174, 224, 0.08);
  color: var(--primary);
  border-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(12, 94, 169, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 16px 30px rgba(8, 58, 103, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.topbar {
  padding: 10px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(12, 94, 169, 0.07);
}

.topbar-inner,
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-links,
.header-cta,
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-links a,
.mini-link {
  color: var(--muted);
}

.header-inner {
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-deep), var(--accent));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.brand-text strong {
  display: block;
  font-size: 1.02rem;
}

.brand-text span {
  font-size: 0.84rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  font-weight: 700;
  color: var(--muted);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links a.is-active,
.nav-links a:hover {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--primary-deep);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded='true'] span {
  opacity: 0;
}

.menu-toggle[aria-expanded='true']::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded='true']::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 84px;
}

.hero-grid,
.split-layout,
.cta-panel,
.service-detail,
.contact-layout,
.location-layout,
.about-layout {
  display: grid;
  align-items: center;
  gap: 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.hero-copy p,
.page-hero p {
  margin: 0 0 24px;
  max-width: 670px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}

.trust-pill,
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--primary-deep);
}

.hero-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 244, 252, 0.9));
  border: 1px solid rgba(12, 94, 169, 0.12);
  box-shadow: var(--shadow-lg);
}

.hero-card img {
  border-radius: 24px;
  width: 100%;
}

.hero-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 220px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(8, 58, 103, 0.92);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.hero-badge strong,
.metric strong,
.testimonial strong,
.service-card h3,
.feature-card h3,
.faq-item strong,
.location-card h3,
.footer-card strong {
  display: block;
  margin-bottom: 8px;
}

.hero-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.metrics {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.metric {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 253, 0.86));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.metric .value {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(12, 94, 169, 0.14), rgba(18, 174, 224, 0.16));
  color: var(--primary);
  font-weight: 800;
}

.list-clean,
.check-list,
.link-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.link-list a {
  position: relative;
  padding-left: 30px;
}

.check-list li::before,
.link-list a::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.pain-grid,
.services-grid,
.testimonial-grid,
.location-grid,
.faq-grid,
.proof-grid,
.service-grid {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.pain-grid,
.services-grid,
.testimonial-grid,
.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-grid,
.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.service-card,
.testimonial,
.location-card,
.faq-item,
.proof-card,
.service-panel,
.process-step,
.contact-card,
.footer-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.feature-card p,
.service-card p,
.testimonial p,
.location-card p,
.faq-item p,
.proof-card p,
.contact-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
}

.stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #f6b316;
  letter-spacing: 0.12em;
}

.service-card .price-tag,
.contact-badge,
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18, 174, 224, 0.09);
  color: var(--primary-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.proof-band {
  margin-top: -34px;
}

.proof-wrap {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.25fr 0.75fr;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary-deep), #0a4b88);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.proof-copy h2,
.cta-copy h2,
.footer-brand h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 3rem);
}

.proof-copy p,
.cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.proof-points {
  display: grid;
  gap: 16px;
}

.proof-points .stat-pill {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.appointment-panel {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 245, 251, 0.9));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.appointment-panel h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 2rem;
}

.appointment-panel p {
  margin-top: 0;
  color: var(--muted);
}

.appointment-form {
  display: grid;
  gap: 14px;
}

.field-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.appointment-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--primary-deep);
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(12, 94, 169, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
}

.appointment-form textarea {
  min-height: 128px;
  resize: vertical;
}

.micro-copy,
.form-note,
.footer-copy,
.tiny {
  font-size: 0.92rem;
  color: var(--muted);
}

.form-feedback {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(14, 143, 106, 0.1);
  color: var(--success);
  font-weight: 700;
}

.form-feedback.is-visible {
  display: block;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumbs li::after {
  content: '/';
  margin-left: 10px;
  color: rgba(91, 106, 130, 0.5);
}

.breadcrumbs li:last-child::after {
  display: none;
}

.page-hero {
  padding: 36px 0 70px;
}

.page-hero .card {
  overflow: hidden;
}

.section-shell {
  display: grid;
  gap: 28px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-deep);
  cursor: pointer;
}

.faq-question span:last-child {
  font-size: 1.4rem;
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-card.is-open .faq-answer {
  max-height: 260px;
}

.faq-card.is-open .faq-question span:last-child {
  transform: rotate(45deg);
}

.cta-strip,
.final-cta {
  position: relative;
}

.cta-shell {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(225, 240, 250, 0.9));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.cta-panel {
  align-items: stretch;
}

.cta-copy {
  padding: 16px 0;
}

.cta-copy .eyebrow {
  margin-bottom: 14px;
}

.cta-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.cta-points .stat-pill {
  justify-content: flex-start;
}

.service-detail .card img,
.page-hero .card img,
.contact-layout .card img,
.about-layout .card img,
.location-layout .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(18, 174, 224, 0.1);
  color: var(--primary);
}

.location-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.location-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(18, 174, 224, 0.06);
  border: 1px solid rgba(12, 94, 169, 0.08);
  color: var(--primary-deep);
  font-weight: 700;
}

.site-footer {
  padding: 76px 0 32px;
  background: linear-gradient(180deg, var(--primary-deep), #071f39);
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
}

.footer-card,
.footer-brand {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.footer-copy,
.footer-links a,
.site-footer .tiny,
.footer-card p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 98px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #16c45b;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(22, 196, 91, 0.28);
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 130;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(7, 31, 57, 0.92);
  box-shadow: var(--shadow-lg);
}

.mobile-cta a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 16px;
  font-weight: 800;
  color: #fff;
}

.mobile-cta a:first-child {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-cta a:nth-child(2) {
  background: rgba(22, 196, 91, 0.3);
}

.mobile-cta a:last-child {
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .location-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 76px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) + 11px) 16px auto;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(12, 94, 169, 0.12);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links,
  .header-cta {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .topbar {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .cta-panel,
  .service-detail,
  .contact-layout,
  .location-layout,
  .about-layout,
  .proof-wrap,
  .faq-grid,
  .process-grid,
  .pain-grid,
  .services-grid,
  .testimonial-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.has-mobile-cta {
    padding-bottom: 104px;
  }

  .section,
  .page-hero {
    padding: 64px 0;
  }

  .hero {
    padding-bottom: 60px;
  }

  .metrics,
  .field-row,
  .grid-2,
  .grid-3,
  .grid-4,
  .location-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: 72px;
  }

  .header-cta .btn,
  .hero-actions .btn,
  .form-actions .btn {
    width: 100%;
  }

  .hero-badge {
    position: static;
    margin-top: 18px;
    max-width: none;
  }

  .mobile-cta {
    display: grid;
  }

  .whatsapp-float {
    bottom: 124px;
    right: 14px;
    padding: 12px 15px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
