:root {
  --ink: #26201b;
  --muted: #6a6f69;
  --line: #dbded8;
  --paper: #f1f1f1;
  --surface: #ffffff;
  --mint: #649702;
  --mint-dark: #416900;
  --lime: #d7f100;
  --coral: #d7f100;
  --sky: #f1f1f1;
  --shadow: 0 24px 80px rgba(23, 32, 29, 0.14);
  --radius: 8px;
  font-family: "Funnel Display", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(241, 241, 241, 0.92);
  box-shadow: 0 1px 0 rgba(23, 32, 29, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 172px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: var(--ink);
}

.site-header.is-scrolled .brand-logo {
  border-color: rgba(23, 32, 29, 0.14);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.75rem;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.92rem;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  opacity: 0.86;
  transition: opacity 160ms ease, color 160ms ease;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
  content: "";
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 750;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.header-cta {
  background: #ffffff;
  color: var(--ink);
}

.site-header.is-scrolled .header-cta {
  background: var(--ink);
  color: #ffffff;
}

.header-cta:hover,
.button:hover,
.tab:hover,
.driver-panel button:hover,
.lead-form .button:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.button.primary:hover {
  box-shadow: 0 16px 34px rgba(215, 241, 0, 0.26);
}

.button.secondary:hover {
  border-color: var(--lime);
  background: rgba(215, 241, 0, 0.11);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 1;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(38, 32, 27, 0.96) 0%, rgba(38, 32, 27, 0.78) 38%, rgba(38, 32, 27, 0.36) 72%, rgba(38, 32, 27, 0.28) 100%),
    linear-gradient(0deg, rgba(38, 32, 27, 0.78) 0%, transparent 44%),
    radial-gradient(circle at 22% 28%, rgba(215, 241, 0, 0.18), transparent 28%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: none;
}

.hero-life-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(0.96) contrast(1.02);
}

.ride-bubble {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(241, 241, 241, 0.92);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.bubble-main {
  right: clamp(22px, 5vw, 90px);
  bottom: clamp(120px, 18vw, 220px);
  padding: 14px 18px;
  animation: heroFloat 8s ease-in-out infinite;
}

.bubble-main span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.bubble-main strong {
  display: inline-grid;
  min-width: 54px;
  min-height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-size: 1rem;
}

.bubble-small {
  right: clamp(42px, 17vw, 300px);
  top: clamp(132px, 22vh, 220px);
  padding: 12px 16px;
  color: var(--ink);
  font-weight: 850;
  transform: rotate(-2deg);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 190px 0 74px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

.intro-band .eyebrow,
.operation-section .eyebrow,
.muted-eyebrow {
  color: var(--muted);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 16px;
  font-size: clamp(3.1rem, 7.2vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.12;
}

.text-lime,
.text-green {
  color: var(--lime);
  font-weight: 900;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.12rem, 2.1vw, 1.38rem);
  line-height: 1.45;
}

.hero-copy strong {
  color: #ffffff;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 46px;
}

.button.primary {
  background: var(--lime);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(215, 241, 0, 0.62);
  color: #ffffff;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin: 0;
  border: 1px solid rgba(215, 241, 0, 0.32);
  background: rgba(215, 241, 0, 0.12);
  backdrop-filter: blur(18px);
}

.hero-metrics div {
  min-height: 108px;
  padding: 22px;
  background: rgba(38, 32, 27, 0.58);
}

.hero-metrics dt {
  margin-bottom: 6px;
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.35;
}

section:not(.hero) {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 4vw, 64px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-band,
.operation-section {
  background: var(--paper);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(34px, 6vw, 86px);
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: start;
}

.operation-section .section-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.section-grid > p,
.section-copy p,
.ops-list p,
.split-copy p,
.faq-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.section-copy {
  display: grid;
  gap: 20px;
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 36px;
}

.section-heading h2 {
  max-width: 820px;
}

.audience-section {
  background: #ffffff;
}

.persona-section {
  background: var(--ink);
  color: #ffffff;
}

.persona-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: clamp(34px, 7vw, 88px);
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: center;
}

.persona-image {
  order: 2;
  overflow: hidden;
  border: 1px solid rgba(215, 241, 0, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 18%, rgba(215, 241, 0, 0.24), transparent 26%),
    #14110f;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.persona-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.persona-copy {
  order: 1;
}

.persona-copy .eyebrow {
  color: var(--lime);
}

.persona-copy h2 {
  max-width: 640px;
}

.persona-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
  line-height: 1.68;
}

.quote-frame {
  margin-top: 26px;
  border-radius: 8px;
  padding: 18px 20px;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  font-weight: 800;
  line-height: 1.35;
}

.quote-frame.dark {
  border: 1px solid rgba(215, 241, 0, 0.34);
  color: #ffffff;
  background: rgba(215, 241, 0, 0.08);
}

.quote-frame.light {
  border: 1px solid rgba(100, 151, 2, 0.24);
  color: var(--ink);
  background: rgba(215, 241, 0, 0.16);
}

.persona-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.persona-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(215, 241, 0, 0.34);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--lime);
  font-weight: 800;
}

.tab-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f8f2;
}

.tab {
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  padding: 0 18px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 750;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.tab.is-active {
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(23, 32, 29, 0.08);
}

.tab-panels {
  margin-top: 18px;
}

.tab-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(28px, 5vw, 74px);
  min-height: 510px;
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(215, 241, 0, 0.24), transparent 46%),
    #ffffff;
}

.tab-panel.is-active {
  display: grid;
  animation: panelIn 260ms ease;
}

.tab-panel p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.inline-cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--lime);
  font-weight: 850;
  line-height: 1.2;
  transition: color 160ms ease, transform 160ms ease;
}

.inline-cta span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--lime);
  font-size: 1.05em;
  line-height: 1;
  transition: transform 160ms ease;
}

.inline-cta.cta-pill {
  gap: 10px;
  margin-top: 26px;
  border-radius: 8px;
  padding: 13px 16px;
  background: var(--ink);
  color: var(--lime);
  box-shadow: 0 14px 30px rgba(38, 32, 27, 0.14);
}

.inline-cta.cta-pill span {
  width: auto;
  height: auto;
  background: transparent;
  color: currentColor;
}

.inline-cta:hover {
  color: var(--ink);
  transform: translateX(2px);
}

.inline-cta.cta-pill:hover {
  color: var(--lime);
  transform: translateY(-2px);
}

.inline-cta:hover span {
  transform: translateX(4px);
}

.feature-band .inline-cta,
.persona-section .inline-cta {
  color: var(--lime);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: #ffffff;
  content: "✓";
  font-size: 0.75rem;
  font-weight: 800;
}

.brand-shot,
.phone-mockup,
.driver-panel,
.admin-preview {
  width: min(100%, 380px);
  margin-left: auto;
  border: 10px solid #17201d;
  border-radius: 34px;
  background: #f8fbf7;
  box-shadow: var(--shadow);
}

.brand-shot {
  width: min(100%, 500px);
  border: 0;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  background: var(--ink);
}

.phone-mockup {
  padding: 14px;
}

.phone-top {
  width: 82px;
  height: 6px;
  margin: 2px auto 14px;
  border-radius: 999px;
  background: #25342f;
}

.app-map {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 20px;
  background:
    repeating-linear-gradient(0deg, #dfeee5 0 22px, #eef7f1 22px 26px),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(30, 166, 122, 0.12) 42px 46px);
}

.map-route {
  position: absolute;
  left: 24%;
  top: 22%;
  width: 48%;
  height: 48%;
  border: 4px solid var(--mint);
  border-right: 0;
  border-bottom: 0;
  border-radius: 46px 0 0 0;
}

.map-pin {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(23, 32, 29, 0.18);
}

.map-pin.one {
  left: 20%;
  bottom: 24%;
}

.map-pin.two {
  right: 23%;
  top: 22%;
  background: var(--mint-dark);
}

.ride-card {
  display: grid;
  gap: 7px;
  margin-top: -44px;
  padding: 18px;
  position: relative;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(23, 32, 29, 0.16);
}

.ride-card span,
.ride-card small {
  color: var(--muted);
}

.driver-panel,
.admin-preview {
  padding: 22px;
  border-radius: 28px;
}

.driver-status,
.admin-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
}

.driver-status span {
  color: var(--mint-dark);
  font-weight: 800;
}

.offer-card {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 22px;
  border-radius: 16px;
  background: var(--ink);
  color: #ffffff;
}

.offer-card small {
  color: var(--lime);
  font-weight: 800;
}

.offer-card span {
  color: rgba(255, 255, 255, 0.72);
}

.driver-panel button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}

.bar-chart {
  display: flex;
  height: 170px;
  align-items: end;
  gap: 12px;
  margin: 20px 0;
  padding: 18px;
  border-radius: 18px;
  background: #edf7f0;
}

.bar-chart span {
  flex: 1;
  min-width: 28px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(#1ea67a, #0b6e56);
}

.admin-row.muted {
  background: #f5f7f4;
}

.feature-band {
  background: var(--ink);
  color: #ffffff;
}

.feature-band .eyebrow {
  color: var(--lime);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.feature-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 241, 0, 0.48);
  background: rgba(255, 255, 255, 0.095);
}

.feature-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}

.feature-grid p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.section-cta {
  display: flex;
  width: min(1120px, 100%);
  margin: 28px auto 0;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 8px;
  padding: 0;
}

.section-cta.dark {
  border: 0;
  background: transparent;
}

.section-cta span {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 7vw, 90px);
  width: min(1248px, 100%);
  margin: 0 auto;
  background: #ffffff;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.steps div:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(23, 32, 29, 0.08);
}

.steps span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}

.steps p {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.35;
}

.ops-list {
  display: grid;
  gap: 8px;
}

.operation-copy {
  display: grid;
  align-content: start;
  gap: 0;
}

.operation-copy h2 {
  margin-bottom: 22px;
}

.operation-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.operation-copy .check-list {
  max-width: 560px;
}

.operation-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 560px;
}

.operation-mockup {
  width: min(100%, 620px);
  height: auto;
  max-height: 720px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 26px 58px rgba(38, 32, 27, 0.18));
}

.check-list.compact {
  margin-top: 0;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  gap: clamp(36px, 6vw, 94px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(215, 241, 0, 0.42), rgba(215, 241, 0, 0.08) 46%, transparent 78%),
    #f1f1f1;
}

.inline-brand-art {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 54px rgba(38, 32, 27, 0.16);
}

.faq-copy {
  max-width: 760px;
  margin-left: max(0px, calc((100vw - 1120px) / 2));
}

.faq-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.9;
}

.whatsapp-secondary {
  margin-top: 12px;
  color: var(--lime);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 18px 42px rgba(38, 32, 27, 0.24);
}

.whatsapp-secondary:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(100%, 520px);
  margin-right: max(0px, calc((100vw - 1120px) / 2));
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(38, 32, 27, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(38, 32, 27, 0.16);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  padding: 0 20px;
  color: var(--ink);
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-align: left;
}

.faq-chevron {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.instagram-section {
  padding-top: 0;
  background: var(--paper);
}

.instagram-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: center;
  border: 1px solid rgba(38, 32, 27, 0.1);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(215, 241, 0, 0.22), transparent 58%),
    #ffffff;
  box-shadow: 0 18px 54px rgba(38, 32, 27, 0.1);
}

.instagram-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.6vw, 3.4rem);
}

.instagram-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.instagram-link {
  display: inline-flex;
  min-height: 68px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(38, 32, 27, 0.1);
  border-radius: 8px;
  padding: 10px 18px 10px 10px;
  color: var(--ink);
  background: #fbfcf8;
  box-shadow: 0 12px 28px rgba(38, 32, 27, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.instagram-link:hover {
  border-color: rgba(100, 151, 2, 0.36);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(38, 32, 27, 0.14);
}

.instagram-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 110%, #feda75 0 23%, transparent 24%),
    radial-gradient(circle at 80% 0%, #515bd4 0 24%, transparent 25%),
    linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af);
}

.instagram-icon svg {
  width: 26px;
  height: 26px;
}

.instagram-link strong,
.instagram-link small {
  display: block;
  line-height: 1.15;
}

.instagram-link strong {
  font-size: 1rem;
}

.instagram-link small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
  width: min(100%, 460px);
  margin-right: max(0px, calc((100vw - 1120px) / 2));
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(23, 32, 29, 0.1);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 750;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfcf8;
  transition: border-color 160ms ease, outline-color 160ms ease, background 160ms ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--mint);
  outline: 3px solid rgba(30, 166, 122, 0.18);
}

.lead-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer span {
  font-weight: 800;
}

.cissa-widget {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: calc(clamp(16px, 3vw, 28px) + 74px);
  z-index: 31;
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(38, 32, 27, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 64px rgba(38, 32, 27, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
  visibility: hidden;
}

.cissa-widget.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.cissa-widget-header {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px 0 18px;
  color: var(--ink);
  background: var(--lime);
}

.cissa-widget-header strong {
  font-size: 0.98rem;
}

.cissa-widget-header button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.cissa-widget-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.cissa-message {
  margin: 0;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f1f1f1;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.cissa-widget label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.cissa-widget textarea {
  width: 100%;
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfcf8;
  font: inherit;
  line-height: 1.5;
  resize: vertical;
}

.cissa-widget textarea:focus {
  border-color: var(--mint);
  outline: 3px solid rgba(100, 151, 2, 0.18);
}

.cissa-send {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 30;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(38, 32, 27, 0.14);
  border-radius: 8px;
  padding: 0 18px 0 8px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 18px 48px rgba(38, 32, 27, 0.24);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(38, 32, 27, 0.28);
}

.whatsapp-float-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  line-height: 1;
}

.whatsapp-float-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

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

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    padding: 14px 20px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-visual {
    inset: 0;
    width: auto;
    min-width: 0;
    opacity: 1;
  }

  .hero-life-image {
    object-position: 68% center;
  }

  .bubble-main {
    right: 20px;
    bottom: 96px;
  }

  .bubble-small {
    right: 22px;
    top: 118px;
  }

  .hero-inner {
    padding-top: 150px;
  }

  .hero-metrics,
  .section-grid,
  .persona-grid,
  .tab-panel,
  .split-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .operation-section .section-grid {
    grid-template-columns: 1fr;
  }

  .operation-visual {
    justify-content: center;
    min-height: auto;
  }

  .operation-mockup {
    width: min(100%, 560px);
    max-height: 640px;
  }

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

  .hero-metrics {
    max-width: 100%;
  }

  .phone-mockup,
  .driver-panel,
  .admin-preview,
  .lead-form,
  .faq-list {
    margin: 0;
  }

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

  .faq-copy {
    margin-left: 0;
  }

  .instagram-card {
    grid-template-columns: 1fr;
  }

  .instagram-link {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .header-cta {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .hero-inner {
    width: min(100% - 32px, 1120px);
    padding-top: 132px;
    padding-bottom: 34px;
  }

  .hero {
    min-height: 860px;
    align-items: end;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(38, 32, 27, 0.96) 0%, rgba(38, 32, 27, 0.78) 48%, rgba(38, 32, 27, 0.3) 100%),
      radial-gradient(circle at 22% 28%, rgba(215, 241, 0, 0.18), transparent 28%);
  }

  .hero-visual {
    inset: 0;
    width: auto;
    opacity: 1;
  }

  .hero-life-image {
    object-position: 72% top;
  }

  .ride-bubble {
    display: none;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
    line-height: 0.98;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section-cta .button {
    width: 100%;
  }

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

  section:not(.hero) {
    padding: 56px 16px;
  }

  .tabs {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .tab-panel {
    padding: 22px;
  }

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

  .feature-grid article {
    min-height: auto;
  }

  .feature-icon {
    margin-bottom: 24px;
  }

  .site-footer {
    display: grid;
  }

  .instagram-card {
    padding: 22px;
  }

  .instagram-link {
    width: 100%;
  }

  .faq-copy h2 {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

  .faq-item button {
    min-height: 56px;
    padding: 0 16px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }

  .cissa-widget {
    right: 12px;
    bottom: 76px;
    width: calc(100vw - 24px);
  }

  .cissa-widget-body {
    padding: 16px;
  }

  .cissa-widget textarea {
    min-height: 104px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    padding-right: 14px;
    font-size: 0.82rem;
  }

  .whatsapp-float-icon {
    width: 40px;
    height: 40px;
  }
}
