:root {
  --navy: #082b5b;
  --navy-2: #0d396f;
  --orange: #f47c20;
  --orange-2: #ff9d4d;
  --white: #ffffff;
  --text: #16304f;
  --muted: #6f7e92;
  --bg: #f5f7fb;
  --line: rgba(244, 124, 32, 0.45);
  --shadow: 0 20px 50px rgba(8, 43, 91, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  direction: rtl;
  font-family: "Cairo", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section {
  padding: 90px 0;
  position: relative;
}

.section-soft {
  background: linear-gradient(180deg, #f7f9fd, #ffffff);
}

.section-tinted {
  background: linear-gradient(135deg, rgba(8, 43, 91, 0.03), rgba(244, 124, 32, 0.03));
}

.section-light {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.section-title .line {
  width: 74px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  box-shadow: 0 0 0 10px rgba(244, 124, 32, 0.08);
}

.section-title h1,
.section-title h2 {
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: var(--navy);
  font-weight: 900;
}

.section-title h1 span,
.section-title h2 span {
  color: var(--orange);
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 760px;
  margin-bottom: 40px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(8, 43, 91, 0.08);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), #ffb16b);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 16px 28px rgba(244, 124, 32, 0.3);
  overflow: hidden;
}

.brand-badge--logo .custom-logo-link {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-badge--logo .custom-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text strong {
  display: block;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.2;
}

.brand-text span {
  display: block;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.95rem;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.menu a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 700;
  transition: 0.25s ease;
}

.menu a:hover,
.menu .current-menu-item > a {
  background: rgba(8, 43, 91, 0.06);
  color: var(--orange);
}

.cta {
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ff9a42);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(244, 124, 32, 0.28);
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 43, 91, 0.97), rgba(9, 51, 105, 0.95)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 35%);
  color: var(--white);
  padding: 110px 0 90px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.12;
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  left: -120px;
  top: -80px;
  background: var(--orange);
}

.hero::after {
  width: 320px;
  height: 320px;
  right: -90px;
  bottom: -110px;
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 22px;
  font-size: 0.96rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--orange-2);
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 800;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff9a42);
  box-shadow: 0 18px 30px rgba(244, 124, 32, 0.28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--orange-2);
}

.stat span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.96rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(244, 124, 32, 0.2), transparent 70%);
  border-radius: 50%;
}

.mockup {
  background: white;
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  color: var(--text);
}

.mockup-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8dce4;
}

.mockup-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 20px;
  padding: 26px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  color: white;
}

.mockup-hero::before {
  content: "LAMSET";
  position: absolute;
  left: 10px;
  top: 18px;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 4px;
  opacity: 0.05;
  line-height: 1;
}

.mockup-hero h3 {
  font-size: 2rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.mockup-hero p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
}

.mockup-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.mock-box {
  border-radius: 18px;
  padding: 16px;
  background: #f6f8fb;
  min-height: 92px;
  border: 1px solid rgba(8, 43, 91, 0.08);
}

.panel {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(8, 43, 91, 0.07);
  overflow: hidden;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.about-card,
.info-card,
.reason-card,
.value-card,
.contact-form,
.contact-card {
  padding: 34px;
}

.about-card p + p {
  margin-top: 14px;
}

.feature-stack {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: white;
  padding: 34px;
  position: relative;
}

.feature-stack::before {
  content: "";
  position: absolute;
  right: -50px;
  top: 40px;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  transform: rotate(20deg);
}

.feature-title {
  font-size: 2rem;
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.feature-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), #ff9a42);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 12px 20px rgba(244, 124, 32, 0.25);
}

.split-grid,
.value-grid,
.services-grid,
.partners-grid,
.contact-grid,
.reasons-grid,
.posts-grid {
  display: grid;
  gap: 24px;
}

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

.info-card,
.service-card,
.reason-card,
.value-card,
.partner,
.contact-card,
.contact-form,
.entry-card,
.post-card {
  background: white;
  border: 1px solid rgba(8, 43, 91, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

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

.info-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 6px;
  background: linear-gradient(90deg, var(--orange), #ffae66);
  border-radius: 999px;
}

.info-card h3,
.service-card h3,
.reason-card h3,
.contact-card h3,
.contact-form-title {
  color: var(--navy);
  font-size: 1.45rem;
  margin-bottom: 12px;
  font-weight: 900;
}

.info-card h3 span,
.reason-card h3 span,
.service-card h3 span {
  color: var(--orange);
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(244, 124, 32, 0.18), rgba(8, 43, 91, 0.25));
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  padding-right: 8px;
  background: white;
  border: 1px solid rgba(8, 43, 91, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.step-index {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), #ff9c45);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
  margin-right: auto;
  box-shadow: 0 16px 26px rgba(244, 124, 32, 0.22);
}

.step h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 6px;
  font-weight: 800;
}

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

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

.reason-card::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -22px;
  width: 90px;
  height: 90px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(244, 124, 32, 0.08), rgba(8, 43, 91, 0.05));
  transform: rotate(20deg);
}

.reason-card .icon {
  margin-bottom: 18px;
}

.value-card {
  text-align: center;
  transition: 0.25s ease;
}

.value-card:hover,
.service-card:hover,
.partner:hover,
.reason-card:hover,
.post-card:hover {
  transform: translateY(-6px);
}

.value-card .icon {
  margin: 0 auto 18px;
}

.value-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 800;
}

.service-card {
  overflow: hidden;
}

.service-image {
  height: 210px;
  background-position: center;
  background-size: cover;
}

.service-content {
  padding: 24px;
}

.service-content p {
  color: var(--muted);
}

.partners-section {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

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

.partner {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  background: linear-gradient(180deg, white, #fbfcff);
}

.partner--with-logo {
  align-content: center;
  gap: 10px;
}

.partner-logo {
  width: min(92px, 100%);
  height: 52px;
  object-fit: contain;
  margin: 0 auto;
}

.partner-name {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.partner span {
  color: var(--orange);
  display: block;
  font-size: 0.95rem;
  margin-top: 4px;
  font-weight: 700;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-card {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: white;
  overflow: hidden;
  position: relative;
}

.contact-card::before {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 124, 32, 0.24), transparent 68%);
}

.contact-card h3,
.contact-card p,
.contact-item strong,
.contact-item span,
.contact-item a {
  position: relative;
  z-index: 1;
}

.contact-card h3 {
  color: white;
  margin-bottom: 10px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 20px;
}

.contact-list,
.form-grid {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 800;
  color: var(--navy);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(8, 43, 91, 0.12);
  background: #fbfcfe;
  border-radius: 16px;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(244, 124, 32, 0.55);
  box-shadow: 0 0 0 4px rgba(244, 124, 32, 0.12);
  background: white;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.form-notice {
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.form-notice--success {
  background: rgba(26, 166, 95, 0.08);
  color: #157347;
  border: 1px solid rgba(26, 166, 95, 0.2);
}

.form-notice--error {
  background: rgba(220, 53, 69, 0.08);
  color: #b02a37;
  border: 1px solid rgba(220, 53, 69, 0.18);
}

.footer {
  background: #071f42;
  color: rgba(255, 255, 255, 0.9);
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer strong {
  color: white;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links li {
  display: inline-flex;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.badge {
  padding: 10px 14px;
  background: rgba(244, 124, 32, 0.08);
  color: var(--orange);
  border-radius: 999px;
  border: 1px solid rgba(244, 124, 32, 0.18);
  font-weight: 800;
  font-size: 0.92rem;
}

.site-main {
  min-height: 60vh;
}

.entry-card,
.post-card {
  padding: 32px;
}

.entry-thumbnail {
  margin-bottom: 24px;
  border-radius: 24px;
  overflow: hidden;
}

.entry-content > * + * {
  margin-top: 18px;
}

.entry-content ul,
.entry-content ol {
  padding-right: 20px;
}

.entry-content a {
  color: var(--orange);
}

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

.post-card h2 {
  color: var(--navy);
  margin-bottom: 8px;
}

.post-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-wrap,
  .contact-grid,
  .split-grid,
  .reasons-grid,
  .value-grid,
  .services-grid,
  .partners-grid,
  .posts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid,
  .about-wrap,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 84px;
  }

  .hero-stats,
  .services-grid,
  .value-grid,
  .reasons-grid,
  .partners-grid,
  .split-grid,
  .mockup-boxes,
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    min-height: 78px;
  }

  .cta {
    display: none;
  }

  .section-title {
    gap: 12px;
  }

  .section-title .line {
    width: 50px;
  }

  .about-card,
  .feature-stack,
  .info-card,
  .reason-card,
  .value-card,
  .contact-form,
  .contact-card,
  .entry-card,
  .post-card {
    padding: 24px;
  }
}
