@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #071a33;
  --navy-2: #0b2445;
  --blue: #2478ed;
  --blue-2: #4c96ff;
  --mint: #2ac6bd;
  --ink: #0a1930;
  --muted: #70819d;
  --line: #dfe7f1;
  --soft: #f4f8fd;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

[dir="rtl"] {
  font-family: "Tajawal", Arial, sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.cost-site {
  min-height: 100vh;
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 84px;
  background: rgba(7, 26, 51, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--blue-2), var(--blue));
  box-shadow: 0 12px 28px rgba(36, 120, 237, 0.3);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy b {
  color: #fff;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: #91a8c8;
  font-size: 11px;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
}

.main-nav a,
.text-link,
.language-link {
  color: #b9c8dc;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.main-nav a:hover,
.text-link:hover,
.language-link:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-link {
  padding-inline-end: 18px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
}

.button-large {
  min-height: 56px;
  padding: 0 25px;
  font-size: 15px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 14px 30px rgba(36, 120, 237, 0.23);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(36, 120, 237, 0.35);
}

.button-ghost {
  color: #d5e1f1;
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.05);
}

.button-light {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 18px 40px rgba(5, 20, 40, 0.2);
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 158px 0 95px;
  background:
    radial-gradient(circle at 50% 0%, rgba(39, 118, 231, 0.13), transparent 42%),
    linear-gradient(145deg, #06172e 0%, #081d38 52%, #071a33 100%);
}

.hero::after {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.hero-glow-one {
  width: 340px;
  height: 340px;
  top: 120px;
  inset-inline-start: -210px;
  background: rgba(42, 198, 189, 0.12);
}

.hero-glow-two {
  width: 440px;
  height: 440px;
  bottom: -250px;
  inset-inline-end: -180px;
  background: rgba(36, 120, 237, 0.16);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 70px;
}

[dir="rtl"] .hero-grid {
  grid-template-columns: 0.82fr 1.18fr;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #64d5cd;
  font-size: 13px;
  font-weight: 700;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(42, 198, 189, 0.1);
}

.hero h1 {
  margin: 25px 0 24px;
  color: #fff;
  font-size: clamp(42px, 5.1vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

[dir="rtl"] .hero h1 {
  letter-spacing: -0.025em;
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  color: transparent;
  background: linear-gradient(90deg, #6eb2ff, #35d0c7);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy > p {
  max-width: 540px;
  margin: 0;
  color: #a9bad1;
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
}

[dir="ltr"] .hero-actions .button-primary span {
  transform: rotate(180deg);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #859ab7;
  font-size: 12px;
  font-weight: 600;
}

.trust-row b {
  color: var(--mint);
}

.dashboard-shell {
  position: relative;
  direction: rtl;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  overflow: hidden;
  background: #f2f6fb;
  box-shadow: 0 42px 90px rgba(0, 7, 18, 0.48);
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}

[dir="rtl"] .dashboard-shell {
  transform: perspective(1400px) rotateY(4deg) rotateX(1deg);
}

.dashboard-top {
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: ltr;
  background: #fff;
  border-bottom: 1px solid #e2e9f2;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 11px;
}

.mini-brand span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 11px;
  border-radius: 7px;
  background: var(--blue);
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d5deea;
}

.dashboard-body {
  min-height: 432px;
  display: grid;
  grid-template-columns: 74px 1fr;
}

.dashboard-nav {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: #0a2342;
}

.nav-logo {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 900;
  border-radius: 10px;
  background: var(--blue);
}

.dashboard-nav i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.dashboard-nav i.active {
  background: rgba(52, 139, 255, 0.72);
  box-shadow: 0 0 0 5px rgba(52, 139, 255, 0.12);
}

.dashboard-main {
  padding: 26px 26px 24px;
  color: var(--ink);
}

.dashboard-eyebrow {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
}

.dashboard-main h2 {
  margin: 6px 0 20px;
  font-size: 19px;
}

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

.metric-grid article {
  min-width: 0;
  min-height: 112px;
  padding: 14px;
  position: relative;
  border: 1px solid #e0e8f2;
  border-radius: 13px;
  background: #fff;
}

.metric-grid article > span {
  display: block;
  min-height: 29px;
  color: #72829a;
  font-size: 8px;
  font-weight: 600;
}

.metric-grid strong {
  display: block;
  margin-top: 3px;
  font-size: 22px;
}

.metric-grid small {
  color: #8c9ab0;
  font-size: 8px;
}

.metric-grid .dark-card {
  color: #fff;
  border-color: #123a67;
  background: linear-gradient(145deg, #0d3158, #082440);
}

.metric-grid .dark-card > span,
.metric-grid .dark-card small {
  color: #aac0d8;
}

.bars {
  height: 21px;
  display: flex;
  align-items: end;
  gap: 3px;
  margin-top: 7px;
}

.bars b {
  width: 6px;
  border-radius: 4px 4px 1px 1px;
  background: #75aef8;
}

.bars b:nth-child(1) { height: 11px; }
.bars b:nth-child(2) { height: 19px; background: var(--blue); }
.bars b:nth-child(3) { height: 14px; opacity: 0.7; }
.bars b:nth-child(4) { height: 8px; opacity: 0.45; }
.bars.mint b { background: #5bd6ce; }

.project-list {
  margin-top: 13px;
  padding: 14px 15px 8px;
  border: 1px solid #e0e8f2;
  border-radius: 13px;
  background: #fff;
}

.project-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 11px;
  font-size: 10px;
  border-bottom: 1px solid #edf1f6;
}

.project-row {
  min-height: 54px;
  display: grid;
  grid-template-columns: 32px 1.1fr 1fr auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f0f3f7;
  font-size: 8px;
}

.project-row:last-child {
  border-bottom: 0;
}

.project-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #168e86;
  border-radius: 8px;
  background: #e4f7f4;
}

.project-icon.blue {
  color: var(--blue);
  background: #e7f0fe;
}

.progress {
  height: 5px;
  border-radius: 8px;
  overflow: hidden;
  background: #e8eef5;
}

.progress em {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.status {
  padding: 5px 7px;
  border-radius: 20px;
  font-style: normal;
  white-space: nowrap;
}

.status.good {
  color: #087e62;
  background: #e5f7ef;
}

.status.warn {
  color: #a16408;
  background: #fff3dc;
}

.capability-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.capability-grid {
  min-height: 106px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.capability-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-inline-end: 1px solid var(--line);
}

.capability-grid div:last-child {
  border-inline-end: 0;
}

.capability-grid span {
  color: #a5b2c4;
  font-size: 12px;
  font-weight: 800;
}

.capability-grid b {
  color: #263b56;
  font-size: 14px;
}

.section {
  padding: 108px 0;
}

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

.section-heading.aligned {
  margin: 0 0 34px;
  text-align: start;
}

.section-heading > span,
.final-cta-box > div > span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

[dir="rtl"] .section-heading h2 {
  letter-spacing: -0.018em;
}

.section-heading p {
  max-width: 650px;
  margin: 19px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.section-heading.aligned p {
  margin-inline: 0;
}

.features-section {
  background: #fff;
}

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

.feature-card {
  min-height: 244px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #fbfdff);
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #bfd5f4;
  box-shadow: 0 22px 48px rgba(18, 46, 82, 0.09);
}

.feature-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  border-radius: 12px;
  background: #eaf2ff;
}

.feature-card:nth-child(3n + 2) > span {
  color: #158f87;
  background: #e5f8f5;
}

.feature-card h3 {
  margin: 25px 0 10px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

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

.workflow-grid,
.report-grid,
.supplier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.workflow-steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-steps article > b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: var(--navy-2);
}

.workflow-steps h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.workflow-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.comparison-card {
  padding: 35px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(145deg, #0c2c50, #071c36);
  box-shadow: 0 32px 64px rgba(13, 39, 70, 0.2);
}

.comparison-head {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-head span {
  color: #74cfc9;
  font-size: 12px;
}

.comparison-head b {
  font-size: 20px;
}

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

.comparison-row div {
  display: flex;
  justify-content: space-between;
  color: #c5d3e4;
  font-size: 12px;
}

.comparison-row i {
  height: 7px;
  display: block;
  margin-top: 9px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.comparison-row em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-2), var(--mint));
}

.comparison-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.comparison-footer span {
  padding: 15px;
  color: #90a8c3;
  font-size: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.comparison-footer b {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 17px;
}

.report-section {
  background: #fff;
}

.report-visual {
  min-height: 470px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: linear-gradient(145deg, #f0f6fe, #f8fbff);
}

.report-ring {
  width: 260px;
  height: 260px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 68%, var(--mint) 68% 82%, #dbe7f5 82% 100%);
  box-shadow: 0 26px 65px rgba(36, 120, 237, 0.17);
}

.report-ring::before {
  position: absolute;
  content: "";
  width: 205px;
  height: 205px;
  border-radius: 50%;
  background: #fff;
}

.report-ring div {
  position: relative;
  z-index: 2;
  max-width: 145px;
  text-align: center;
}

.report-ring strong {
  display: block;
  color: var(--navy);
  font-size: 52px;
}

.report-ring span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.floating-cost-card {
  position: absolute;
  inset-inline-end: -18px;
  bottom: 46px;
  width: 230px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 45px rgba(23, 56, 94, 0.14);
}

.floating-cost-card span {
  color: var(--muted);
  font-size: 11px;
}

.floating-cost-card b {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.floating-cost-card small {
  font-size: 10px;
}

.floating-cost-card em {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 8px;
  color: #11866f;
  font-size: 10px;
  font-style: normal;
  border-radius: 10px;
  background: #e7f7f1;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #405570;
  font-size: 13px;
  font-weight: 600;
}

.check-list b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #118d78;
  border-radius: 50%;
  background: #e5f7f2;
}

.supplier-section {
  color: #fff;
  background: linear-gradient(135deg, #071a33, #0a2b50);
}

.supplier-section .section-heading h2 {
  color: #fff;
}

.supplier-section .section-heading p {
  color: #a8bbd2;
}

.supplier-section .section-heading > span {
  color: #5ad2ca;
}

.supplier-card {
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.supplier-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.supplier-profile > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #08746d;
  font-size: 20px;
  font-weight: 800;
  border-radius: 15px;
  background: #dff6f3;
}

.supplier-profile b,
.supplier-profile small {
  display: block;
}

.supplier-profile small {
  margin-top: 5px;
  color: #8ea7c3;
  font-size: 11px;
}

.supplier-stat {
  min-height: 61px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.supplier-stat span {
  color: #9db0c8;
  font-size: 12px;
}

.supplier-stat b {
  font-size: 15px;
}

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

.faq-grid {
  max-width: 850px;
  margin: auto;
  display: grid;
  gap: 12px;
}

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

.faq-grid summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

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

.faq-grid summary span {
  color: var(--blue);
  font-size: 22px;
  font-weight: 400;
}

.faq-grid details[open] summary span {
  transform: rotate(45deg);
}

.faq-grid p {
  margin: -2px 0 23px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.final-cta {
  padding: 80px 0;
  background: #fff;
}

.final-cta-box {
  min-height: 280px;
  padding: 55px 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  border-radius: 27px;
  background:
    radial-gradient(circle at 85% 0%, rgba(81, 159, 255, 0.35), transparent 32%),
    linear-gradient(135deg, #0b2c51, #1263c1);
  box-shadow: 0 30px 60px rgba(22, 84, 153, 0.2);
}

.final-cta-box > div {
  max-width: 670px;
}

.final-cta-box > div > span {
  color: #85e0da;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 46px);
}

.final-cta p {
  margin: 15px 0 0;
  color: #cfdded;
  font-size: 15px;
  line-height: 1.8;
}

[dir="ltr"] .final-cta .button span {
  transform: rotate(180deg);
}

.site-footer {
  padding-top: 62px;
  color: #a2b5cc;
  background: #06162c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 80px;
  padding-bottom: 45px;
}

.footer-brand .brand-copy small {
  max-width: 310px;
  margin-top: 9px;
  line-height: 1.7;
}

.footer-grid h3 {
  margin: 3px 0 17px;
  color: #fff;
  font-size: 14px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 13px;
}

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

.footer-bottom {
  padding: 20px 0 27px;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 16px;
  }

  .header-actions .text-link {
    display: none;
  }

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

  .hero-copy {
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .dashboard-shell,
  [dir="rtl"] .dashboard-shell {
    width: min(780px, 100%);
    margin-inline: auto;
    transform: none;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 680px);
  }

  .site-header {
    height: 72px;
  }

  .header-inner {
    justify-content: space-between;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 12px;
  }

  .brand-copy b {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .main-nav {
    position: fixed;
    inset: 72px 16px auto;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: #0a2342;
    box-shadow: 0 20px 50px rgba(0, 6, 18, 0.45);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions .button,
  .header-actions .text-link {
    display: none;
  }

  .language-link {
    padding-inline-end: 0;
    border: 0;
  }

  .hero {
    min-height: auto;
    padding: 128px 0 70px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

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

  .dashboard-nav {
    padding-inline: 10px;
  }

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

  .dashboard-body {
    min-height: 540px;
  }

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

  .capability-grid div {
    min-height: 80px;
    border-bottom: 1px solid var(--line);
  }

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

  .workflow-grid,
  .report-grid,
  .supplier-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .report-copy {
    order: -1;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 480px);
  }

  .header-inner {
    gap: 12px;
  }

  .header-actions {
    margin-inline-start: auto;
  }

  .hero {
    padding-top: 116px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: 38px;
  }

  .hero-copy > p {
    font-size: 14px;
    line-height: 1.85;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .trust-row {
    gap: 9px 14px;
  }

  .dashboard-shell {
    margin-inline: -2px;
  }

  .dashboard-top {
    height: 42px;
  }

  .dashboard-body {
    min-height: 492px;
    grid-template-columns: 42px 1fr;
  }

  .dashboard-nav {
    padding: 14px 6px;
    gap: 14px;
  }

  .nav-logo {
    width: 29px;
    height: 29px;
  }

  .dashboard-nav i {
    width: 25px;
    height: 25px;
  }

  .dashboard-main {
    padding: 19px 13px;
  }

  .dashboard-main h2 {
    font-size: 15px;
  }

  .metric-grid article {
    min-height: 94px;
    padding: 10px;
  }

  .project-row {
    grid-template-columns: 28px 1fr auto;
  }

  .project-row .progress {
    display: none;
  }

  .capability-grid b {
    font-size: 12px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .section-heading p {
    font-size: 14px;
  }

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

  .feature-card {
    min-height: auto;
    padding: 26px;
  }

  .comparison-card {
    padding: 24px 19px;
  }

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

  .report-visual {
    min-height: 410px;
  }

  .report-ring {
    width: 220px;
    height: 220px;
  }

  .report-ring::before {
    width: 170px;
    height: 170px;
  }

  .floating-cost-card {
    inset-inline-end: 10px;
    bottom: 20px;
    width: 205px;
  }

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

  .final-cta {
    padding: 52px 0;
  }

  .final-cta-box {
    padding: 39px 25px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 21px;
  }

  .final-cta-box .button {
    width: 100%;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}
