:root {
  --black: #050505;
  --ink: #111318;
  --muted: #667085;
  --line: #e6e9ef;
  --panel: #ffffff;
  --soft: #f6f7f9;
  --orange: #ff7a00;
  --orange-dark: #d96300;
  --orange-soft: #fff1e5;
  --teal: #16877d;
  --blue: #223a59;
  --shadow: 0 22px 70px rgba(13, 18, 28, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 5vw, 72px);
  color: #fff;
  background: rgba(5, 5, 5, .86);
  border-bottom: 1px solid rgba(255, 122, 0, .24);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 13px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 800;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus {
  color: #fff;
  background: rgba(255, 122, 0, .16);
}

.site-nav .nav-cta {
  margin-left: 10px;
  color: #fff;
  background: var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  background: transparent;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 112px clamp(18px, 5vw, 72px) 72px;
  color: #fff;
  overflow: hidden;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .98) 0%, rgba(5, 5, 5, .78) 48%, rgba(5, 5, 5, .42) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, .92) 0%, rgba(5, 5, 5, .12) 36%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(92vh - 184px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
  align-items: center;
  gap: clamp(30px, 6vw, 82px);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .94;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-text {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(18px, 2vw, 24px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 900;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
}

.btn-secondary:hover {
  border-color: rgba(255, 122, 0, .7);
  background: rgba(255, 122, 0, .14);
}

.hero-logo {
  display: flex;
  justify-content: center;
}

.hero-logo img {
  width: min(360px, 78vw);
  filter: drop-shadow(0 26px 70px rgba(255, 122, 0, .28));
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.metric {
  min-height: 148px;
  padding: 32px;
  background: #fff;
  animation: metricFloat 5.5s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease;
}

.metric:nth-child(2) {
  animation-delay: .8s;
}

.metric:nth-child(3) {
  animation-delay: 1.6s;
}

.metric:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 46px rgba(17, 19, 24, .10);
}

.metric strong {
  display: block;
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
}

.metric span {
  display: block;
  max-width: 440px;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

@keyframes metricFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .metric {
    animation: none;
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 74px);
  background: #fff;
}

.section-text p {
  margin: 0 0 18px;
  color: #3f4654;
  font-size: 18px;
}

.section-text p:last-child {
  margin-bottom: 0;
}

.quote-section {
  color: #fff;
  background: var(--black);
}

.quote-shell {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.quote-intro p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
  font-weight: 600;
}

.quote-slider {
  position: relative;
  min-height: 330px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, .18), rgba(255, 255, 255, .05)),
    #101010;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quote-slide {
  display: none;
}

.quote-slide.is-active {
  display: block;
}

.quote-slide p {
  margin: 0;
  max-width: 820px;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 900;
}

.quote-slide span {
  display: block;
  margin-top: 24px;
  color: var(--orange);
  font-weight: 900;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.slider-controls button:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
}

.slider-dots button.is-active {
  background: var(--orange);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

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

.feature-card,
.step,
.contact-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-card {
  min-height: 238px;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(17, 19, 24, .04);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 40px;
  margin-bottom: 22px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--orange);
  background: var(--orange-soft);
  font-size: 13px;
  font-weight: 900;
}

.feature-card p,
.step p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 600;
}

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

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

.audience-item {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 19, 24, .04);
}

.audience-item strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.audience-item span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 600;
}

.highlight-section {
  display: grid;
  grid-template-columns: minmax(260px, .88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: #fff;
}

.highlight-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.highlight-list {
  display: grid;
  gap: 12px;
}

.highlight-list div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.highlight-list strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.highlight-list span {
  color: #303746;
  font-size: 18px;
  font-weight: 800;
}

.app-section {
  background: var(--black);
}

.app-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .82fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  color: #fff;
}

.app-panel p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 18px;
}

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

.check-list li {
  position: relative;
  padding: 18px 18px 18px 50px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .84);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
}

.field-section {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(240px, .55fr) minmax(280px, .9fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  background: #fff;
}

.field-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--black);
}

.field-photo img {
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  object-fit: cover;
}

.phone-showcase {
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: min(310px, 80vw);
  min-height: 628px;
  padding: 14px;
  border: 10px solid #0c0c0f;
  border-radius: 42px;
  background:
    linear-gradient(145deg, #2a2a2f 0%, #070708 42%, #16161a 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .08),
    0 34px 88px rgba(0, 0, 0, .30);
}

.phone::before {
  content: "";
  position: absolute;
  top: 86px;
  right: -13px;
  width: 4px;
  height: 58px;
  border-radius: 0 4px 4px 0;
  background: #19191d;
}

.phone::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .32);
  transform: translateX(-50%);
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 50%;
  width: 92px;
  height: 24px;
  margin: 0;
  border-radius: 999px;
  background: #0c0c0f;
  transform: translateX(-50%);
}

.phone-speaker::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 10px;
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: #37373d;
}

.phone-screen {
  min-height: 580px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, #050505 0 78px, #f4f6fa 78px);
}

.app-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 78px;
  padding: 26px 16px 14px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 122, 0, .28), transparent 34%),
    #050505;
  font-weight: 900;
}

.app-topbar img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.app-card {
  margin: 14px;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 19, 24, .06);
}

.app-card strong,
.app-card span,
.app-card small {
  display: block;
}

.app-card strong {
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
}

.app-card span {
  margin-top: 10px;
  color: #2e3542;
  font-size: 13px;
  font-weight: 800;
}

.app-card small {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  margin: 0 14px 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--orange);
  background: var(--orange-soft);
  font-size: 13px;
  font-weight: 900;
}

.field-actions {
  display: grid;
  gap: 10px;
  margin: 0 14px;
}

.field-actions div {
  position: relative;
  padding: 14px 14px 14px 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.field-actions div::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 17px;
  width: 18px;
  height: 18px;
  border: 5px solid rgba(255, 122, 0, .18);
  border-radius: 50%;
  background: var(--orange);
}

.field-actions div::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 42px;
  bottom: -12px;
  width: 2px;
  background: rgba(255, 122, 0, .20);
}

.field-actions div:last-child::after {
  display: none;
}

.field-actions span,
.field-actions strong,
.field-actions small {
  display: block;
}

.field-actions span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.field-actions strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.field-actions small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
}

.phone-screen button {
  display: block;
  width: calc(100% - 28px);
  min-height: 46px;
  margin: 14px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}

.field-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.field-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.field-points span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(22, 135, 125, .1);
  font-size: 13px;
  font-weight: 900;
}

.process-section {
  background: #fff;
}

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

.step {
  min-height: 206px;
  padding: 26px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background: var(--blue);
}

.cta-section h2 {
  max-width: 860px;
}

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

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

.contact-item {
  padding: 24px;
  box-shadow: 0 12px 32px rgba(17, 19, 24, .04);
}

.contact-item strong {
  display: block;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-item span {
  display: block;
  margin-top: 10px;
  color: #272d38;
  font-size: 18px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 18px;
  color: rgba(255, 255, 255, .76);
  background: var(--black);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.site-footer img {
  width: 76px;
  height: 34px;
  object-fit: contain;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
}

.whatsapp-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 18px 44px rgba(255, 122, 0, .38);
  cursor: pointer;
}

.whatsapp-fab svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-chat {
  position: absolute;
  right: 0;
  bottom: 78px;
  display: none;
  width: min(360px, calc(100vw - 36px));
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}

.whatsapp-chat.is-open {
  display: block;
}

.whatsapp-chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  color: #fff;
  background: var(--orange);
}

.whatsapp-chat-header strong,
.whatsapp-chat-header span {
  display: block;
}

.whatsapp-chat-header strong {
  font-size: 18px;
  font-weight: 900;
}

.whatsapp-chat-header span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 700;
}

.whatsapp-chat-header button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-chat-body {
  padding: 18px;
  background: #f2f5f3;
}

.chat-bubble {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #1d2939;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.whatsapp-chat-body label {
  display: block;
  margin-bottom: 7px;
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}

.whatsapp-chat-body textarea {
  width: 100%;
  min-height: 112px;
  resize: vertical;
  padding: 12px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  color: #111318;
  background: #fff;
  font: inherit;
  font-size: 14px;
}

.whatsapp-chat-body textarea:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, .16);
}

.whatsapp-chat-body button {
  width: 100%;
  min-height: 46px;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
  cursor: pointer;
}

.whatsapp-chat-body button:hover {
  background: var(--orange-dark);
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 18px 18px;
    background: rgba(5, 5, 5, .96);
    border-bottom: 1px solid rgba(255, 122, 0, .24);
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content,
  .split,
  .app-panel,
  .quote-shell,
  .highlight-section,
  .field-section {
    grid-template-columns: 1fr;
  }

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

  .hero-logo {
    justify-content: flex-start;
  }

  .hero-logo img {
    width: min(260px, 70vw);
  }

  .field-photo {
    order: 2;
  }

  .phone-showcase {
    order: 1;
  }

  .field-copy {
    order: 3;
  }

  .intro-band,
  .feature-grid,
  .steps,
  .contact-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    display: block;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 68px;
    padding: 0 14px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: 86vh;
    padding: 94px 18px 54px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .metric,
  .feature-card,
  .step,
  .contact-item {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
  }

  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-fab {
    width: 58px;
    height: 58px;
  }
}
