:root {
  --ink: #17333d;
  --ink-2: #254d59;
  --teal: #087378;
  --teal-dark: #07585d;
  --aqua: #dff2f1;
  --aqua-2: #eef8f7;
  --coral: #ee7651;
  --coral-dark: #cc5836;
  --white: #ffffff;
  --cloud: #f5f8f8;
  --line: #d7e3e4;
  --muted: #587078;
  --shadow: 0 24px 70px rgba(19, 52, 61, 0.13);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid rgba(238, 118, 81, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: var(--coral);
  content: "";
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.split-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-heading p,
.split-copy > p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(215, 227, 228, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 8px 24px rgba(8, 115, 120, 0.23);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.85;
}

.brand span span {
  color: var(--coral-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav > a {
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.main-nav > a:hover {
  color: var(--teal);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cloud);
}

.lang-switcher a {
  display: grid;
  min-width: 36px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
}

.lang-switcher a[aria-current="page"] {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 8vw, 104px) 0 54px;
  background:
    radial-gradient(circle at 8% 15%, rgba(223, 242, 241, 0.95) 0, rgba(223, 242, 241, 0) 27%),
    linear-gradient(180deg, #fbfdfd 0%, #ffffff 100%);
}

.hero::after {
  position: absolute;
  top: 13%;
  right: -115px;
  width: 260px;
  height: 260px;
  border: 50px solid rgba(238, 118, 81, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
  gap: clamp(40px, 7vw, 86px);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.7vw, 6.35rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.hero-copy h1 em {
  color: var(--teal);
  font-style: normal;
}

.hero-copy .lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--ink-2);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 16px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 13px 30px rgba(204, 88, 54, 0.24);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.button-secondary:hover {
  border-color: #b6cdcf;
  box-shadow: 0 10px 28px rgba(23, 51, 61, 0.08);
}

.button svg {
  width: 18px;
  height: 18px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.hero-media {
  position: relative;
  min-height: 580px;
}

.hero-photo-wrap {
  position: absolute;
  inset: 0 0 38px 26px;
  overflow: hidden;
  border-radius: 140px 28px 28px 28px;
  background: var(--aqua);
  box-shadow: var(--shadow);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  max-width: 280px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 42px rgba(23, 51, 61, 0.22);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  font-size: 1.05rem;
}

.hero-note span {
  margin-top: 3px;
  color: #c8dbde;
  font-size: 0.9rem;
}

.trust-bar {
  padding: 0 0 24px;
}

.trust-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 15px 45px rgba(23, 51, 61, 0.07);
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
}

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

.trust-icon,
.service-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--teal);
  background: var(--aqua);
}

.trust-icon {
  width: 46px;
  height: 46px;
}

.trust-icon svg,
.service-icon svg {
  width: 23px;
  height: 23px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  line-height: 1.25;
}

.trust-item span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.section {
  padding: clamp(82px, 10vw, 132px) 0;
}

.section-tint {
  background: var(--aqua-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 9px 30px rgba(23, 51, 61, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #b9d6d6;
  box-shadow: 0 20px 46px rgba(23, 51, 61, 0.09);
}

.service-icon {
  width: 52px;
  height: 52px;
}

.service-card:nth-child(3n + 2) .service-icon {
  color: var(--coral-dark);
  background: #fff0eb;
}

.service-card h3 {
  margin: 23px 0 10px;
  font-size: 1.27rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.audience-panel {
  display: grid;
  overflow: hidden;
  min-height: 570px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  grid-template-columns: 0.9fr 1.1fr;
}

.audience-copy {
  display: flex;
  padding: clamp(38px, 6vw, 74px);
  flex-direction: column;
  justify-content: center;
}

.audience-copy .eyebrow {
  color: #b7e4e2;
}

.audience-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.5vw, 4.6rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.audience-copy > p {
  margin: 22px 0 0;
  color: #c9dbde;
  font-size: 1.08rem;
}

.audience-list {
  display: grid;
  margin: 0;
  padding: clamp(34px, 5vw, 62px);
  background:
    linear-gradient(rgba(8, 115, 120, 0.9), rgba(8, 115, 120, 0.9)),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.18), transparent 34%);
  list-style: none;
  gap: 14px;
  align-content: center;
}

.audience-list li {
  display: grid;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.08);
  grid-template-columns: auto 1fr;
  gap: 15px;
}

.audience-list svg {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: #ffd7ca;
}

.audience-list strong {
  display: block;
  font-size: 1.05rem;
}

.audience-list span {
  display: block;
  margin-top: 3px;
  color: #d4e9e8;
  font-size: 0.93rem;
  line-height: 1.45;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  position: relative;
  padding: 30px 27px 24px;
  border-top: 1px solid var(--line);
}

.step-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-weight: 900;
}

.step h3 {
  margin: 24px 0 8px;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(46px, 8vw, 100px);
}

.feature-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.feature-list li {
  display: grid;
  align-items: start;
  padding: 19px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  grid-template-columns: auto 1fr;
  gap: 14px;
}

.feature-list svg {
  width: 23px;
  height: 23px;
  color: var(--teal);
}

.feature-list strong {
  display: block;
}

.feature-list span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.93rem;
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--coral);
  border-radius: 0 12px 12px 0;
  color: var(--ink-2);
  background: #fff6f2;
  font-size: 0.93rem;
}

.notice svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

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

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 4px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--aqua);
  content: "+";
  font-size: 1.35rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 800px;
  padding: 0 62px 24px 4px;
  color: var(--muted);
}

.contact {
  padding: 0 0 clamp(80px, 10vw, 130px);
}

.contact-card {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--teal);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
  gap: 52px;
}

.contact-card::before {
  position: absolute;
  top: -140px;
  right: -80px;
  width: 340px;
  height: 340px;
  border: 62px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card .eyebrow {
  color: #d5f4f2;
}

.contact-card > div > p {
  max-width: 620px;
  margin: 20px 0 0;
  color: #ddf0ef;
  font-size: 1.08rem;
}

.contact-options {
  display: grid;
  gap: 10px;
  align-content: center;
}

.contact-link {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 17px;
  color: var(--white);
  background: rgba(5, 70, 74, 0.3);
  text-decoration: none;
  grid-template-columns: auto 1fr;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(5, 70, 74, 0.46);
}

.contact-link-primary {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.contact-link-primary:hover {
  border-color: var(--white);
  background: #f2fbfa;
}

.contact-link > svg {
  width: 25px;
  height: 25px;
}

.contact-link strong,
.contact-link span {
  display: block;
}

.contact-link strong {
  font-size: 1rem;
  line-height: 1.25;
}

.contact-link span span {
  margin-top: 3px;
  color: #d6eceb;
  font-size: 0.91rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-link-primary span span {
  color: var(--muted);
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--cloud);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-top: 5px !important;
}

.footer-contact a {
  color: var(--ink-2);
  font-weight: 750;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--teal);
  text-decoration: underline;
}

.footer-langs {
  display: flex;
  gap: 16px;
}

.footer-langs a {
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-langs a[aria-current="page"] {
  color: var(--teal-dark);
  text-decoration: none;
}

@media (max-width: 1020px) {
  .main-nav {
    position: fixed;
    inset: 80px 0 auto 0;
    display: none;
    padding: 22px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 28px 50px rgba(23, 51, 61, 0.13);
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
  }

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

  .main-nav > a {
    padding: 12px 8px;
    font-size: 1.02rem;
  }

  .main-nav .lang-switcher {
    align-self: flex-start;
    margin-top: 14px;
  }

  .menu-toggle {
    display: grid;
  }

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

  .hero-copy {
    max-width: 790px;
  }

  .hero-copy h1 {
    max-width: 860px;
  }

  .hero-media {
    min-height: 590px;
  }

  .hero-photo-wrap {
    left: 72px;
  }

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

  .audience-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    min-height: auto;
  }

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

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    inset-block-start: 72px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(3.05rem, 15vw, 4.9rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 470px;
  }

  .hero-photo-wrap {
    inset: 0 0 38px 18px;
    border-radius: 86px 22px 22px 22px;
  }

  .hero-note {
    max-width: 245px;
  }

  .trust-grid,
  .services-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-card {
    min-height: auto;
  }

  .audience-copy,
  .audience-list {
    padding: 32px 25px;
  }

  .audience-list li {
    padding: 18px;
  }

  .step {
    padding-inline: 10px;
  }

  .contact-card {
    gap: 32px;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
