:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --ink: #12202f;
  --muted: #607086;
  --line: #dfe7ef;
  --primary: #087f8c;
  --primary-dark: #075866;
  --accent: #f5a524;
  --green: #0f9f6e;
  --shadow: 0 24px 70px rgba(18, 32, 47, 0.12);
}

@font-face {
  font-family: "Noto Kufi Arabic Local";
  src: url("assets/fonts/NotoKufiArabic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Kufi Arabic Local";
  src: url("assets/fonts/NotoKufiArabic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Kufi Arabic", "Noto Kufi Arabic Local", "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.7;
}

body.ltr {
  font-family: "Noto Kufi Arabic", "Segoe UI", "Noto Kufi Arabic Local", Tahoma, Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 251, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

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

.brand strong {
  font-family: "Merienda", "El Messiri", "Noto Kufi Arabic", sans-serif;
  font-weight: 800;
}

.brand-word {
  font-family: "Merienda", "El Messiri", "Noto Kufi Arabic", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-inline-start: auto;
  color: #39495f;
  font-size: 15px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-link {
  color: var(--primary-dark);
  font-weight: 700;
}

.language-toggle {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--primary-dark);
  padding: 0 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.icon-language {
  width: 42px;
  min-width: 42px;
  padding: 0;
  line-height: 1;
}

.icon-language svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 32px rgba(8, 127, 140, 0.22);
}

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

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 44px;
  padding: 54px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 900;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

h1,
h2,
h3,
.eyebrow {
  font-family: "El Messiri", "Noto Kufi Arabic", "Noto Kufi Arabic Local", sans-serif;
}

body.ltr h1,
body.ltr h2,
body.ltr h3,
body.ltr .eyebrow {
  font-family: "Merienda", "Noto Kufi Arabic", "Segoe UI", sans-serif;
}

.hero-text,
.section-head p,
.split p,
.cta p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-row {
  margin-top: 24px;
}

.trust-row span,
.proof-band span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #46566c;
  font-size: 14px;
}

.dashboard-visual {
  border: 1px solid rgba(8, 127, 140, 0.16);
  border-radius: 22px;
  background: #0d1b2a;
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-top {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: #13283b;
  color: #dbeafe;
}

.visual-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.visual-top span:nth-child(2) {
  background: #35c27a;
}

.visual-top span:nth-child(3) {
  background: #38bdf8;
}

.visual-top strong {
  margin-inline-start: auto;
  font-size: 14px;
}

.visual-body {
  display: grid;
  grid-template-columns: 88px 1fr;
  min-height: 420px;
}

.visual-body aside {
  padding: 24px 18px;
  background: #102235;
}

.visual-body aside b {
  display: block;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.visual-body section {
  padding: 24px;
}

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

.metric-row article,
.chart-card,
.workflow-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  padding: 16px;
}

.metric-row small {
  display: block;
  color: #9fb3c8;
}

.metric-row strong {
  font-size: 28px;
}

.chart-card {
  height: 190px;
  margin-top: 14px;
  display: flex;
  align-items: end;
  gap: 14px;
}

.chart-card i {
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #2dd4bf, #087f8c);
}

.workflow-card {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.workflow-card span {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.workflow-card em {
  height: 2px;
  flex: 1;
  background: #38bdf8;
}

.proof-band {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 16px;
  background: #e8f3f4;
  border-block: 1px solid #d3e6e8;
}

.section,
.split,
.cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

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

.value-grid,
.module-grid,
.sector-grid,
.insight-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

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

.value-grid article,
.module-card,
.sector-grid article,
.insight-grid article,
.pricing-grid article,
.invoice-preview,
.contact-form,
.modal-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(18, 32, 47, 0.06);
}

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

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #e8f3f4;
  color: var(--primary);
  font-weight: 900;
}

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

.module-card {
  min-height: 190px;
  padding: 22px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.module-card:hover,
.module-card:focus {
  outline: none;
  transform: translateY(-5px);
  border-color: var(--module-color);
  box-shadow: 0 22px 44px rgba(18, 32, 47, 0.12);
}

.module-card span {
  color: var(--module-color);
  font-weight: 900;
}

.module-card p,
.module-card b,
.sector-grid span,
.insight-grid span,
.pricing-grid span,
.pricing-grid p,
.value-grid p {
  color: var(--muted);
}

.solution-card {
  position: relative;
  overflow: hidden;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  width: 92px;
  height: 92px;
  background: color-mix(in srgb, var(--module-color) 16%, transparent);
  border-radius: 0 12px 0 100%;
}

.solution-card .solution-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 0 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--module-color) 12%, white);
  color: var(--module-color);
  font-size: 12px;
  font-weight: 900;
}

.solution-card b {
  display: inline-flex;
  margin-top: 8px;
  color: var(--module-color);
}

.split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: center;
}

.check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  margin-bottom: 10px;
  padding-inline-start: 28px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--green);
  font-weight: 900;
}

.invoice-preview {
  padding: 28px;
}

.qr {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #111 10px, transparent 10px) 0 0 / 22px 22px,
    linear-gradient(#111 10px, transparent 10px) 0 0 / 22px 22px,
    #fff;
  border: 8px solid #fff;
  box-shadow: inset 0 0 0 1px #111, 0 0 0 1px var(--line);
}

.invoice-preview strong,
.invoice-preview span {
  display: block;
}

.invoice-preview dl {
  margin: 20px 0 0;
}

.invoice-preview div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.invoice-preview dd {
  margin: 0;
  font-weight: 800;
}

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

.sector-grid article,
.insight-grid article {
  padding: 22px;
}

.sector-grid strong,
.sector-grid span,
.insight-grid strong,
.insight-grid span {
  display: block;
}

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

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.pricing-grid article {
  padding: 26px;
}

.pricing-grid .featured {
  border-color: rgba(8, 127, 140, 0.45);
  box-shadow: 0 28px 60px rgba(8, 127, 140, 0.16);
}

.pricing-grid small {
  color: var(--primary);
  font-weight: 900;
}

.pricing-grid strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 24px;
}

.pricing-grid .btn {
  margin-top: 22px;
}

.plan-limits {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
}

.plan-limits li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-limits li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--primary);
}

.addons-table-wrap {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 32, 47, 0.06);
  overflow-x: auto;
}

.addons-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}

.addons-head h3 {
  margin: 0;
  font-size: 28px;
}

.addons-head p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.addons-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.addons-table th,
.addons-table td {
  padding: 15px 18px;
  border-bottom: 1px solid #e9eef4;
  text-align: center;
  white-space: nowrap;
}

.addons-table thead th {
  color: #0f172a;
  font-weight: 900;
}

.addons-table tbody th {
  text-align: start;
  font-weight: 800;
}

.addons-table tbody tr:last-child th,
.addons-table tbody tr:last-child td {
  border-bottom: 0;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px;
  border-radius: 18px;
  background: #0d1b2a;
  color: #fff;
}

.cta h2 {
  max-width: 760px;
}

.cta p {
  color: #b8c7d9;
}

.contact {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 560px;
  margin-top: 56px;
  padding: 72px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(520px, 1.15fr) minmax(310px, 430px);
  align-items: start;
  gap: 48px;
  overflow: hidden;
  background:
    linear-gradient(rgba(32, 47, 61, 0.9), rgba(28, 42, 55, 0.9)),
    radial-gradient(circle at 20% 85%, rgba(255, 255, 255, 0.08), transparent 28%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 48px),
    #1f2d3a;
  color: #f8fafc;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 105%, rgba(127, 143, 159, 0.2), transparent 34%),
    repeating-radial-gradient(ellipse at 15% 100%, transparent 0 34px, rgba(148, 163, 184, 0.08) 36px 38px);
  opacity: 0.65;
  pointer-events: none;
}

.contact-content,
.contact-list,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-content,
.contact-list {
  grid-column: 2;
}

.contact-content h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
}

.contact-content p {
  max-width: 850px;
  color: rgba(248, 250, 252, 0.78);
  font-size: 20px;
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 18px;
  padding-top: 44px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  color: rgba(248, 250, 252, 0.82);
  font-size: 20px;
  font-weight: 800;
}

.contact-item svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: none;
  stroke: #60a5fa;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: end;
  margin-top: 64px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
  border: 1px solid rgba(226, 232, 240, 0.52);
  background:
    linear-gradient(90deg, rgba(226, 232, 240, 0.92) 16px, transparent 16px) 0 0 / 20px 2px no-repeat,
    linear-gradient(rgba(226, 232, 240, 0.92) 16px, transparent 16px) 0 0 / 2px 20px no-repeat,
    linear-gradient(270deg, rgba(226, 232, 240, 0.92) 16px, transparent 16px) 100% 0 / 20px 2px no-repeat,
    linear-gradient(rgba(226, 232, 240, 0.92) 16px, transparent 16px) 100% 0 / 2px 20px no-repeat,
    linear-gradient(90deg, rgba(226, 232, 240, 0.92) 16px, transparent 16px) 0 100% / 20px 2px no-repeat,
    linear-gradient(0deg, rgba(226, 232, 240, 0.92) 16px, transparent 16px) 0 100% / 2px 20px no-repeat,
    linear-gradient(270deg, rgba(226, 232, 240, 0.92) 16px, transparent 16px) 100% 100% / 20px 2px no-repeat,
    linear-gradient(0deg, rgba(226, 232, 240, 0.92) 16px, transparent 16px) 100% 100% / 2px 20px no-repeat,
    rgba(8, 15, 24, 0.1);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(248, 250, 252, 0.86);
  font-weight: 900;
}

.contact-form label span::before {
  content: "* ";
  color: #60a5fa;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(226, 232, 240, 0.38);
  background: rgba(15, 23, 42, 0.24);
  color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline-color: rgba(96, 165, 250, 0.32);
  border-color: #60a5fa;
}

.contact-form button {
  justify-self: end;
  min-width: 170px;
  background: #60a5fa;
  box-shadow: 0 18px 32px rgba(96, 165, 250, 0.22);
}

body.ltr .contact-form button {
  justify-self: start;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(8, 127, 140, 0.25);
  border-color: var(--primary);
}

.form-note {
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.whatsapp-bot {
  position: fixed;
  inset-inline-start: 22px;
  bottom: 22px;
  z-index: 90;
  min-height: 58px;
  padding: 8px 10px 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.35);
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-bot:hover {
  color: #ffffff;
  background: #1fb85a;
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(37, 211, 102, 0.45);
}

.whatsapp-bot-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.whatsapp-bot-icon svg {
  width: 32px;
  height: 32px;
}

.whatsapp-bot-text {
  padding-inline-start: 4px;
  font-size: 1rem;
}

.site-footer strong {
  color: var(--ink);
  font-family: "Merienda", "El Messiri", "Noto Kufi Arabic", sans-serif;
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.modal[aria-hidden="true"] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.58);
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #eef3f8;
  font-size: 24px;
  cursor: pointer;
}

.modal-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
}

.modal-open {
  overflow: hidden;
}

.trial-layout {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 42px;
  align-items: center;
  padding: 54px 0;
}

.trial-intro h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.trial-intro p {
  color: var(--muted);
  font-size: 18px;
}

.trial-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  gap: 14px;
}

.trial-card label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 800;
}

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

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(8, 127, 140, 0.14), transparent 28%),
    var(--bg);
}

.thanks-card {
  width: min(560px, 100%);
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-card .brand-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
}

.thanks-card h1 {
  margin-bottom: 12px;
}

.thanks-card p:not(.eyebrow) {
  color: var(--muted);
}


@media (max-width: 980px) {
  .navbar {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    margin-inline-start: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
  }

  .nav-actions {
    display: flex;
    width: auto;
  }

  .nav-actions .login-link,
  .nav-actions .btn {
    display: none;
  }

  .nav-links.is-open {
    display: grid;
    gap: 10px;
    padding-bottom: 16px;
  }

  .nav-actions {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .contact,
  .trial-layout {
    grid-template-columns: 1fr;
  }

  .contact {
    padding-block: 58px;
  }

  .contact-content,
  .contact-list,
  .contact-form {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-list {
    padding-top: 0;
  }

  .contact-form {
    margin-top: 0;
  }

  .value-grid,
  .module-grid,
  .sector-grid,
  .insight-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 34px;
  }

  .dashboard-visual {
    border-radius: 16px;
  }

  .visual-body {
    grid-template-columns: 54px 1fr;
  }

  .visual-body section {
    padding: 14px;
  }

  .metric-row,
  .value-grid,
  .module-grid,
  .sector-grid,
  .insight-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    min-height: auto;
    padding-inline: 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .addons-head {
    display: block;
  }

  .addons-head h3 {
    margin-bottom: 8px;
  }

  .contact-content p,
  .contact-item {
    font-size: 16px;
  }

  .whatsapp-bot {
    min-height: 52px;
    padding: 7px;
  }

  .whatsapp-bot-text {
    display: none;
  }

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

  .cta,
  .site-footer {
    display: block;
  }

  .cta {
    padding: 28px;
  }

  h1 {
    font-size: 38px;
  }
}
