:root {
  --navy-950: #050d18;
  --navy-900: #071321;
  --navy-850: #0b1a2c;
  --navy-800: #10263d;
  --brand-blue: #123b91;
  --ink: #122033;
  --muted: #5c6877;
  --line: #dce3e9;
  --surface: #f4f7f8;
  --white: #ffffff;
  --blue: #28a8e9;
  --blue-light: #8edaff;
  --green: #0db951;
  --green-dark: #079b42;
  --shadow: 0 18px 50px rgba(4, 20, 35, 0.14);
}

* {
  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", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(18, 59, 145, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.nav,
.footer-inner,
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav {
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--brand-blue);
}

.brand-logo {
  display: block;
  width: 176px;
  height: 39px;
  object-fit: cover;
  object-position: top;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  gap: 25px;
}

.desktop-nav a {
  color: rgba(18, 32, 51, 0.72);
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--brand-blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
  margin-right: 8px;
  fill: currentColor;
  stroke: none;
}

.button-small {
  min-height: 43px;
  padding: 0 16px;
  border: 1px solid var(--green);
  color: var(--white);
  background: var(--green);
  font-size: 12px;
}

.button-small:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(32, 197, 106, 0.27);
}

.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 32px rgba(32, 197, 106, 0.32);
}

.button-dark {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 10px 20px rgba(7, 19, 33, 0.12);
}

.button-dark:hover {
  background: var(--navy-800);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 28%, rgba(36, 165, 229, 0.22), transparent 30%),
    radial-gradient(circle at 6% 90%, rgba(36, 165, 229, 0.12), transparent 28%),
    var(--navy-950);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, black, transparent 92%);
}

.hero-layout {
  position: relative;
  display: grid;
  min-height: 710px;
  padding: 90px 0 84px;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.67fr);
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.6px;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 2px;
  background: currentColor;
}

.eyebrow-dark {
  color: #0d86c5;
}

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

h1 {
  max-width: 730px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.2vw, 74px);
  letter-spacing: -3px;
  line-height: 0.99;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions,
.location-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 21px;
}

.text-link {
  color: rgba(255, 255, 255, 0.79);
  font-size: 14px;
  font-weight: 750;
}

.text-link span {
  margin-left: 3px;
  color: var(--blue-light);
}

.text-link-dark {
  color: var(--navy-900);
}

.text-link-dark span {
  color: #0d86c5;
}

.hero-trust {
  display: flex;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: grid;
  min-width: 145px;
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  margin-right: 26px;
}

.hero-trust li:last-child {
  border: 0;
  margin-right: 0;
}

.hero-trust strong {
  color: var(--blue-light);
  font-size: 28px;
  letter-spacing: -1px;
}

.hero-trust span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(142, 218, 255, 0.23);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(17, 48, 74, 0.86), rgba(7, 21, 37, 0.92));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(32, 197, 106, 0.13);
}

.hero-photo {
  position: relative;
  height: 292px;
  margin: 0;
  overflow: hidden;
}

.hero-photo::after,
.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(3, 11, 20, 0.7));
  content: "";
  pointer-events: none;
}

.hero-photo img,
.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo img {
  object-position: center 45%;
}

.hero-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 17px;
  bottom: 14px;
  left: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.hero-photo figcaption span {
  padding: 5px 7px;
  border-radius: 5px;
  color: var(--white);
  background: var(--green);
  font-size: 9px;
  letter-spacing: 0.9px;
}

.hero-card-body {
  padding: 25px 25px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.13);
}

.hero-card-body p {
  margin-bottom: 9px;
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-card-body h2 {
  margin-bottom: 20px;
  font-size: 24px;
  letter-spacing: -0.8px;
  line-height: 1.14;
}

.schedule {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.schedule svg {
  width: 21px;
  height: 21px;
  color: var(--blue-light);
}

.schedule strong {
  color: var(--white);
}

.trust-strip {
  color: var(--white);
  background: #0c253c;
}

.trust-strip-inner {
  min-height: 66px;
  gap: 20px;
}

.trust-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.trust-strip strong,
.trust-strip span {
  color: var(--blue-light);
}

.trust-strip a {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.section {
  padding: 102px 0;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 43px;
}

.section-heading-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-center .eyebrow {
  justify-content: center;
}

.section h2 {
  margin-bottom: 15px;
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -2px;
  line-height: 1.03;
}

.section-heading > p:last-child,
.proof-panel > p,
.symptom-card p,
.process-grid p,
.faq-list p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.service-section,
.process-section,
.faq-section {
  background: var(--surface);
}

.symptom-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.symptom-card {
  padding: 27px 24px 21px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.symptom-card:hover {
  box-shadow: 0 16px 30px rgba(4, 20, 35, 0.08);
  transform: translateY(-3px);
}

.icon-box {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 35px;
  border-radius: 12px;
  color: #0d86c5;
  background: #e5f6ff;
  place-items: center;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.symptom-card h3,
.process-grid h3,
.benefit-list h3 {
  margin-bottom: 8px;
  font-size: 17px;
  letter-spacing: -0.3px;
}

.symptom-card p,
.process-grid p {
  margin-bottom: 0;
  font-size: 13px;
}

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

.proof-section {
  color: var(--white);
  background: var(--navy-900);
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
}

.proof-panel h2 {
  max-width: 550px;
}

.proof-panel > p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.62);
}

.rating-card {
  display: inline-flex;
  align-items: center;
  gap: 19px;
  margin-top: 21px;
  padding: 15px 20px;
  border: 1px solid rgba(142, 218, 255, 0.17);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.rating-card div {
  display: grid;
}

.rating-card strong {
  font-size: 32px;
  letter-spacing: -1px;
}

.rating-card span {
  color: #ffbd4a;
  font-size: 12px;
  letter-spacing: 1px;
}

.rating-card p {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.6;
}

.rating-card b {
  color: var(--white);
}

.proof-link {
  display: block;
  width: fit-content;
  margin-top: 17px;
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 800;
}

.proof-link span {
  margin-left: 3px;
}

.gallery-section {
  background: var(--white);
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  grid-template-rows: repeat(2, 220px);
  gap: 14px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin: 0;
  background: var(--navy-900);
}

.gallery-card-main {
  grid-row: 1 / 3;
}

.gallery-card-wide {
  grid-column: 2 / 4;
}

.gallery-card img {
  transition: transform 320ms ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.content-section {
  background: var(--surface);
}

.content-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.88fr 0.88fr;
  gap: 14px;
}

.content-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.content-card:hover {
  box-shadow: 0 16px 30px rgba(4, 20, 35, 0.09);
  transform: translateY(-3px);
}

.content-card > a {
  display: grid;
  min-height: 100%;
}

.content-card-featured img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.content-card-body {
  padding: 22px;
}

.content-card-body p {
  margin-bottom: 9px;
  color: #0d86c5;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.content-card-body h3 {
  margin-bottom: 21px;
  font-size: 20px;
  letter-spacing: -0.55px;
  line-height: 1.16;
}

.content-card-body span {
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 850;
}

.content-card-body b {
  color: #0d86c5;
}

.content-card-symbol {
  display: grid;
  min-height: 118px;
  color: rgba(13, 134, 197, 0.76);
  background:
    radial-gradient(circle at 75% 20%, rgba(13, 185, 81, 0.13), transparent 25%),
    #e5f6ff;
  font-size: 39px;
  font-weight: 900;
  letter-spacing: -1.5px;
  place-items: center;
}

.benefit-list {
  display: grid;
}

.benefit-list article {
  display: grid;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 58px 1fr;
}

.benefit-list article:first-child {
  padding-top: 5px;
}

.benefit-list span {
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 850;
}

.benefit-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.6;
}

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

.process-grid article {
  position: relative;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.process-grid strong {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 41px;
  border-radius: 50%;
  color: #0d86c5;
  background: #e5f6ff;
  place-items: center;
}

.location-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 74px;
  align-items: center;
}

address {
  margin: 21px 0 27px;
  color: var(--muted);
  font-size: 17px;
  font-style: normal;
  line-height: 1.65;
}

.location-card {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}

.location-line {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.location-line:last-child {
  border: 0;
}

.location-line svg {
  width: 25px;
  height: 25px;
  color: #0d86c5;
  flex: 0 0 auto;
}

.location-line div {
  display: grid;
  gap: 4px;
}

.location-line small {
  color: #0d86c5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.location-line strong {
  font-size: 16px;
}

.location-line span {
  color: var(--muted);
  font-size: 13px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding-right: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: -2px;
  right: 4px;
  color: #0d86c5;
  content: "+";
  font-size: 23px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 13px 0 0;
  padding-right: 25px;
  font-size: 14px;
}

.final-cta {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 50%, rgba(36, 165, 229, 0.19), transparent 27%),
    var(--navy-950);
}

.final-cta-inner {
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(31px, 4vw, 46px);
  letter-spacing: -1.7px;
  line-height: 1.05;
}

.site-footer {
  padding: 31px 0;
  color: rgba(255, 255, 255, 0.56);
  background: #040a12;
}

.site-footer .brand-logo {
  width: 144px;
  height: 32px;
}

.footer-inner {
  gap: 25px;
}

.site-footer p,
.site-footer > a {
  margin: 0;
  font-size: 12px;
}

.site-footer a:last-child {
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 750;
}

.mobile-whatsapp {
  display: none;
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .hero-layout {
    min-height: auto;
    padding: 78px 0 70px;
    grid-template-columns: 1fr;
    gap: 47px;
  }

  .hero-card {
    display: grid;
    max-width: 670px;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero-card-top {
    grid-column: 1 / -1;
  }

  .hero-photo {
    height: 248px;
  }

  .hero-card-body {
    display: grid;
    align-content: center;
  }

  .gallery-grid {
    grid-template-rows: repeat(2, 185px);
  }

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

  .proof-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 49px;
  }

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

  .content-card-featured {
    grid-column: 1 / -1;
  }

  .location-layout {
    gap: 40px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 590px);
  }

  .nav {
    min-height: 67px;
  }

  .nav .button {
    display: none;
  }

  .brand-logo {
    width: 145px;
    height: 32px;
  }

  .hero-layout {
    padding: 64px 0 48px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(43px, 13vw, 62px);
    letter-spacing: -2.2px;
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .hero-card {
    display: block;
  }

  .hero-photo {
    height: 210px;
  }

  .hero-card-body {
    display: none;
  }

  .hero-trust {
    display: grid;
    margin-top: 36px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-trust li {
    min-width: 0;
    padding-right: 10px;
    margin-right: 10px;
  }

  .hero-trust strong {
    font-size: 23px;
  }

  .hero-trust span {
    font-size: 10px;
    line-height: 1.35;
  }

  .trust-strip-inner {
    display: block;
    padding: 16px 0;
  }

  .trust-strip p {
    margin-bottom: 8px;
    line-height: 1.5;
  }

  .section {
    padding: 75px 0;
  }

  .section h2 {
    font-size: 37px;
  }

  .symptom-grid,
  .process-grid,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .symptom-card {
    padding: 21px 20px 17px;
  }

  .icon-box {
    margin-bottom: 22px;
  }

  .proof-layout {
    gap: 38px;
  }

  .gallery-heading {
    display: block;
  }

  .content-heading {
    display: block;
  }

  .content-heading > .text-link {
    display: inline-block;
    margin: -15px 0 27px;
  }

  .gallery-heading .button {
    width: 100%;
    margin: -15px 0 27px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 210px);
  }

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

  .content-card-featured {
    grid-column: auto;
  }

  .gallery-card-main,
  .gallery-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .rating-card {
    width: 100%;
  }

  .benefit-list article {
    grid-template-columns: 45px 1fr;
  }

  .process-grid article {
    padding: 23px;
  }

  .process-grid strong {
    margin-bottom: 26px;
  }

  .location-layout {
    gap: 31px;
  }

  .faq-layout {
    gap: 12px;
  }

  .faq-list summary {
    font-size: 14px;
  }

  .final-cta-inner {
    display: block;
    min-height: 0;
    padding: 64px 0 70px;
  }

  .final-cta .button {
    width: 100%;
    margin-top: 27px;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .footer-inner {
    display: grid;
    gap: 15px;
  }

  .mobile-whatsapp {
    position: fixed;
    z-index: 30;
    right: 13px;
    bottom: 13px;
    left: 13px;
    display: inline-flex;
    min-height: 56px;
    box-shadow: 0 9px 26px rgba(4, 20, 35, 0.25);
  }
}
