:root {
  --navy-950: #031a38;
  --navy-900: #031f46;
  --navy-800: #062b5c;
  --blue-700: #0757a6;
  --blue-600: #0877c8;
  --cyan-500: #18a9d5;
  --cyan-300: #7adff2;
  --aqua-500: #00bfa6;
  --aqua-600: #00a891;
  --ice-100: #ddf7fb;
  --ice-50: #f3fafc;
  --white: #ffffff;
  --ink: #10233f;
  --muted: #5c6b7e;
  --line: #dceaf0;
  --shadow: 0 16px 45px rgba(4, 43, 92, 0.1);
  --shadow-strong: 0 24px 60px rgba(0, 24, 57, 0.2);
  --radius-sm: 13px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1200px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  object-fit: cover;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-800);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.04;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 800;
}

h3 {
  font-size: 1.25rem;
  font-weight: 750;
}

p {
  color: var(--muted);
}

:focus-visible {
  outline: 3px solid var(--cyan-300);
  outline-offset: 4px;
}

.container {
  width: min(100% - 64px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--cyan-300);
}

.water-divider {
  display: block;
  width: 48px;
  height: 8px;
  margin: 0 auto 20px;
  background:
    radial-gradient(circle at 6px 4px, transparent 5px, var(--cyan-500) 5.5px, var(--cyan-500) 6.5px, transparent 7px)
    0 0 / 16px 8px repeat-x;
  opacity: 0.8;
}

.water-divider-left {
  margin-left: 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 38px;
}

.section-heading > p:last-child {
  max-width: 690px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua-600), #00c9a7);
  box-shadow: 0 12px 26px rgba(0, 191, 166, 0.22);
}

.button-primary:hover {
  background: linear-gradient(135deg, #009b87, #00bfa0);
  box-shadow: 0 15px 32px rgba(0, 191, 166, 0.3);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.04);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-large {
  min-height: 56px;
  padding: 16px 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 800;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(6, 43, 92, 0.08);
  background: rgba(255, 255, 255, 0.97);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(3, 31, 70, 0.09);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: var(--navy-800);
}

.brand-mark {
  width: 47px;
  color: var(--cyan-500);
}

.brand-mark svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.03;
}

.brand-name strong {
  font-size: 1.25rem;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: #26384d;
  font-size: 0.89rem;
  font-weight: 650;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--aqua-500);
  content: "";
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.header-cta {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 0;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-800) 48%, var(--blue-700) 100%);
}

.hero::before {
  position: absolute;
  top: -180px;
  left: -140px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(122, 223, 242, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(122, 223, 242, 0.025),
    0 0 0 110px rgba(122, 223, 242, 0.018);
  content: "";
}

.hero-bubble {
  position: absolute;
  border: 1px solid rgba(122, 223, 242, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bubble-one {
  top: 75px;
  right: 43%;
  width: 45px;
  height: 45px;
}

.hero-bubble-two {
  bottom: 190px;
  left: 42%;
  width: 18px;
  height: 18px;
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 56px;
  padding-bottom: 72px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-description {
  max-width: 650px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-trust svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--cyan-300);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 5px solid rgba(255, 255, 255, 0.12);
  border-radius: 90px 24px 90px 24px;
  box-shadow: var(--shadow-strong);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 31, 70, 0.13), transparent 55%);
  content: "";
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
}

.hero-chips {
  position: absolute;
  right: -15px;
  bottom: 24px;
  left: -25px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.hero-chips span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: var(--navy-800);
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 13px 28px rgba(2, 25, 54, 0.22);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-chips svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--aqua-600);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: var(--white);
  border-radius: 25px 25px 0 0;
  box-shadow: 0 -12px 40px rgba(1, 25, 57, 0.1);
}

.trust-strip article {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 15px;
  padding: 27px 23px;
}

.trust-strip article + article {
  border-left: 1px solid var(--line);
}

.icon-box {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
  background: var(--ice-50);
  border: 1px solid #caedf3;
  border-radius: 15px;
}

.icon-box svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip h2 {
  margin-bottom: 3px;
  font-size: 0.99rem;
  letter-spacing: -0.01em;
}

.trust-strip p {
  margin-bottom: 0;
  font-size: 0.8rem;
  line-height: 1.4;
}

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

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

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(4, 43, 92, 0.14);
}

.service-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.service-card-body {
  position: relative;
  padding: 30px 32px 32px;
}

.service-number {
  position: absolute;
  top: -24px;
  right: 26px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: var(--aqua-500);
  border: 5px solid var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 11px;
  font-size: 1.45rem;
}

.service-card p {
  margin-bottom: 18px;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: #42536a;
  font-size: 0.93rem;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--aqua-600);
  content: "✓";
  font-weight: 900;
}

/* Features */
.differentials {
  background: var(--ice-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  padding: 29px 24px;
  background: var(--white);
  border: 1px solid #dcecf1;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(4, 43, 92, 0.055);
}

.feature-card .icon-box {
  margin-bottom: 21px;
}

.feature-card h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.91rem;
}

/* Process */
.process {
  background: var(--white);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 57px;
  right: 16%;
  left: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--aqua-500), var(--cyan-500));
  content: "";
}

.process-list li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 20px auto 23px;
  place-items: center;
  color: var(--blue-700);
  background: var(--white);
  border: 2px solid var(--cyan-500);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(7, 87, 166, 0.1);
}

.process-icon svg {
  width: 37px;
  height: 37px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-number {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 9px;
}

.process-list p {
  max-width: 280px;
  margin: 0 auto;
}

.centered-action {
  margin-top: 42px;
  text-align: center;
}

/* Regions */
.regions {
  background: linear-gradient(125deg, #eaf8fc, var(--white));
}

.regions-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 5fr 7fr;
  gap: 74px;
}

.region-visual {
  position: relative;
  display: grid;
  min-height: 440px;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(0, 191, 166, 0.13), transparent 48%),
    linear-gradient(145deg, #d6f2f8, #f7fcfd);
  border: 1px solid #cdeaf0;
  border-radius: 42% 58% 50% 50% / 46% 44% 56% 54%;
}

.radar-ring {
  position: absolute;
  border: 1px dashed rgba(7, 87, 166, 0.23);
  border-radius: 50%;
}

.ring-one {
  width: 300px;
  height: 300px;
}

.ring-two {
  width: 420px;
  height: 420px;
}

.region-center {
  position: relative;
  z-index: 2;
  display: flex;
  width: 190px;
  min-height: 145px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  color: var(--navy-800);
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.region-center svg {
  width: 34px;
  height: 34px;
  margin-bottom: 9px;
  fill: none;
  stroke: var(--aqua-600);
  stroke-width: 2;
}

.region-center span {
  color: var(--muted);
  font-size: 0.82rem;
}

.map-pin {
  position: absolute;
  color: var(--blue-700);
}

.map-pin svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
  stroke: currentColor;
  stroke-width: 2;
}

.pin-one {
  top: 58px;
  left: 32%;
}

.pin-two {
  top: 34%;
  right: 13%;
}

.pin-three {
  bottom: 70px;
  left: 20%;
}

.pin-four {
  right: 29%;
  bottom: 48px;
}

.region-content h2 {
  max-width: 680px;
}

.region-intro {
  max-width: 660px;
  margin-bottom: 27px;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 31px;
  padding: 0;
  list-style: none;
}

.city-list li {
  display: flex;
  min-height: 47px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #253a53;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #d7eaef;
  border-radius: 12px;
  font-weight: 700;
}

.city-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--aqua-600);
  stroke-width: 2.2;
}

/* Commitment */
.commitment {
  padding: 70px 0;
  overflow: hidden;
  background: var(--white);
}

.commitment-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding: 55px;
  color: var(--white);
  background: linear-gradient(125deg, var(--navy-800), var(--blue-700));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.commitment-panel::after {
  position: absolute;
  right: -80px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border: 55px solid rgba(0, 201, 167, 0.16);
  border-radius: 50%;
  content: "";
}

.commitment-copy {
  position: relative;
  z-index: 1;
}

.commitment-copy h2,
.commitment-copy p {
  color: var(--white);
}

.commitment-copy h2 {
  font-size: clamp(2rem, 3.1vw, 2.75rem);
}

.commitment-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.commitment-items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.commitment-items article {
  padding: 24px 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  backdrop-filter: blur(5px);
}

.commitment-items svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  fill: none;
  stroke: var(--cyan-300);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.commitment-items h3 {
  margin: 0;
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.35;
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 4fr 8fr;
  gap: 70px;
}

.faq-intro {
  position: sticky;
  top: 115px;
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 22px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 7px 20px rgba(4, 43, 92, 0.05);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 21px;
  color: var(--navy-800);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.faq-item button span {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: var(--blue-700);
  content: "";
  transition: transform var(--transition);
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item.open button span::after {
  transform: rotate(0);
}

.faq-item.open {
  border-color: #b9e3eb;
}

.faq-answer {
  padding: 0 52px 20px 21px;
}

.faq-answer p {
  margin: 0;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 76px 0 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 20%, rgba(0, 201, 167, 0.19), transparent 30%),
    linear-gradient(120deg, var(--navy-900), var(--blue-700));
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--cyan-300);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.final-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p {
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
}

.phone-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--cyan-300);
  stroke-width: 2;
}

.cta-wave {
  position: absolute;
  right: -3%;
  bottom: -65px;
  width: 420px;
  height: 145px;
  border: 15px solid rgba(122, 223, 242, 0.18);
  border-radius: 50%;
  box-shadow:
    0 -24px 0 rgba(0, 191, 166, 0.15),
    0 -48px 0 rgba(122, 223, 242, 0.08);
}

/* Footer */
.site-footer {
  padding: 56px 0 0;
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1.25fr;
  gap: 48px;
  padding-bottom: 42px;
}

.brand-light {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-brand p {
  max-width: 280px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-brand > strong {
  color: var(--cyan-300);
  font-size: 0.9rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.89rem;
}

.footer-column a:hover {
  color: var(--cyan-300);
}

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  word-break: break-word;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  fill: none;
  stroke: var(--cyan-300);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.8rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Tablet */
@media (max-width: 1020px) {
  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 35px;
  }

  h1 {
    font-size: clamp(2.6rem, 5.4vw, 3.75rem);
  }

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

  .trust-strip article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .commitment-panel {
    grid-template-columns: 1fr;
  }

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

/* Mobile */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 40px, var(--container));
  }

  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(2.25rem, 10.5vw, 2.7rem);
    line-height: 1.07;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.05rem);
  }

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

  .brand-mark {
    width: 38px;
  }

  .brand-name {
    font-size: 0.93rem;
  }

  .brand-name strong {
    font-size: 1.05rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    color: var(--navy-800);
    background: var(--ice-50);
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 21px;
    height: 2px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 18px 20px 32px;
    overflow-y: auto;
    background: var(--white);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 17px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 38px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    align-items: flex-start;
    line-height: 1.45;
  }

  .hero-image-wrap {
    border-radius: 50px 18px 50px 18px;
  }

  .hero-chips {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .hero-chips span {
    justify-content: center;
    box-shadow: none;
  }

  .trust-strip {
    width: 100%;
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .trust-strip article {
    padding: 21px 20px;
  }

  .trust-strip article + article,
  .trust-strip article:nth-child(3),
  .trust-strip article:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .services-grid,
  .features-grid,
  .regions-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    gap: 22px;
  }

  .service-card-body {
    padding: 27px 23px 25px;
  }

  .features-grid {
    gap: 14px;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 16px;
    padding: 21px;
  }

  .feature-card .icon-box {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .feature-card h3 {
    align-self: end;
    margin-bottom: 4px;
  }

  .feature-card p {
    grid-column: 2;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-list::before {
    top: 20px;
    bottom: 20px;
    left: 30px;
    width: 2px;
    height: auto;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 61px 1fr;
    column-gap: 17px;
    text-align: left;
  }

  .step-number {
    position: absolute;
    top: 0;
    left: 17px;
  }

  .process-icon {
    width: 61px;
    height: 61px;
    grid-row: 1 / span 3;
    margin: 38px 0 0;
  }

  .process-icon svg {
    width: 29px;
    height: 29px;
  }

  .process-list h3 {
    align-self: end;
    margin-top: 38px;
  }

  .process-list p {
    max-width: none;
    margin: 0;
  }

  .centered-action .button {
    width: 100%;
  }

  .regions-grid {
    gap: 39px;
  }

  .region-visual {
    min-height: 330px;
    order: 2;
  }

  .region-content {
    order: 1;
  }

  .ring-one {
    width: 230px;
    height: 230px;
  }

  .ring-two {
    width: 320px;
    height: 320px;
  }

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

  .city-list li {
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .region-content .button {
    width: 100%;
  }

  .commitment {
    padding: 48px 0;
  }

  .commitment-panel {
    width: min(100% - 40px, var(--container));
    gap: 34px;
    padding: 35px 24px;
  }

  .commitment-items {
    grid-template-columns: 1fr;
  }

  .commitment-items article {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
  }

  .commitment-items svg {
    margin: 0;
    flex: 0 0 auto;
  }

  .commitment-copy .button {
    width: 100%;
  }

  .faq-grid {
    gap: 31px;
  }

  .faq-intro {
    position: static;
  }

  .faq-item button {
    min-height: 62px;
    padding: 17px;
  }

  .faq-answer {
    padding: 0 42px 18px 17px;
  }

  .final-cta {
    padding: 53px 0 75px;
  }

  .final-actions {
    flex-direction: column;
    gap: 21px;
  }

  .final-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .footer-column {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0 26px;
  }
}

@media (max-width: 420px) {
  .city-list {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 46px 1fr;
    padding: 18px;
  }

  .feature-card .icon-box {
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Site Fácil IA: proteção de integridade visual */
html,body{max-width:100%;overflow-x:clip}main>section{position:relative;isolation:isolate;clear:both}img{max-width:100%;height:auto}img[src*="assets/"]{object-fit:contain}
