
:root {
  --primary-blue: #003366;
  --primary-purple: #071236;
  --primary-green: #66cc66;
  --light-blue: #dbeafe;
  --neutral-1000: #ff6600;

  --bg: #f7f9fd;
  --surface: #ffffff;
  --surface-soft: #f2f7ff;
  --text: #0f172a;
  --muted: #64748b;
  --muted-dark: #94a3b8;
  --border: rgba(15, 23, 42, 0.1);
  --border-strong: rgba(0, 51, 102, 0.22);
  --shadow-sm: 0 12px 30px rgba(7, 18, 54, 0.08);
  --shadow-md: 0 24px 70px rgba(7, 18, 54, 0.12);
  --shadow-lg: 0 34px 90px rgba(7, 18, 54, 0.18);
  --radius-md: 18px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --container: 1200px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  direction: rtl;
  text-align: right;
  font-family: Vazirmatn, Vazir, Tahoma, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary-purple);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(255, 102, 0, 0.35);
  outline-offset: 3px;
}

/* .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 249, 253, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
} */

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  color: var(--primary-purple);
  white-space: nowrap;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: var(--primary-purple);
  background: linear-gradient(135deg, var(--primary-green), #b7f7b7);
  box-shadow: 0 12px 28px rgba(102, 204, 102, 0.25);
}

.brand__text {
  font-size: 1.02rem;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav__link {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #334155;
  font-weight: 750;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--primary-blue);
  background: var(--light-blue);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--primary-purple);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

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

.btn--primary {
  color: var(--primary-purple);
  background: var(--primary-green);
  box-shadow: 0 16px 32px rgba(102, 204, 102, 0.28);
}

.btn--primary:hover {
  background: #78df78;
  box-shadow: 0 22px 44px rgba(102, 204, 102, 0.34);
}

.btn--outline {
  color: var(--primary-blue);
  background: #fff;
  border-color: rgba(0, 51, 102, 0.18);
}

.btn--outline:hover {
  background: var(--light-blue);
  border-color: var(--primary-blue);
}

.btn--outline-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn--ghost {
  color: var(--primary-blue);
  background: transparent;
}

.btn--ghost:hover {
  background: var(--light-blue);
}

.btn--ghost-accent {
  color: var(--neutral-1000);
  background: rgba(255, 102, 0, 0.08);
}

.btn--ghost-accent:hover {
  background: rgba(255, 102, 0, 0.14);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(102, 204, 102, 0.18), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(255, 102, 0, 0.16), transparent 30%),
    linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
}

.hero__decor {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.36;
  z-index: -1;
}

.hero__decor--one {
  width: 250px;
  height: 250px;
  right: -80px;
  bottom: 8%;
  background: var(--primary-green);
}

.hero__decor--two {
  width: 230px;
  height: 230px;
  left: -70px;
  top: 12%;
  background: var(--neutral-1000);
}

.hero__grid {
  min-height: calc(720px - var(--header-height));
  padding-block: 84px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--primary-purple);
  background: rgba(102, 204, 102, 0.92);
  font-weight: 900;
  font-size: 0.86rem;
}

.eyebrow--dark {
  color: var(--primary-blue);
  background: var(--light-blue);
}

.hero h1 {
  max-width: 790px;
  margin: 22px 0 18px;
  /* font-size: clamp(2.35rem, 5vw, 4.7rem); */
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.hero__lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 2.1;
  margin: 0;
}

.hero__actions,
.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero__chips li {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 750;
}

.hero-visual {
  min-width: 0;
}

.structure-card {
  width: min(100%, 540px);
  margin-inline-start: auto;
  padding: 22px;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-lg);
}

.structure-card__top,
.dashboard-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.mini-label,
.dashboard-card__header span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 4px;
}

.status-pill,
.dashboard-card__header b {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--primary-purple);
  background: rgba(102, 204, 102, 0.22);
  font-size: 0.82rem;
}

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

.module-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.module-list span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--primary-purple);
  background: var(--primary-green);
  font-weight: 950;
}

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

.module-list small {
  color: var(--muted);
}

.structure-card__stats,
.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.structure-card__stats div,
.dashboard-metrics div {
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--light-blue), #fff);
  border: 1px solid rgba(0, 51, 102, 0.08);
}

.structure-card__stats strong,
.dashboard-metrics strong {
  display: block;
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.structure-card__stats span,
.dashboard-metrics span {
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  padding-block: 92px;
}

.section--soft {
  background: #eef5ff;
}

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

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  max-width: none;
}

.section-heading--row p {
  max-width: 440px;
}

.section-heading h2 {
  margin: 16px 0 12px;
  color: var(--primary-purple);
  /* font-size: clamp(1.8rem, 3vw, 2.7rem); */
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.section-heading p,
.dashboard-section__content p,
.consultation-copy p,
.cta-section p,
.cta-mini-card p,
.mobile-store-card p {
  color: var(--muted);
  line-height: 2;
  margin: 0;
}

.strip-grid,
.feature-grid,
.business-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.overview-card,
.feature-card,
.business-card,
.step-card,
.cta-mini-card,
.benefit-card,
.comparison-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.overview-card:hover,
.feature-card:hover,
.business-card:hover,
.step-card:hover,
.cta-mini-card:hover,
.comparison-card:hover {
  transform: translateY(-5px);
  border-color: rgba(102, 204, 102, 0.44);
  box-shadow: var(--shadow-md);
}

.overview-card__icon,
.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--primary-purple);
  background: rgba(102, 204, 102, 0.22);
  font-weight: 950;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.overview-card h3,
.feature-card h3,
.business-card h3,
.step-card h3,
.cta-mini-card h3,
.benefit-card h3,
.comparison-card h3 {
  margin: 0 0 10px;
  color: var(--primary-purple);
  line-height: 1.55;
}

.overview-card p,
.feature-card p,
.business-card p,
.step-card p,
.comparison-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.sample-preview {
  background:
    radial-gradient(circle at 16% 20%, rgba(102, 204, 102, 0.12), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(255, 102, 0, 0.1), transparent 28%),
    #fff;
}

.sample-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: stretch;
}

.mobile-store-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 32px;
  padding: 34px;
  border-radius: var(--radius-2xl);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(102, 204, 102, 0.55), rgba(255, 102, 0, 0.32), rgba(0, 51, 102, 0.22)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-md);
}

.mobile-store-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 28px;
  top: 0;
  width: 120px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-green), var(--neutral-1000));
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.badge,
.metric {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
}

.badge {
  color: var(--primary-purple);
  background: rgba(102, 204, 102, 0.22);
}

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

.mobile-store-card h3 {
  margin: 0 0 14px;
  color: var(--primary-purple);
  /* font-size: clamp(1.55rem, 3vw, 2.35rem); */
  line-height: 1.4;
}

.mobile-store-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 22px 24px;
}

.mobile-store-card__features span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--primary-blue);
  background: #f1f7ff;
  border: 1px solid rgba(0, 51, 102, 0.08);
  font-weight: 750;
  font-size: 0.9rem;
}

.mobile-store-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mobile-store-card__visual {
  min-width: 0;
}

.mobile-store-mockup {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 24% 18%, rgba(102, 204, 102, 0.24), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(255, 102, 0, 0.2), transparent 30%),
    linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.mockup-phone {
  width: min(74%, 290px);
  padding: 16px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 26px 65px rgba(0,0,0,0.28);
}

.mockup-phone__bar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.mockup-phone__bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(7, 18, 54, 0.2);
}

.mockup-phone__hero {
  min-height: 92px;
  padding: 16px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mockup-phone__hero strong,
.mockup-phone__hero small {
  display: block;
}

.mockup-phone__hero small {
  margin-top: 6px;
  color: rgba(255,255,255,0.74);
}

.mockup-phone__hero b {
  flex: 0 0 auto;
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--primary-purple);
  background: var(--primary-green);
}

.mockup-phone__search {
  width: 100%;
  height: 36px;
  margin-block: 12px;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid rgba(0, 51, 102, 0.08);
}

.mockup-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mockup-products div {
  padding: 9px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.mockup-products span {
  display: block;
  height: 52px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(219, 234, 254, 0.95), rgba(102, 204, 102, 0.2));
}

.mockup-products small {
  display: block;
  margin-top: 8px;
  color: var(--primary-blue);
  font-size: 0.72rem;
  font-weight: 850;
}

.mockup-pay {
  height: 42px;
  margin-top: 12px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--primary-purple);
  background: var(--primary-green);
  font-weight: 950;
}

.floating-card {
  position: absolute;
  padding: 12px 14px;
  min-width: 112px;
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.68);
  box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}

.floating-card strong {
  display: block;
  color: var(--primary-blue);
  font-size: 1.35rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.floating-card--orders {
  right: 18px;
  top: 32px;
}

.floating-card--rate {
  left: 18px;
  bottom: 32px;
}

.cta-mini-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(102, 204, 102, 0.18), transparent 32%),
    #fff;
}

.cta-mini-card .btn {
  margin-top: 22px;
}

.business-card ul,
.benefit-card ul,
.dashboard-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.business-card li,
.benefit-card li,
.dashboard-list li {
  position: relative;
  padding-right: 26px;
  color: var(--text);
  line-height: 1.8;
}

.business-card li::before,
.benefit-card li::before,
.dashboard-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--primary-green);
  font-weight: 950;
}

.dashboard-section__grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 28px;
  align-items: center;
}

.dashboard-section__content h2,
.consultation-copy h2 {
  margin: 16px 0 14px;
  color: var(--primary-purple);
  /* font-size: clamp(1.8rem, 3vw, 2.7rem); */
  line-height: 1.45;
}

.dashboard-section__content .btn {
  margin-top: 24px;
}

.dashboard-card {
  padding: 26px;
  border-radius: var(--radius-2xl);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.dashboard-metrics {
  grid-template-columns: repeat(4, 1fr);
  margin-block: 18px;
}

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

.use-case-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.use-case-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--primary-blue);
  background: #fff;
  border: 1px solid rgba(0, 51, 102, 0.12);
  box-shadow: 0 8px 20px rgba(7, 18, 54, 0.05);
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.use-case-chip:hover,
.use-case-chip.is-highlighted {
  transform: translateY(-2px);
  background: rgba(102, 204, 102, 0.18);
  border-color: rgba(102, 204, 102, 0.44);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

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

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  text-align: right;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  line-height: 1.9;
}

.comparison-table th {
  color: var(--primary-blue);
  background: var(--light-blue);
  font-weight: 950;
}

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

.comparison-table td:first-child {
  color: var(--primary-purple);
  font-weight: 900;
}

.comparison-cards {
  display: none;
  gap: 14px;
  margin-top: 16px;
}

.step-card span {
  display: block;
  margin-bottom: 20px;
  font-size: 2.7rem;
  font-weight: 950;
  line-height: 1;
  color: rgba(0, 51, 102, 0.16);
}

.consultation-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(102, 204, 102, 0.15), transparent 28%),
    linear-gradient(180deg, #fff, #f6f9ff);
}

.consultation-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 26px;
  align-items: start;
}

.benefit-card {
  margin-top: 24px;
}

.consultation-form {
  padding: 26px;
  border-radius: var(--radius-2xl);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

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

.form-grid__wide {
  grid-column: 1 / -1;
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-purple);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--text);
  background: #fbfdff;
}

textarea {
  resize: vertical;
}

.consultation-form .btn {
  margin-top: 16px;
}

.form-message {
  min-height: 28px;
  margin: 12px 0 0;
  color: var(--primary-blue);
  font-weight: 850;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: start;
}

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

.faq-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(7, 18, 54, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--primary-purple);
  text-align: right;
  cursor: pointer;
  font-weight: 950;
}

.faq-question::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--primary-purple);
  background: rgba(102, 204, 102, 0.22);
  flex: 0 0 auto;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
  background: var(--primary-green);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
}

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

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 2;
}

.cta-section {
  padding-block: 84px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 26%, rgba(102, 204, 102, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 102, 0, 0.18), transparent 30%),
    linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
}

.cta-section__inner {
  text-align: center;
  max-width: 900px;
}

.cta-section__inner .eyebrow {
  margin-inline: auto;
}

.cta-section h2 {
  margin: 18px 0 12px;
  /* font-size: clamp(1.9rem, 4vw, 3.2rem); */
  line-height: 1.4;
}

.cta-section p {
  color: rgba(255,255,255,0.78);
}

.cta-section__actions {
  justify-content: center;
}

.site-footer {
  padding-block: 64px 24px;
  color: rgba(255,255,255,0.84);
  background: var(--primary-purple);
}

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

.site-footer a {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--primary-green);
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
}

.footer-brand p {
  max-width: 310px;
  color: rgba(255,255,255,0.7);
  line-height: 2;
}

.brand--footer {
  color: #fff;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
}

/* Tablet */
@media (max-width: 1023px) {
  :root {
    --header-height: 72px;
  }

  .nav__toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__actions {
    margin-inline-start: auto;
  }

  .hero__grid,
  .dashboard-section__grid,
  .consultation-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
    padding-block: 70px;
    gap: 36px;
  }

  .structure-card {
    margin: 0;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading--row {
    display: block;
  }

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

  .sample-preview__grid {
    grid-template-columns: 1fr;
  }

  .mobile-store-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .mobile-store-card__visual {
    order: -1;
  }

  .mobile-store-mockup {
    min-height: 380px;
  }

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

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav__actions .btn--ghost {
    display: none;
  }

  .nav__actions .btn {
    min-height: 40px;
    padding-inline: 14px;
  }

  .brand__text {
    font-size: 0.96rem;
  }

  .hero__grid {
    padding-block: 54px;
  }

  .hero h1 {
    /* font-size: clamp(2rem, 12vw, 3.2rem); */
    line-height: 1.28;
  }

  .hero__actions,
  .mobile-store-card__actions,
  .cta-section__actions {
    flex-direction: column;
  }

  .hero__actions .btn,
  .mobile-store-card__actions .btn,
  .cta-section__actions .btn,
  .consultation-form .btn {
    width: 100%;
  }

  .hero__chips li {
    font-size: 0.84rem;
  }

  .structure-card {
    padding: 18px;
    border-radius: 26px;
  }

  .structure-card__top {
    align-items: flex-start;
  }

  .module-list li {
    padding: 12px;
  }

  .structure-card__stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 58px;
  }

  .strip-grid,
  .feature-grid,
  .business-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .overview-card,
  .feature-card,
  .business-card,
  .step-card,
  .cta-mini-card,
  .benefit-card,
  .consultation-form {
    padding: 20px;
    border-radius: 22px;
  }

  .mobile-store-card {
    padding: 20px;
    border-radius: 26px;
    gap: 22px;
  }

  .mobile-store-card__features span {
    font-size: 0.84rem;
  }

  .mobile-store-mockup {
    min-height: 330px;
    border-radius: 24px;
  }

  .mockup-phone {
    width: min(82%, 250px);
    padding: 13px;
    border-radius: 26px;
  }

  .floating-card {
    display: none;
  }

  .comparison-table-wrapper {
    display: none;
  }

  .comparison-cards {
    display: grid;
  }

  .use-case-cloud {
    gap: 10px;
  }

  .use-case-chip {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.88rem;
  }

  .faq-question {
    padding: 16px;
    align-items: flex-start;
  }

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

@media (max-width: 410px) {
  .mockup-products {
    grid-template-columns: 1fr;
  }

  .mobile-store-mockup {
    min-height: 390px;
  }
}
