:root {
  --ink: #111111;
  --muted: #5f6368;
  --line: #dfded9;
  --paper: #ffffff;
  --soft: #f5f2ec;
  --charcoal: #181614;
  --brand: #f18716;
  --brand-dark: #a74f00;
  --brand-soft: #fff3e2;
  --green: #157347;
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 12px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(17, 17, 17, 0.92);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.header-inner,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 172px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
}

.nav a:hover,
.nav a:focus {
  color: #ffffff;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  color: #111111;
  background: var(--brand);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus {
  background: #ff9a2b;
  transform: translateY(-1px);
}

.button.secondary {
  background: #ffffff;
  color: var(--ink);
}

.button.ghost {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 84svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--charcoal);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.58);
}

.hero-content {
  width: min(760px, 100%);
  padding: 88px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.12;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.lead {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: 1.16rem;
  color: rgba(255, 255, 255, 0.88);
}

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

.stat-row {
  width: min(1160px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px auto 0;
  color: #ffffff;
}

.stat {
  padding: 24px;
  background: #211e1a;
  border-radius: 8px;
}

.stat strong {
  display: block;
  color: var(--brand);
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 80px 0;
}

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

.section.dark {
  background: var(--charcoal);
  color: #ffffff;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.card.dark-card {
  color: #ffffff;
  background: #211e1a;
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-body p {
  margin: 10px 0 0;
  color: var(--muted);
}

.dark-card .card-body p {
  color: rgba(255, 255, 255, 0.7);
}

.brand-strip {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 32px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

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

.brand-section {
  background: #ffffff;
}

.brand-carousel-block {
  overflow: hidden;
}

.brand-carousel-head {
  width: min(780px, 100%);
  margin: 0 auto 32px;
  text-align: center;
}

.brand-carousel-head p:not(.eyebrow) {
  margin: 14px auto 0;
  color: var(--muted);
}

.logo-carousel {
  --logo-gap: 18px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.logo-track {
  width: max-content;
  min-width: max-content;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--logo-gap);
  animation: logo-scroll 30s linear infinite;
  will-change: transform;
}

.logo-item {
  flex: 0 0 170px;
  width: 170px;
  height: 86px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.logo-item img {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--logo-gap) / 2)));
  }
}

.testimonial {
  padding: 22px;
}

.testimonial img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}

.testimonial blockquote {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.testimonial cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
}

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

.split img,
.split video {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.split p {
  color: var(--muted);
}

.dark .split p {
  color: rgba(255, 255, 255, 0.72);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.faq summary {
  padding: 18px 20px;
  font-weight: 800;
  cursor: pointer;
}

.faq p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.cta-band {
  position: relative;
  isolation: isolate;
  padding: 72px 0;
  color: #ffffff;
  background: var(--charcoal);
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--band-image);
  background-size: cover;
  background-position: center;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.66);
}

.form-panel {
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-panel h2,
.form-panel p {
  color: var(--ink);
}

.form-panel p {
  margin: 10px 0 20px;
  color: var(--muted);
}

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

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #cfcac2;
  border-radius: 6px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

input:focus,
select:focus {
  outline: 2px solid rgba(241, 135, 22, 0.35);
  border-color: var(--brand);
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 700;
}

.partner-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.partner-proof .stat {
  border-radius: 8px;
}

.video-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.video-shell img {
  max-height: 660px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.32));
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #0f0f0f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 1fr);
  gap: 28px;
}

.site-footer img {
  width: 160px;
}

.site-footer h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.socials img {
  width: 22px;
  height: 22px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: var(--shadow);
}

.floating-whatsapp img {
  width: 28px;
  height: 28px;
}

.landing-list {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 80px 0;
  background: var(--soft);
}

.landing-list .grid {
  margin-top: 28px;
}

.landing-card {
  padding: 28px;
}

.landing-card p {
  color: var(--muted);
}

.link-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 48px 16px;
  color: #ffffff;
  background: var(--charcoal);
  overflow: hidden;
}

.link-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/img/LP-Dasktop.png");
  background-position: center;
  background-size: cover;
  opacity: 0.24;
}

.link-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.64);
}

.linktree {
  width: min(420px, 100%);
}

.linktree-panel {
  padding: 28px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.linktree-logo {
  width: 188px;
  height: auto;
  margin: 0 auto 22px;
}

.linktree h1 {
  text-align: center;
  font-size: 2rem;
}

.linktree .lead {
  margin: 12px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 1rem;
}

.link-stack {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 10px 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.link-button:hover,
.link-button:focus {
  border-color: var(--brand);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.12);
  transform: translateY(-1px);
}

.link-button.primary {
  color: #111111;
  background: var(--brand);
  border-color: var(--brand);
}

.link-button span {
  min-width: 0;
}

.link-button small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.link-button.primary small {
  color: rgba(17, 17, 17, 0.76);
}

.link-button::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.error-code {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero {
    min-height: 78svh;
  }

  .stat-row,
  .partner-proof,
  .grid.three,
  .grid.two,
  .split,
  .brand-strip,
  .video-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-strip {
    padding: 22px;
  }

  .logo-item {
    flex-basis: 138px;
    width: 138px;
    height: 74px;
    padding: 12px;
  }

  .logo-item img {
    max-height: 38px;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .section-inner {
    width: min(100% - 24px, 1160px);
  }

  .hero .section-inner,
  .cta-band .section-inner {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .brand img {
    width: 148px;
  }

  .nav .button {
    flex: 1 0 100%;
    width: 100%;
  }

  .nav {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .nav a:not(.button) {
    min-width: 0;
    width: 100%;
    padding: 2px 0;
    text-align: left;
    white-space: nowrap;
    font-size: 0.92rem;
  }

  h1 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-content {
    width: 100%;
    max-width: 360px;
    padding: 72px 0 48px;
  }

  .hero-content h1,
  .hero-content p,
  .hero-content .lead {
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
    max-width: 360px;
  }

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

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

  .section {
    padding: 56px 0;
  }

  .stat,
  .card-body,
  .form-panel,
  .linktree-panel {
    padding: 18px;
  }

  .link-page {
    padding: 24px 12px;
  }

  .linktree h1 {
    font-size: 1.7rem;
  }
}
