@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  /* masari Brand Colors */
  --dark: #183b37;
  --dark-2: #254f49;
  --green: #1f7a68;
  --green-2: #35a892;
  --mint: #e9f7f3;
  --mint-2: #f5fbf8;

  /* Elegant accent */
  --sand: #d8b56d;
  --sand-soft: #fff7e4;

  /* Neutrals */
  --white: #ffffff;
  --soft: #f7faf8;
  --text: #60736f;
  --muted: #8b9a96;

  /* UI */
  --border: rgba(24, 59, 55, 0.12);
  --shadow: 0 24px 70px rgba(24, 59, 55, 0.14);
  --shadow-soft: 0 16px 45px rgba(24, 59, 55, 0.09);
  --radius: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

body[dir="rtl"] {
  font-family: "IBM Plex Sans Arabic", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
select,
input,
textarea {
  font-family: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(32, 57, 54, 0.08);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  width: 125px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a,
.mobile-nav a {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-2);
  transition: 0.25s ease;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--green);
  left: 0;
  bottom: -8px;
  border-radius: 100px;
  transition: 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active-link,
.mobile-nav a:hover {
  color: var(--green);
}

.desktop-nav a:hover::after,
.desktop-nav a.active-link::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-btn {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.language-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 143, 131, 0.35);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 14px;
  cursor: pointer;
  position: relative;
}

.menu-btn span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 999px;
  transition: 0.25s ease;
}

.menu-btn span:first-child {
  top: 17px;
}

.menu-btn span:last-child {
  top: 27px;
}

.menu-btn.active span:first-child {
  transform: rotate(45deg);
  top: 22px;
}

.menu-btn.active span:last-child {
  transform: rotate(-45deg);
  top: 22px;
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.mobile-nav.open {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  padding: 12px;
  border-radius: 12px;
}

.mobile-nav a:hover {
  background: var(--mint);
}

.hero {
  position: relative;
  padding: 94px 0 90px;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(81, 183, 168, 0.18), transparent 32%),
    linear-gradient(135deg, #f8fffd 0%, #ffffff 52%, #edf8f6 100%);
}

.mesh {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.55;
  pointer-events: none;
}

.mesh-one {
  width: 260px;
  height: 260px;
  background: rgba(47, 143, 131, 0.15);
  top: 12%;
  left: 4%;
  animation: float 8s ease-in-out infinite;
}

.mesh-two {
  width: 190px;
  height: 190px;
  background: rgba(81, 183, 168, 0.16);
  right: 10%;
  top: 18%;
  animation: float 10s ease-in-out infinite reverse;
}

.mesh-three {
  width: 220px;
  height: 220px;
  background: rgba(32, 57, 54, 0.08);
  bottom: 8%;
  left: 42%;
  animation: float 11s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47, 143, 131, 0.1);
  color: var(--green);
  border: 1px solid rgba(47, 143, 131, 0.14);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1,
.about-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -2.8px;
  color: var(--dark);
  margin-bottom: 22px;
}

.hero p,
.about-hero p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 18px 38px rgba(31, 122, 104, 0.24);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(31, 122, 104, 0.3);
}

.btn-secondary {
  color: var(--dark);
  background: var(--sand-soft);
  border-color: rgba(216, 181, 109, 0.32);
}

.btn-secondary:hover {
  background: #fff1cc;
  transform: translateY(-3px);
}

.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 650px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.metric-card strong {
  display: block;
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 6px;
}

.metric-card span {
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.route-card {
  position: absolute;
  left: 0;
  top: 36px;
  width: 380px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(32, 57, 54, 0.1);
  border-radius: 34px;
  padding: 24px;
  box-shadow: var(--shadow);
  z-index: 4;
}

.route-card-top,
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.route-card-top span,
.dashboard-header span {
  color: var(--text);
  font-size: 13px;
}

.route-card-top strong,
.dashboard-header b {
  color: var(--green);
}

.route-map {
  background: linear-gradient(135deg, #f5fbfa, #ffffff);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
}

.route-track {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(47, 143, 131, 0.12);
}

.dot-mid {
  background: #f7b955;
  box-shadow: 0 0 0 6px rgba(247, 185, 85, 0.16);
}

.dot-end {
  background: var(--dark);
  box-shadow: 0 0 0 6px rgba(32, 57, 54, 0.1);
}

.line {
  flex: 1;
  height: 4px;
  background: rgba(47, 143, 131, 0.16);
  border-radius: 999px;
  overflow: hidden;
}

.line i {
  display: block;
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  animation: routeMove 2s ease-in-out infinite;
}

.route-labels {
  display: grid;
  gap: 12px;
}

.route-labels div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.route-labels small,
.match-box span {
  color: var(--text);
}

.route-labels strong,
.match-box strong {
  color: var(--dark);
}

.match-box {
  margin-top: 16px;
  background: var(--dark);
  color: var(--white);
  border-radius: 22px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.match-box strong,
.match-box span {
  color: var(--white);
  display: block;
}

.match-box b {
  font-size: 28px;
  color: var(--green-2);
}

.phone {
  position: absolute;
  width: 210px;
  border-radius: 34px;
  background: var(--white);
  padding: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone img {
  border-radius: 26px;
}

.phone-main {
  right: 78px;
  top: 0;
  z-index: 3;
  animation: floatPhone 6s ease-in-out infinite;
}

.phone-secondary {
  right: 0;
  bottom: 28px;
  z-index: 2;
  transform: scale(0.92);
  animation: floatPhone 7s ease-in-out infinite reverse;
}

.live-chip {
  position: absolute;
  right: 210px;
  bottom: 90px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.live-chip span {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(47, 143, 131, 0.12);
}

.section {
  padding: 95px 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-heading h2,
.split-grid h2,
.about-intro h2,
.future-grid h2,
.vision-card h2,
.contact-card h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-heading p,
.split-grid p,
.about-text p,
.future-grid p,
.vision-card p,
.contact-card p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

.smart-section {
  background: var(--white);
}

.guide-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
}

.smart-panel,
.mini-dashboard,
.timeline-card,
.app-card,
.step-card,
.contact-card,
.about-card,
.vision-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.smart-panel {
  padding: 24px;
}

.tabs {
  display: flex;
  background: var(--soft);
  padding: 6px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.tab {
  flex: 1;
  min-height: 46px;
  border: 0;
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s ease;
}

.tab.active {
  background: var(--white);
  color: var(--green);
  box-shadow: var(--shadow-soft);
}

.panel {
  display: none;
}

.panel.active {
  display: block;
  animation: fadeUp 0.35s ease;
}

.panel h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.panel p {
  color: var(--text);
  line-height: 1.75;
}

.smart-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.smart-form label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-weight: 600;
}

.smart-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0 14px;
  outline: none;
  color: var(--dark);
  background: var(--soft);
}

.suggestion {
  display: flex;
  gap: 12px;
  background: var(--mint);
  border: 1px solid rgba(47, 143, 131, 0.14);
  border-radius: 20px;
  padding: 16px;
}

.suggestion strong {
  display: block;
  margin-bottom: 4px;
}

.suggestion p {
  font-size: 14px;
}

.driver-steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.driver-steps div {
  padding: 16px;
  border-radius: 20px;
  background: var(--soft);
  border: 1px solid var(--border);
}

.driver-steps b {
  color: var(--green);
  display: block;
  margin-bottom: 8px;
}

.driver-steps strong {
  display: block;
  margin-bottom: 6px;
}

.mini-dashboard {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(81, 183, 168, 0.18), transparent 30%),
    var(--white);
}

.dashboard-card {
  padding: 22px;
  border-radius: 24px;
  background: var(--dark);
  color: var(--white);
}

.dashboard-card small {
  color: rgba(255, 255, 255, 0.68);
}

.dashboard-card strong {
  display: block;
  font-size: 26px;
  margin: 8px 0 14px;
}

.dashboard-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.progress-bar {
  height: 9px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}

.progress-bar span {
  display: block;
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  border-radius: inherit;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.dashboard-stats div {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}

.dashboard-stats strong {
  display: block;
  font-size: 22px;
  margin-bottom: 4px;
}

.dashboard-stats span {
  color: var(--text);
  font-size: 13px;
}

.on-way,
.how-section,
.about-light,
.vision-section {
  background: var(--soft);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.feature-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.feature-list span {
  color: var(--green);
  font-weight: 800;
}

.timeline-card {
  padding: 24px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  transition: 0.25s ease;
}

.timeline-item:not(:last-child) {
  margin-bottom: 12px;
}

.timeline-item.active,
.timeline-item:hover {
  background: var(--mint);
}

.timeline-item > span {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(47, 143, 131, 0.12);
  flex: 0 0 auto;
}

.timeline-item strong {
  display: block;
  margin-bottom: 6px;
}

.apps-grid,
.steps-grid,
.about-grid,
.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.app-card,
.step-card,
.about-card,
.vision-card {
  padding: 28px;
  transition: 0.25s ease;
}

.app-card:hover,
.step-card:hover,
.about-card:hover,
.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.app-icon,
.about-card span,
.vision-card span {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: var(--mint);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.app-card h3,
.step-card h3,
.about-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.app-card p,
.step-card p,
.about-card p {
  color: var(--text);
  line-height: 1.75;
}

.step-card b {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--white);
  border-radius: 16px;
  margin-bottom: 18px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.safety-grid div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.safety-grid span {
  display: block;
  font-size: 26px;
  margin-bottom: 10px;
}

.safety-grid strong {
  font-size: 17px;
}

.contact-card {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at top right, rgba(81, 183, 168, 0.18), transparent 30%),
    var(--white);
}

.site-footer {
  padding: 46px 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.site-footer img {
  width: 115px;
  margin-bottom: 12px;
}

.site-footer p {
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text);
  font-weight: 400;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--green);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 125px 0 95px;
  background:
    radial-gradient(circle at top left, rgba(81, 183, 168, 0.18), transparent 34%),
    linear-gradient(135deg, #f8fffd 0%, #ffffff 58%, #edf8f6 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 870px;
  text-align: center;
}

.about-hero-inner .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.about-hero p {
  margin: 0 auto;
}

.about-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.about-text {
  display: grid;
  gap: 18px;
}

.about-grid {
  grid-template-columns: repeat(3, 1fr);
}

.future-section {
  background: var(--white);
}

.future-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.future-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.future-list div {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  color: var(--dark);
  font-weight: 500;
  transition: 0.25s ease;
}

.future-list div:hover {
  background: var(--mint);
  transform: translateY(-3px);
}

.vision-card {
  background:
    radial-gradient(circle at top right, rgba(81, 183, 168, 0.14), transparent 34%),
    var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-in {
  animation: fadeUp 0.75s ease both;
}

.delay-1 {
  animation-delay: 0.15s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-22px) translateX(12px);
  }
}

@keyframes floatPhone {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes routeMove {
  0% {
    transform: translateX(-30%);
  }
  50% {
    transform: translateX(40%);
  }
  100% {
    transform: translateX(100%);
  }
}

body[dir="rtl"] .desktop-nav a::after {
  left: auto;
  right: 0;
}

body[dir="rtl"] .route-labels div,
body[dir="rtl"] .match-box,
body[dir="rtl"] .route-card-top,
body[dir="rtl"] .dashboard-header,
body[dir="rtl"] .contact-card,
body[dir="rtl"] .footer-inner {
  direction: rtl;
}

body[dir="rtl"] .hero-content,
body[dir="rtl"] .split-grid,
body[dir="rtl"] .about-intro,
body[dir="rtl"] .future-grid {
  text-align: right;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 14px;
  }

  .hero-grid,
  .guide-grid,
  .split-grid,
  .future-grid,
  .about-intro {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 112px;
  }

  .hero {
  position: relative;
  padding: 94px 0 90px;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(53, 168, 146, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(216, 181, 109, 0.14), transparent 30%),
    linear-gradient(135deg, #f8fffc 0%, #ffffff 52%, #edf8f4 100%);
}

  .hero-grid {
    gap: 34px;
  }

  .hero h1,
  .about-hero h1 {
    font-size: 44px;
    letter-spacing: -1.8px;
  }

  .hero p,
  .about-hero p {
    font-size: 16px;
  }

  .hero-metrics,
  .apps-grid,
  .steps-grid,
  .about-grid,
  .vision-grid,
  .future-list,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 600px;
  }

  .route-card {
    width: min(100%, 360px);
    left: 0;
    top: 0;
  }

  .phone-main {
    right: 20px;
    top: 300px;
    width: 165px;
  }

  .phone-secondary {
    right: 170px;
    bottom: 15px;
    width: 145px;
  }

  .live-chip {
    right: auto;
    left: 14px;
    bottom: 100px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .split-grid h2,
  .about-intro h2,
  .future-grid h2,
  .vision-card h2,
  .contact-card h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .contact-card,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

 .about-hero {
  position: relative;
  overflow: hidden;
  padding: 125px 0 95px;
  background:
    radial-gradient(circle at top left, rgba(53, 168, 146, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(216, 181, 109, 0.13), transparent 32%),
    linear-gradient(135deg, #f8fffc 0%, #ffffff 58%, #edf8f4 100%);
}

  .header-inner {
    width: min(100% - 24px, 1240px);
  }

  .language-btn {
    padding: 9px 11px;
  }

  .hero h1,
  .about-hero h1 {
    font-size: 38px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .tabs {
    flex-direction: column;
    border-radius: 18px;
  }

  .tab {
    border-radius: 14px;
  }

  .smart-panel,
  .mini-dashboard,
  .timeline-card,
  .app-card,
  .step-card,
  .about-card,
  .vision-card,
  .contact-card {
    border-radius: 22px;
    padding: 22px;
  }

  .route-card {
    padding: 18px;
    border-radius: 26px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .phone-main {
    width: 150px;
    top: 325px;
    right: 12px;
  }

  .phone-secondary {
    width: 130px;
    right: 145px;
    bottom: 20px;
  }

  .live-chip {
    bottom: 115px;
    font-size: 13px;
  }
}