:root {
  --lt-navy: #0b4f5a;
  --lt-navy-2: #087373;
  --lt-emerald: #0f8f7d;
  --lt-emerald-2: #0a6c65;
  --lt-gold: #f2b84b;
  --lt-coral: #d85f43;
  --lt-ink: #172329;
  --lt-muted: #5a6b70;
  --lt-line: rgba(11, 79, 90, 0.16);
  --lt-soft: #f3fbfa;
  --lt-warm: #fff7ef;
  --lt-white: #ffffff;
  --lt-shadow: 0 18px 42px rgba(11, 79, 90, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.lt-page {
  margin: 0;
  background: var(--lt-white);
  color: var(--lt-ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.lt-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.lt-page a {
  color: inherit;
  text-decoration: none;
}

.lt-skip {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--lt-gold);
  color: var(--lt-navy);
  font-weight: 800;
}

.lt-skip:focus {
  top: 14px;
}

.lt-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.lt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--lt-line);
  backdrop-filter: blur(16px);
}

.lt-topbar {
  background: var(--lt-coral);
  color: var(--lt-white);
  font-size: 13px;
  font-weight: 700;
}

.lt-topbar__inner,
.lt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lt-topbar__inner {
  min-height: 36px;
}

.lt-topbar a {
  color: var(--lt-white);
  white-space: nowrap;
}

.lt-nav {
  min-height: 78px;
  flex-wrap: wrap;
}

.lt-brand {
  display: inline-flex;
  min-width: 220px;
  flex: 1 1 220px;
  flex-direction: column;
  color: var(--lt-navy);
}

.lt-brand__name {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.05;
}

.lt-brand__line {
  color: var(--lt-coral);
  font-size: 12px;
  font-weight: 900;
}

.lt-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}

.lt-nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--lt-navy);
  font-size: 14px;
  font-weight: 800;
}

.lt-nav__links a:hover,
.lt-nav__links a[aria-current="page"] {
  background: rgba(15, 143, 125, 0.09);
  color: var(--lt-emerald);
}

.lt-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--lt-coral);
  color: var(--lt-white);
  font-weight: 900;
  white-space: nowrap;
}

.lt-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(243, 251, 250, 0.98), rgba(255, 247, 239, 0.94) 54%, rgba(215, 242, 237, 0.92)),
    var(--lt-soft);
  color: var(--lt-ink);
}

.lt-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  gap: 42px;
  align-items: center;
  padding-block: 72px;
}

.lt-hero__copy {
  min-width: 0;
}

.lt-eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--lt-coral);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lt-hero h1,
.lt-section h2,
.lt-final h2,
.lt-contact-method h2 {
  margin: 0;
  color: inherit;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.05;
}

.lt-hero h1 {
  max-width: 820px;
  margin-top: 16px;
  font-size: 46px;
}

.lt-lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--lt-muted);
  font-size: 19px;
  line-height: 1.55;
}

.lt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lt-actions--compact {
  margin-top: 18px;
}

.lt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lt-btn:hover {
  transform: translateY(-1px);
}

.lt-btn--primary {
  background: var(--lt-coral);
  color: var(--lt-white);
  box-shadow: 0 12px 28px rgba(216, 95, 67, 0.22);
}

.lt-btn--whatsapp {
  background: var(--lt-emerald);
  color: var(--lt-white);
}

.lt-btn--ghost {
  background: var(--lt-white);
  border-color: var(--lt-line);
  color: var(--lt-navy);
}

.lt-section .lt-btn--ghost,
.lt-contact-method .lt-btn--ghost {
  background: var(--lt-white);
  border-color: var(--lt-line);
  color: var(--lt-navy);
}

.lt-microcopy {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--lt-muted);
  font-size: 14px;
}

.lt-hero__visual {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--lt-white);
  border: 1px solid rgba(15, 143, 125, 0.16);
  box-shadow: var(--lt-shadow);
}

.lt-hero__visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.lt-hero__visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: var(--lt-white);
  color: var(--lt-navy);
}

.lt-hero__visual strong,
.lt-hero__visual span {
  display: block;
}

.lt-hero__visual span {
  color: var(--lt-muted);
  font-size: 13px;
  font-weight: 800;
}

.lt-trust {
  border-bottom: 1px solid var(--lt-line);
  background: var(--lt-white);
}

.lt-trust__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding-block: 18px;
}

.lt-trust span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--lt-line);
  border-radius: 8px;
  color: var(--lt-navy);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.lt-section {
  padding-block: 76px;
}

.lt-section--soft {
  background: var(--lt-soft);
}

.lt-section--navy {
  background:
    linear-gradient(135deg, var(--lt-emerald-2), var(--lt-navy) 58%, #7b4a2e),
    var(--lt-navy);
  color: var(--lt-white);
}

.lt-section__head {
  max-width: 820px;
  margin-bottom: 32px;
}

.lt-section__head h2 {
  margin-top: 10px;
  color: var(--lt-navy);
  font-size: 38px;
}

.lt-section--navy .lt-section__head h2 {
  color: var(--lt-white);
}

.lt-section__head p {
  margin: 14px 0 0;
  color: var(--lt-muted);
  font-size: 18px;
}

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

.lt-card-grid--services {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lt-service-card,
.lt-info-card,
.lt-list-panel,
.lt-contact-method {
  border: 1px solid var(--lt-line);
  border-radius: 8px;
  background: var(--lt-white);
  box-shadow: 0 10px 28px rgba(13, 35, 56, 0.06);
}

.lt-service-card,
.lt-info-card {
  min-height: 100%;
  padding: 22px;
}

.lt-service-card h3,
.lt-info-card h3,
.lt-list-panel h3 {
  margin: 14px 0 8px;
  color: var(--lt-navy);
  font-size: 21px;
  line-height: 1.2;
}

.lt-service-card p,
.lt-info-card p,
.lt-list-panel p,
.lt-contact-method p {
  margin: 0;
  color: var(--lt-muted);
}

.lt-service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--lt-emerald);
  font-weight: 900;
}

.lt-token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-height: 38px;
  border-radius: 8px;
  background: rgba(15, 143, 125, 0.1);
  color: var(--lt-emerald);
  font-size: 13px;
  font-weight: 900;
}

.lt-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: center;
}

.lt-two-col--reverse {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
}

.lt-two-col h2 {
  margin-top: 10px;
  color: var(--lt-navy);
  font-size: 38px;
}

.lt-two-col p {
  margin: 16px 0 0;
  color: var(--lt-muted);
  font-size: 18px;
}

.lt-list-panel {
  padding: 26px;
}

.lt-list-panel ul,
.lt-checklist {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.lt-list-panel li,
.lt-checklist li {
  position: relative;
  margin-top: 12px;
  padding-left: 22px;
  color: var(--lt-ink);
}

.lt-list-panel li::before,
.lt-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: var(--lt-emerald);
}

.lt-image-band {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--lt-shadow);
}

.lt-image-band img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.lt-mini-grid,
.lt-related__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.lt-mini-grid span,
.lt-related__links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--lt-line);
  border-radius: 8px;
  padding: 8px 12px;
  background: var(--lt-white);
  color: var(--lt-navy);
  font-weight: 900;
}

.lt-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.lt-process article {
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.lt-process span {
  color: var(--lt-gold);
  font-weight: 900;
}

.lt-process h3 {
  margin: 12px 0 8px;
  color: var(--lt-white);
  font-size: 22px;
  line-height: 1.2;
}

.lt-process p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.lt-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.lt-pricing article {
  border: 1px solid rgba(242, 184, 75, 0.5);
  border-radius: 8px;
  padding: 20px;
  background: var(--lt-warm);
}

.lt-pricing h3 {
  margin: 0;
  color: var(--lt-navy);
  font-size: 18px;
  line-height: 1.25;
}

.lt-pricing strong {
  display: block;
  margin-top: 10px;
  color: var(--lt-emerald);
  font-size: 32px;
  line-height: 1;
}

.lt-compliance {
  margin-top: 18px;
  padding: 16px;
  border-left: 4px solid var(--lt-gold);
  background: var(--lt-soft);
  color: var(--lt-muted);
}

.lt-faq__list {
  display: grid;
  gap: 12px;
}

.lt-faq details {
  border: 1px solid var(--lt-line);
  border-radius: 8px;
  background: var(--lt-white);
  padding: 18px 20px;
}

.lt-faq summary {
  cursor: pointer;
  color: var(--lt-navy);
  font-weight: 900;
}

.lt-faq p {
  margin: 12px 0 0;
  color: var(--lt-muted);
}

.lt-related {
  padding-top: 0;
}

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

.lt-contact-method {
  padding: 26px;
}

.lt-contact-method span {
  color: var(--lt-emerald);
  font-weight: 900;
  text-transform: uppercase;
}

.lt-contact-method h2 {
  margin-top: 8px;
  color: var(--lt-navy);
  font-size: 30px;
}

.lt-final {
  padding-block: 64px;
  background:
    linear-gradient(125deg, rgba(8, 115, 115, 0.98), rgba(216, 95, 67, 0.88)),
    var(--lt-navy);
  color: var(--lt-white);
}

.lt-final__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.lt-final h2 {
  margin-top: 10px;
  max-width: 760px;
  font-size: 38px;
}

.lt-final p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.lt-footer {
  background: #083f46;
  color: rgba(255, 255, 255, 0.82);
}

.lt-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 30px;
  padding-block: 44px;
}

.lt-footer__logo {
  width: min(250px, 100%);
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.lt-footer strong,
.lt-footer span {
  display: block;
  color: var(--lt-white);
  font-weight: 900;
}

.lt-footer p {
  margin: 10px 0 0;
}

.lt-footer nav {
  display: grid;
  gap: 9px;
  align-content: start;
}

.lt-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.lt-footer a:hover {
  color: var(--lt-gold);
}

.lt-footer__backing {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.66);
}

.lt-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

@media (min-width: 1100px) {
  .lt-hero h1 {
    font-size: 70px;
  }
}

@media (max-width: 1080px) {
  .lt-nav {
    align-items: flex-start;
    padding-block: 16px;
  }

  .lt-nav__links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: visible;
    padding-bottom: 2px;
  }

  .lt-hero__grid,
  .lt-two-col,
  .lt-two-col--reverse,
  .lt-final__inner {
    grid-template-columns: 1fr;
  }

  .lt-card-grid--services,
  .lt-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lt-trust__grid,
  .lt-card-grid,
  .lt-contact-grid,
  .lt-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .lt-shell {
    width: min(100% - 24px, 1180px);
  }

  .lt-topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 8px;
  }

  .lt-nav {
    gap: 10px;
  }

  .lt-brand {
    min-width: 0;
  }

  .lt-brand__name {
    font-size: 22px;
  }

  .lt-nav__cta {
    min-height: 40px;
    padding-inline: 12px;
  }

  .lt-hero__grid {
    gap: 28px;
    padding-block: 48px;
  }

  .lt-hero h1 {
    font-size: 38px;
  }

  .lt-lead,
  .lt-section__head p,
  .lt-two-col p,
  .lt-final p {
    font-size: 16px;
  }

  .lt-actions,
  .lt-actions--compact {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .lt-btn {
    width: 100%;
  }

  .lt-hero__visual img {
    height: 300px;
  }

  .lt-hero__visual figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .lt-section {
    padding-block: 52px;
  }

  .lt-section__head h2,
  .lt-two-col h2,
  .lt-final h2 {
    font-size: 32px;
  }

  .lt-trust__grid,
  .lt-card-grid,
  .lt-card-grid--services,
  .lt-process,
  .lt-pricing,
  .lt-contact-grid,
  .lt-footer__grid {
    grid-template-columns: 1fr;
  }

  .lt-process article {
    min-height: auto;
  }

  .lt-image-band img {
    min-height: 280px;
  }

  .lt-footer__bottom {
    flex-direction: column;
  }
}
