:root {
  --navy: #0C2A5C;
  --navy-light: #173D78;
  --blue: #1B5EB8;
  --blue-light: #3A7FD5;
  --blue-mid: #4A8AC4;
  --bg-soft: #EEF3FA;
  --bg-cream: #F7FAFF;
  --white: #FFFFFF;
  --text: #0C2A5C;
  --text-muted: #4A5C7A;
  --border: #D0DCF0;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1400px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-full: 9999px;

  --sh-sm: 0 1px 4px rgba(12,42,92,.07);
  --sh-md: 0 4px 18px rgba(12,42,92,.11);
  --sh-lg: 0 10px 40px rgba(12,42,92,.15);
  --sh-xl: 0 20px 60px rgba(12,42,92,.18);

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  padding: 2rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .6rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .75rem;
}

.section-desc {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .25s var(--ease-spring), box-shadow .25s ease, background-color .2s ease, color .2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity .2s ease;
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--navy);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}

.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
}

.btn--white:hover {
  background: var(--bg-soft);
  box-shadow: var(--sh-lg);
}

.btn--full {
  width: 100%;
}

.btn__loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.btn.is-loading .btn__text {
  opacity: 0;
}

.btn.is-loading .btn__loader {
  display: block;
  position: absolute;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: auto;
  padding: 5px 0;
  background: var(--navy);
  box-shadow: var(--sh-md);
  transform: translateY(-100%);
  transition: transform .45s var(--ease-out);
}

.site-header.is-visible {
  transform: translateY(0);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 64px;
  width: auto;
  display: block;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav__link {
  padding: .55rem .875rem;
  border-radius: var(--r-full);
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .2s ease, background-color .2s ease;
}

.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav__link.is-active {
  color: var(--white);
}

.nav__cta {
  margin-left: .75rem;
  padding: .6rem 1.4rem;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--r-full);
  font-size: .875rem;
  font-weight: 600;
  transition: background-color .2s ease, transform .25s var(--ease-spring), box-shadow .25s ease;
}

.nav__cta:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,94,184,.4);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background-color .2s ease;
}

.nav__toggle:hover {
  background: rgba(255,255,255,.08);
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/hero.jpg');
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 59, 59, 0.52) 0%, rgba(63, 63, 63, 0.38) 45%, rgba(72, 72, 72, 0.25) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem; 
}

.hero__content {
  max-width: 1020px;
}

.hero__logo-wrap {
  margin-bottom: 2rem;
}

.hero__logo-img {
  width: 180px;
  height: auto;
  display: block;
}

.hero__eyebrow {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .1s forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .25s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--blue-light);
}

.hero__desc {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .4s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .55s forwards;
}

.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .7s forwards;
}

.hero__trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: rgba(255,255,255,.6);
  transition: border-color .2s ease, color .2s ease, transform .3s ease;
  animation: bounce 2s ease infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
}

.hero__scroll:hover {
  border-color: var(--white);
  color: var(--white);
  animation: none;
  transform: translateX(-50%) translateY(2px);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.reveal--delay-4 { transition-delay: .4s; }

.services {
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .35s var(--ease-spring), box-shadow .35s ease, border-color .25s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(58,127,213,.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background-color .25s ease, transform .35s var(--ease-spring);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
  transition: color .25s ease;
}

.service-card:hover .service-card__icon {
  background: var(--blue);
  transform: scale(1.08) rotate(-3deg);
}

.service-card:hover .service-card__icon svg {
  color: var(--white);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .625rem;
}

.service-card__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap .25s ease, color .2s ease;
}

.service-card__link:hover {
  gap: .625rem;
  color: var(--navy);
}

.why-us {
  background: var(--bg-soft);
}

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us__media {
  position: relative;
}

.why-us__img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  aspect-ratio: 4/5;
}

.why-us__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

.why-us__img-wrap:hover img {
  transform: scale(1.04);
}

.why-us__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--sh-lg);
  min-width: 130px;
  opacity: 0;
  transform: translateY(16px) scale(.9);
  transition: opacity .6s var(--ease-out) .3s, transform .6s var(--ease-spring) .3s;
}

.why-us__badge.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.why-us__badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
}

.why-us__badge-text {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.65);
  margin-top: .3rem;
  display: block;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .125rem;
  transition: transform .3s var(--ease-spring), background-color .2s ease;
}

.feature__icon svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.feature:hover .feature__icon {
  transform: scale(1.15) rotate(-5deg);
  background: var(--navy);
}

.feature__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .25rem;
}

.feature__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.process {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(58,127,213,.06);
  pointer-events: none;
}

.process::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(27,94,184,.07);
  pointer-events: none;
}

.process .section-label {
  color: var(--blue-light);
}

.process .section-title {
  color: var(--white);
}

.process .section-desc {
  color: rgba(255,255,255,.6);
}

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid var(--blue-light);
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--blue-light);
  margin-bottom: 1.25rem;
  transition: background-color .3s ease, color .3s ease, transform .35s var(--ease-spring);
  position: relative;
  z-index: 1;
  background: var(--navy);
}

.process-step:hover .process-step__num {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: scale(1.08);
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .625rem;
}

.process-step__desc {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 220px;
  margin-inline: auto;
}

.process-step__connector {
  flex-shrink: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
  margin-top: 3.5rem;
  position: relative;
}

.process-step__connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: rotate(45deg);
}

.testimonials {
  background: var(--bg-cream);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform .35s var(--ease-spring), box-shadow .35s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.75rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--bg-soft);
  font-weight: 700;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

.testimonial-card__stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: .1em;
}

.testimonial-card__text {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .875rem;
}

.testimonial-card__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-soft);
}

.testimonial-card__name {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
}

.testimonial-card__role {
  display: block;
  font-size: .8125rem;
  color: var(--text-muted);
  margin-top: .125rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  padding: 2rem 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band__title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.cta-band__desc {
  font-size: .9375rem;
  color: rgba(255,255,255,.72);
  margin-top: .5rem;
  max-width: 480px;
}

/* Jurisdiction band */
.jurisdiction-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 1.75rem 0;
}

.jurisdiction-band__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}


.jurisdiction-band__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .25rem;
}

.jurisdiction-band__desc {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}

.contact {
  background: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .375rem;
}

.form-label {
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
}

.form-label span {
  color: var(--blue);
}

.form-input {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: .9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,94,184,.12);
}

.form-input.has-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5C7A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  background-size: 18px;
  padding-right: 2.75rem;
  cursor: pointer;
}

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

.form-error {
  font-size: .8rem;
  color: #dc2626;
  min-height: 1em;
}

.form-success {
  text-align: center;
  padding: 1rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 500;
  display: none;
}

.form-success.is-visible {
  display: block;
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #25D366;
  color: var(--white);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 1rem;
  transition: background-color .2s ease, transform .25s var(--ease-spring), box-shadow .25s ease;
  margin-bottom: 1.75rem;
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.contact-info-item__label {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .25rem;
}

.contact-info-item__value {
  font-size: .9375rem;
  color: var(--navy);
  font-weight: 500;
  transition: color .2s ease;
}

a.contact-info-item__value:hover {
  color: var(--blue);
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 2rem 0 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo {
  width: 180px;
  height: auto;
  margin-bottom: 1rem;
}

.site-footer__tagline {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.25rem;
}

.site-footer__wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 600;
  color: #4ade80;
  transition: color .2s ease;
}

.site-footer__wa svg {
  width: 18px;
  height: 18px;
}

.site-footer__wa:hover {
  color: #86efac;
}

.site-footer__nav-title {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}

.site-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.site-footer__nav-list a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .2s ease;
}

.site-footer__nav-list a:hover {
  color: var(--white);
}

.site-footer__hours {
  font-size: .875rem;
  margin-top: .75rem;
}

.site-footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .8125rem;
  flex-wrap: wrap;
}

.site-footer__bottom a {
  color: var(--blue-light);
  font-weight: 600;
  transition: color .2s ease;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

.floating-wa {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}

.floating-wa svg {
  width: 28px;
  height: 28px;
}

.floating-wa:hover {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}

@media (max-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .why-us__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-us__media {
    max-width: 520px;
    margin-inline: auto;
  }

  .why-us__badge {
    right: 0;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .process__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .process-step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .process-step__num {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 52px;
    height: 52px;
    font-size: 1.125rem;
  }

  .process-step__desc {
    max-width: none;
    margin-inline: 0;
  }

  .process-step__connector {
    width: 2px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--blue-light), var(--blue));
  }

  .process-step__connector::after {
    right: -4px;
    top: auto;
    bottom: -6px;
    border-top: none;
    border-right: none;
    border-bottom: 2px solid var(--blue);
    border-left: 2px solid var(--blue);
    transform: rotate(-45deg);
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(280px, 85vw);
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2rem 2rem;
    gap: .375rem;
    box-shadow: var(--sh-xl);
    transition: right .4s var(--ease-out);
    overflow-y: auto;
    z-index: 99;
  }

  .nav__menu.is-open {
    right: 0;
  }

  .nav__link,
  .nav__cta {
    width: 100%;
    padding: .875rem 1rem;
    border-radius: var(--r-sm);
    margin-left: 0;
  }

  .nav__menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }

  .nav__menu-overlay.is-visible {
    opacity: 1;
    pointer-events: all;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-band__desc {
    max-width: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: .5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --pad-x: 1.125rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .why-us__badge {
    position: static;
    margin-top: 1.25rem;
    display: inline-flex;
    gap: .75rem;
    align-items: center;
    padding: .875rem 1.25rem;
    border-radius: var(--r-md);
    transform: none;
    opacity: 1;
  }

  .why-us__badge.is-visible {
    transform: none;
  }

  .why-us__badge-num {
    font-size: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
  }
}
