:root {
  color-scheme: light;
  --ink: #10201d;
  --muted: #5d6d68;
  --bg: #f6faf7;
  --paper: #ffffff;
  --dark: #071512;
  --dark-2: #10241f;
  --green: #1fc16b;
  --green-dark: #0b8f4b;
  --mint: #dff8ea;
  --lime: #a9e86f;
  --sand: #f4ead2;
  --coral: #f37c57;
  --line: rgba(16, 32, 29, 0.12);
  --shadow: 0 24px 70px rgba(7, 21, 18, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.signal-strip,
.flow-step,
.site-footer,
.site-footer nav,
.table-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0;
  font-weight: 900;
}

.site-nav {
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a:hover {
  color: var(--green-dark);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.lang-button {
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.lang-button.active {
  background: var(--dark-2);
  color: #ffffff;
}

.menu-button {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 132px clamp(20px, 7vw, 92px) 74px;
  background: var(--dark);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) hue-rotate(16deg);
}

.hero-overlay {
  background:
    radial-gradient(circle at 76% 34%, rgba(31, 193, 107, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(7, 21, 18, 0.97) 0%, rgba(7, 21, 18, 0.78) 42%, rgba(7, 21, 18, 0.22) 100%),
    linear-gradient(0deg, var(--dark) 0%, rgba(7, 21, 18, 0) 26%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 9vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.7;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.primary-button {
  background: var(--green);
  color: #06110f;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.light-section .secondary-button,
.contact-section .secondary-button,
.supplier-section .secondary-button {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

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

.hero-note {
  width: min(560px, 100%);
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.signal-strip {
  min-height: 86px;
  justify-content: center;
  gap: clamp(16px, 4vw, 44px);
  padding: 18px clamp(18px, 5vw, 64px);
  overflow-x: auto;
  background: var(--mint);
  color: var(--dark-2);
  font-weight: 900;
  white-space: nowrap;
}

.section {
  padding: clamp(70px, 10vw, 128px) clamp(20px, 7vw, 92px);
}

.two-column,
.supplier-section,
.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.section-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.flow-card,
.supplier-panel,
.contact-card,
.phone-demo,
.pricing-cards article,
.steps-grid article,
.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.flow-card {
  padding: 18px;
}

.flow-step {
  gap: 14px;
  min-height: 74px;
  padding: 14px;
  border-radius: 8px;
}

.flow-step.active {
  background: var(--mint);
}

.flow-step span {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-2);
  color: #ffffff;
  font-weight: 950;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.light-section,
.pricing-section {
  background: #ffffff;
}

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

.path-card {
  min-height: 360px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(7, 21, 18, 0.08);
}

.path-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-card h3 {
  max-width: 560px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.path-card p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.path-card .primary-button,
.path-card .secondary-button {
  margin-top: 14px;
}

.path-card .secondary-button {
  border-color: var(--line);
  background: var(--dark-2);
  color: #ffffff;
}

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

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

.steps-grid article,
.feature-grid article {
  min-height: 250px;
  padding: 24px;
  box-shadow: 0 18px 46px rgba(7, 21, 18, 0.08);
}

.steps-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--green-dark);
  font-weight: 950;
}

.steps-grid p,
.feature-grid p,
.pricing-cards li,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
}

.supplier-section {
  background:
    linear-gradient(135deg, rgba(31, 193, 107, 0.14), transparent 44%),
    var(--dark);
  color: #ffffff;
}

.supplier-section .section-copy {
  color: rgba(255, 255, 255, 0.74);
}

.supplier-panel {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.chat-bubble {
  width: min(420px, 92%);
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  line-height: 1.55;
}

.chat-bubble.buyer {
  margin-left: auto;
  background: var(--green);
  color: #06110f;
}

.chat-bubble.ai {
  background: #ffffff;
  color: var(--ink);
}

.match-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.match-box span,
.match-box strong {
  display: block;
}

.match-box span {
  color: var(--green);
  font-weight: 900;
  margin-bottom: 6px;
}

.match-box strong {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.match-box p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
}

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

.pricing-cards article {
  min-height: 520px;
  padding: 24px;
}

.pricing-cards .recommended {
  background: var(--dark-2);
  color: #ffffff;
}

.pricing-cards span,
.pricing-cards strong {
  display: block;
}

.pricing-cards span {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-cards .recommended span {
  color: var(--green);
}

.pricing-cards strong {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.pricing-cards small {
  color: var(--muted);
  font-size: 1rem;
}

.pricing-cards .recommended small,
.pricing-cards .recommended li {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-cards ul {
  margin: 0;
  padding-left: 18px;
}

.pricing-cards li + li {
  margin-top: 10px;
}

.buyer-pricing-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(31, 193, 107, 0.18), transparent 28%),
    #f2fbf5;
}

.buyer-plans article {
  min-height: 460px;
}

.buyer-function-panel {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(7, 21, 18, 0.08);
}

.buyer-function-panel h3 {
  margin-bottom: 18px;
}

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

.buyer-function-grid span {
  min-height: 72px;
  padding: 14px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--dark-2);
  font-weight: 850;
  line-height: 1.45;
}

.category-section {
  background: var(--sand);
}

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

.category-grid span {
  min-height: 84px;
  padding: 18px;
  border: 1px solid rgba(16, 32, 29, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

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

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

.feature-grid article {
  min-height: 210px;
}

.whatsapp-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(31, 193, 107, 0.18), transparent 28%),
    var(--bg);
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.single-phone {
  grid-template-columns: minmax(0, 680px);
}

.phone-demo {
  overflow: hidden;
  background: #eef7ef;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: var(--dark-2);
  color: #ffffff;
}

.phone-top span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.phone-top strong {
  font-weight: 950;
}

.phone-chat {
  min-height: 420px;
  padding: 22px;
  background:
    linear-gradient(45deg, rgba(16, 36, 31, 0.04) 25%, transparent 25% 50%, rgba(16, 36, 31, 0.04) 50% 75%, transparent 75%),
    #eef7ef;
  background-size: 28px 28px;
}

.bubble {
  width: fit-content;
  max-width: min(390px, 88%);
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 8px;
  line-height: 1.55;
  box-shadow: 0 8px 22px rgba(7, 21, 18, 0.08);
}

.bubble.sent {
  margin-left: auto;
  background: #d8ffd6;
  color: var(--ink);
}

.bubble.received {
  background: #ffffff;
  color: var(--ink);
}

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

.about-section .section-copy {
  color: rgba(255, 255, 255, 0.74);
}

.contact-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(31, 193, 107, 0.22), transparent 26%),
    var(--bg);
}

.contact-card {
  max-width: 920px;
  padding: clamp(26px, 6vw, 58px);
}

.contact-card .secondary-button {
  color: var(--ink);
}

.contact-number {
  font-weight: 900;
}

.contact-number a,
.legal-page a {
  color: var(--green-dark);
  font-weight: 900;
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 7vw, 92px);
  background: var(--dark);
  color: #ffffff;
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 130px 22px 80px;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(3rem, 9vw, 5.4rem);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-page section {
  margin-top: 34px;
}

.legal-page h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.legal-updated {
  font-weight: 850;
}

@media (max-width: 1060px) {
  .steps-grid,
  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .site-header {
    gap: 10px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

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

  .hero {
    min-height: 94vh;
    padding-top: 116px;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 80% 30%, rgba(31, 193, 107, 0.22), transparent 30%),
      linear-gradient(90deg, rgba(7, 21, 18, 0.97) 0%, rgba(7, 21, 18, 0.78) 74%, rgba(7, 21, 18, 0.34) 100%),
      linear-gradient(0deg, var(--dark) 0%, rgba(7, 21, 18, 0) 32%);
  }

  .two-column,
  .supplier-section,
  .about-section,
  .phone-grid {
    grid-template-columns: 1fr;
  }
}

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

  .brand {
    font-size: 0.96rem;
  }

  .lang-button {
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.76rem;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 4.6rem);
  }

  .hero,
  .section {
    padding-inline: 18px;
  }

  .hero-actions a {
    width: 100%;
  }

  .signal-strip {
    justify-content: flex-start;
  }

  .steps-grid,
  .pricing-cards,
  .feature-grid,
  .category-grid,
  .path-grid,
  .buyer-function-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards article {
    min-height: 0;
  }

  .phone-chat {
    min-height: 360px;
    padding: 16px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}
