:root {
  --orange: #F68B1F;
  --orange-dark: #D9740E;
  --navy: #14213D;
  --navy-2: #1C2B4A;
  --ink: #1B1F27;
  --muted: #5B6472;
  --line: #E7E9EE;
  --bg: #FFFFFF;
  --bg-soft: #F7F8FA;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 33, 61, 0.08);
  --shadow-lg: 0 20px 50px rgba(20, 33, 61, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

h1, h2, h3 { font-weight: 800; margin: 0; color: var(--navy); }
h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.01em; }
h3 { font-size: 19px; }
p { color: var(--muted); }

.section { padding: 96px 0; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head p { font-size: 17px; margin-top: 14px; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-dark .eyebrow { color: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(246, 139, 31, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img { height: 32px; width: auto; }
.brand span {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
}
.nav-links a:hover { color: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, #101a30 100%);
  color: #fff;
  overflow: hidden;
  padding: 120px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(246,139,31,0.35) 0%, rgba(246,139,31,0) 70%);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -140px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(246,139,31,0.18) 0%, rgba(246,139,31,0) 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(246,139,31,0.14);
  border: 1px solid rgba(246,139,31,0.4);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-lead {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  margin: 22px 0 32px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
  max-width: 560px;
}
.hero-stat b {
  display: block;
  font-size: 26px;
  color: #fff;
}
.hero-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.hero-art {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art img { max-width: 220px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}
.about-lead {
  font-size: 17px;
  color: var(--navy);
  font-weight: 500;
  margin: 16px 0;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.about-facts div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}
.about-facts b { display: block; color: var(--orange); font-size: 15.5px; margin-bottom: 4px; }
.about-facts span { font-size: 13px; color: var(--muted); }
.about-art {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.about-art img { max-width: 160px; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.team-avatar {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(246,139,31,0.14);
  color: var(--orange);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card h3 { font-size: 16.5px; margin-bottom: 4px; }
.team-role {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.team-card p { font-size: 13.5px; margin: 0; }

/* Problem */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.problem-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(246,139,31,0.12);
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 18px;
}
.problem-card h3 { margin-bottom: 10px; }
.problem-card p { font-size: 15px; margin: 0; }
.callout {
  margin-top: 36px;
  padding: 20px 26px;
  border-radius: var(--radius);
  background: rgba(20,33,61,0.04);
  border-left: 4px solid var(--orange);
  font-weight: 600;
  color: var(--navy);
}

/* How it works */
.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.flow-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  text-align: center;
}
.flow-col.center {
  background: var(--navy);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-lg);
}
.flow-col.center h3, .flow-col.center b { color: #fff; }
.flow-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 14px;
}
.flow-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
}
.flow-col.center ul { color: rgba(255,255,255,0.8); }
.flow-col li { padding: 6px 0; }
.flow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}
.flow-tag {
  background: rgba(246,139,31,0.15);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
.flow-note {
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
}

/* Solutions */
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tab-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
}
.tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.tab-panels { position: relative; }
.tab-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: flex-start;
}
.tab-panel.active { display: grid; }
.tab-panel .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(246,139,31,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-panel .icon-wrap img { width: 34px; height: 34px; }
.tab-panel h3 { font-size: 22px; margin-bottom: 10px; }
.tab-panel p { font-size: 15.5px; margin: 0; }
.solutions-note {
  text-align: center;
  margin-top: 28px;
  font-weight: 600;
  color: var(--navy);
}

/* Console */
.console-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.console-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
}
.console-card h3 { display: flex; align-items: center; gap: 12px; font-size: 18px; }
.console-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(246,139,31,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
}
.console-card p { margin: 12px 0 16px; font-size: 15px; }
.console-metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.console-metrics span {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(246,139,31,0.12);
  padding: 5px 12px;
  border-radius: 999px;
}

/* Deployments */
.sector-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.deploy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.deploy-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.deploy-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  margin-top: 8px;
  flex-shrink: 0;
}
.deploy-item b { color: var(--navy); font-size: 15px; }
.deploy-item span { display: block; font-size: 14px; color: var(--muted); margin-top: 2px; }
.deploy-panel { display: none; }
.deploy-panel.active { display: block; }
.deploy-cta {
  margin-top: 28px;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  background: rgba(246,139,31,0.08);
  border-radius: var(--radius);
  padding: 18px;
}

/* Stats */
.stats-highlight {
  text-align: center;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 16px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-box {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}
.stat-box b {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--orange);
  font-weight: 800;
}
.stat-box span {
  display: block;
  margin-top: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
}
.stats-footnote {
  text-align: center;
  margin-top: 40px;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}

/* Why Jawali - comparison */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th, .compare-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  vertical-align: top;
}
.compare-table th {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.compare-table th.jawali-col, .compare-table td.jawali-col {
  background: rgba(246,139,31,0.08);
}
.compare-table th.jawali-col { background: var(--orange); color: #fff; }
.compare-table td:first-child { font-weight: 700; color: var(--navy); width: 16%; }
.compare-table td { color: var(--muted); }
.compare-table td.jawali-col { color: var(--navy); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.why-note {
  text-align: center;
  margin-top: 28px;
  font-weight: 600;
  color: var(--navy);
}

/* Delivery & Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.trust-card h3 { margin-bottom: 10px; }
.trust-card p { font-size: 15px; }
.trust-metrics {
  display: flex;
  gap: 10px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.trust-metrics div {
  flex: 1;
  min-width: 80px;
  text-align: center;
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 12px 8px;
}
.trust-metrics b { display: block; color: var(--orange); font-size: 18px; }
.trust-metrics span { font-size: 11.5px; color: var(--muted); }
.trust-tags { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.trust-tags span {
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-tags span::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* CTA / Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.process-step { position: relative; padding-left: 8px; }
.process-step .step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { font-size: 14.5px; margin: 0; }

.contact-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.contact-list { display: flex; flex-direction: column; gap: 18px; }
.contact-list a, .contact-list div {
  color: #fff;
  text-decoration: none;
  font-size: 15.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.contact-list small {
  display: block;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  font-size: 12.5px;
  margin-top: 2px;
}
.contact-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(246,139,31,0.2);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
}
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: inherit;
  font-size: 14.5px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.contact-form textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 12.5px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Footer */
.site-footer {
  background: #0F1830;
  color: rgba(255,255,255,0.6);
  padding: 56px 0 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 30px; margin-bottom: 12px; }
.footer-brand p { max-width: 280px; font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col a, .footer-col div {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; padding: 24px; }
  .hero-art img { max-width: 140px; }
  .problem-grid, .flow, .console-grid, .deploy-grid, .trust-grid, .process-grid, .about-grid { grid-template-columns: 1fr; }
  .about-art { order: -1; padding: 30px; }
  .about-art img { max-width: 110px; }
  .stats-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-panel { grid-template-columns: 1fr; padding: 30px; }
  .tab-panel { grid-template-columns: 1fr; }
  .compare-table { display: block; overflow-x: auto; white-space: nowrap; }
}
@media (max-width: 780px) {
  .nav-links, .nav-actions .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }
  .section { padding: 64px 0; }
  .hero { padding: 90px 0 60px; }
  .team-grid { grid-template-columns: 1fr; }
}
