/* Mobile App Page Styles */
.mobile-app-page {
  background: #090B1B;
}

/* Mobile Hero Section */
.mobile-hero {
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
  background: #090B1B;
}

.mobile-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.mobile-hero-gradient-top {
  width: 100%;
  height: 700px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #090B1B 0%, rgba(9, 11, 27, 0.10) 50%, transparent 100%);
  z-index: 1;
}

.mobile-hero-gradient-bottom {
  width: 100%;
  height: 700px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #090B1B 0%, rgba(9, 11, 27, 0.10) 50%, transparent 100%);
  z-index: 1;
}

.webdesign-hero-gradient-top {
  width: 100%;
  height: 700px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #090B1B 0%, rgba(9, 11, 27, 0.10) 50%, transparent 100%);
  z-index: 1;
}

.webdesign-hero-gradient-bottom {
  width: 100%;
  height: 700px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #090B1B 0%, rgba(9, 11, 27, 0.10) 50%, transparent 100%);
  z-index: 1;
}

.mobile-hero-content {
  position: absolute;
  top: 157px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 2;
  pointer-events: none;
}

.mobile-hero-content > * {
  pointer-events: auto;
}

.mobile-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 100px;
  border: 1px solid #00CFD1;
  background: transparent;
}

.mobile-badge svg {
  width: 24px;
  height: 24px;
}

.mobile-badge span {
  color: white;
  font-size: 14px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 14px;
}

.mobile-hero-title {
  color: white;
  font-size: 96px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 590;
  line-height: 96px;
  text-align: center;
  margin: 0;
}

.mobile-hero-lead {
  color: white;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 28.80px;
  text-align: center;
  max-width: 792px;
  margin: 0;
}

.mobile-spacer {
  width: 96px;
  height: 16px;
}

.mobile-hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mobile-btn-primary {
  height: 40px;
  padding: 0 28px;
  background: white;
  color: #00CFD1;
  border-radius: 100px;
  font-size: 14px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 510;
  line-height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.mobile-btn-secondary {
  height: 40px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.10);
  color: white;
  border-radius: 100px;
  font-size: 14px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 510;
  line-height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: translateY(-2px);
}

.mobile-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10 !important;
  pointer-events: auto !important;
}

.mobile-hero .mobile-scroll-hint {
  z-index: 5 !important;
  bottom: 30px !important;
}

/* Top Features Section */
.mobile-top-features {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 316px);
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.mobile-feature-item {
  padding: 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-feature-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-feature-content h3 {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  margin: 0;
}

.mobile-feature-content p {
  color: white;
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  text-align: center;
  margin: 0;
}

.mobile-mission-box {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border-left: 4px solid #0075E3;
  border-radius: 8px;
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 996px;
  margin: 0 auto 32px;
}

.mobile-mission-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-mission-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-mission-content h3 {
  color: white;
  font-size: 24px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.mobile-mission-content p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
}

.mobile-quote {
  color: rgba(255, 255, 255, 0.70);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-style: italic;
  font-weight: 508;
  line-height: 25.20px;
  text-align: center;
  max-width: 894px;
  margin: 0 auto;
}

/* What Is Mobile Section */
.mobile-what-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-section-title {
  color: white;
  font-size: 48px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 57.60px;
  text-align: center;
  margin: 0 0 56px 0;
}

.mobile-what-grid {
  display: grid;
  grid-template-columns: 486px 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.mobile-what-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-what-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-what-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-what-content h3 {
  color: white;
  font-size: 24px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.mobile-what-content p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0;
}

.mobile-platform-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mobile-platform-tag {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.30);
  border-radius: 30px;
  color: white;
  font-size: 14px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 14px;
}

.mobile-what-quote {
  color: rgba(255, 255, 255, 0.70);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0;
}

.mobile-what-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-approach-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border-top: 6px solid #0075E3;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-approach-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-approach-content h3 {
  color: white;
  font-size: 24px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 16px 0;
}

.mobile-approach-content p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0;
}

.mobile-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mobile-tech-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-tech-card svg {
  width: 24px;
  height: 24px;
}

.mobile-tech-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-tech-content h4 {
  color: white;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 18px;
  margin: 0;
}

.mobile-tech-content p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 14px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 19.60px;
  margin: 0;
}

/* Services Section */
.mobile-services-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-section-subtitle {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  margin: 20px auto 60px;
  max-width: 996px;
}

.mobile-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 231px);
  gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
}

.mobile-service-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-service-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-service-card h3 {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
}

.mobile-service-card p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0;
}

.mobile-services-footer {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  max-width: 996px;
  margin: 0 auto;
}

.mobile-footer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.mobile-footer-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-services-footer p {
  color: white;
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  text-align: left;
  margin: 0;
}

.mobile-footer-quote {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  line-height: 22.40px;
  word-wrap: break-word;
  text-align: right;
  margin: 0;
}

/* Industries Section */
.mobile-industries-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-section-subtitle-bold {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  margin: 40px auto 32px;
}

.mobile-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 384px);
  gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
}

.mobile-industry-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-industry-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-industry-card h3 {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
}

.mobile-industry-card p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0;
}

.mobile-industries-footer {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  margin: 0 auto 20px;
  max-width: 792px;
}

.mobile-industries-quote {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  line-height: 22.40px;
  text-align: center;
  max-width: 792px;
  margin: 0 auto;
}

/* Logo Carousel */
.mobile-logo-carousel {
  background: #090B1B;
  padding: 40px 0;
  overflow: hidden;
}

/* Why Section */
.mobile-why-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-why-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.mobile-why-text p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 25.20px;
  margin: 0;
}

.mobile-why-footer {
  margin-top: 24px;
}

.mobile-why-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.mobile-why-card:nth-child(1),
.mobile-why-card:nth-child(2),
.mobile-why-card:nth-child(3) {
  grid-column: span 2;
}

.mobile-why-card:nth-child(4) {
  grid-column: 1 / 4;
}

.mobile-why-card:nth-child(5) {
  grid-column: 4 / 7;
}

.mobile-why-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-why-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-why-card h3 {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.mobile-why-card p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0;
}

/* Custom Design Section */
.mobile-custom-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 384px);
  gap: 24px;
  justify-content: center;
  margin: 60px auto;
}

.mobile-custom-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-custom-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-custom-card h3 {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
}

.mobile-custom-card p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0;
}

.mobile-custom-quote {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  max-width: 894px;
  margin: 0 auto;
}

/* Platforms Section */
.mobile-platforms-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-platform-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
}

.mobile-platform-badge {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.30);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-platform-badge span {
  color: white;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 510;
  line-height: 18px;
}

.mobile-tech-box {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 996px;
  margin: 0 auto 40px;
}

.mobile-tech-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-tech-content h3 {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 20px;
  margin: 0 0 8px 0;
}

.mobile-tech-content p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0 0 16px 0;
}

.mobile-tech-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mobile-tech-tag {
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 100px;
  color: white;
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 590;
  line-height: 16px;
}

.mobile-platform-features {
  display: grid;
  grid-template-columns: repeat(4, 231px);
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.mobile-platform-feature {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-platform-feature h4 {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
}

.mobile-platform-feature p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0;
}

.mobile-platform-quote {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  max-width: 741px;
  margin: 0 auto;
}

/* Enterprise Section */
.mobile-enterprise-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-enterprise-subtitle {
  color: white;
  font-size: 24px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 28.80px;
  text-align: center;
  margin: 40px 0 20px;
}

.mobile-enterprise-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 684px;
  margin: 0 auto 40px;
}

.mobile-enterprise-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mobile-enterprise-bullet {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 10px;
  flex-shrink: 0;
}

.mobile-enterprise-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-enterprise-content h4 {
  color: white;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 510;
  line-height: 18px;
  margin: 0;
}

.mobile-enterprise-content p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 14px;
  margin: 0;
}

.mobile-enterprise-cards {
  display: grid;
  grid-template-columns: repeat(4, 231px);
  gap: 24px;
  justify-content: center;
}

.mobile-enterprise-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-enterprise-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-enterprise-card h4 {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 22px;
  margin: 0;
}

.mobile-enterprise-card p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0;
}

/* UI/UX Section */
.mobile-uiux-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-uiux-grid {
  display: grid;
  grid-template-columns: repeat(3, 384px);
  gap: 24px;
  justify-content: center;
  margin: 60px auto;
}

.mobile-uiux-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-uiux-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-uiux-card h3 {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
}

.mobile-uiux-card p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0;
}

.mobile-uiux-quote {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  max-width: 894px;
  margin: 0 auto;
}

/* Interface Section */
.mobile-interface-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-interface-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.mobile-interface-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-interface-title {
  color: white;
  font-size: 48px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 67.20px;
  margin: 0;
  text-align: left;
}

.mobile-interface-text {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 25.20px;
  margin: 0;
  text-align: left;
}

.mobile-interface-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.mobile-interface-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-interface-card-1 {
  position: relative;
  z-index: 2;
  margin-left: 0;
  margin-right: 0;
}

.mobile-interface-card-2 {
  position: relative;
  z-index: 1;
  margin-left: 20px;
  margin-top: -20px;
}

.mobile-interface-card h3 {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
}

.mobile-interface-card p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0;
}

.mobile-interface-quote {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  max-width: 894px;
  margin: 0 auto 16px;
}

.mobile-interface-author {
  color: white;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 510;
  line-height: 18px;
  text-align: center;
  margin: 0;
}

/* Maintenance Section */
.mobile-maintenance-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-cyan-quote {
  color: #00CFD1;
  font-style: italic;
}

.mobile-maintenance-grid {
  display: grid;
  grid-template-columns: repeat(3, 384px);
  gap: 24px;
  justify-content: center;
}

.mobile-maintenance-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-maintenance-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-maintenance-card h3 {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
}

.mobile-maintenance-card p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0;
}

/* Local Section */
.mobile-local-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-local-intro {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  margin: 40px 0 32px;
}

.mobile-local-grid {
  display: grid;
  grid-template-columns: repeat(2, 588px);
  gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
}

.mobile-local-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-local-card h3 {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  margin: 0;
}

.mobile-local-card p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  text-align: center;
  margin: 0;
}

.mobile-local-callout {
  padding: 36px 24px;
  background: linear-gradient(90deg, rgba(0, 207, 209, 0) 0%, rgba(0, 207, 209, 0.50) 50%, rgba(0, 207, 209, 0) 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.mobile-local-callout-title {
  color: white;
  font-size: 22px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 590;
  line-height: 22px;
  text-align: center;
  margin: 0;
}

.mobile-local-callout-quote {
  color: rgba(255, 255, 255, 0.80);
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  margin: 0;
}

/* Testimonials Section */
.mobile-testimonials-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-testimonials-subtitle {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  margin: 20px auto 60px;
  max-width: 794px;
}

.mobile-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 384px);
  gap: 24px;
  justify-content: center;
}

.mobile-testimonial-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-quote-icon {
  width: 32px;
  height: 32px;
}

.mobile-testimonial-text {
  color: white;
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0;
}

.mobile-testimonial-divider {
  width: 100%;
  height: 1px;
  background: white;
  border-radius: 10px;
}

.mobile-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-author-name {
  color: white;
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 16px;
  margin: 0;
}

.mobile-author-title {
  color: white;
  font-size: 14px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 14px;
  margin: 0;
}

/* Insights Section */
.mobile-insights-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-insights-title {
  color: white;
  font-size: 40px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin: 0 0 20px 0;
}

.mobile-insights-subtitle {
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  max-width: 862px;
  margin: 0 auto 40px;
}

.mobile-insights-intro {
  color: white;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 590;
  line-height: 18px;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 862px;
}

.mobile-insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 486px);
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.mobile-insight-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  border: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.mobile-insight-card img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.mobile-insight-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.mobile-insight-number {
  color: #00CFD1;
  font-size: 32px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 44.80px;
  margin: 0;
}

.mobile-insight-card-highlight {
  border: 2px dotted #60A5FA !important;
  background: rgba(255, 255, 255, 0.10);
}

.mobile-insight-card-highlight .mobile-insight-card-content {
  gap: 8px;
}

.mobile-insight-number-highlight {
  color: #60A5FA;
  font-size: 32px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 44.80px;
  margin: 0;
}

.mobile-insight-card-highlight img {
  filter: brightness(0) saturate(100%) invert(63%) sepia(95%) saturate(1352%) hue-rotate(190deg) brightness(104%) contrast(101%);
}

.mobile-insight-text {
  color: white;
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  margin: 0;
}

.mobile-insights-quote {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  max-width: 956px;
  margin: 0 auto 16px;
}

.mobile-insights-author {
  color: white;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 510;
  line-height: 18px;
  text-align: center;
  margin: 0;
}

/* Choose Section */
.mobile-choose-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-choose-title {
  color: white;
  font-size: 40px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin: 0 0 20px 0;
}

.mobile-choose-subtitle {
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  max-width: 862px;
  margin: 0 auto 40px;
}

.mobile-choose-intro {
  color: white;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 590;
  line-height: 18px;
  text-align: center;
  margin: 0 auto 40px;
}

.mobile-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 384px);
  gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
}

.mobile-choose-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-choose-card h3 {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  margin: 0;
}

.mobile-choose-card p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 22.40px;
  text-align: center;
  margin: 0;
}

.mobile-choose-footer {
  color: white;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 510;
  line-height: 25.20px;
  text-align: center;
  max-width: 956px;
  margin: 0 auto 16px;
}

.mobile-choose-quote {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  max-width: 956px;
  margin: 0 auto;
}

/* Why Choose Nova Era Section */
.mobile-why-choose-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-why-choose-title {
  color: white;
  font-size: 40px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin: 0 0 20px 0;
}

.mobile-why-choose-subtitle {
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  max-width: 862px;
  margin: 0 auto 40px;
}

.mobile-industry-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}

.mobile-industry-tag {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.30);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 14px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 510;
  line-height: 19.60px;
}

.mobile-why-choose-quote {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  max-width: 792px;
  margin: 0 auto;
}

/* Pricing Section */
.mobile-pricing-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-pricing-intro {
  color: white;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  margin: 40px auto 20px;
  max-width: 862px;
}

.mobile-pricing-table {
  max-width: 1200px;
  margin: 0 auto 20px;
}

.mobile-table-header {
  display: grid;
  grid-template-columns: 262px 262px 262px 262px;
  gap: 0;
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}

.mobile-table-header .mobile-table-cell {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 20px;
  padding: 0 20px;
}

.mobile-table-row {
  display: grid;
  grid-template-columns: 262px 262px 262px 262px;
  gap: 0;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-table-cell {
  color: white;
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 16px;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.mobile-cell-with-icon {
  gap: 8px;
  line-height: 22.40px;
}

.mobile-table-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-cell-bold {
  font-weight: 700;
}

.mobile-cell-with-check {
  gap: 4px;
}

.mobile-pricing-tip {
  color: white;
  font-size: 14px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
  max-width: 1200px;
  margin: 20px auto 40px;
  padding: 0 160px;
}

.mobile-pricing-quote {
  padding: 40px 30px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: 12px;
  max-width: 996px;
  margin: 0 auto;
}

.mobile-pricing-quote p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  margin: 0;
}

/* CTA Teal Section */
.mobile-cta-teal-section {
  background: linear-gradient(180deg, #00CFD1 0%, #135E5F 100%);
  padding: 80px 0;
  overflow: hidden;
}

.mobile-cta-title {
  color: white;
  font-size: 48px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 57.60px;
  text-align: center;
  margin: 0 0 20px 0;
}

.mobile-cta-subtitle {
  color: white;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 996px;
}

.mobile-cta-btn {
  height: 48px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.10);
  color: white;
  border-radius: 100px;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 510;
  line-height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.mobile-cta-btn:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: translateY(-2px);
}

/* Final CTA Section */
.mobile-final-cta-section {
  background: linear-gradient(180deg, #008E90 0%, #4545BC 100%);
  padding: 80px 0;
  overflow: hidden;
}

.mobile-final-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.mobile-final-title {
  color: white;
  font-size: 48px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 57.60px;
  text-align: center;
  margin: 0;
}

.mobile-final-text {
  color: white;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  max-width: 996px;
  margin: 0;
}

.mobile-final-subtitle {
  color: white;
  font-size: 20px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  margin: 24px 0 0 0;
}

.mobile-final-btn {
  height: 48px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.10);
  color: white;
  border-radius: 100px;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 510;
  line-height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 20px 0;
}

.mobile-final-btn:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: translateY(-2px);
}

.mobile-final-footer {
  color: white;
  font-size: 16px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  margin: 0;
}

/* FAQ Section */
.mobile-faq-section {
  background: #090B1B;
  padding: 80px 0;
}

.mobile-faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.mobile-faq-kicker {
  color: #00CFD1;
  font-size: 14px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
  margin: 0;
}

.mobile-faq-title {
  color: white;
  font-size: 48px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  margin: 0;
}

.mobile-faq-subtitle {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 25.20px;
  text-align: center;
  margin: 0;
}

.mobile-faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-faq-item {
  padding: 24px;
  border: 1px solid rgba(143, 143, 143, 0.10);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-faq-item span {
  color: white;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 18px;
}

/* Bottom CTA Banner */
.mobile-bottom-cta {
  background: #0075E3;
  padding: 50px 240px;
  overflow: hidden;
}

.mobile-bottom-cta-text {
  color: white;
  font-size: 28px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 510;
  line-height: 36.40px;
  margin: 0;
}

.mobile-bottom-cta-btn {
  height: 48px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.10);
  color: white;
  border-radius: 100px;
  font-size: 18px;
  font-family: "SF Pro", -apple-system, "SF Pro Text", "SF Pro Display", system-ui, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 510;
  line-height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mobile-bottom-cta-btn:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: translateY(-2px);
}

/* Mobile App Development Page Mobile Responsive Styles */
@media (max-width: 991px) {
  .mobile-hero {
    height: auto !important;
    min-height: 600px !important;
    padding: 100px 0 60px !important;
  }

  .mobile-hero-content {
    padding: 0 20px !important;
  }

  .mobile-hero-title {
    font-size: 64px !important;
  }

  .mobile-hero-lead {
    font-size: 16px !important;
    padding: 0 20px !important;
  }

  .mobile-hero-cta {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: center !important;
  }

  .mobile-hero-cta .btn {
    width: 100% !important;
    max-width: 280px !important;
  }

  .mobile-intro-section {
    padding: 60px 0 !important;
  }

  .mobile-intro-text {
    font-size: 16px !important;
    line-height: 1.75 !important;
    padding: 0 20px !important;
  }

  .mobile-section-title {
    font-size: 36px !important;
    line-height: 1.2 !important;
  }

  .mobile-cta-teal-section {
    padding: 60px 20px !important;
  }

  .mobile-final-cta-section {
    padding: 60px 20px !important;
  }

  .mobile-bottom-cta {
    padding: 40px 40px !important;
  }

  .mobile-bottom-cta-text {
    font-size: 24px !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 768px) {
  .mobile-hero {
    height: auto !important;
    min-height: 500px !important;
    padding: 80px 0 40px !important;
  }

  .mobile-hero-title {
    font-size: 48px !important;
  }

  .mobile-hero-lead {
    font-size: 14px !important;
    padding: 0 18px !important;
  }

  .mobile-intro-section {
    padding: 40px 0 !important;
  }

  .mobile-intro-text {
    font-size: 15px !important;
    line-height: 1.6 !important;
    padding: 0 18px !important;
  }

  .mobile-section-title {
    font-size: 32px !important;
    padding: 0 18px !important;
  }

  .mobile-cta-teal-section {
    padding: 40px 18px !important;
  }

  .mobile-cta-title {
    font-size: 28px !important;
  }

  .mobile-cta-subtitle {
    font-size: 14px !important;
  }

  .mobile-final-cta-section {
    padding: 40px 18px !important;
  }

  .mobile-bottom-cta {
    padding: 30px 20px !important;
  }

  .container-cta {
    flex-direction: column !important;
    text-align: center !important;
    gap: 16px !important;
    align-items: center !important;
  }

  .mobile-bottom-cta-text {
    font-size: 20px !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
  }

  .mobile-bottom-cta .btn {
    width: 100% !important;
    max-width: 280px !important;
    height: 44px !important;
    padding: 0 24px !important;
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  .mobile-hero {
    height: auto !important;
    min-height: 400px !important;
    padding: 60px 0 32px !important;
  }

  .mobile-hero-content {
    padding: 0 18px !important;
  }

  .mobile-hero-title {
    font-size: 36px !important;
  }

  .mobile-hero-lead {
    font-size: 13px !important;
  }

  .mobile-hero-cta .btn {
    max-width: 100% !important;
  }

  .mobile-intro-section {
    padding: 32px 0 !important;
  }

  .mobile-intro-text {
    font-size: 14px !important;
    line-height: 1.5 !important;
    padding: 0 18px !important;
  }

  .mobile-section-title {
    font-size: 28px !important;
    padding: 0 18px !important;
  }

  .mobile-cta-teal-section {
    padding: 32px 18px !important;
  }

  .mobile-cta-title {
    font-size: 24px !important;
  }

  .mobile-cta-subtitle {
    font-size: 13px !important;
  }

  .mobile-final-cta-section {
    padding: 32px 18px !important;
  }

  .mobile-bottom-cta {
    padding: 30px 18px !important;
  }

  .mobile-bottom-cta-text {
    font-size: 18px !important;
    line-height: 1.4 !important;
  }

  .mobile-bottom-cta .btn {
    width: 100% !important;
    max-width: 100% !important;
    height: 44px !important;
    padding: 0 20px !important;
    font-size: 15px !important;
  }
}



