:root {
  --green: #00846c;
  --green-dark: #00594e;
  --green-soft: #e8f5f1;
  --gold: #e0a512;
  --gold-soft: #f8edcf;
  --ink: #0e1728;
  --muted: #6d7686;
  --line: #dfe8e5;
  --card: #ffffff;
  --bg: #fbfdfc;
  --shadow: 0 24px 80px rgba(15, 66, 58, 0.12);
  font-family: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 2% 18%, rgba(0, 132, 108, 0.08), transparent 28rem),
    radial-gradient(circle at 92% 36%, rgba(224, 165, 18, 0.08), transparent 24rem),
    var(--bg);
  font-family: "Inter", Arial, sans-serif;
}

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

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

.hgi-stroke {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 82px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 253, 252, 0.88);
  border-bottom-color: rgba(223, 232, 229, 0.65);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 28px;
}

.brand-lockup {
  --brand-icon-size: 30px;
  --brand-type-size: 36px;
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.brand-icon {
  width: var(--brand-icon-size);
  height: var(--brand-icon-size);
  object-fit: contain;
  object-position: center;
  transform: translateY(1px);
}

.brand-type {
  font-family: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: #35373a;
  font-size: var(--brand-type-size);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.site-header .brand-icon {
  width: 20px !important;
  height: 20px !important;
  margin-top: 2px;
}

.site-header .brand-type {
  font-size: 32px !important;
}

.site-footer .brand-icon {
  width: 23px !important;
  height: 23px !important;
  margin-top: 0px;
}

.site-footer .brand-type {
  font-size: 34px !important;
}

.footer-brand-lockup .brand-type {
  color: rgba(255, 255, 255, 0.92);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu-item {
  position: relative;
}

.nav-links a,
.login-link,
.nav-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #253144;
  font-size: 14px;
  font-weight: 500;
}

.nav-links .hgi-stroke,
.language-link .hgi-stroke:last-child {
  font-size: 13px;
  font-weight: 800;
}

.nav-links a:hover,
.login-link:hover,
.nav-menu-trigger:hover {
  color: var(--green);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  min-width: 210px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: 180ms ease;
  pointer-events: none;
}

.nav-dropdown a {
  width: 100%;
  padding: 10px 12px;
  color: #253144;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 650;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
  color: var(--green);
  background: var(--green-soft);
}

.nav-menu-item:hover .nav-dropdown,
.nav-menu-item:focus-within .nav-dropdown,
.nav-menu-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-dark);
  border-radius: 999px;
  transition: 180ms ease;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: 180ms ease;
}

.btn .hgi-stroke {
  font-size: 18px;
}

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

.btn-small {
  min-height: 42px;
  padding-inline: 20px;
}

.btn-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(0, 132, 108, 0.2);
}

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

/* Stripe/gloss effect for all green "Start Free Trial" buttons */
a.btn-primary[href="#trial"],
a.btn-primary[href$="#trial"] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.14), transparent 14rem),
    linear-gradient(270deg, rgba(0, 64, 55, 0.18), transparent 62%),
    linear-gradient(180deg, #18c49d, var(--green));
}

a.btn-primary[href="#trial"]::before,
a.btn-primary[href$="#trial"]::before {
  content: "";
  position: absolute;
  inset: -26px;
  background:
    linear-gradient(270deg, rgba(0, 64, 55, 0.38), rgba(0, 64, 55, 0.12) 36%, transparent 72%),
    repeating-linear-gradient(
      105deg,
      transparent 0,
      transparent 22px,
      rgba(255, 255, 255, 0.22) 22px,
      rgba(255, 255, 255, 0.22) 30px,
      transparent 30px,
      transparent 44px
    );
  opacity: 0.78;
  filter: blur(4px);
  pointer-events: none;
  z-index: 1;
}

a.btn-primary[href="#trial"] > *,
a.btn-primary[href$="#trial"] > * {
  position: relative;
  z-index: 2;
}

.price-card.featured .btn-primary {
  box-shadow: 0 18px 44px rgba(0, 132, 108, 0.26);
}

.btn-ghost,
.btn-outline {
  color: var(--green-dark);
  background: #fff;
  border-color: var(--line);
}

.btn-light {
  color: var(--green-dark);
  background: #fff;
}

.btn-dark-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 70px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(0, 132, 108, 0.02) 88%, rgba(0, 132, 108, 0.03) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  color: var(--green-dark);
  background: #edf8f4;
  border: 1px solid #d6eee8;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.dot-icon {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green) 0 68%, var(--gold) 68%);
  border-radius: 6px;
  font-size: 12px;
}

.hero h1 {
  max-width: 650px;
  margin: 30px 0 22px;
  color: #101828;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero h1 span {
  color: var(--green);
}

.hero-text {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
  color: #667085;
  font-size: 13px;
  font-weight: 600;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row .hgi-stroke {
  width: 16px;
  height: 16px;
  color: var(--green);
  font-size: 16px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.shape-one {
  top: 30px;
  right: -360px;
  width: 880px;
  height: 760px;
  background: var(--green);
  filter: blur(2px);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  transform: rotate(-14deg);
  filter: blur(20px);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
}

.shape-two {
  right: -40px;
  bottom: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(224, 165, 18, 0.32), rgba(224, 165, 18, 0.08) 50%, transparent 78%);
  filter: blur(10px);
  border-radius: 50%;
}

.dashboard-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 176px 1fr;
  min-height: 430px;
  margin-top: 38px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(222, 231, 228, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.dashboard-sidebar {
  padding: 28px 18px;
  background: #f6faf9;
  border-right: 1px solid var(--line);
}

.mini-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.mark-logo-img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.dashboard-sidebar a {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  padding: 11px 12px;
  color: #7a8491;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.dashboard-sidebar .hgi-stroke {
  font-size: 15px;
}

.dashboard-sidebar a.active {
  color: #fff;
  background: var(--green);
}

.dashboard-main {
  padding: 28px;
}

.dashboard-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.dashboard-topbar p {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
}

.dashboard-topbar strong {
  color: #7a8491;
  font-size: 12px;
  font-weight: 600;
}

.profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  color: #667085;
  font-size: 11px;
  font-weight: 700;
}

.profile-pill span {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #f3d5bd, #b76b44);
  border-radius: 50%;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.metric-grid div {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.metric-grid span,
.metric-grid em {
  display: block;
  color: #87909f;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.metric-grid strong {
  display: block;
  margin: 8px 0 5px;
  color: #111827;
  font-size: 16px;
}

.metric-grid em {
  color: var(--green);
}

.chart-panel {
  position: relative;
  padding: 20px;
  background: linear-gradient(180deg, #fff, #f8fbfa);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
  color: #111827;
  font-size: 13px;
}

.chart-head span {
  color: #88919e;
  font-size: 11px;
}

.chart {
  display: flex;
  align-items: end;
  gap: 16px;
  height: 130px;
  padding-top: 20px;
}

.chart span {
  flex: 1;
  min-width: 14px;
  background: linear-gradient(180deg, #15b894, var(--green));
  border-radius: 999px 999px 0 0;
}

.chart-badge {
  position: absolute;
  right: 24%;
  top: 52%;
  padding: 10px 12px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 132, 108, 0.24);
  font-size: 12px;
  font-weight: 800;
}

.chart-badge small {
  font-weight: 500;
  opacity: 0.8;
}

.integrations-card {
  position: absolute;
  z-index: 3;
  right: 44px;
  bottom: 12px;
  width: min(460px, calc(100% - 40px));
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(15, 66, 58, 0.12);
}

.integrations-card p {
  margin: 0 0 12px;
  color: #9aa3af;
  font-size: 11px;
  font-weight: 800;
}

.integrations-card div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.integrations-card span {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 8px;
  color: #253144;
  font-size: 12px;
  font-weight: 800;
}

.integrations-card b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border-radius: 9px;
  font-size: 13px;
}

.integrations-card b .hgi-stroke {
  font-size: 17px;
}

.integrations-card .mark-logo-img {
  width: 30px;
  height: 30px;
}

.integrations-card small {
  color: #89929f;
  font-weight: 600;
}

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

.section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 14px;
  color: var(--green-dark);
  background: #edf8f4;
  border: 1px solid #d6eee8;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--green) 0 68%, var(--gold) 68%);
}

.section-heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 12px 0 0;
  color: #858f9d;
}

.products {
  padding-top: 34px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(15, 66, 58, 0.06);
}

.product-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(0, 132, 108, 0.28);
}

.product-waybill::after {
  background: rgba(224, 165, 18, 0.26);
}

.product-whatsapp::after {
  background: rgba(0, 132, 108, 0.3);
}

.product-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.letter-logo,
.whatsapp-logo,
.product-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border-radius: 12px;
  font-weight: 900;
}

.letter-logo .hgi-stroke,
.whatsapp-logo .hgi-stroke {
  font-size: 22px;
}

.product-mark {
  display: block;
  background: transparent;
  object-fit: contain;
  object-position: center;
}

.whatsapp-logo {
  background: #22c55e;
}

.product-logo strong,
.product-logo div span {
  display: block;
}

.product-logo strong {
  color: var(--green);
  font-size: 17px;
}

.product-logo div span {
  color: #8a94a2;
  font-size: 11px;
  font-weight: 700;
}

.product-card h3 {
  position: relative;
  z-index: 2;
  max-width: 270px;
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.product-card p {
  position: relative;
  z-index: 2;
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-card a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  color: var(--green);
  font-weight: 800;
}

.product-card a .hgi-stroke {
  font-size: 16px;
}

.product-art {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
}

.paper,
.barcode-card {
  width: 116px;
  height: 150px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(15, 66, 58, 0.12);
  transform: rotate(-5deg);
}

.paper span {
  display: block;
  height: 8px;
  margin-bottom: 12px;
  background: #e6eeeb;
  border-radius: 999px;
}

.check-mark {
  position: absolute;
  right: -12px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
  font-size: 22px;
}

.barcode-card small {
  display: block;
  margin-bottom: 22px;
  color: #111827;
  font-weight: 800;
}

.barcode-card b {
  display: inline-block;
  width: 8px;
  height: 60px;
  margin-right: 5px;
  background: #111827;
}

.chat-art {
  width: 120px;
  min-height: 168px;
  padding: 22px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(15, 66, 58, 0.12);
}

.chat-art span {
  display: block;
  height: 14px;
  margin-bottom: 13px;
  background: #d9f3ea;
  border-radius: 999px;
}

.chat-art span:nth-child(2) {
  width: 70%;
  margin-left: auto;
  background: #f2f7f5;
}

.chat-art i {
  position: absolute;
  left: -18px;
  bottom: 4px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #22c55e;
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
}

.feature-strip {
  padding: 50px 0;
  background: linear-gradient(90deg, rgba(232, 245, 241, 0.7), #fff, rgba(232, 245, 241, 0.75));
  border-block: 1px solid rgba(223, 232, 229, 0.8);
}

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

.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  align-items: start;
}

.feature-item span {
  grid-row: span 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #dff3ee;
  border-radius: 50%;
  font-size: 22px;
}

.feature-item .hgi-stroke {
  font-size: 23px;
}

.feature-item strong {
  font-size: 16px;
  line-height: 1.2;
}

.feature-item small {
  margin: 4px 0 0;
  color: #344054;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.25;
}

.feature-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
  max-width: 260px;
}

.steps {
  background: #fff;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 270px));
  gap: 70px;
  max-width: 1060px;
  justify-content: space-between;
  margin-inline: auto;
}

.step-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 1;
}

.step-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
}

.step-icon .hgi-stroke {
  font-size: 26px;
}

.step-card:nth-child(2) .step-icon {
  background: var(--gold);
}

.step-card:nth-child(3) .step-icon {
  background: #14a77c;
}

.step-card small {
  color: var(--green);
  font-weight: 900;
}

.step-card h3 {
  margin: 4px 0;
  font-size: 17px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

@media (min-width: 1051px) {
  .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 12px);
    width: 100px;
    height: 0;
    border-top: 3px dashed rgba(0, 132, 108, 0.28);
    transform: translateY(-50%);
  }
}

.pricing {
  padding-top: 64px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 24px;
  max-width: 1080px;
  margin-inline: auto;
}

.price-card {
  position: relative;
  padding: 38px 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 38px rgba(15, 66, 58, 0.06);
}

.price-card.featured {
  border-color: rgba(224, 165, 18, 0.55);
  box-shadow: 0 22px 60px rgba(224, 165, 18, 0.16);
}

.popular {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 9px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.16), transparent 10rem),
    linear-gradient(270deg, rgba(145, 99, 0, 0.28), rgba(145, 99, 0, 0.08) 35%, transparent 70%),
    linear-gradient(180deg, #f0b429, var(--gold));
  border-radius: 16px 16px 0 0;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  overflow: hidden;
  isolation: isolate;
}

.popular::before {
  content: "";
  position: absolute;
  inset: -26px;
  background:
    linear-gradient(270deg, rgba(145, 99, 0, 0.42), rgba(145, 99, 0, 0.14) 38%, transparent 72%),
    repeating-linear-gradient(
      105deg,
      transparent 0,
      transparent 18px,
      rgba(255, 255, 255, 0.22) 18px,
      rgba(255, 255, 255, 0.22) 24px,
      transparent 24px,
      transparent 36px
    );
  filter: blur(3px);
  opacity: 0.82;
  pointer-events: none;
  z-index: 1;
}

.popular > * {
  position: relative;
  z-index: 2;
}

.featured h3 {
  margin-top: 26px;
}

.price-card h3 {
  margin-bottom: 7px;
  font-size: 21px;
}

.price-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.price {
  margin-bottom: 22px;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.price-card ul {
  min-height: 140px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card:not(.featured) ul {
  min-height: 116px;
  margin-bottom: 24px;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #536071;
  font-size: 14px;
}

.price-card li::before {
  content: none;
}

.price-card li .hgi-stroke {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 16px;
}

.price-card .btn {
  width: 100%;
}

.cta-section {
  padding: 34px 0 0;
  margin-bottom: 50px;
}

.cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 44px 58px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.14), transparent 16rem),
    linear-gradient(135deg, var(--green), #006451);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: -30px;
  background:
    linear-gradient(270deg, rgba(0, 64, 55, 0.58), rgba(0, 64, 55, 0.22) 34%, transparent 80%),
    repeating-linear-gradient(
      105deg,
      transparent 0,
      transparent 74px,
      rgba(255, 255, 255, 0.1) 74px,
      rgba(255, 255, 255, 0.1) 104px,
      transparent 104px,
      transparent 126px
    );
  filter: blur(6px);
  opacity: 0.78;
  pointer-events: none;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card > div:first-of-type {
  flex: 1 1 auto;
  min-width: 0;
}

.cta-card h2 {
  max-width: 500px;
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.cta-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 16px;
}

.cta-actions .btn {
  white-space: nowrap;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #003f39;
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 38px;
}

.footer-brand-lockup .brand-icon {
  width: 32px;
  height: 32px;
}

.footer-brand p {
  max-width: 260px;
  margin: 18px 0;
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 32px;
  height: 32px;
  display: grid;
  align-items: center;
  justify-content: center;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.socials .hgi-stroke {
  font-size: 16px;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 15px;
}

.footer-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-grid .socials a {
  display: grid;
  gap: 0;
}

.whatsapp-button {
  width: max-content;
  padding: 12px 16px;
  background: #0aa37c;
  border-radius: 8px;
  color: #fff !important;
  font-weight: 800;
}

.copyright {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

@media (max-width: 1050px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: relative;
  }

  .site-header.nav-open .nav {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 14px;
  }

  .site-header.nav-open {
    background: rgba(251, 253, 252, 0.96);
    border-bottom-color: rgba(223, 232, 229, 0.8);
    backdrop-filter: blur(18px);
  }

  .site-header.nav-open .nav-links,
  .site-header.nav-open .nav-actions {
    flex: 0 0 100%;
    display: flex;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
  }

  .site-header.nav-open .nav-links {
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    border-radius: 18px 18px 0 0;
    border-bottom: 0;
  }

  .site-header.nav-open .nav-actions {
    justify-content: space-between;
    gap: 12px;
    border-radius: 0 0 18px 18px;
  }

  .nav-links a,
  .login-link,
  .nav-menu-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px;
    border-radius: 12px;
  }

  .nav-links a:hover,
  .login-link:hover,
  .nav-menu-trigger:hover {
    background: var(--green-soft);
  }

  .nav-menu-item {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 6px 12px;
    padding: 4px;
    background: #f7fbfa;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-menu-item.is-open .nav-dropdown {
    display: grid;
  }

  .nav-menu-item:hover .nav-dropdown,
  .nav-menu-item:focus-within .nav-dropdown {
    transform: none;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

  .product-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .dashboard-card {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 22px;
  }

  .dashboard-topbar {
    display: block;
  }

  .profile-pill {
    margin-top: 16px;
  }

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

  .integrations-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -20px auto 0;
  }

  .integrations-card div,
  .product-grid,
  .pricing-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    display: block;
    padding: 34px 26px;
  }

  .cta-actions {
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .chart {
    gap: 10px;
  }
}

/* Contact page */
.nav-links a.active {
  color: var(--green);
}

.language-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.contact-page {
  background: linear-gradient(180deg, #fff 0%, #fbfdfc 52%, #fff 100%);
}

.contact-hero {
  padding: 52px 0 34px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 42px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: #8a94a2;
  font-size: 13px;
  font-weight: 600;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-hero h1 {
  max-width: 560px;
  margin: 0 0 20px;
  color: #101828;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-hero h1 span {
  color: var(--green);
}

.contact-hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.contact-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}

.contact-benefits article {
  display: grid;
  gap: 8px;
}

.contact-benefits i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 23px;
}

.contact-benefits strong {
  color: #111827;
  font-size: 16px;
}

.contact-benefits span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.contact-visual {
  position: relative;
  min-height: 420px;
}

.contact-hero-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: contain;
}

.contact-visual-bg {
  position: absolute;
  inset: 48px 60px 20px 10px;
  background:
    radial-gradient(circle at 48% 42%, rgba(0, 132, 108, 0.2), rgba(0, 132, 108, 0.08) 46%, transparent 68%),
    radial-gradient(circle at 86% 40%, rgba(224, 165, 18, 0.13), transparent 32%);
  border-radius: 50%;
}

.contact-visual-bg::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 60px;
  width: 180px;
  height: 220px;
  background-image: radial-gradient(rgba(0, 132, 108, 0.2) 1.3px, transparent 1.3px);
  background-size: 14px 14px;
  opacity: 0.38;
}

.support-card,
.floating-contact-icon,
.laptop,
.desk-plant,
.coffee-cup,
.contact-person {
  position: absolute;
  z-index: 2;
}

.support-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 66, 58, 0.12);
}

.message-card {
  top: 78px;
  left: 30px;
  width: 240px;
}

.support-avatar {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
}

.support-avatar img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.support-card strong {
  display: block;
  color: #111827;
  font-size: 12px;
  margin-bottom: 4px;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.voice-card {
  top: 188px;
  left: 70px;
  width: 220px;
}

.voice-card i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
}

.voice-card span {
  flex: 1;
  height: 28px;
  background:
    repeating-linear-gradient(90deg, rgba(0, 132, 108, 0.55) 0 3px, transparent 3px 10px),
    linear-gradient(90deg, transparent, rgba(0, 132, 108, 0.12), transparent);
  border-radius: 999px;
}

.floating-contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(15, 66, 58, 0.12);
  font-size: 23px;
}

.floating-contact-icon.whatsapp {
  top: 110px;
  left: 300px;
  color: #22c55e;
}

.floating-contact-icon.mail {
  top: 188px;
  left: 322px;
}

.floating-contact-icon.phone {
  top: 260px;
  left: 292px;
  color: var(--gold);
}

.contact-person {
  right: 12px;
  top: 40px;
  width: 250px;
  height: 340px;
}

.person-head {
  width: 108px;
  height: 108px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 50% 45%, #f1c5a3 0 34%, transparent 35%),
    repeating-linear-gradient(35deg, #a61b2b 0 6px, #fff 6px 12px);
  border-radius: 48% 48% 45% 45%;
  border: 8px solid #101828;
}

.person-body {
  width: 220px;
  height: 230px;
  margin: -8px auto 0;
  background: linear-gradient(160deg, #fff, #eef5f2);
  border: 1px solid var(--line);
  border-radius: 90px 90px 26px 26px;
  box-shadow: 0 24px 70px rgba(15, 66, 58, 0.1);
}

.laptop {
  right: 120px;
  bottom: 38px;
  width: 230px;
  height: 120px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(145deg, #9ca3af, #5f6977);
  border-radius: 12px 12px 4px 4px;
  font-size: 13px;
  font-weight: 800;
  transform: skewX(-8deg);
}

.desk-plant {
  left: 86px;
  bottom: 36px;
  width: 74px;
  height: 94px;
  background:
    radial-gradient(ellipse at 30% 18%, #00846c 0 28%, transparent 30%),
    radial-gradient(ellipse at 70% 14%, #2fb391 0 27%, transparent 29%),
    linear-gradient(#f7f4ee, #e2dacb);
  background-repeat: no-repeat;
  background-size: 50px 55px, 50px 55px, 54px 48px;
  background-position: 0 0, 28px 4px, 10px 46px;
}

.coffee-cup {
  right: 54px;
  bottom: 42px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 66, 58, 0.08);
}

.coffee-cup img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.contact-main-section {
  padding: 28px 0 36px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 24px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 66, 58, 0.035);
  padding: 32px;
}

.reach-card {
  background: #ecf7fd;
}

.contact-card h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.contact-card > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

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

.contact-form label,
.contact-form span {
  display: block;
}

.contact-form label span {
  margin-bottom: 8px;
  color: #253144;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: #111827;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
}

.contact-form textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

.phone-field {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 10px;
}

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

.privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0 !important;
  color: var(--muted);
  font-size: 12px !important;
}

.privacy-note i {
  color: var(--green);
}

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

.reach-list a {
  display: grid;
  grid-template-columns: 48px 1fr auto 18px;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #fbfdfc;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.reach-list a > i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 12px;
  font-size: 22px;
}

.reach-list strong,
.reach-list small {
  display: block;
}

.reach-list strong {
  margin-bottom: 4px;
  color: #111827;
  font-size: 14px;
}

.reach-list small {
  color: var(--muted);
  font-size: 12px;
}

.reach-list b {
  color: #111827;
  font-size: 13px;
}

.reach-list em {
  color: var(--green);
  font-style: normal;
}

.office-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 48%, rgba(0, 132, 108, 0.14), transparent 9rem),
    #fbfdfc;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.office-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.office-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.office-card span {
  align-self: center;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 24px;
}

.trusted-section {
  padding: 22px 0 48px;
}

.trusted-card {
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(15, 66, 58, 0.05);
  text-align: center;
}

.trusted-card h2 {
  margin: 0 0 24px;
  font-size: 18px;
  color: #111827;
}

.trusted-logos {
  display: grid;
  grid-template-columns: 36px repeat(6, 1fr) 36px;
  align-items: center;
  gap: 18px;
}

.trusted-logos span {
  color: #6b7280;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.trusted-logos button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.contact-faq {
  padding-top: 0;
  padding-bottom: 56px;
}

.faq-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.faq-heading h2 {
  margin: 0;
  color: #111827;
  font-size: 18px;
}

.faq-heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

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

.faq-grid details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.faq-grid summary {
  cursor: pointer;
  padding: 17px 18px;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-weight: 900;
}

.faq-grid details[open] summary::after {
  content: "-";
}

.faq-grid p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.contact-cta-section {
  padding-top: 8px;
}

.contact-cta-card {
  justify-content: flex-start;
}

.cta-icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #fff;
  border-radius: 12px;
  font-size: 34px;
}

.contact-cta-card .cta-actions {
  margin-left: auto;
}

@media (max-width: 1050px) {
  .contact-hero-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    min-height: 440px;
  }

  .trusted-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .trusted-logos button {
    display: none;
  }
}

@media (max-width: 720px) {
  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-benefits,
  .contact-form,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-main-grid {
    gap: 18px;
  }

  .contact-card {
    padding: 24px;
  }

  .reach-list a {
    grid-template-columns: 44px 1fr;
  }

  .reach-list b,
  .reach-list em {
    display: none;
  }

  .contact-visual {
    min-height: 360px;
    transform: scale(0.82);
    transform-origin: top center;
    margin-bottom: -70px;
  }

  .contact-cta-card {
    display: grid;
  }

  .contact-cta-card .cta-actions {
    margin-left: 0;
  }
}

/* Pricing page */
.pricing-page {
  background:
    radial-gradient(circle at -10% 20%, rgba(224, 165, 18, 0.11), transparent 22rem),
    radial-gradient(circle at 110% 22%, rgba(0, 132, 108, 0.12), transparent 28rem),
    #fff;
}

.pricing-hero {
  position: relative;
  padding: 52px 0 20px;
  overflow: hidden;
}

.pricing-hero .container {
  position: relative;
}

.pricing-hero-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.pricing-hero-bg-left {
  left: -190px;
  top: 120px;
  width: 360px;
  height: 460px;
  background: radial-gradient(circle, rgba(224, 165, 18, 0.16), transparent 68%);
}

.pricing-hero-bg-right {
  right: -220px;
  top: 70px;
  width: 520px;
  height: 620px;
  background: radial-gradient(circle, rgba(0, 132, 108, 0.18), transparent 70%);
}

.pricing-hero-heading {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
}

.pricing-hero-heading h1 {
  margin: 0 0 12px;
  color: #101828;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.pricing-hero-heading h1 span {
  color: var(--green);
}

.pricing-hero-heading p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.billing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 4px;
  width: 100%;
  max-width: 390px;
  padding: 6px;
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(15, 66, 58, 0.06);
}

.billing-toggle button {
  min-height: 58px;
  padding: 0 18px;
  color: #344054;
  background: transparent;
  border: 0;
  border-radius: 9px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.billing-toggle button.active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.billing-toggle button small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.billing-toggle button.active {
  color: var(--green);
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 66, 58, 0.08);
}

.billing-discount {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.pricing-page-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto 30px;
}

.pricing-plan {
  position: relative;
  display: grid;
  padding: 34px 32px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 42px rgba(15, 66, 58, 0.05);
}

.pricing-plan.featured-plan {
  border-color: rgba(224, 165, 18, 0.7);
  box-shadow: 0 20px 56px rgba(224, 165, 18, 0.16);
}

.pricing-ribbon {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  color: #8a5a00;
  background: rgba(224, 165, 18, 0.14);
  border: 1px solid rgba(224, 165, 18, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pricing-ribbon .hgi-stroke {
  font-size: 14px;
}

.pricing-plan h2 {
  margin: 0 0 7px;
  color: var(--green);
  font-size: 20px;
}

.featured-plan h2 {
  margin-top: 18px;
}

.pricing-plan > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.pricing-page-price {
  margin-bottom: 5px;
  color: #111827;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.pricing-page-price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.pricing-plan > small {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
}

.pricing-plan ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-plan li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #536071;
  font-size: 13px;
}

.pricing-plan li i,
.compare-table i {
  color: var(--green);
}

.compare-table i {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.plan-includes {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.plan-includes strong {
  display: block;
  margin-bottom: 12px;
  color: #111827;
  font-size: 12px;
}

.plan-includes div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.plan-includes span {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 6px;
  color: #111827;
  font-size: 11px;
  font-weight: 800;
}

.plan-includes img,
.plan-includes i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  object-fit: contain;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 7px;
  font-size: 15px;
}

.plan-includes small {
  grid-column: 2;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.pricing-plan .btn {
  width: 100%;
}

.pricing-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
  color: #536071;
  font-size: 13px;
  font-weight: 600;
}

.pricing-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 820px) {
  .pricing-trust-row {
    gap: 0;
  }

  .pricing-trust-row span {
    position: relative;
    padding: 0 40px;
  }

  .pricing-trust-row span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 18px;
    background: rgba(83, 96, 113, 0.22);
    transform: translateY(-50%);
  }
}

.pricing-trust-row i {
  color: #111827;
  font-size: 18px;
}

.compare-section {
  padding: 10px 0 24px;
}

.compare-section h2,
.pricing-benefits-card h2 {
  margin: 0 0 16px;
  color: #111827;
  text-align: center;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.compare-table-wrap {
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 42px rgba(15, 66, 58, 0.04);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--line);
  color: #344054;
  font-size: 13px;
  text-align: center;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
}

.compare-table th {
  color: #111827;
  font-weight: 800;
}

.compare-table th span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.compare-table .highlight {
  background: rgba(0, 132, 108, 0.06);
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.pricing-benefits-section {
  padding: 0 0 26px;
}

.pricing-benefits-card {
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 42px rgba(15, 66, 58, 0.04);
}

.pricing-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pricing-benefits-grid article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
}

.pricing-benefits-grid i {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 28px;
}

.pricing-benefits-grid strong {
  color: #111827;
  font-size: 15px;
}

.pricing-benefits-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1050px) {
  .pricing-page-grid,
  .pricing-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .billing-toggle {
    min-width: 100%;
  }

  .pricing-plan {
    padding-inline: 22px;
  }

  .pricing-trust-row {
    justify-content: flex-start;
  }
}

/* WhatsApp product page */
.whatsapp-page {
  background:
    radial-gradient(circle at 80% 8%, rgba(0, 132, 108, 0.12), transparent 28rem),
    #fff;
}

.whatsapp-hero {
  padding: 54px 0 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.whatsapp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 52px;
}

.product-title-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 22px;
}

.product-title-lockup .whatsapp-logo {
  width: 58px;
  height: 58px;
  font-size: 30px;
  border-radius: 18px;
}

.product-title-lockup .hgi-stroke {
  display: block;
  width: fit-content;
  line-height: 1;
}

.product-title-lockup strong {
  display: block;
}

.product-title-lockup strong {
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
}

.product-title-lockup div > span {
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  margin-top: 4px;
}

.whatsapp-hero h1 {
  margin: 0 0 18px;
  color: #101828;
  font-size: clamp(42px, 5.4vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.whatsapp-hero h1 span {
  color: var(--green);
}

.whatsapp-hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.whatsapp-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
  color: #253144;
  font-size: 13px;
  font-weight: 800;
}

.whatsapp-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-benefits i {
  color: var(--green);
}

.whatsapp-dashboard {
  position: relative;
  min-height: 560px;
}

.product-shape {
  position: absolute;
  top: -80px;
  right: -150px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle at 40% 45%, rgba(0, 132, 108, 0.2), rgba(0, 132, 108, 0.09) 45%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.jawab-app-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 430px;
  margin-top: 44px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.jawab-app-card aside {
  padding: 24px 16px;
  background: #f7fbfa;
  border-right: 1px solid var(--line);
}

.jawab-app-card aside a {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  padding: 10px 12px;
  color: #7a8491;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.jawab-app-card aside a.active {
  color: #fff;
  background: var(--green);
}

.jawab-app-card section {
  padding: 24px;
}

.jawab-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #111827;
}

.jawab-topbar span {
  color: #667085;
  font-size: 12px;
}

.jawab-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.jawab-metrics div {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.jawab-metrics span,
.jawab-metrics small {
  display: block;
  color: #87909f;
  font-size: 10px;
  font-weight: 700;
}

.jawab-metrics strong {
  display: block;
  margin: 7px 0;
  color: #111827;
  font-size: 17px;
}

.jawab-metrics small {
  color: var(--green);
}

.conversation-panel {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.contact-list {
  padding: 12px;
  background: #fbfdfc;
  border-right: 1px solid var(--line);
}

.contact-list span {
  display: block;
  padding: 10px;
  color: #344054;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.contact-list span.active {
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 66, 58, 0.06);
}

.contact-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.chat-window {
  position: relative;
  padding: 14px;
  background: linear-gradient(180deg, #fff, #f8fbfa);
}

.chat-head {
  margin-bottom: 14px;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
}

.chat-head small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.bubble {
  max-width: 75%;
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.45;
}

.bubble.incoming {
  color: #344054;
  background: #eef4f2;
}

.bubble.outgoing {
  margin-left: auto;
  color: #fff;
  background: var(--green);
}

.chat-send {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #22c55e;
  border-radius: 50%;
}

.whatsapp-integrations {
  position: absolute;
  z-index: 2;
  left: 66px;
  right: 20px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.whatsapp-integrations span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  color: #344054;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 66, 58, 0.08);
  font-size: 11px;
  font-weight: 800;
}

.whatsapp-integrations i {
  color: var(--green);
  font-size: 18px;
}

.whatsapp-features {
  padding-top: 58px;
}

.whatsapp-feature-grid,
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.whatsapp-feature-grid article,
.use-case-grid article {
  padding: 24px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 66, 58, 0.04);
}

.whatsapp-feature-grid i,
.use-case-grid i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 18px;
}

.whatsapp-feature-grid strong,
.use-case-grid strong {
  display: block;
  color: #111827;
  font-size: 15px;
  margin-bottom: 9px;
}

.whatsapp-feature-grid p,
.use-case-grid span {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.whatsapp-steps-section {
  padding: 46px 0;
  background: linear-gradient(90deg, rgba(232, 245, 241, 0.72), #fff);
  border-block: 1px solid var(--line);
}

.whatsapp-steps-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  gap: 48px;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.whatsapp-step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.whatsapp-step-row article {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px 14px;
  align-items: center;
}

.whatsapp-step-row article > span {
  grid-row: span 3;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 24px;
}

.whatsapp-step-row article:nth-child(2) > span {
  background: var(--gold);
}

.whatsapp-step-row b {
  color: var(--green);
}

.whatsapp-step-row strong {
  color: #111827;
}

.whatsapp-step-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

@media (min-width: 721px) {
  .whatsapp-step-row article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 100px;
    width: calc(100% - 25px);
    border-top: 3px dashed rgba(0, 132, 108, 0.24);
    transform: translateY(-50%);
    pointer-events: none;
  }
}

.phone-chat-card {
  position: relative;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.phone-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: #111827;
  font-weight: 800;
}

.phone-chat-card p {
  width: max-content;
  max-width: 82%;
}

.phone-chat-card > span {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #22c55e;
  border: 5px solid #fff;
  border-radius: 50%;
  font-size: 28px;
}

.use-cases-section {
  padding: 54px 0 34px;
}

.use-case-grid article {
  text-align: center;
}

.use-case-grid i {
  margin-inline: auto;
}

.whatsapp-social-section {
  padding-top: 28px;
}

.whatsapp-social-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 32px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(15, 66, 58, 0.05);
}

.testimonial-grid span {
  color: var(--gold);
  font-size: 13px;
}

.testimonial-grid p {
  color: #536071;
  font-size: 13px;
  line-height: 1.65;
}

.testimonial-grid strong {
  color: #111827;
  font-size: 13px;
}

.mini-badge {
  display: inline-flex;
  padding: 7px 13px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.product-faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.product-faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.product-faq-list summary::-webkit-details-marker {
  display: none;
}

.product-faq-list summary::after {
  content: "+";
  float: right;
  color: var(--green);
}

.product-faq-list p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.whatsapp-cta-icon {
  color: #22c55e;
}

/* Raqeem / ZATCA product page */
.zatca-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 132, 108, 0.12), transparent 28rem),
    radial-gradient(circle at -8% 18%, rgba(224, 165, 18, 0.1), transparent 24rem),
    #fff;
}

.raqeem-logo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
}

.raqeem-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.raqeem-app-card .mini-logo img {
  width: 24px;
  height: 24px;
}

.invoice-preview-panel {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 18px;
  min-height: 220px;
}

.invoice-preview-panel > div {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.invoice-preview-panel strong {
  display: block;
  margin-bottom: 18px;
  color: #111827;
  font-size: 13px;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 14px;
  height: 150px;
  padding-top: 20px;
}

.mini-chart span {
  flex: 1;
  min-width: 12px;
  background: linear-gradient(180deg, #12b995, var(--green));
  border-radius: 999px 999px 0 0;
}

.recent-invoices span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: #536071;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.recent-invoices span:last-child {
  border-bottom: 0;
}

.recent-invoices b {
  color: #111827;
}

.trusted-mini-row {
  position: absolute;
  z-index: 2;
  left: 70px;
  right: 20px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 16px;
  align-items: center;
  color: #8a94a2;
  font-size: 11px;
}

.trusted-mini-row b {
  color: #6b7280;
  font-size: 12px;
}

.zatca-feature-grid {
  grid-template-columns: repeat(5, 1fr);
}

.zatca-invoice-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 110px;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.invoice-doc {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.invoice-doc > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.invoice-doc span {
  padding: 5px 10px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.invoice-doc p {
  margin: 0 0 8px;
  color: #536071;
  font-size: 12px;
}

.invoice-doc table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
}

.invoice-doc td,
.invoice-doc th {
  padding: 8px 0;
  color: #344054;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  text-align: left;
}

.invoice-doc td:last-child,
.invoice-doc th:last-child {
  text-align: right;
}

.zatca-compliance-badge {
  display: grid;
  place-items: center;
  padding: 18px 12px;
  background: #f7fbfa;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
}

.zatca-compliance-badge i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 26px;
  margin-bottom: 12px;
}

.zatca-compliance-badge strong,
.zatca-compliance-badge span {
  display: block;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
}

.zatca-faq-section {
  padding-top: 0;
}

/* Tareeq / Bayan product page */
.tareeq-page {
  background:
    radial-gradient(circle at 76% 10%, rgba(224, 165, 18, 0.16), transparent 28rem),
    #fff;
}

.tareeq-page .whatsapp-hero h1 span,
.tareeq-page .product-title-lockup strong,
.tareeq-page .product-title-lockup div > span {
  color: var(--gold);
}

.tareeq-logo {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: #fff7df;
  border: 1px solid rgba(224, 165, 18, 0.3);
  border-radius: 18px;
  font-size: 28px;
}

.tareeq-logo.small {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 17px;
}

.tareeq-page .whatsapp-benefits i,
.tareeq-page .whatsapp-feature-grid i,
.tareeq-page .use-case-grid i,
.tareeq-page .whatsapp-integrations i {
  color: var(--gold);
}

.tareeq-page .product-shape {
  background: radial-gradient(circle at 40% 45%, rgba(224, 165, 18, 0.28), rgba(224, 165, 18, 0.12) 45%, transparent 72%);
}

.tareeq-app-card aside a.active,
.tareeq-page .whatsapp-step-row article:nth-child(2) > span {
  background: var(--gold);
}

.tareeq-page .mini-chart span {
  background: linear-gradient(180deg, #f0bd38, var(--gold));
}

.tareeq-page .whatsapp-feature-grid i,
.tareeq-page .use-case-grid i {
  background: #fff7df;
}

.tareeq-integrations span {
  box-shadow: 0 12px 32px rgba(124, 89, 6, 0.08);
}

.tareeq-waybill-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 150px;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.barcode-lines {
  height: 42px;
  margin-top: 16px;
  background: repeating-linear-gradient(90deg, #111827 0 3px, transparent 3px 7px, #111827 7px 11px, transparent 11px 16px);
}

.shipment-status-card {
  padding: 18px 12px;
  background: #f7fbfa;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
}

.shipment-status-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 25px;
}

.shipment-status-card strong,
.shipment-status-card span {
  display: block;
}

.shipment-status-card strong {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 14px;
}

.shipment-status-card span {
  color: #536071;
  font-size: 12px;
  line-height: 1.6;
}

.tareeq-trusted-section {
  padding-top: 28px;
}

.tareeq-cta-icon {
  color: var(--green);
}

@media (max-width: 1100px) {
  .zatca-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .invoice-preview-panel,
  .zatca-invoice-card,
  .tareeq-waybill-card,
  .trusted-mini-row,
  .zatca-feature-grid {
    grid-template-columns: 1fr;
  }

  .trusted-mini-row {
    position: static;
    margin-top: 16px;
  }
}

@media (max-width: 1100px) {
  .whatsapp-hero-grid,
  .whatsapp-steps-grid,
  .whatsapp-social-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-dashboard {
    min-height: 620px;
  }

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

@media (max-width: 720px) {
  .whatsapp-hero h1 {
    font-size: 42px;
  }

  .jawab-app-card,
  .conversation-panel,
  .whatsapp-step-row,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .jawab-app-card aside {
    display: none;
  }

  .jawab-metrics,
  .whatsapp-integrations,
  .whatsapp-feature-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-integrations {
    position: static;
    margin-top: 16px;
  }

  .whatsapp-dashboard {
    min-height: auto;
  }
}
