@import 'tailwindcss';
@import 'tw-animate-css';
@import 'shadcn/tailwind.css';

:root {
  --background: #f4f8fb;
  --foreground: #102336;
  --card: #ffffff;
  --card-foreground: #102336;
  --primary: #08767b;
  --primary-foreground: #ffffff;
  --secondary: #e8f5f5;
  --secondary-foreground: #0a5b61;
  --muted: #edf3f6;
  --muted-foreground: #5a6d7c;
  --accent: #ffcb66;
  --accent-foreground: #402b00;
  --destructive: #c23838;
  --border: #dce7ec;
  --input: #dce7ec;
  --ring: #08767b;
  --radius: 0.9rem;
  --navy: #071d2e;
  --teal: #14a9aa;
  --cyan: #86e4df;
}

.dark {
  --background: #071d2e;
  --foreground: #f8fbfc;
  --card: #0d2b41;
  --card-foreground: #f8fbfc;
  --primary: #42d2cb;
  --primary-foreground: #071d2e;
  --secondary: #123750;
  --secondary-foreground: #d8f7f4;
  --muted: #102f46;
  --muted-foreground: #a8bdca;
  --accent: #ffcb66;
  --accent-foreground: #2e2105;
  --destructive: #ff7373;
  --border: #23455c;
  --input: #23455c;
  --ring: #42d2cb;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
:focus-visible {
  outline: 3px solid rgba(14, 141, 145, 0.42);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background:
    radial-gradient(
      circle at 16% 7%,
      rgba(20, 169, 170, 0.15),
      transparent 27rem
    ),
    linear-gradient(180deg, #f8fbfd 0%, #eef6f8 100%);
}
.topbar {
  width: min(1180px, calc(100% - 40px));
  height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(12, 62, 83, 0.12);
}
.brand {
  justify-self: start;
  display: inline-flex;
}
.brand img {
  width: 146px;
  height: auto;
  display: block;
}
.topbar nav {
  display: flex;
  gap: 30px;
  font-size: 15px;
  font-weight: 700;
  color: #35566a;
}
.topbar nav a {
  transition: color 0.2s ease;
}
.topbar nav a:hover {
  color: var(--primary);
}
.header-phone {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(7, 29, 46, 0.13);
}
.header-phone svg {
  width: 17px;
}
.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  padding: 68px 0 82px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #0a777b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.eyebrow span {
  width: 26px;
  height: 2px;
  background: var(--teal);
  border-radius: 9px;
}
.hero h1 {
  margin: 0;
  max-width: 680px;
  color: var(--navy);
  font-size: clamp(48px, 6.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 900;
}
.hero h1 span {
  display: block;
  color: var(--primary);
}
.hero-lead {
  max-width: 625px;
  margin: 28px 0 0;
  color: #486375;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}
.cta {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border-radius: 13px;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.cta:hover {
  transform: translateY(-2px);
}
.cta svg {
  width: 19px;
}
.cta-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(14, 141, 145, 0.22);
}
.cta-secondary {
  color: #17364a;
  background: #fff;
  border: 1px solid #cfdee5;
}
.service-area {
  margin: 21px 0 0;
  color: #566d7b;
  font-size: 14px;
  font-weight: 700;
}
.hero-panel {
  position: relative;
  min-height: 490px;
  display: grid;
  place-items: center;
}
.panel-glow {
  position: absolute;
  inset: 4% 0 0 0;
  border-radius: 52% 48% 56% 44%;
  background: linear-gradient(145deg, #0a263b, #0f5963);
  transform: rotate(-4deg);
  box-shadow: 0 30px 80px rgba(7, 29, 46, 0.23);
}
.panel-glow::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  inset: 20px auto auto 24px;
  border: 1px solid rgba(134, 228, 223, 0.25);
  border-radius: 50%;
}
.panel-card {
  position: relative;
  width: min(390px, 88%);
  padding: 23px 25px 26px;
  color: #eaf7f7;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 25px;
  backdrop-filter: blur(15px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}
.panel-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #bde9e7;
  font-size: 13px;
  font-weight: 800;
}
.status-dot {
  width: 9px;
  height: 9px;
  background: #5ef1a4;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(94, 241, 164, 0.1);
}
.panel-time {
  margin-inline-start: auto;
  color: #fff;
}
.device-mark {
  height: 160px;
  margin: 31px auto 24px;
  display: grid;
  place-items: center;
}
.screen {
  width: 208px;
  height: 126px;
  padding: 31px 29px;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 13px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.03)
  );
}
.pulse-line {
  height: 8px;
  width: 100%;
  margin-bottom: 13px;
  border-radius: 20px;
  background: var(--cyan);
  opacity: 0.88;
}
.pulse-line.short {
  width: 70%;
}
.pulse-line.tiny {
  width: 43%;
  background: #ffcb66;
}
.device-base {
  width: 252px;
  height: 9px;
  margin-top: -2px;
  border-radius: 2px 2px 10px 10px;
  background: rgba(255, 255, 255, 0.84);
}
.panel-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 23px;
}
.panel-card p {
  margin: 0;
  color: #bcd2dc;
  line-height: 1.65;
}
.panel-card > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
}
.panel-card > a svg {
  width: 17px;
}
.trust-strip {
  width: min(1040px, calc(100% - 40px));
  margin: -26px auto 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.87);
  border: 1px solid #d9e6eb;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(22, 70, 87, 0.08);
  backdrop-filter: blur(12px);
}
.trust-strip article {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 28px;
}
.trust-strip article + article {
  border-inline-start: 1px solid #dfebef;
}
.fact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #e5f6f5;
  border-radius: 13px;
}
.fact-icon svg {
  width: 20px;
}
.trust-strip strong,
.trust-strip small {
  display: block;
}
.trust-strip strong {
  color: #17384d;
  font-size: 15px;
}
.trust-strip small {
  margin-top: 3px;
  color: #5a707d;
  font-size: 12px;
}

@media (max-width: 820px) {
  .topbar {
    grid-template-columns: 1fr auto;
    height: 74px;
  }
  .topbar nav {
    display: none;
  }
  .brand img {
    width: 125px;
  }
  .header-phone {
    padding: 9px 12px;
    font-size: 13px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 52px 0 70px;
    gap: 34px;
  }
  .hero h1 {
    font-size: clamp(46px, 14vw, 70px);
  }
  .hero-panel {
    min-height: 420px;
  }
  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .trust-strip article + article {
    border-inline-start: 0;
    border-top: 1px solid #dfebef;
  }
}

@media (max-width: 480px) {
  .topbar,
  .hero,
  .trust-strip {
    width: min(100% - 28px, 1180px);
  }
  .header-phone span {
    display: none;
  }
  .header-phone {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
  }
  .hero {
    padding-top: 38px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cta {
    width: 100%;
  }
  .hero-panel {
    min-height: 390px;
  }
  .panel-card {
    padding: 20px;
  }
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 55px;
  margin-bottom: 42px;
}
.section-heading h2,
.about-copy h2,
.areas-copy h2,
.contact-copy h2 {
  margin: 7px 0 0;
  color: var(--navy);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.section-heading > p,
.areas-copy > p,
.contact-copy > p {
  margin: 0;
  color: #586f7d;
  font-size: 17px;
  line-height: 1.75;
}
.section-kicker {
  margin: 0;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.services-section {
  padding: 100px 0 120px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #dbe7eb;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(22, 70, 87, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 141, 145, 0.38);
  box-shadow: 0 24px 52px rgba(22, 70, 87, 0.1);
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #e4f6f5;
  border-radius: 15px;
}
.service-icon svg {
  width: 25px;
  height: 25px;
}
.service-tag {
  padding: 6px 10px;
  color: #4f6673;
  background: #f2f6f8;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.service-card h3 {
  margin: 24px 0 9px;
  color: #123146;
  font-size: 21px;
}
.service-card p {
  margin: 0;
  color: #586f7d;
  line-height: 1.68;
}
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 22px;
  color: #0b7478;
  font-size: 14px;
  font-weight: 900;
}
.service-card a svg {
  width: 16px;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  gap: clamp(44px, 8vw, 100px);
  padding-bottom: 125px;
}
.about-visual {
  position: relative;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: -18px 34px 26px -18px;
  background: #dff3f2;
  border-radius: 30px;
  transform: rotate(2deg);
}
.about-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.08;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  box-shadow: 0 24px 64px rgba(8, 42, 60, 0.17);
}
.experience-badge {
  position: absolute;
  inset: auto auto -25px 28px;
  min-width: 142px;
  padding: 20px 24px;
  color: #fff;
  background: var(--navy);
  border: 5px solid #f1f7f9;
  border-radius: 20px;
  text-align: center;
}
.experience-badge strong {
  display: block;
  color: var(--cyan);
  font-size: 40px;
  line-height: 1;
}
.experience-badge span {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  font-weight: 800;
}
.about-copy > p:not(.section-kicker) {
  color: #586f7d;
  font-size: 17px;
  line-height: 1.8;
}
.about-copy ul {
  display: grid;
  gap: 13px;
  margin: 27px 0;
  padding: 0;
  list-style: none;
}
.about-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #24485c;
  font-weight: 800;
}
.about-copy li svg {
  width: 19px;
  color: var(--primary);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #08767b;
  font-weight: 900;
}
.text-link svg {
  width: 17px;
}

.dark-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 10% 80%,
      rgba(20, 169, 170, 0.18),
      transparent 23rem
    ),
    linear-gradient(135deg, #061a2a, #0b2b42);
}
.dark-section::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  inset: -180px -130px auto auto;
  border: 1px solid rgba(134, 228, 223, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(134, 228, 223, 0.025),
    0 0 0 140px rgba(134, 228, 223, 0.018);
}
.process-section {
  position: relative;
  z-index: 1;
  padding: 105px 0;
}
.section-heading.light h2 {
  color: #fff;
}
.section-heading.light > p {
  color: #abc0cc;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.steps-grid article {
  min-height: 220px;
  padding: 27px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}
.steps-grid article > span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.steps-grid h3 {
  margin: 34px 0 10px;
  font-size: 23px;
}
.steps-grid p {
  margin: 0;
  color: #abc0cc;
  line-height: 1.7;
}
.promise-bar {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 18px 23px;
  color: #dffaf7;
  background: rgba(20, 169, 170, 0.14);
  border: 1px solid rgba(134, 228, 223, 0.18);
  border-radius: 18px;
}
.promise-bar > svg {
  width: 21px;
  color: #ffcb66;
  fill: #ffcb66;
}
.promise-bar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-inline-start: auto;
  color: var(--cyan);
  font-weight: 900;
}
.promise-bar a svg {
  width: 17px;
}

.areas-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  padding: 120px 0;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}
.area-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  color: #2f5669;
  background: #fff;
  border: 1px solid #d9e6eb;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.area-list svg {
  width: 14px;
  color: var(--primary);
}
.area-card {
  position: relative;
  min-height: 350px;
  padding: 48px;
  color: #fff;
  background: linear-gradient(145deg, #0b7680, #08283b);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(7, 50, 68, 0.2);
  overflow: hidden;
}
.area-card > svg {
  width: 36px;
  height: 36px;
  color: var(--cyan);
}
.area-card h3 {
  max-width: 380px;
  margin: 80px 0 10px;
  font-size: 28px;
}
.area-card p {
  color: #bad8dc;
}
.area-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 900;
}
.area-card a svg {
  width: 17px;
}
.route-line {
  position: absolute;
  inset: 34px 40px auto auto;
  width: 175px;
  height: 98px;
  border-top: 2px dashed rgba(255, 255, 255, 0.23);
  border-left: 2px dashed rgba(255, 255, 255, 0.23);
  border-radius: 80px 0 0 0;
  transform: rotate(-12deg);
}
.route-line span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(134, 228, 223, 0.1);
}
.route-line span:nth-child(1) {
  inset: -6px -4px auto auto;
}
.route-line span:nth-child(2) {
  inset: -6px auto auto 46%;
}
.route-line span:nth-child(3) {
  inset: auto auto -5px -5px;
}
.route-line span:nth-child(4) {
  inset: auto auto 42% 55px;
  background: #ffcb66;
}

.faq-section {
  padding: 0 0 120px;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.faq-list details {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dbe7eb;
  border-radius: 16px;
}
.faq-list summary {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #17384c;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  margin-inline-start: auto;
  color: var(--primary);
  font-size: 22px;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  margin: 14px 0 0;
  color: #586f7d;
  line-height: 1.7;
}

.contact-section {
  padding: 105px 0;
  background: #e4f3f3;
  border-top: 1px solid #d2e6e7;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(45px, 8vw, 95px);
  align-items: center;
}
.contact-copy > p {
  margin: 20px 0 28px;
}
.contact-line {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  column-gap: 13px;
  margin-top: 13px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid #d2e2e5;
  border-radius: 16px;
}
.contact-line > span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #fff;
  border-radius: 14px;
}
.contact-line svg {
  width: 21px;
}
.contact-line small {
  color: #5e7481;
}
.contact-line strong {
  color: #17384c;
  font-size: 18px;
}
.contact-line {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.contact-line:hover {
  transform: translateY(-2px);
  border-color: #b9d3d8;
  box-shadow: 0 12px 26px rgba(21, 72, 86, 0.08);
}
.contact-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #087d5b, #10a875);
  border-color: #087d5b;
  box-shadow: 0 14px 30px rgba(8, 125, 91, 0.18);
}
.contact-whatsapp:hover {
  border-color: #087d5b;
  box-shadow: 0 17px 34px rgba(8, 125, 91, 0.24);
}
.contact-whatsapp > span {
  color: #087d5b;
  background: #fff;
}
.contact-whatsapp small {
  color: rgba(255, 255, 255, 0.76);
}
.contact-whatsapp strong {
  color: #fff;
}
.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  padding: clamp(24px, 5vw, 40px);
  background: #fff;
  border: 1px solid #d8e5e9;
  border-radius: 25px;
  box-shadow: 0 28px 65px rgba(21, 72, 86, 0.12);
}
.form-heading,
.form-full {
  grid-column: 1 / -1;
}
.form-heading h3 {
  margin: 7px 0 7px;
  color: #133248;
  font-size: 29px;
}
.form-heading p {
  margin: 0 0 9px;
  color: #5f7481;
  line-height: 1.6;
}
.form-kicker {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}
.lead-form label > span:first-child {
  display: block;
  margin-bottom: 7px;
  color: #284a5c;
  font-size: 13px;
  font-weight: 900;
}
.lead-form input:not([type='checkbox']),
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  background: #f8fbfc;
  border-color: #d9e5e9;
}
.lead-form textarea {
  min-height: 105px;
  resize: vertical;
}
.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #5f7481;
  opacity: 1;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #5f7481;
  font-size: 12px;
  line-height: 1.55;
}
.consent input {
  margin-top: 3px;
  accent-color: var(--primary);
}
.consent span {
  margin: 0 !important;
  font-weight: 600 !important;
}
.form-submit {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, #087d5b, #10a875);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(8, 125, 91, 0.2);
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.form-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #076e51, #0e966a);
  box-shadow: 0 15px 30px rgba(8, 125, 91, 0.26);
}
.form-submit:focus-visible {
  outline: 3px solid rgba(16, 168, 117, 0.28);
  outline-offset: 3px;
}
.form-submit svg {
  width: 20px;
  flex: 0 0 auto;
}
.form-submit svg:last-child {
  margin-inline-start: auto;
}
.form-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: -3px 0 0;
  color: #647884;
  font-size: 11px;
}
.form-note svg {
  width: 15px;
  color: var(--primary);
}

footer {
  color: #c7d7df;
  background: #061a2a;
}
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding: 70px 0 50px;
}
.footer-logo {
  width: fit-content;
  display: inline-flex;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}
.footer-logo img {
  width: 150px;
  height: auto;
  display: block;
}
.footer-brand p {
  max-width: 390px;
  color: #91a8b5;
  line-height: 1.7;
}
.footer-inner > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-inner strong {
  margin-bottom: 8px;
  color: #fff;
}
.footer-inner a {
  color: #9eb1bc;
}
.footer-inner a:hover {
  color: var(--cyan);
}
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  min-height: 62px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #78909d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}
.mobile-actions {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-section,
  .areas-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    max-width: 640px;
  }
  .contact-copy {
    max-width: 650px;
  }
}

@media (max-width: 720px) {
  .section {
    width: min(100% - 28px, 1180px);
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .services-section {
    padding: 78px 0 90px;
  }
  .services-grid,
  .steps-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 250px;
  }
  .about-section {
    padding-bottom: 95px;
  }
  .process-section,
  .areas-section,
  .contact-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .promise-bar {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .promise-bar a {
    width: 100%;
    margin-inline-start: 34px;
  }
  .area-card {
    min-height: 330px;
    padding: 32px;
  }
  .lead-form {
    grid-template-columns: 1fr;
  }
  .lead-form label,
  .form-heading,
  .form-full {
    grid-column: 1;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0 94px;
  }
  .mobile-actions {
    position: fixed;
    z-index: 50;
    inset: auto 10px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 7px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #d6e3e8;
    border-radius: 17px;
    box-shadow: 0 18px 44px rgba(4, 28, 45, 0.2);
    backdrop-filter: blur(14px);
  }
  .mobile-actions a {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    background: var(--navy);
    border-radius: 11px;
    font-size: 13px;
    font-weight: 900;
  }
  .mobile-actions a:last-child {
    background: var(--primary);
  }
  .mobile-actions svg {
    width: 17px;
  }
}

/* Keep key messages visually intact and avoid awkward orphaned words. */
.hero h1,
.section-heading h2,
.about-copy h2,
.areas-copy h2,
.contact-copy h2 {
  text-wrap: balance;
}

.hero-lead,
.section-heading > p,
.areas-copy > p,
.contact-copy > p,
.about-copy > p:not(.section-kicker) {
  text-wrap: pretty;
}

.cta,
.contact-line strong,
.form-submit {
  white-space: nowrap;
}

@media (min-width: 901px) {
  .section-heading h2,
  .about-copy h2,
  .areas-copy h2,
  .contact-copy h2 {
    font-size: clamp(38px, 3.55vw, 48px);
    white-space: nowrap;
  }

  .about-section {
    grid-template-columns: 0.88fr 1.12fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 821px) {
  .hero {
    grid-template-columns: 1.25fr 0.75fr;
    gap: clamp(32px, 4vw, 54px);
  }
  .hero h1 {
    max-width: none;
    font-size: clamp(46px, 4.3vw, 58px);
    white-space: nowrap;
  }
  .hero h1 span {
    display: inline;
    margin-inline-start: 0.18em;
  }
}

@media (max-width: 720px) {
  .section-heading h2,
  .about-copy h2,
  .areas-copy h2,
  .contact-copy h2 {
    font-size: clamp(30px, 8.6vw, 39px);
  }
}

/* Motion system: subtle, fast and focused on the conversion path. */
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translate3d(-24px, 12px, 0) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes slow-float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-10px) rotate(-2.5deg);
  }
}

@keyframes device-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(94, 241, 164, 0.1);
  }
  50% {
    box-shadow: 0 0 0 11px rgba(94, 241, 164, 0.02);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-copy > * {
  animation: rise-in 0.72s cubic-bezier(0.22, 0.8, 0.24, 1) both;
}
.hero-copy > .eyebrow {
  animation-delay: 0.04s;
}
.hero-copy > h1 {
  animation-delay: 0.12s;
}
.hero-copy > .hero-lead {
  animation-delay: 0.2s;
}
.hero-copy > .hero-actions {
  animation-delay: 0.28s;
}
.hero-copy > .service-area {
  animation-delay: 0.34s;
}
.hero-panel {
  animation: panel-in 0.9s 0.16s cubic-bezier(0.22, 0.8, 0.24, 1) both;
}
.trust-strip {
  animation: rise-in 0.72s 0.42s cubic-bezier(0.22, 0.8, 0.24, 1) both;
}
.panel-glow {
  animation: slow-float 7s ease-in-out infinite;
}
.device-mark {
  animation: device-float 4.8s ease-in-out infinite;
}
.status-dot {
  animation: status-pulse 2.2s ease-in-out infinite;
}

.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 24%,
    rgba(255, 255, 255, 0.7) 46%,
    transparent 68%
  );
  transform: translateX(135%);
  transition: transform 0.65s ease;
}
.service-card:hover::before {
  transform: translateX(-135%);
}
.service-icon,
.fact-icon,
.area-list span,
.faq-list details,
.footer-logo {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.service-card:hover .service-icon {
  transform: rotate(-4deg) scale(1.08);
  box-shadow: 0 10px 22px rgba(14, 141, 145, 0.13);
}
.trust-strip article:hover .fact-icon {
  transform: translateY(-3px) scale(1.06);
}
.area-list span:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 141, 145, 0.38);
  box-shadow: 0 9px 20px rgba(22, 70, 87, 0.08);
}
.faq-list details:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 141, 145, 0.28);
  box-shadow: 0 12px 26px rgba(22, 70, 87, 0.07);
}
.faq-list summary span {
  transition:
    transform 0.24s ease,
    color 0.24s ease;
}
.footer-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 34px rgba(0, 0, 0, 0.22);
}

@supports (animation-timeline: view()) {
  .service-card,
  .about-visual,
  .about-copy,
  .steps-grid article,
  .areas-copy,
  .area-card,
  .faq-list details,
  .contact-copy,
  .lead-form {
    animation-name: reveal-up;
    animation-duration: 1ms;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 5% cover 24%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
  }
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset: 12px 12px auto auto;
  padding: 11px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transform: translateY(-180%);
  transition: transform 0.2s ease;
  font-weight: 900;
}
.skip-link:focus {
  transform: translateY(0);
}
#main-content,
#accessibility-content {
  scroll-margin-top: 20px;
}

.sales-section {
  color: #eaf7f7;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(20, 169, 170, 0.2),
      transparent 24rem
    ),
    linear-gradient(135deg, #071d2e, #0d3b50);
}
.sales-inner {
  padding: 105px 0;
}
.sales-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 55px;
  margin-bottom: 38px;
}
.sales-heading h2 {
  margin: 7px 0 0;
  color: #fff;
  font-size: clamp(38px, 3.55vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.sales-heading > p {
  margin: 0;
  color: #b8cbd5;
  font-size: 17px;
  line-height: 1.75;
  text-wrap: pretty;
}
.sales-section .section-kicker {
  color: var(--cyan);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.product-card {
  min-height: 235px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(134, 228, 223, 0.35);
}
.product-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(134, 228, 223, 0.1);
  border-radius: 15px;
}
.product-icon svg {
  width: 24px;
  height: 24px;
}
.product-card h3 {
  margin: 25px 0 9px;
  color: #fff;
  font-size: 20px;
}
.product-card p {
  margin: 0;
  color: #b8cbd5;
  line-height: 1.7;
}
.product-card > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
}
.product-card > a svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}
.product-card > a:hover svg {
  transform: translateX(-4px);
}
.sales-cta {
  min-height: 88px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  background: rgba(20, 169, 170, 0.13);
  border: 1px solid rgba(134, 228, 223, 0.2);
  border-radius: 18px;
}
.sales-cta div {
  display: grid;
  gap: 4px;
}
.sales-cta strong {
  color: #fff;
}
.sales-cta span {
  color: #b8cbd5;
}
.sales-cta a {
  min-height: 50px;
  margin-inline-start: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  color: #072c24;
  background: #83e1bf;
  border-radius: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.sales-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}
.sales-cta a svg {
  width: 19px;
}

.legal-page {
  min-height: 100vh;
  color: var(--foreground);
  background: linear-gradient(180deg, #f8fbfd, #edf6f7);
}
.legal-header {
  width: min(1040px, calc(100% - 40px));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(12, 62, 83, 0.12);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #24485c;
  font-weight: 900;
}
.legal-back svg {
  width: 18px;
}
.legal-main {
  width: min(900px, calc(100% - 40px));
  margin: 56px auto 90px;
  padding: clamp(28px, 6vw, 62px);
  background: #fff;
  border: 1px solid #d9e6eb;
  border-radius: 26px;
  box-shadow: 0 24px 65px rgba(21, 72, 86, 0.1);
}
.legal-title {
  display: flex;
  align-items: center;
  gap: 18px;
}
.legal-title h1 {
  margin: 5px 0 0;
  color: var(--navy);
  font-size: clamp(40px, 6vw, 62px);
  line-height: 1;
}
.legal-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 18px;
}
.legal-icon svg {
  width: 31px;
  height: 31px;
}
.legal-intro {
  margin: 30px 0 0;
  color: #4f6877;
  font-size: 18px;
  line-height: 1.85;
}
.legal-main section {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #e0eaee;
}
.legal-main h2 {
  margin: 0 0 13px;
  color: #15364b;
  font-size: 25px;
}
.legal-main section p {
  margin: 0;
  color: #5c7280;
  line-height: 1.85;
}
.accessibility-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.accessibility-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #456071;
  line-height: 1.7;
}
.accessibility-list svg {
  width: 19px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--primary);
}
.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 20px 0;
}
.legal-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 12px;
  font-weight: 900;
}
.legal-actions a:last-child {
  background: #087d5b;
}
.legal-actions svg {
  width: 18px;
}
.legal-updated {
  margin: 34px 0 0;
  color: #5f7481;
  font-size: 13px;
}

@supports (animation-timeline: view()) {
  .sales-heading,
  .product-card,
  .sales-cta {
    animation-name: reveal-up;
    animation-duration: 1ms;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 5% cover 24%;
  }
}

@media (max-width: 980px) {
  .topbar nav {
    gap: 18px;
    font-size: 14px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .sales-inner {
    padding: 84px 0;
  }
  .sales-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .sales-heading h2 {
    font-size: clamp(30px, 8.6vw, 39px);
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    min-height: 210px;
  }
  .sales-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .sales-cta a {
    width: 100%;
    margin-inline-start: 0;
  }
  .legal-header,
  .legal-main {
    width: min(100% - 28px, 1040px);
  }
  .legal-header {
    height: 74px;
  }
  .legal-header .brand img {
    width: 125px;
  }
  .legal-main {
    margin-top: 26px;
    margin-bottom: 70px;
    border-radius: 20px;
  }
  .legal-title {
    align-items: flex-start;
  }
  .legal-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }
  .legal-icon svg {
    width: 25px;
  }
  .legal-title h1 {
    font-size: 38px;
  }
  .accessibility-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skip-link,
  .product-card,
  .sales-cta a {
    transition: none !important;
  }
}

/* Visible accessibility tools */
.accessibility-widget {
  position: fixed;
  z-index: 1100;
  inset: auto 20px 20px auto;
  direction: rtl;
}
.accessibility-trigger {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  color: #fff;
  background: #075f65;
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(3, 30, 44, 0.28);
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.accessibility-trigger:hover {
  transform: translateY(-2px);
  background: #064c52;
  box-shadow: 0 18px 42px rgba(3, 30, 44, 0.34);
}
.accessibility-trigger svg {
  width: 23px;
  height: 23px;
}
.accessibility-panel {
  position: absolute;
  inset: auto 0 66px auto;
  width: min(360px, calc(100vw - 28px));
  padding: 20px;
  color: #132f40;
  background: #fff;
  border: 1px solid #cbdde4;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(4, 28, 43, 0.25);
}
.accessibility-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.accessibility-mini-label {
  color: #08767b;
  font-size: 12px;
  font-weight: 900;
}
.accessibility-panel h2 {
  margin: 2px 0 0;
  color: #071d2e;
  font-size: 25px;
  line-height: 1.15;
}
.accessibility-close {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #17384b;
  background: #eef5f7;
  border: 1px solid #d7e5e9;
  border-radius: 12px;
  cursor: pointer;
}
.accessibility-close:hover {
  background: #e1edef;
}
.accessibility-close svg {
  width: 20px;
  height: 20px;
}
.accessibility-panel-intro {
  margin: 14px 0 17px;
  color: #4d6877;
  font-size: 14px;
  line-height: 1.55;
}
.accessibility-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.accessibility-option {
  min-height: 106px;
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 5px;
  padding: 14px;
  color: #1c3c4f;
  background: #f4f8fa;
  border: 1px solid #d9e6eb;
  border-radius: 15px;
  text-align: start;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}
.accessibility-option:hover {
  transform: translateY(-2px);
  border-color: #6aaeb0;
}
.accessibility-option.is-active {
  color: #fff;
  background: #075f65;
  border-color: #075f65;
}
.accessibility-option svg {
  width: 21px;
  height: 21px;
  margin-bottom: 3px;
}
.accessibility-option span {
  font-size: 14px;
  font-weight: 900;
}
.accessibility-option strong {
  color: #5a7380;
  font-size: 12px;
}
.accessibility-option.is-active strong {
  color: #d9ffff;
}
.accessibility-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 15px;
}
.accessibility-panel-foot a {
  color: #075f65;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.accessibility-reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: #314f60;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}
.accessibility-reset:disabled {
  opacity: 0.45;
  cursor: default;
}
.accessibility-reset svg {
  width: 16px;
  height: 16px;
}

html.a11y-text-large
  :where(h1, h2, h3, p, li, summary, label, input, textarea, button, a) {
  zoom: 1.12;
}
html.a11y-text-larger
  :where(h1, h2, h3, p, li, summary, label, input, textarea, button, a) {
  zoom: 1.24;
}
html.a11y-text-large .accessibility-widget :where(h2, p, button, a),
html.a11y-text-larger .accessibility-widget :where(h2, p, button, a) {
  zoom: 1;
}

html.a11y-high-contrast
  :where(
    .topbar,
    .hero,
    .trust-strip,
    .services-section,
    .sales-section,
    .about-section,
    .process-section,
    .promise-bar,
    .areas-section,
    .faq-section,
    .contact-section,
    footer,
    .legal-header,
    .legal-main,
    .seo-header,
    .seo-hero,
    .seo-body-grid,
    .seo-process,
    .seo-faq,
    .seo-links-grid,
    .seo-cta-band,
    .seo-footer
  ) {
  filter: grayscale(0.15) contrast(1.4);
}
html.a11y-high-contrast .accessibility-trigger {
  color: #000;
  background: #ffea00;
  border-color: #000;
}
html.a11y-high-contrast .accessibility-panel {
  color: #fff;
  background: #000;
  border: 3px solid #ffea00;
}
html.a11y-high-contrast .accessibility-panel h2,
html.a11y-high-contrast .accessibility-mini-label,
html.a11y-high-contrast .accessibility-panel-intro,
html.a11y-high-contrast .accessibility-panel-foot a {
  color: #fff;
}
html.a11y-high-contrast .accessibility-close,
html.a11y-high-contrast .accessibility-option {
  color: #fff;
  background: #111;
  border-color: #fff;
}
html.a11y-high-contrast .accessibility-option strong {
  color: #fff;
}
html.a11y-high-contrast .accessibility-option.is-active {
  color: #000;
  background: #ffea00;
  border-color: #ffea00;
}
html.a11y-high-contrast .accessibility-option.is-active strong {
  color: #000;
}
html.a11y-high-contrast .accessibility-reset {
  color: #fff;
}

html.a11y-underline-links a:not(.brand) {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 4px !important;
}
html.a11y-reduce-motion,
html.a11y-reduce-motion * {
  scroll-behavior: auto !important;
}
html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
  animation: none !important;
  transition: none !important;
}

@media (max-width: 720px) {
  .accessibility-widget {
    inset: auto 13px 82px auto;
  }
  .accessibility-panel {
    inset-block-end: 62px;
    max-height: calc(100vh - 174px);
    overflow-y: auto;
  }
  .accessibility-trigger {
    min-height: 48px;
    padding: 0 14px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .accessibility-controls {
    grid-template-columns: 1fr;
  }
  .accessibility-option {
    min-height: 82px;
  }
}

/* Search-focused service, product and area pages */
.seo-page {
  min-height: 100vh;
  overflow: hidden;
  color: var(--foreground);
  background:
    radial-gradient(
      circle at 85% 4%,
      rgba(20, 169, 170, 0.14),
      transparent 29rem
    ),
    linear-gradient(180deg, #f8fbfd 0%, #eef6f8 100%);
}
.seo-header {
  width: min(1180px, calc(100% - 40px));
  height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(12, 62, 83, 0.12);
}
.seo-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #35566a;
  font-size: 14px;
  font-weight: 800;
}
.seo-header nav a:hover {
  color: var(--primary);
}
.seo-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 565px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
  padding: 72px 0 85px;
}
.seo-hero-copy {
  min-width: 0;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 26px;
  color: #56717e;
  font-size: 13px;
}
.breadcrumbs a {
  color: #08767b;
  font-weight: 900;
}
.breadcrumbs strong {
  color: #304e60;
}
.breadcrumbs svg {
  width: 14px;
  height: 14px;
}
.seo-hero h1 {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.seo-lead {
  max-width: 745px;
  margin: 26px 0 0;
  color: #496575;
  font-size: 19px;
  line-height: 1.8;
}
.seo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.seo-hero-card {
  position: relative;
  min-height: 375px;
  padding: 38px;
  color: #fff;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(134, 228, 223, 0.19),
      transparent 13rem
    ),
    linear-gradient(145deg, #071d2e, #0d4d59);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  box-shadow: 0 30px 75px rgba(7, 29, 46, 0.22);
}
.seo-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  color: #07333c;
  background: var(--cyan);
  border-radius: 17px;
}
.seo-card-icon svg {
  width: 29px;
  height: 29px;
}
.seo-hero-card > strong {
  display: block;
  margin-bottom: 18px;
  font-size: 23px;
}
.seo-hero-card ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.seo-hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d9e9ed;
  line-height: 1.55;
}
.seo-hero-card li svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--cyan);
}
.seo-body-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 22px;
  padding: 0 0 95px;
}
.seo-copy-card,
.seo-situations {
  padding: clamp(30px, 5vw, 52px);
  background: #fff;
  border: 1px solid #dce8ed;
  border-radius: 25px;
  box-shadow: 0 20px 55px rgba(21, 72, 86, 0.07);
}
.seo-copy-card h2,
.seo-situations h2,
.seo-section-heading h2,
.seo-links-grid h2,
.seo-cta-band h2 {
  margin: 7px 0 22px;
  color: #12354a;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.seo-copy-card > p:not(.section-kicker) {
  margin: 0 0 18px;
  color: #516c7a;
  font-size: 17px;
  line-height: 1.9;
}
.seo-situations {
  color: #fff;
  background: #0b3348;
}
.seo-situations > svg {
  width: 35px;
  height: 35px;
  color: var(--cyan);
}
.seo-situations h2 {
  color: #fff;
  font-size: 29px;
}
.seo-situations ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.seo-situations li {
  position: relative;
  padding-inline-start: 19px;
  color: #c8d9df;
  line-height: 1.65;
}
.seo-situations li::before {
  content: '';
  position: absolute;
  inset: 11px 0 auto auto;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
}
[dir='ltr'] .seo-situations li::before {
  inset: 11px auto auto 0;
}
.seo-process {
  padding: 100px max(20px, calc((100% - 1180px) / 2));
  background: #fff;
  border-block: 1px solid #dce8ed;
}
.seo-section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 36px;
}
.seo-section-heading > p {
  margin: 0;
  color: #5b7381;
  font-size: 17px;
  line-height: 1.75;
}
.seo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.seo-steps article {
  position: relative;
  min-height: 255px;
  padding: 29px;
  background: #f2f8f9;
  border: 1px solid #d8e6e9;
  border-radius: 21px;
}
.seo-steps article > span {
  position: absolute;
  inset: 22px auto auto 22px;
  color: rgba(8, 118, 123, 0.23);
  font-size: 33px;
  font-weight: 900;
}
[dir='ltr'] .seo-steps article > span {
  inset: 22px 22px auto auto;
}
.seo-steps article > svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}
.seo-steps h3 {
  margin: 54px 0 9px;
  color: #17394d;
  font-size: 21px;
}
.seo-steps p {
  margin: 0;
  color: #5c7481;
  line-height: 1.7;
}
.seo-faq {
  width: min(950px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0;
}
.seo-section-heading.compact {
  display: block;
  margin-bottom: 28px;
}
.seo-section-heading.compact .section-kicker {
  display: flex;
  align-items: center;
  gap: 7px;
}
.seo-section-heading.compact .section-kicker svg {
  width: 18px;
}
.seo-faq-list {
  display: grid;
  gap: 12px;
}
.seo-faq details {
  padding: 0 23px;
  background: #fff;
  border: 1px solid #dbe7eb;
  border-radius: 17px;
  box-shadow: 0 12px 32px rgba(21, 72, 86, 0.05);
}
.seo-faq summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #17394d;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
.seo-faq summary::-webkit-details-marker {
  display: none;
}
.seo-faq summary span {
  color: var(--primary);
  font-size: 27px;
}
.seo-faq details[open] summary span {
  transform: rotate(45deg);
}
.seo-faq details p {
  margin: -2px 0 22px;
  color: #5b7482;
  line-height: 1.75;
}
.seo-links-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 45px;
  padding: 0 0 100px;
}
.seo-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seo-related-links a {
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  color: #164259;
  background: #fff;
  border: 1px solid #cfe0e5;
  border-radius: 12px;
  font-weight: 900;
}
.seo-related-links a:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}
.seo-related-links svg {
  width: 16px;
}
.seo-area-note {
  min-height: 190px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 34px;
  color: #e7f4f4;
  background: linear-gradient(135deg, #0b3146, #0b6267);
  border-radius: 23px;
}
.seo-area-note > svg {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  color: var(--cyan);
}
.seo-area-note strong {
  color: #fff;
  font-size: 21px;
}
.seo-area-note p {
  margin: 10px 0 0;
  color: #c5dadd;
  line-height: 1.75;
}
.seo-cta-band {
  width: min(1180px, calc(100% - 40px));
  min-height: 220px;
  margin: 0 auto 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: clamp(30px, 5vw, 55px);
  color: #fff;
  background: linear-gradient(135deg, #071d2e, #0a525c);
  border-radius: 29px;
  box-shadow: 0 28px 65px rgba(7, 29, 46, 0.19);
}
.seo-cta-band h2 {
  max-width: 700px;
  margin-bottom: 0;
  color: #fff;
}
.seo-cta-band > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 0 0 auto;
}
.seo-cta-band a {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  color: #092b33;
  background: var(--cyan);
  border-radius: 12px;
  font-weight: 900;
}
.seo-cta-band a:first-child {
  color: #173748;
  background: #fff;
}
.seo-cta-band a svg {
  width: 18px;
}
.seo-footer {
  width: min(1180px, calc(100% - 40px));
  min-height: 185px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid #d1e0e5;
}
.seo-footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 20px;
}
.seo-footer .footer-logo {
  flex: 0 0 auto;
  background: #fff;
}
.seo-footer p {
  max-width: 450px;
  margin: 0;
  color: #5a7380;
  line-height: 1.7;
}
.seo-footer > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.seo-footer > div:last-child a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #23485a;
  font-weight: 900;
}
.seo-footer > div:last-child a:hover {
  color: var(--primary);
}
.seo-footer svg {
  width: 17px;
}

@media (max-width: 980px) {
  .seo-header {
    grid-template-columns: 1fr auto;
  }
  .seo-header nav {
    display: none;
  }
  .seo-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .seo-hero-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .seo-header {
    width: min(100% - 28px, 1180px);
    height: 74px;
  }
  .seo-header .brand img {
    width: 128px;
  }
  .seo-header .header-phone {
    width: 47px;
    height: 47px;
    justify-content: center;
    padding: 0;
  }
  .seo-header .header-phone svg {
    width: 20px;
  }
  .seo-header .header-phone:not(:focus) {
    font-size: 0;
    gap: 0;
  }
  .seo-hero,
  .seo-body-grid,
  .seo-links-grid,
  .seo-cta-band,
  .seo-footer {
    width: min(100% - 28px, 1180px);
  }
  .seo-hero {
    min-height: 0;
    padding: 46px 0 70px;
  }
  .breadcrumbs {
    margin-bottom: 19px;
  }
  .seo-hero h1 {
    font-size: clamp(38px, 11.5vw, 54px);
    line-height: 1.05;
  }
  .seo-lead {
    margin-top: 20px;
    font-size: 17px;
  }
  .seo-hero-actions {
    flex-direction: column;
  }
  .seo-hero-actions .cta {
    width: 100%;
  }
  .seo-hero-card {
    padding: 29px;
    border-radius: 23px;
  }
  .seo-body-grid {
    grid-template-columns: 1fr;
    padding-bottom: 75px;
  }
  .seo-copy-card,
  .seo-situations {
    padding: 29px;
    border-radius: 20px;
  }
  .seo-process {
    padding: 80px 14px;
  }
  .seo-section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .seo-steps {
    grid-template-columns: 1fr;
  }
  .seo-steps article {
    min-height: 215px;
  }
  .seo-faq {
    width: min(100% - 28px, 950px);
    padding: 80px 0;
  }
  .seo-links-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 80px;
  }
  .seo-related-links {
    display: grid;
  }
  .seo-related-links a {
    justify-content: space-between;
  }
  .seo-area-note {
    min-height: 0;
    padding: 28px;
  }
  .seo-cta-band {
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 80px;
    padding: 32px;
  }
  .seo-cta-band > div:last-child {
    width: 100%;
  }
  .seo-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 45px 0 110px;
  }
  .seo-footer > div:first-child {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Language navigation and fully localized landing pages */
.language-switcher {
  position: fixed;
  z-index: 1100;
  inset: auto auto 20px 20px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  color: #17394d;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(3, 30, 44, 0.22);
  direction: ltr;
  backdrop-filter: blur(12px);
}
.language-switcher > svg {
  width: 19px;
  height: 19px;
  margin: 0 4px;
  color: #08767b;
}
.language-switcher a {
  min-width: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 0 7px;
  color: #315568;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}
.language-switcher a:hover {
  color: #075f65;
  background: #e5f4f3;
  transform: translateY(-1px);
}
.language-switcher a.is-active {
  color: #fff;
  background: #075f65;
}

.localized-home {
  overflow: hidden;
}
.localized-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(45px, 8vw, 105px);
  padding: 78px 0 92px;
}
.localized-hero h1 {
  max-width: 790px;
  margin: 11px 0 0;
  color: var(--navy);
  font-size: clamp(50px, 6vw, 78px);
  line-height: 1.01;
  letter-spacing: -0.052em;
}
.localized-lead {
  max-width: 760px;
  margin: 27px 0 0;
  color: #4b6877;
  font-size: 19px;
  line-height: 1.75;
}
.localized-hero-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  color: #fff;
  background:
    radial-gradient(
      circle at 18% 8%,
      rgba(127, 229, 223, 0.2),
      transparent 14rem
    ),
    linear-gradient(145deg, #071d2e, #0c5961);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 31px;
  box-shadow: 0 32px 80px rgba(7, 29, 46, 0.23);
}
.localized-hero-card > svg {
  width: 42px;
  height: 42px;
  margin-bottom: 27px;
  color: var(--cyan);
}
.localized-hero-card > strong {
  font-size: 31px;
}
.localized-hero-card > p {
  margin: 10px 0 24px;
  color: #cfe1e5;
  line-height: 1.7;
}
.localized-hero-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.localized-hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #eef8f8;
  line-height: 1.5;
}
.localized-hero-card li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--cyan);
}
.localized-facts {
  width: min(1180px, calc(100% - 40px));
  min-height: 116px;
  margin: -18px auto 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #fff;
  background: #0b3348;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(7, 29, 46, 0.14);
}
.localized-facts article {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 31px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.12);
}
.localized-facts article:last-child {
  border-inline-end: 0;
}
.localized-facts article > svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--cyan);
}
.localized-facts span {
  display: grid;
  gap: 3px;
}
.localized-facts strong {
  font-size: 16px;
}
.localized-facts small {
  color: #bcd1d8;
  font-size: 13px;
}
.localized-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0;
}
.localized-section .seo-section-heading h2 {
  margin-bottom: 0;
}
.localized-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.localized-card-grid article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid #d8e6eb;
  border-radius: 21px;
  box-shadow: 0 16px 42px rgba(21, 72, 86, 0.06);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.localized-card-grid article:hover {
  transform: translateY(-5px);
  border-color: #72bdbe;
  box-shadow: 0 24px 55px rgba(21, 72, 86, 0.12);
}
.localized-card-icon {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #08767b;
  border-radius: 15px;
}
.localized-card-icon svg {
  width: 25px;
  height: 25px;
}
.localized-card-grid h3 {
  margin: 25px 0 10px;
  color: #15384c;
  font-size: 22px;
  line-height: 1.2;
}
.localized-card-grid p {
  margin: 0;
  color: #5b7481;
  line-height: 1.7;
}
.localized-card-grid a {
  margin-top: auto;
  padding-top: 23px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #08767b;
  font-weight: 900;
}
.localized-card-grid a:hover {
  color: #064f53;
}
.localized-card-grid a svg {
  width: 17px;
  height: 17px;
  transition: transform 0.18s ease;
}
.localized-card-grid a:hover svg {
  transform: translateX(4px);
}
.localized-products {
  background: #fff;
  border-block: 1px solid #dbe7eb;
}
.localized-card-grid.product-variant article {
  background: linear-gradient(160deg, #0b3247, #0a5960);
  border-color: transparent;
}
.localized-card-grid.product-variant h3 {
  color: #fff;
}
.localized-card-grid.product-variant p {
  color: #c7d9df;
}
.localized-card-grid.product-variant a {
  color: var(--cyan);
}
.localized-card-grid.product-variant .localized-card-icon {
  color: #07343c;
  background: var(--cyan);
}
.localized-process {
  margin-top: 0;
}
.localized-areas {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}
.localized-areas h2 {
  margin: 8px 0 18px;
  color: #12354a;
  font-size: clamp(36px, 4vw, 51px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.localized-areas > div:first-child > p:last-child {
  margin: 0;
  color: #597482;
  font-size: 17px;
  line-height: 1.8;
}
.localized-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.localized-city-list span {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: #164258;
  background: #fff;
  border: 1px solid #d5e4e8;
  border-radius: 14px;
  font-weight: 850;
}
.localized-city-list svg {
  width: 17px;
  height: 17px;
  color: #08767b;
}
.localized-faq {
  padding-top: 40px;
}
.localized-contact {
  margin-top: 25px;
}
.localized-footer {
  padding-bottom: 75px;
}

html.a11y-high-contrast .language-switcher {
  color: #fff;
  background: #000;
  border-color: #ffea00;
}
html.a11y-high-contrast .language-switcher a {
  color: #fff;
}
html.a11y-high-contrast .language-switcher a.is-active {
  color: #000;
  background: #ffea00;
}

@media (max-width: 980px) {
  .localized-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 32px;
  }
  .localized-hero-card {
    min-height: 0;
  }
  .localized-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .localized-areas {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .language-switcher {
    inset: auto auto 82px 13px;
    min-height: 48px;
    padding: 5px 6px;
  }
  .language-switcher > svg {
    display: none;
  }
  .language-switcher a {
    min-width: 34px;
    min-height: 34px;
    padding: 0 5px;
    font-size: 11px;
  }
  .localized-hero,
  .localized-facts,
  .localized-section {
    width: min(100% - 28px, 1180px);
  }
  .localized-hero {
    padding: 48px 0 65px;
  }
  .localized-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }
  .localized-lead {
    font-size: 17px;
  }
  .localized-hero-card {
    padding: 30px;
    border-radius: 23px;
  }
  .localized-facts {
    grid-template-columns: 1fr;
    margin: 0 auto 70px;
  }
  .localized-facts article {
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .localized-facts article:last-child {
    border-bottom: 0;
  }
  .localized-section {
    padding: 76px 0;
  }
  .localized-card-grid {
    grid-template-columns: 1fr;
  }
  .localized-card-grid article {
    min-height: 285px;
  }
  .localized-areas {
    padding-bottom: 25px;
  }
  .localized-faq {
    padding-top: 70px;
  }
  .localized-footer {
    padding-bottom: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .language-switcher a,
  .localized-card-grid article,
  .localized-card-grid a svg {
    transition: none !important;
  }
}

/* Unified conversion footer */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #c8d9df;
  background:
    radial-gradient(
      circle at 13% 18%,
      rgba(16, 199, 200, 0.14),
      transparent 30%
    ),
    radial-gradient(circle at 88% 70%, rgba(7, 112, 121, 0.2), transparent 34%),
    linear-gradient(145deg, #061722 0%, #072432 54%, #05151f 100%);
}
.site-footer::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  content: '';
}
.site-footer-glow {
  position: absolute;
  inset: -180px auto auto 50%;
  z-index: -1;
  width: 760px;
  height: 360px;
  transform: translateX(-50%);
  background: rgba(35, 220, 213, 0.1);
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.site-footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 68px;
}
.site-footer-cta {
  position: relative;
  overflow: hidden;
  min-height: 206px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 214px;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: clamp(34px, 5vw, 58px);
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 10%,
      rgba(105, 249, 239, 0.19),
      transparent 33%
    ),
    linear-gradient(120deg, #087178, #08505f);
  border: 1px solid rgba(142, 255, 246, 0.24);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 10, 17, 0.32);
}
.site-footer-cta::after {
  position: absolute;
  inset: auto -45px -90px auto;
  width: 250px;
  height: 250px;
  border: 44px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  content: '';
  pointer-events: none;
}
.site-footer-cta > div:first-child {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
}
.site-footer-cta > div:first-child > span {
  color: #8df7ec;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.site-footer-cta h2 {
  margin: 9px 0 12px;
  color: #fff;
  font-size: clamp(31px, 3.3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.site-footer[lang='he'] .site-footer-cta h2 {
  white-space: nowrap;
}
.site-footer-cta p {
  margin: 0;
  color: #d9eeee;
  font-size: 17px;
  line-height: 1.6;
}
.site-footer-cta-actions {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 210px;
}
.site-footer-cta-actions a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  color: #073945;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(3, 29, 38, 0.17);
  font-weight: 900;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}
.site-footer-cta-actions a:last-child {
  color: #fff;
  background: rgba(3, 37, 46, 0.44);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}
.site-footer-cta-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(3, 29, 38, 0.27);
}
.site-footer-cta-actions a:last-child:hover {
  background: rgba(3, 37, 46, 0.68);
}
.site-footer-cta-actions svg {
  width: 19px;
  height: 19px;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr 1.15fr;
  gap: 0;
  padding: 68px 0 54px;
}
.site-footer-grid > * {
  min-height: 215px;
  padding-inline: clamp(22px, 2.5vw, 34px);
}
.site-footer-grid > *:first-child {
  padding-inline-start: 0;
}
.site-footer-grid > *:last-child {
  padding-inline-end: 0;
}
.site-footer-grid > * + * {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer-brand {
  max-width: 320px;
}
.site-footer-logo {
  width: fit-content;
  display: inline-flex;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(0, 8, 14, 0.19);
}
.site-footer-logo img {
  width: 132px;
  height: auto;
  display: block;
}
.site-footer-brand > p {
  margin: 22px 0 19px;
  color: #9fb5be;
  line-height: 1.75;
}
.site-footer-availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d2e3e7;
  font-size: 13px;
  font-weight: 800;
}
.site-footer-availability i {
  width: 9px;
  height: 9px;
  display: block;
  background: #60e4a4;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(96, 228, 164, 0.1);
}
.site-footer-links,
.site-footer-contact {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.site-footer-links > strong,
.site-footer-contact > strong {
  margin-bottom: 20px;
  color: #fff;
  font-size: 15px;
}
.site-footer-links > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: #9fb5be;
  font-size: 14px;
  line-height: 1.45;
  transition: color 0.18s ease;
}
.site-footer-links > a:hover {
  color: #72eee5;
}
.site-footer-links svg {
  width: 14px;
  height: 14px;
  opacity: 0.72;
}
.site-footer-contact > a {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease;
}
.site-footer-contact > a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(105, 237, 229, 0.35);
}
.site-footer-contact-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #092f38;
  background: #69ede5;
  border-radius: 10px;
}
.site-footer-contact-icon.whatsapp {
  color: #072f25;
  background: #68e1a5;
}
.site-footer-contact-icon svg {
  width: 18px;
  height: 18px;
}
.site-footer-contact > a > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.site-footer-contact small {
  color: #8eaab4;
  font-size: 11px;
}
.site-footer-contact b {
  margin-top: 2px;
  font-size: 15px;
}
.site-footer-contact > p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 8px 3px 0;
  color: #8eaab4;
  font-size: 12px;
  line-height: 1.55;
}
.site-footer-contact > p svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: #69ede5;
}
.site-footer-bottom {
  width: 100%;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 22px;
  margin: 0 auto;
  padding: 22px min(15vw, 180px) 27px;
  color: #78949f;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}
.site-footer-bottom a {
  color: #b7cbd2;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer-bottom a:hover {
  color: #72eee5;
}
html.a11y-high-contrast .site-footer,
html.a11y-high-contrast .site-footer-cta {
  color: #fff;
  background: #000;
  border-color: #ffea00;
}
html.a11y-high-contrast .site-footer a,
html.a11y-high-contrast .site-footer strong,
html.a11y-high-contrast .site-footer h2,
html.a11y-high-contrast .site-footer p,
html.a11y-high-contrast .site-footer span {
  color: #fff;
}

@media (max-width: 980px) {
  .site-footer-cta {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .site-footer[lang='he'] .site-footer-cta h2 {
    white-space: normal;
  }
  .site-footer-cta-actions {
    width: 100%;
    flex-direction: row;
  }
  .site-footer-cta-actions a {
    flex: 1;
  }
  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer-grid > * {
    padding-inline: 28px;
  }
  .site-footer-grid > *:nth-child(odd) {
    padding-inline-start: 0;
    border-inline-start: 0;
  }
  .site-footer-grid > *:nth-child(even) {
    padding-inline-end: 0;
  }
  .site-footer-brand {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .site-footer-inner {
    width: min(100% - 28px, 1180px);
    padding-top: 48px;
  }
  .site-footer-cta {
    min-height: 0;
    gap: 28px;
    padding: 31px 23px;
    border-radius: 22px;
  }
  .site-footer-cta h2 {
    font-size: clamp(29px, 9vw, 39px);
    line-height: 1.08;
  }
  .site-footer-cta p {
    font-size: 15px;
  }
  .site-footer-cta-actions {
    flex-direction: column;
    min-width: 0;
  }
  .site-footer-cta-actions a {
    width: 100%;
    flex: none;
  }
  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 50px 7px 42px;
  }
  .site-footer-grid > * {
    min-height: 0;
    padding-inline: 0;
    border-inline-start: 0;
  }
  .site-footer-brand {
    max-width: 340px;
  }
  .site-footer-links > strong,
  .site-footer-contact > strong {
    margin-bottom: 16px;
  }
  .site-footer-contact > a {
    max-width: 360px;
  }
  .site-footer-bottom {
    min-height: 0;
    flex-direction: column;
    gap: 8px;
    padding: 24px 4px 118px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer a {
    transition: none !important;
  }
}
.cms-card-image {
  width: 100%;
  height: 150px;
  margin-bottom: 18px;
  border-radius: 16px;
  object-fit: cover;
}

.seo-featured-image {
  width: calc(100% + 28px);
  max-height: 220px;
  margin: -14px -14px 18px;
  border-radius: 20px;
  object-fit: cover;
}

/* WordPress integration */
html {
  scroll-behavior: smooth;
}

body.site-shell {
  margin: 0;
}

.topbar svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.language-switcher a[aria-current='page'] {
  color: #fff;
  background: #075f65;
}

.wp-content-shell {
  min-height: 62vh;
  padding-top: 72px;
  padding-bottom: 100px;
}

.wp-content-shell .seo-copy-card {
  max-width: 900px;
  margin-inline: auto;
}

.wp-page-image img,
.seo-featured-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.service-icon,
.product-icon,
.fact-icon,
.seo-card-icon,
.site-footer-contact-icon {
  font-family: Arial, sans-serif;
  font-weight: 900;
}

body.admin-bar .topbar {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .topbar {
    top: 46px;
  }
}
