/* Reset and Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #1e2939;
  line-height: 1.6;
  direction: rtl;
  text-align: right;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

ul, ol {
  list-style: none;
}

/* Typography */
.gradient-text {
  background: linear-gradient(90deg, #de721a 0%, #d57533 7%, #cc7844 14%, #c27b51 21%, #b97d5d 29%, #b07e68 36%, #a68072 43%, #9c817b 50%, #918284 57%, #87838c 64%, #7c8395 71%, #70839d 79%, #6483a5 86%, #5683ac 93%, #4682b4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container */
.section-container {
  width: 100%;
  max-width: 1564px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-container-large {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 640px) {
  .section-container, .section-container-large {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .section-container, .section-container-large {
    padding: 0 40px;
  }
}

/* Section Badge */
.section-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid rgba(222, 114, 26, 0.2);
  background: linear-gradient(90deg, rgba(222, 114, 26, 0.1) 0%, rgba(70, 130, 180, 0.1) 100%);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #364153;
  margin-bottom: 16px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-badge img {
  width: 16px;
  height: 16px;
}

.badge-orange {
  background: rgba(222, 114, 26, 0.1);
  border-color: rgba(222, 114, 26, 0.2);
  color: #de721a;
  font-weight: 700;
}

.badge-purple {
  background: linear-gradient(90deg, rgba(173, 70, 255, 0.1) 0%, rgba(222, 114, 26, 0.1) 100%);
  border-color: rgba(173, 70, 255, 0.2);
}

.badge-orange-solid {
  background: rgba(222, 114, 26, 0.1);
  border-color: rgba(222, 114, 26, 0.2);
  padding: 8px 20px;
}

.badge-orange-solid span {
  font-weight: 700;
  color: #de721a;
}

/* Section Description */
.section-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #4a5565;
  margin-top: 24px;
  text-align: center;
}

@media (min-width: 640px) {
  .section-desc {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .section-desc {
    font-size: 20px;
  }
}

.section-desc-large {
  font-size: 18px;
  font-weight: 400;
  line-height: 32.5px;
  color: #4a5565;
  text-align: center;
  margin-top: 22px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-desc-large {
    font-size: 20px;
    max-width: 900px;
  }
}

/* ============================================
   Header Section
   ============================================ */
.header-section {
  position: relative;
  width: 100%;
  min-height: 1015px;
  overflow: hidden;
}

.header-bg {
  position: absolute;
  inset: 0;
  background-image: url('/ctasection-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #DE721A 0%, #4682B4 100%);
  background-image: url('imgs/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: opacity;
  contain: paint;
}

.header-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1564px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .header-container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .header-container {
    padding: 0 40px;
  }
}

/* Navigation */
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  min-height: 80px;
}

.logo {
  width: 81px;
  height: 54px;
  flex-shrink: 0;
}

.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.nav-btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
  transition: opacity 0.2s;
}

.nav-btn:hover {
  opacity: 0.9;
}

.nav-btn.active {
  color: #de721a;
  font-weight: 700;
}

.nav-btn.primary-btn {
  background: linear-gradient(270deg, #de721a 0%, #d57533 7%, #cc7844 14%, #c27b51 21%, #b97d5d 29%, #b07e68 36%, #a68072 43%, #9c817b 50%, #918284 57%, #87838c 64%, #7c8395 71%, #70839d 79%, #6483a5 86%, #5683ac 93%, #4682b4 100%);
  border-radius: 14px;
  padding: 10px 24px;
  font-weight: 500;
}

/* Header Main */
.header-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 53px;
}

@media (min-width: 640px) {
  .header-main {
    padding-top: 48px;
  }
}

@media (min-width: 1024px) {
  .header-main {
    padding-top: 53px;
  }
}

/* Phones */
.phones-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -8px;
  max-width: 697px;
  width: 100%;
}

@media (min-width: 640px) {
  .phones-container {
    gap: 16px;
  }
}

.phone {
  flex-shrink: 0;
}

.phone-left {
  width: 170px;
  transform: translateY(16px);
}

.phone-center {
  width: 92px;
  z-index: 10;
}

.phone-right {
  width: 165px;
  transform: translateY(12px);
}

@media (min-width: 640px) {
  .phone-left {
    width: 220px;
  }
  .phone-center {
    width: 110px;
  }
  .phone-right {
    width: 210px;
  }
}

@media (min-width: 1024px) {
  .phone-left {
    width: 280px;
  }
  .phone-center {
    width: 138px;
  }
  .phone-right {
    width: 265px;
  }
}

@media (min-width: 1280px) {
  .phone-left {
    width: 334px;
  }
  .phone-center {
    width: 168px;
  }
  .phone-right {
    width: 321px;
  }
}

/* Hero Title */
.hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-top: 24px;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 60px;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 72px;
  }
}

.text-blue {
  color: #4682b4;
}

.text-orange {
  color: #de721a;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  margin-top: 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 40px;
  }
}

@media (min-width: 1280px) {
  .hero-subtitle {
    font-size: 50px;
  }
}

/* App Buttons */
.app-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  width: 100%;
  max-width: 715px;
}

@media (min-width: 640px) {
  .app-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 26px;
  }
}

.app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 32px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  transition: opacity 0.2s;
}

@media (min-width: 640px) {
  .app-btn {
    width: auto;
  }
}

.app-btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.gradient-blue-orange {
  background: linear-gradient(90deg, #4682b4 0%, #5683ac 7%, #6483a5 14%, #70839d 21%, #7c8395 29%, #87838c 36%, #918284 43%, #9c817b 50%, #a68072 57%, #b07e68 64%, #b97d5d 71%, #c27b51 79%, #cc7844 86%, #d57533 93%, #de721a 100%);
  color: #ffffff;
  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.outline-btn {
  border: 2px solid #de721a;
  background: #ffffff;
  color: #de721a;
}

.gradient-orange-blue {
  background: linear-gradient(90deg, #de721a 0%, #d57533 7%, #cc7844 14%, #c27b51 21%, #b97d5d 29%, #b07e68 36%, #a68072 43%, #9c817b 50%, #918284 57%, #87838c 64%, #7c8395 71%, #70839d 79%, #6483a5 86%, #5683ac 93%, #4682b4 100%);
  color: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Stats Card */
.stats-card {
  margin-top: 40px;
  margin-bottom: -20px;
  width: 100%;
  max-width: 1371px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(1px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

@media (min-width: 640px) {
  .stats-card {
    margin-bottom: 0;
    padding: 28px 32px;
    gap: 20px;
    overflow-x: visible;
  }
}

@media (min-width: 1024px) {
  .stats-card {
    padding: 35px 32px;
    gap: 24px;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  flex: 1;
  min-width: 60px;
}

@media (min-width: 640px) {
  .stat-item {
    min-width: auto;
  }
}

.stat-value {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #ffffff;
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 40px;
    line-height: 36px;
  }
}

.stat-label {
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  color: #ffffff;
  margin-top: 2px;
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .stat-label {
    font-size: 16px;
    margin-top: 0;
    white-space: normal;
  }
}

.stat-divider {
  width: 2px;
  height: 80px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #4682b4 0%, #de721a 100%);
  display: none;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .stat-divider {
    display: block;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
  width: 100%;
  background: #ffffff;
  padding: 60px 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-section {
    padding: 60px 24px;
  }
}

.hero-section h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-section h2 {
    font-size: 48px;
  }
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 37px;
  max-width: 1482px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .hero-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 258px;
  padding: 0 24px 24px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.hero-card img {
  margin-top: 11px;
}

.hero-card h3 {
  margin-top: 18px;
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
  color: #de721a;
  white-space: nowrap;
}

.hero-card:nth-child(2) h3 {
  margin-top: 25px;
}

.hero-card:nth-child(3) h3 {
  margin-top: 34px;
}

.hero-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #4a5565;
}

/* ============================================
   Statistics Section
   ============================================ */
.statistics-section {
  width: 100%;
  background: rgba(222, 114, 26, 0.1);
  padding: 40px 16px;
}

@media (min-width: 768px) {
  .statistics-section {
    padding: 48px 16px;
  }
}

.statistics-section h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 640px) {
  .statistics-section h2 {
    font-size: 48px;
  }
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .sectors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 64px;
  }
}

.sector-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  min-height: 220px;
}

@media (min-width: 640px) {
  .sector-card {
    min-height: 280px;
  }
}

@media (min-width: 1024px) {
  .sector-card {
    min-height: 400px;
  }
}

.sector-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.sector-image-flip {
  transform: scaleX(-1);
}

.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}

.sector-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  text-align: right;
}

@media (min-width: 640px) {
  .sector-content {
    padding: 20px;
  }
}

@media (min-width: 1024px) {
  .sector-content {
    padding: 24px;
  }
}

.sector-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  margin-left: auto;
}

@media (min-width: 640px) {
  .sector-icon {
    width: 64px;
    height: 64px;
  }
}

.sector-content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: #ffffff;
}

@media (min-width: 1024px) {
  .sector-content h3 {
    font-size: 30px;
  }
}

.sector-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #e5e7eb;
  margin-top: 8px;
}

.sector-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
  transition: opacity 0.2s;
}

.sector-btn:hover {
  opacity: 0.9;
}

.sector-btn img {
  width: 16px;
  height: 16px;
}

/* ============================================
   Platform Section
   ============================================ */
.platform-section {
  width: 100%;
  background: #ffffff;
  padding: 64px 16px;
}

@media (min-width: 1024px) {
  .platform-section {
    padding: 64px 32px;
  }
}

.platform-section h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 640px) {
  .platform-section h2 {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .platform-section h2 {
    font-size: 48px;
    line-height: 48px;
  }
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 56px;
}

@media (min-width: 1024px) {
  .platform-grid {
    grid-template-columns: 180px minmax(320px, 725px) 180px;
    gap: 94px;
    align-items: center;
  }
}

.platform-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
}

.platform-image {
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
}

@media (min-width: 1024px) {
  .platform-image {
    order: 0;
  }
}

.platform-image img {
  max-width: 725px;
  width: 100%;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 158px;
  padding: 14px 16px 20px;
  border-radius: 20px;
  background: linear-gradient(139deg, rgba(222, 114, 26, 0.2) 0%, rgba(70, 130, 180, 0.2) 100%);
  text-align: center;
}

.step-card img {
  width: 48px;
  height: 48px;
}

.step-card h3 {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #de721a;
}

.step-card p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #4a5565;
}

/* ============================================
   Journey Section
   ============================================ */
.journey-section {
  width: 100%;
  background: #ffffff;
  padding: 40px 16px;
}

@media (min-width: 640px) {
  .journey-section {
    padding: 48px 24px;
  }
}

.journey-container {
  max-width: 1564px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title-dark {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: #1e2939;
  text-align: center;
}

@media (min-width: 640px) {
  .section-title-dark {
    font-size: 30px;
  }
}

.journey-timeline {
  position: relative;
  width: 100%;
  max-width: 1506px;
  margin-top: 48px;
}

.timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  height: 4px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #de721a 0%, #cc7844 7%, #b97d5d 14%, #a68072 21%, #918284 29%, #7c8395 36%, #6483a5 43%, #4682b4 50%, #6483a5 57%, #7c8395 64%, #918284 71%, #a68072 79%, #b97d5d 86%, #cc7844 93%, #de721a 100%);
  pointer-events: none;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
}

@media (min-width: 640px) {
  .journey-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .journey-steps {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 112px;
}

.journey-step img {
  position: relative;
  margin-bottom: -8px;
}

.journey-step span {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #364153;
  white-space: nowrap;
}

/* ============================================
   Experience Section
   ============================================ */
.experience-section {
  width: 100%;
  background: #ffffff;
  padding: 40px 16px 77px;
}

@media (min-width: 640px) {
  .experience-section {
    padding: 40px 24px 77px;
  }
}

@media (min-width: 1024px) {
  .experience-section {
    padding: 40px 32px 77px;
  }
}

.experience-section h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}

@media (min-width: 640px) {
  .experience-section h2 {
    font-size: 40px;
    line-height: 44px;
  }
}

@media (min-width: 1024px) {
  .experience-section h2 {
    font-size: 48px;
    line-height: 48px;
  }
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.experience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 591px;
  padding: 32px 24px;
  border-radius: 20px;
  background: rgba(222, 114, 26, 0.1);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  text-align: center;
}

@media (min-width: 640px) {
  .experience-card {
    padding: 40px 32px;
  }
}

@media (min-width: 1024px) {
  .experience-card {
    padding: 34px 40px;
  }
}

.experience-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 206px;
  width: 100%;
}

.experience-img-container img {
  width: 220px;
  height: auto;
}

@media (min-width: 640px) {
  .experience-img-container img {
    width: 250px;
  }
}

@media (min-width: 1024px) {
  .experience-img-container img {
    width: 315px;
  }
}

.experience-card:nth-child(2) .experience-img-container img {
  width: 180px;
}

@media (min-width: 640px) {
  .experience-card:nth-child(2) .experience-img-container img {
    width: 220px;
  }
}

@media (min-width: 1024px) {
  .experience-card:nth-child(2) .experience-img-container img {
    width: 258px;
  }
}

.experience-card h3 {
  margin-top: 40px;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

@media (min-width: 1024px) {
  .experience-card h3 {
    font-size: 48px;
    line-height: 48px;
  }
}

.experience-subtitle {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  color: #de721a;
}

@media (min-width: 1024px) {
  .experience-subtitle {
    font-size: 30px;
  }
}

.experience-desc {
  margin-top: 20px;
  max-width: 561px;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #3a3a3a;
}

@media (min-width: 1024px) {
  .experience-desc {
    font-size: 30px;
  }
}

.experience-banner {
  margin-top: 56px;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  background: linear-gradient(90deg, #4682b4 0%, #de721a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 87px;
  padding: 20px 16px;
}

.experience-banner img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.experience-banner p {
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  color: #ffffff;
  text-align: center;
}

@media (min-width: 640px) {
  .experience-banner p {
    font-size: 30px;
    line-height: 48px;
  }
}

/* ============================================
   Ads Section
   ============================================ */
.ads-section {
  width: 100%;
  background: rgba(222, 114, 26, 0.1);
  padding: 40px 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .ads-section {
    padding: 48px 24px;
  }
}

@media (min-width: 768px) {
  .ads-section {
    padding: 64px 24px;
  }
}

@media (min-width: 1024px) {
  .ads-section {
    padding: 88px 40px;
  }
}

.ads-section h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .ads-section h2 {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .ads-section h2 {
    font-size: 48px;
    line-height: 48px;
    margin-top: 20px;
  }
}

.ads-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .ads-phones {
    gap: 8px;
    margin-top: 35px;
  }
}

@media (min-width: 1024px) {
  .ads-phones {
    gap: 16px;
  }
}

.ads-phone {
  width: 400px;
  height: auto;
}

@media (min-width: 640px) {
  .ads-phone {
    width: 550px;
  }
}

@media (min-width: 768px) {
  .ads-phone {
    width: 750px;
  }
}

@media (min-width: 1024px) {
  .ads-phone {
    width: 950px;
  }
}

.ads-features-title {
  margin-top: 32px;
  font-size: 24px;
  font-weight: 900;
  line-height: 28px;
  color: #de721a;
}

@media (min-width: 640px) {
  .ads-features-title {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .ads-features-title {
    margin-top: 48.5px;
    font-size: 32px;
  }
}

.ads-features {
  margin-top: 24px;
  max-width: 1197px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  background: linear-gradient(264deg, #de721a 0%, #4682b4 100%);
  padding: 20px 16px;
}

@media (min-width: 640px) {
  .ads-features {
    padding: 28px;
  }
}

@media (min-width: 1024px) {
  .ads-features {
    margin-top: 26px;
    height: 110px;
    display: flex;
    align-items: center;
    padding: 0 40px;
  }
}

.ads-features ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
}

@media (min-width: 640px) {
  .ads-features ul {
    gap: 16px 40px;
  }
}

@media (min-width: 768px) {
  .ads-features ul {
    gap: 16px 48px;
  }
}

@media (min-width: 1024px) {
  .ads-features ul {
    gap: 0 88px;
  }
}

.ads-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
  .ads-features li {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .ads-features li {
    font-size: 25px;
  }
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4682b4;
}

/* ============================================
   Provider Section
   ============================================ */
.provider-section {
  width: 100%;
  background: #ffffff;
  padding: 56px 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .provider-section {
    padding: 56px 24px;
  }
}

@media (min-width: 1024px) {
  .provider-section {
    padding: 56px 40px;
  }
}

.provider-section h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

@media (min-width: 640px) {
  .provider-section h2 {
    font-size: 48px;
  }
}

.provider-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .provider-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 64px;
  }
}

@media (min-width: 1280px) {
  .provider-content {
    gap: 134px;
  }
}

.provider-orders {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 410.66px;
}

.order-card {
  width: 100%;
  border-radius: 16px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  padding: 20px;
}

.order-card:not(:first-child) {
  margin-top: 16px;
}

.order-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 25.6px;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.order-id {
  flex: 1;
  text-align: right;
  font-size: 16px;
  font-weight: 900;
  line-height: 25.6px;
  color: #1e2939;
}

.order-status {
  display: inline-block;
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #ffffff;
}

.order-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.order-detail {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.order-detail img {
  width: 16px;
  height: 16px;
}

.order-detail span {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #4a5565;
}

.provider-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 692px;
}

@media (min-width: 640px) {
  .provider-phones {
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .provider-phones {
    gap: 0;
  }
}

.provider-phone {
  width: 100%;
  min-width: 200px;
  max-width: 600px;
  height: auto;
}

.provider-phone-center {
  width: 30%;
  min-width: 170px;
  max-width: 240px;
  z-index: 10;
}

.provider-phone-end {
  transform: translateY(24px);
}

@media (min-width: 640px) {
  .provider-phone-end {
    transform: translateY(24px);
  }
}

/* ============================================
   Customer App Section
   ============================================ */
.customer-app-section {
  width: 100%;
  background: rgba(222, 114, 26, 0.1);
  padding: 64px 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .customer-app-section {
    padding: 64px 24px;
  }
}

@media (min-width: 1024px) {
  .customer-app-section {
    padding: 64px 40px;
  }
}

.customer-app-section h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .customer-app-section h2 {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .customer-app-section h2 {
    font-size: 48px;
  }
}

.customer-app-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1152px;
  margin: 64px auto 0;
}

@media (min-width: 768px) {
  .customer-app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .customer-app-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.process-card-orange {
  background: #de721a;
}

.process-card-blue {
  background: #4682b4;
}

.process-card img {
  width: 100%;
  height: auto;
}

.process-card h3 {
  margin-top: 24px;
  font-size: 30px;
  font-weight: 900;
  line-height: 36px;
  color: #ffffff;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  flex: 1;
}

.process-steps button {
  width: 100%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 25.6px;
  color: #ffffff;
  transition: opacity 0.2s;
}

.process-steps button:hover {
  opacity: 0.9;
}

.customer-app-banner {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background: linear-gradient(90deg, #de721a 0%, #4682b4 100%);
  padding: 20px 32px;
}

@media (min-width: 640px) {
  .customer-app-banner {
    padding: 20px 40px;
  }
}

.customer-app-banner img {
  width: 28px;
  height: 28px;
}

.banner-text {
  text-align: right;
}

.banner-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.banner-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 32px;
  color: #ffffff;
}

/* ============================================
   Direct Section
   ============================================ */
.direct-section {
  width: 100%;
  background: #ffffff;
  padding: 64px 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .direct-section {
    padding: 80px 16px;
  }
}

.direct-section h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
}

@media (min-width: 640px) {
  .direct-section h2 {
    font-size: 48px;
  }
}

.direct-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .direct-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .direct-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.direct-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  min-height: 500px;
}

.direct-phone {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  width: 173px;
  height: auto;
}

.direct-phone-top-23 {
  top: 23px;
  height: 356px;
}

.direct-phone-top-36 {
  top: 36px;
  height: 358px;
}

.direct-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 301px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
}

.direct-content {
  position: absolute;
  left: 50%;
  top: 150px;
  transform: translateX(-50%);
  z-index: 2;
  width: 299px;
  text-align: right;
}

.direct-badge-img {
  margin-left: 234.7px;
  height: 80px;
  width: 64px;
}

.direct-content h3 {
  margin-top: -1px;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: #ffffff;
}

.direct-content > p {
  margin-top: 0;
  padding-bottom: 24px;
  width: 289px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #e5e7eb;
}

.direct-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border-radius: 14px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  transition: opacity 0.2s;
}

.store-btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.store-btn-gradient-orange {
  background: linear-gradient(90deg, #de721a 0%, #f54900 100%);
  color: #ffffff;
  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.store-btn-blue {
  background: #1a60f4;
  color: #ffffff;
}

.store-btn-white {
  background: #ffffff;
  color: #1e2939;
}

.store-btn-white-orange {
  background: #ffffff;
  color: #de721a;
}

/* ============================================
   Get Started Section
   ============================================ */
.get-started-section {
  width: 100%;
  background: rgba(222, 114, 26, 0.1);
  padding: 64px 16px;
}

@media (min-width: 768px) {
  .get-started-section {
    padding: 80px 16px;
  }
}

.get-started-section h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
}

@media (min-width: 768px) {
  .get-started-section h2 {
    font-size: 48px;
  }
}

.get-started-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1152px;
  margin: 64px auto 0;
}

@media (min-width: 1024px) {
  .get-started-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 24px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #364153;
  text-align: right;
}

.form-group input,
.form-group textarea {
  height: 52px;
  border-radius: 14px;
  border: 2px solid #e8e8e8;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0a0a0a;
  background: transparent;
  text-align: right;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.form-group textarea {
  min-height: 124px;
  resize: none;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(90deg, #de721a 0%, #d57533 7%, #cc7844 14%, #c27b51 21%, #b97d5d 29%, #b07e68 36%, #a68072 43%, #9c817b 50%, #918284 57%, #87838c 64%, #7c8395 71%, #70839d 79%, #6483a5 86%, #5683ac 93%, #4682b4 100%);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #ffffff;
  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s;
}

.submit-btn img {
  width: 20px;
  height: 20px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  padding: 24px;
}

.contact-card img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.contact-info {
  text-align: right;
}

.contact-info h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #1e2939;
}

.contact-info p {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4a5565;
}

.social-card {
  border-radius: 16px;
  border: 0;
  background: linear-gradient(135deg, #de721a 0%, #d57533 7%, #cc7844 14%, #c27b51 21%, #b97d5d 29%, #b07e68 36%, #a68072 43%, #9c817b 50%, #918284 57%, #87838c 64%, #7c8395 71%, #70839d 79%, #6483a5 86%, #5683ac 93%, #4682b4 100%);
  padding: 24px;
  text-align: right;
}

.social-card h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #ffffff;
}

.social-card img {
  margin-top: 16px;
  width: 100%;
  max-width: 504px;
  height: 64px;
}

/* ============================================
   Footer Section
   ============================================ */
.footer-section {
  width: 100%;
  background: #ffffff;
}

.footer-container {
  max-width: 1536px;
  margin: 0 auto;
  padding: 80px 16px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}

.footer-brand {
  text-align: right;
}

.footer-brand img {
  width: 100%;
  max-width: 340px;
  height: auto;
}

.footer-brand p {
  margin-top: 16px;
  width: 100%;
  max-width: 336px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #99a1af;
}

.footer-nav {
  text-align: right;
}

.footer-nav h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #de721a;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}

.footer-nav button {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #99a1af;
  transition: color 0.2s;
}

.footer-nav button:hover {
  color: #de721a;
}

.footer-newsletter {
  text-align: right;
}

.footer-newsletter h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #de721a;
}

.footer-newsletter p {
  padding-top: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #99a1af;
}

.newsletter-form {
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: 100%;
  padding-top: 16px;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input {
  height: 58px;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  background: #f8f8f8;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 400;
  color: #4e4e4e;
  text-align: right;
  font-family: inherit;
}

.newsletter-form button {
  height: 58px;
  flex-shrink: 0;
  padding: 0;
}

.newsletter-form button img {
  height: 100%;
  width: auto;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  padding-top: 48px;
  padding-bottom: 0;
}

.footer-bottom p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #99a1af;
  text-align: center;
}

.footer-legal {
  margin-top: 0;
}

@media (min-width: 768px) {
  .footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #364153;
    padding-top: 32px;
  }

  .footer-bottom p {
    text-align: right;
  }

  .footer-legal {
    margin-top: 0;
  }
}

.footer-legal ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-legal button {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #99a1af;
  transition: color 0.2s;
}

.footer-legal button:hover {
  color: #de721a;
}

/* Focus States */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #de721a;
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
