:root {
  color-scheme: light;
  --ink: #17211c;
  --muted: #5e6b64;
  --line: #dfe6df;
  --paper: #f7f4ee;
  --surface: #fffdf8;
  --accent: #0d7f72;
  --accent-strong: #075e55;
  --warm: #d89b52;
  --shadow: 0 24px 80px rgba(23, 33, 28, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(13, 127, 114, 0.10), transparent 32rem),
    linear-gradient(135deg, #f7f4ee 0%, #eef4ef 48%, #f9f4eb 100%);
}

a {
  color: inherit;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(23, 33, 28, 0.08);
}

.brand {
  font-size: 1.9rem;
  font-weight: 760;
  letter-spacing: 0;
  text-decoration: none;
}

.language-nav {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
}

.language-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.language-nav a[aria-current="page"] {
  color: #fff;
  background: var(--accent);
}

.home-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
  min-height: calc((100svh - 72px) / 2);
  padding: clamp(56px, 9vw, 112px) clamp(20px, 5vw, 72px);
  animation: sectionIn 520ms ease both;
}

.home-section + .home-section {
  border-top: 1px solid rgba(23, 33, 28, 0.10);
}

.home-section--materials {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.82), rgba(255, 253, 248, 0.34)),
    repeating-linear-gradient(135deg, rgba(13, 127, 114, 0.08) 0 1px, transparent 1px 16px);
}

.home-section--services {
  background:
    linear-gradient(90deg, rgba(238, 244, 239, 0.72), rgba(255, 253, 248, 0.88)),
    radial-gradient(circle at right center, rgba(216, 155, 82, 0.16), transparent 28rem);
}

.home-section--services-priority {
  display: block;
  min-height: auto;
  padding-top: clamp(34px, 5vw, 64px);
}

.section-intro {
  position: sticky;
  top: 28px;
  max-width: 620px;
}

.section-intro--compact {
  position: static;
  max-width: none;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.section-intro--compact h1 {
  max-width: none;
  font-size: 2.35rem;
}

h1,
h2 {
  max-width: 18ch;
  margin: 0;
  font-size: 2.85rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-intro p:last-child {
  max-width: 34rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.item-list {
  display: grid;
  gap: 14px;
}

.home-services {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.priority-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.priority-service {
  display: grid;
  align-content: start;
  gap: 20px;
  min-width: 0;
}

.priority-service__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  text-decoration: none;
}

.priority-service__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(23, 33, 28, 0.10);
  box-shadow: var(--shadow);
  transition: transform 240ms ease;
}

.priority-service:hover .priority-service__media img {
  transform: scale(1.025);
}

.priority-service__body h2 {
  max-width: none;
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.08;
}

.priority-service__body h2 a {
  text-decoration: none;
}

.priority-service__body p:not(.service-region) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.list-item {
  position: relative;
  padding: clamp(20px, 3vw, 30px) 0;
  border-top: 1px solid rgba(23, 33, 28, 0.16);
  transition: transform 180ms ease, border-color 180ms ease;
}

.list-item:hover {
  transform: translateX(8px);
  border-color: var(--accent);
}

.list-item h2,
.list-item h3,
.list-item h4 {
  max-width: 32rem;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.list-item h2 a,
.list-item h3 a,
.list-item h4 a {
  text-decoration: none;
}

.featured-service {
  display: grid;
  gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(23, 33, 28, 0.16);
}

.featured-service__media {
  display: block;
  overflow: hidden;
  background: var(--surface);
  text-decoration: none;
}

.featured-service__media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(23, 33, 28, 0.10);
  box-shadow: var(--shadow);
}

.featured-service__body h2 {
  max-width: 16ch;
  font-size: 2.1rem;
  line-height: 1.08;
}

.featured-service__body h2 a {
  text-decoration: none;
}

.featured-service__body p:not(.service-note) {
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.62;
}

.service-note {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-weight: 800;
}

.service-region {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 800;
}

.featured-service__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.featured-service__terms span {
  padding: 9px 12px;
  border: 1px solid rgba(13, 127, 114, 0.22);
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(255, 253, 248, 0.72);
  font-size: 0.9rem;
  font-weight: 750;
}

.secondary-services {
  display: grid;
  gap: 0;
}

.secondary-services--visual {
  gap: 18px;
}

.secondary-services > h3 {
  margin: 6px 0 8px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.secondary-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(23, 33, 28, 0.12);
  border: 1px solid rgba(23, 33, 28, 0.12);
}

.secondary-service {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  padding: 16px;
  background: rgba(255, 253, 248, 0.84);
}

.secondary-service__media {
  display: block;
  overflow: hidden;
  align-self: start;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  text-decoration: none;
}

.secondary-service__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secondary-service h4 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.18;
}

.secondary-service h4 a {
  text-decoration: none;
}

.secondary-service p {
  display: -webkit-box;
  max-width: none;
  margin: 8px 0 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.secondary-service .item-action {
  margin-top: 10px;
  font-size: 0.86rem;
}

.list-item p {
  max-width: 40rem;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.item-action {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.service-page {
  background: #f7f4ee;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: 72px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.98), rgba(247, 244, 238, 0.68)),
    radial-gradient(circle at right center, rgba(216, 155, 82, 0.18), transparent 30rem);
}

.brand-line {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 1.05rem;
  font-weight: 800;
}

.service-hero h1 {
  max-width: 16ch;
  font-size: 3.05rem;
  line-height: 1.04;
}

.service-hero__copy > p:not(.brand-line) {
  max-width: 39rem;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button-primary,
.button-secondary,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary,
.lead-form button {
  color: #fff;
  background: var(--accent);
}

.button-secondary {
  color: var(--accent-strong);
  background: rgba(255, 253, 248, 0.64);
}

.service-hero__media,
.service-feature figure {
  margin: 0;
}

.service-hero__media img,
.service-feature img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(23, 33, 28, 0.10);
  box-shadow: var(--shadow);
}

.service-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(23, 33, 28, 0.12);
  border-bottom: 1px solid rgba(23, 33, 28, 0.12);
  background: rgba(23, 33, 28, 0.12);
}

.service-facts span {
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--surface);
  color: var(--accent-strong);
  font-size: 1.16rem;
  font-weight: 800;
}

.offer-terms {
  padding: 64px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(23, 33, 28, 0.10);
  background: rgba(255, 253, 248, 0.72);
}

.offer-terms h2 {
  max-width: none;
  font-size: 2.45rem;
}

.offer-terms__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: rgba(23, 33, 28, 0.12);
  border: 1px solid rgba(23, 33, 28, 0.12);
}

.offer-term {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 22px;
  background: var(--surface);
}

.offer-term strong {
  color: var(--accent-strong);
  font-size: 1.38rem;
  line-height: 1.1;
}

.offer-term span {
  color: var(--muted);
  line-height: 1.45;
}

.service-split,
.service-feature,
.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  padding: 76px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(23, 33, 28, 0.10);
}

.service-feature {
  align-items: center;
}

.service-feature--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.service-split--compact {
  padding-top: 58px;
  padding-bottom: 58px;
  background: rgba(255, 253, 248, 0.66);
}

.service-split h2,
.service-feature h2,
.lead-section h2 {
  max-width: 15ch;
  font-size: 2.35rem;
  line-height: 1.06;
}

.service-hero--flyguru {
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.98), rgba(247, 244, 238, 0.44)),
    radial-gradient(circle at right center, rgba(13, 127, 114, 0.18), transparent 30rem);
}

.service-hero--botmarketing {
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.98), rgba(255, 253, 248, 0.64)),
    radial-gradient(circle at right center, rgba(13, 127, 114, 0.18), transparent 30rem);
}

.service-hero__media--logo {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid rgba(23, 33, 28, 0.10);
  background:
    linear-gradient(135deg, rgba(13, 127, 114, 0.10), rgba(216, 155, 82, 0.16)),
    var(--surface);
  box-shadow: var(--shadow);
}

.service-hero__media--logo img {
  width: min(46%, 220px);
  height: auto;
  border: 0;
  box-shadow: none;
}

.discount-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 34px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(23, 33, 28, 0.10);
  background: var(--accent-strong);
  color: #fff;
}

.discount-band h2 {
  max-width: 16ch;
  color: #fff;
  font-size: 2rem;
}

.discount-band p {
  max-width: 44rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
}

.discount-band .item-action {
  margin-top: 0;
  color: #fff;
}

.tour-showcase {
  display: grid;
  gap: 1px;
  background: rgba(23, 33, 28, 0.12);
  border-top: 1px solid rgba(23, 33, 28, 0.10);
  border-bottom: 1px solid rgba(23, 33, 28, 0.10);
}

.tour-option {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 48px;
  align-items: center;
  padding: 72px clamp(20px, 5vw, 72px);
  background: var(--surface);
}

.tour-option--reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.tour-option figure {
  margin: 0;
}

.tour-option img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(23, 33, 28, 0.10);
  box-shadow: var(--shadow);
}

.tour-option h2 {
  max-width: 15ch;
  font-size: 2.2rem;
  line-height: 1.08;
}

.tour-option p {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

.tour-option strong {
  display: block;
  margin-top: 24px;
  color: var(--accent-strong);
  font-size: 1.6rem;
  line-height: 1.1;
}

.tour-option span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.offer-terms--formats {
  background: #f2f7f3;
}

.format-list {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid rgba(23, 33, 28, 0.14);
}

.format-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 33, 28, 0.14);
}

.format-row h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.22;
}

.format-row p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.format-row strong {
  color: var(--accent-strong);
  white-space: nowrap;
}

.format-list--compact {
  margin-top: 24px;
}

.format-list--compact .format-row:first-child {
  border-top: 0;
}

.service-feature--boards img {
  background: #fff;
  object-fit: cover;
}

.final-cta {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: 72px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(13, 127, 114, 0.12), rgba(255, 253, 248, 0.9)),
    var(--surface);
}

.final-cta h2 {
  max-width: 16ch;
  font-size: 2.35rem;
  line-height: 1.06;
}

.final-cta p {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.service-feature__text p,
.service-large-text,
.lead-section__copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.plain-list {
  display: grid;
  gap: 14px;
}

.plain-list p {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 33, 28, 0.14);
  color: var(--muted);
  line-height: 1.62;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.tag-list span {
  padding: 12px 16px;
  border: 1px solid rgba(13, 127, 114, 0.22);
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(255, 253, 248, 0.72);
  font-weight: 750;
}

.step-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding-left: 1.4rem;
  color: var(--muted);
  line-height: 1.62;
}

.lead-section {
  align-items: start;
  background: var(--surface);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 33, 28, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .is-invalid {
  border-color: #b42318;
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
}

.form-note.is-success {
  color: var(--accent-strong);
}

.form-note.is-error {
  color: #b42318;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid rgba(23, 33, 28, 0.10);
  background: var(--surface);
}

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

@media (max-width: 820px) {
  .topbar {
    min-height: 64px;
  }

  .home-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .home-section--services-priority {
    padding-top: 38px;
  }

  .section-intro {
    position: static;
  }

  .section-intro--compact {
    margin-bottom: 24px;
  }

  .section-intro--compact h1 {
    font-size: 1.8rem;
  }

  h1,
  h2 {
    max-width: 16ch;
    font-size: 2.15rem;
    line-height: 1.04;
  }

  .brand {
    font-size: 1.35rem;
  }

  .section-intro p:last-child {
    font-size: 1rem;
  }

  .list-item h2,
  .list-item h3,
  .list-item h4 {
    font-size: 1.4rem;
  }

  .featured-service__body h2 {
    font-size: 1.75rem;
  }

  .priority-services,
  .secondary-services__grid {
    grid-template-columns: 1fr;
  }

  .priority-service__body h2 {
    font-size: 1.55rem;
  }

  .secondary-service {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .footer {
    flex-direction: column;
  }

  .service-hero,
  .service-split,
  .service-feature,
  .service-feature--reverse,
  .lead-section,
  .discount-band,
  .tour-option,
  .tour-option--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 52px;
    padding-bottom: 56px;
  }

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

  .service-facts {
    grid-template-columns: 1fr;
  }

  .service-facts span {
    padding: 20px;
  }

  .service-split h2,
  .service-feature h2,
  .lead-section h2 {
    max-width: 15ch;
    font-size: 1.9rem;
  }

  .service-hero h1 {
    max-width: 14ch;
    font-size: 2.25rem;
  }

  .tour-option h2,
  .final-cta h2 {
    font-size: 1.9rem;
  }

  .format-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .format-row strong {
    white-space: normal;
  }

  .discount-band h2 {
    font-size: 1.75rem;
  }

  .offer-terms {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .offer-terms h2 {
    font-size: 1.9rem;
  }

  .offer-terms__grid {
    grid-template-columns: 1fr;
  }

  .service-hero__copy > p:not(.brand-line),
  .service-feature__text p,
  .service-large-text,
  .lead-section__copy p {
    font-size: 1rem;
  }
}
