:root {
  color-scheme: light;
  --bg-dark: #08111f;
  --bg-navy: #0f172a;
  --bg-soft: #f8fafc;
  --primary: #0878f8;
  --primary-dark: #075bd8;
  --primary-soft: #e0efff;
  --accent: #20c098;
  --accent-soft: #dffaf2;
  --ai: #8b5cf6;
  --ai-soft: #ede9fe;
  --warning: #f59e0b;
  --warning-soft: #fef3c7;
  --danger: #ef4444;
  --danger-soft: #fee2e2;
  --odoo-purple: #714b67;
  --odoo-purple-light: #d7b5cf;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-soft);
  color: var(--text-main);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button {
  font: inherit;
}

.odoo-word {
  display: inline;
  color: var(--odoo-purple);
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: 0;
}

strong.odoo-word {
  font-weight: 900;
}

.hero .odoo-word,
.section-navy .odoo-word,
.site-header:not(.is-scrolled) .odoo-word,
.footer .odoo-word {
  color: var(--odoo-purple-light);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(8, 17, 31, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.brand,
.brand-copy,
.nav-links,
.header-actions,
.hero-actions,
.mockup-topbar,
.ticket-head,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 230px;
}

.brand-logo {
  display: block;
  width: 174px;
  height: auto;
  padding: 5px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

.brand-copy {
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.02;
}

.brand-copy strong {
  font-size: 18px;
  font-weight: 900;
}

.brand-copy small {
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.7;
}

.nav-links {
  gap: 22px;
  color: currentColor;
  font-size: 14px;
  font-weight: 750;
  opacity: 0.82;
}

.nav-links a:hover,
.ghost-link:hover {
  opacity: 1;
}

.header-actions {
  gap: 12px;
}

.ghost-link {
  color: currentColor;
  font-size: 14px;
  font-weight: 800;
  opacity: 0.78;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  padding: 0 18px;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  padding: 0 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.13);
}

.button-whatsapp {
  padding: 0 18px;
  background: var(--accent);
  color: #052e16;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.22);
}

.button-large {
  min-height: 52px;
  padding-inline: 24px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 12px;
  color: currentColor;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 2px;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  top: 75px;
  left: 16px;
  right: 16px;
  z-index: 45;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-panel a:not(.button) {
  padding: 12px 10px;
  color: var(--text-main);
  font-weight: 800;
}

.mobile-panel.is-open {
  display: flex;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(18px, 4vw, 56px) 76px;
  background: radial-gradient(circle at top left, #1e3a8a 0%, #08111f 45%, #020617 100%);
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.78), transparent);
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

.hero-copy,
.hero-mockup {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 780px;
  min-width: 0;
}

.hero-copy > * {
  animation: hero-rise 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 180ms;
}

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

.eyebrow.dark {
  color: #93c5fd;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.5vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 > span {
  display: block;
}

h2 {
  margin-bottom: 16px;
  color: var(--text-main);
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--text-main);
  font-size: 20px;
  line-height: 1.2;
}

.hero-text {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55;
  overflow-wrap: break-word;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-photo {
  animation: hero-photo-rise 820ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms both;
}

.hero-note {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.photo-panel.reveal-item,
.demo-form.reveal-item {
  transform: translateY(28px) scale(0.985);
}

.photo-panel.reveal-item.is-visible,
.demo-form.reveal-item.is-visible {
  transform: translateY(0) scale(1);
}

.photo-panel img,
.hero-photo img {
  transition: transform 700ms ease;
}

.photo-panel:hover img,
.hero-photo:hover img {
  transform: scale(1.035);
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes hero-photo-rise {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.97);
  }

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

.hero-mockup {
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(2, 6, 23, 0.38);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.mockup-topbar {
  justify-content: space-between;
  height: 62px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

.mockup-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 20px 0 0 var(--warning), 40px 0 0 var(--danger);
}

.mockup-topbar strong {
  font-size: 14px;
}

.mockup-topbar em {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.mockup-stage {
  position: relative;
  min-height: 558px;
  padding: 20px;
}

.float-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-main);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.26);
}

.float-card p {
  margin-bottom: 0;
  color: var(--text-main);
  line-height: 1.45;
}

.chat-card {
  width: min(280px, 46%);
  padding: 18px;
}

.customer-card {
  top: 30px;
  left: 24px;
}

.ai-card {
  top: 116px;
  right: 24px;
  width: min(330px, 54%);
}

.ticket-card {
  top: 248px;
  left: 50%;
  width: min(330px, 64%);
  padding: 18px;
  transform: translateX(-50%);
}

.tech-card {
  left: 26px;
  bottom: 44px;
  width: min(260px, 45%);
  padding: 18px;
}

.tech-card strong {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: #166534;
  font-size: 12px;
}

.knowledge-card {
  right: 24px;
  bottom: 36px;
  width: min(270px, 46%);
  padding: 18px;
}

.card-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
}

.green {
  color: #16a34a;
}

.purple {
  color: var(--ai);
}

.blue {
  color: var(--primary);
}

.danger {
  color: var(--danger);
}

.ticket-head {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.ticket-head strong {
  font-size: 16px;
}

.ticket-head span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--warning-soft);
  color: #92400e;
  font-size: 12px;
  font-weight: 900;
}

dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

dt {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.flow-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.7), rgba(139, 92, 246, 0.75), transparent);
  transform-origin: left center;
}

.line-one {
  top: 144px;
  left: 235px;
  width: 180px;
  transform: rotate(10deg);
}

.line-two {
  top: 250px;
  left: 240px;
  width: 155px;
  transform: rotate(41deg);
}

.line-three {
  right: 184px;
  bottom: 168px;
  width: 160px;
  transform: rotate(-18deg);
}

.section {
  padding: clamp(76px, 9vw, 118px) clamp(18px, 4vw, 56px);
}

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

.section-navy {
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.18), transparent 30%),
    var(--bg-navy);
  color: var(--white);
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 760px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-heading.inverted h2,
.section-heading.inverted h3 {
  color: var(--white);
}

.section-heading.inverted p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.card-grid,
.solution-grid,
.industry-grid,
.use-case-grid,
.metric-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.info-card,
.solution-card,
.industry-card,
.use-card,
.metric-grid article,
.step-card,
.timeline article {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.info-card {
  min-height: 236px;
  padding: 24px;
}

.info-card p,
.solution-card p,
.industry-card p,
.use-card p,
.metric-grid p,
.step-card p,
.timeline p {
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.icon-dot {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 14px;
}

.icon-dot.blue {
  background: var(--primary-soft);
}

.icon-dot.green {
  background: var(--accent-soft);
}

.icon-dot.amber {
  background: var(--warning-soft);
}

.icon-dot.red {
  background: var(--danger-soft);
}

.icon-dot.purple {
  background: var(--ai-soft);
}

.solution-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.solution-card span,
.step-card span,
.timeline span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  font-weight: 900;
}

.solution-card h3 {
  color: var(--white);
}

.solution-card p {
  color: rgba(255, 255, 255, 0.68);
}

.steps-flow {
  position: relative;
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.steps-flow::before {
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--ai), var(--accent));
  content: "";
  opacity: 0.22;
}

.step-card {
  position: relative;
  z-index: 2;
  min-height: 230px;
  padding: 24px;
}

.odoo-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--white);
}

.odoo-copy {
  max-width: 780px;
}

.odoo-copy p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.65;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-main);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: #15803d;
  content: "✓";
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.support-note {
  padding: 18px;
  border-left: 4px solid var(--primary);
  border-radius: 16px;
  background: var(--primary-soft);
}

.odoo-ticket {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.industry-card {
  padding: 24px;
}

.industry-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.industry-card li {
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

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

.use-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.use-card span {
  display: inline-block;
  margin-bottom: 20px;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 900;
}

.use-card h3 {
  color: var(--white);
  font-size: 25px;
}

.use-card p {
  color: rgba(255, 255, 255, 0.68);
}

.demo-section {
  background:
    linear-gradient(180deg, var(--bg-soft), var(--white));
}

.conversation-demo {
  display: grid;
  max-width: 920px;
  gap: 14px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.chat-row {
  width: min(680px, 86%);
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.chat-row span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
}

.chat-row p {
  margin: 0;
  line-height: 1.55;
}

.chat-row.client {
  justify-self: start;
  background: var(--accent-soft);
}

.chat-row.ai {
  justify-self: end;
  background: var(--ai-soft);
}

.chat-row.group {
  justify-self: center;
  background: var(--primary-soft);
}

.chat-row.tech {
  justify-self: start;
  background: var(--warning-soft);
}

.compact {
  padding-top: 86px;
  padding-bottom: 86px;
}

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

.metric-grid article {
  padding: 24px;
}

.metric-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 24px;
}

.implementation-section {
  background: var(--white);
}

.timeline {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.timeline article {
  padding: 22px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  padding: clamp(70px, 8vw, 104px) clamp(18px, 4vw, 56px) clamp(58px, 7vw, 86px);
  background: radial-gradient(circle at top left, #1e3a8a 0%, #08111f 45%, #020617 100%);
  color: var(--white);
}

.final-cta-copy {
  max-width: 680px;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  margin: 0 0 26px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.65;
}

.final-cta .hero-actions {
  justify-content: center;
}

.final-cta small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.demo-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.28);
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 900;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  background: var(--bg-soft);
  color: var(--text-main);
  font: inherit;
  outline: none;
  resize: vertical;
}

.demo-form input:focus,
.demo-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(8, 120, 248, 0.14);
}

.demo-form .button {
  width: 100%;
}

.demo-form .form-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer {
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  background: #020617;
  color: rgba(255, 255, 255, 0.72);
}

.footer strong {
  display: block;
  color: var(--white);
  font-size: 18px;
}

.footer p {
  margin: 6px 0 0;
  font-size: 14px;
}

.footer nav {
  display: flex;
  gap: 18px;
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .nav-links,
  .header-actions .ghost-link {
    display: none;
  }

  .menu-button {
    display: grid;
  }

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

  .hero-mockup {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .card-grid.four,
  .card-grid.three,
  .solution-grid,
  .industry-grid,
  .metric-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .final-cta {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .header-actions {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 148px;
    padding: 5px 8px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

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

  .hero-mockup {
    min-height: 720px;
    border-radius: 24px;
  }

  .mockup-stage {
    min-height: 658px;
  }

  .float-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 12px;
    transform: none;
  }

  .line-one,
  .line-two,
  .line-three {
    display: none;
  }

  .card-grid.four,
  .card-grid.three,
  .solution-grid,
  .industry-grid,
  .metric-grid,
  .timeline,
  .steps-flow,
  .use-case-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .steps-flow::before {
    display: none;
  }

  .section {
    padding-block: 68px;
  }

  .chat-row {
    width: 100%;
  }

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

  .footer nav {
    flex-wrap: wrap;
  }
}

.hero {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding-top: 104px;
  padding-bottom: 48px;
}

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

.hero-text {
  max-width: 620px;
}

.hero-photo,
.photo-panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(226, 232, 240, 0.75);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-photo {
  aspect-ratio: 4 / 3;
}

.photo-panel {
  aspect-ratio: 4 / 3;
}

.hero-photo img,
.photo-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 58px 18px;
}

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

.section-copy {
  max-width: 680px;
}

.section-copy h2 {
  font-size: clamp(32px, 10vw, 48px);
}

.section-copy p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.62;
}

.section-copy.inverted h2,
.section-copy.inverted h3 {
  color: var(--white);
}

.section-copy.inverted p {
  color: rgba(255, 255, 255, 0.72);
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.mini-list span {
  padding: 9px 11px;
  border-radius: 999px;
  background: var(--white);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.dark-list span {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: none;
}

.steps-flow {
  grid-template-columns: 1fr;
}

.steps-flow::before {
  display: none;
}

.step-card {
  min-height: 0;
}

.compact-steps {
  margin-top: 24px;
}

.section-copy .compact-steps {
  max-width: none;
}

.check-list {
  grid-template-columns: 1fr;
}

.metric-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.metric-list article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-list strong {
  display: block;
  margin-bottom: 6px;
  color: #93c5fd;
  font-size: 22px;
}

.metric-list p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #06351b;
  box-shadow: 0 18px 34px rgba(6, 53, 27, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(6, 53, 27, 0.34);
}

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

@media (max-width: 760px) {
  h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.2vw, 34px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero-copy {
    width: 100%;
    max-width: 350px;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 15.5px;
    line-height: 1.58;
  }

  .hero-actions .button {
    width: auto;
    min-width: min(100%, 250px);
  }

  .hero-secondary-action {
    display: none;
  }

  .final-cta {
    gap: 24px;
    padding: 56px 18px 44px;
  }

  .footer {
    padding: 24px 18px calc(26px + env(safe-area-inset-bottom));
  }

  .hero-photo {
    margin-top: 2px;
  }
}

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

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 761px) {
  body {
    padding-bottom: 0;
  }

  .hero {
    min-height: 100vh;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
    padding-top: 132px;
    padding-bottom: 76px;
  }

  .hero-photo {
    aspect-ratio: 0.92 / 1;
  }

  .section {
    padding: clamp(76px, 9vw, 112px) clamp(18px, 4vw, 56px);
  }

  .section-visual {
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.78fr);
    gap: clamp(28px, 5vw, 70px);
  }

  .section-visual.flip .section-copy {
    order: 2;
  }

  .section-visual.flip .photo-panel {
    order: 1;
  }

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

  .section-copy .compact-steps {
    grid-template-columns: 1fr;
  }

  .steps-flow::before {
    display: block;
  }

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

  .metric-list {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 26px;
    bottom: 26px;
    width: 68px;
    height: 68px;
  }
}
