/**
 * Mobile App Development Page Styles - eParivartan
 * Fully synchronized with web-development.css, ui-ux-design.css & index.css
 */

@import url('./index.css');
@import url('./ui-ux-design.css');
@import url('./web-development.css');

/* Specific Mobile App Development Page Overrides */
.mobile-app-page {
  background-color: #FFFFFF;
  color: #060612;
  font-family: Satoshi, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==========================================================================
   UNIFORM GLOBAL SECTION SPACING (EXACT SAME AS STORY.HTML)
   ========================================================================== */
body.mobile-app-page .uiux-hero-section,
body.mobile-app-page .platforms-section,
body.mobile-app-page .uiux-section,
body.mobile-app-page .interop-section,
body.mobile-app-page .stack-section,
body.mobile-app-page .why-mobile-section,
body.mobile-app-page .faqs-section,
body.mobile-app-page .cta-section {
  margin-top: 0 !important;
  margin-bottom: 80px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.mobile-app-page .uiux-hero-container {
  padding-top: 24px !important;
  padding-bottom: 0 !important;
}

body.mobile-app-page .uiux-container,
body.mobile-app-page .platforms-container,
body.mobile-app-page .faqs-container,
body.mobile-app-page .cta-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Tablet Uniform Section Spacing (<= 960px) */
@media (max-width: 960px) {
  body.mobile-app-page .uiux-hero-section,
  body.mobile-app-page .platforms-section,
  body.mobile-app-page .uiux-section,
  body.mobile-app-page .interop-section,
  body.mobile-app-page .stack-section,
  body.mobile-app-page .why-mobile-section,
  body.mobile-app-page .faqs-section,
  body.mobile-app-page .cta-section {
    margin-top: 0 !important;
    margin-bottom: 56px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.mobile-app-page .uiux-hero-container {
    padding-top: 24px !important;
    padding-bottom: 0 !important;
  }
}

/* Mobile Uniform Section Spacing (<= 480px) */
@media (max-width: 480px) {
  body.mobile-app-page .uiux-hero-section,
  body.mobile-app-page .platforms-section,
  body.mobile-app-page .uiux-section,
  body.mobile-app-page .interop-section,
  body.mobile-app-page .stack-section,
  body.mobile-app-page .why-mobile-section,
  body.mobile-app-page .faqs-section,
  body.mobile-app-page .cta-section {
    margin-top: 0 !important;
    margin-bottom: 40px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.mobile-app-page .uiux-hero-container {
    padding-top: 24px !important;
    padding-bottom: 0 !important;
  }
}

body.mobile-app-page .faqs-section {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100%;
  box-sizing: border-box;
}

body.mobile-app-page .faqs-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px !important;
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 960px) {
  body.mobile-app-page .faqs-container {
    padding: 0 24px !important;
  }
}

@media (max-width: 480px) {
  body.mobile-app-page .faqs-container {
    padding: 0 16px !important;
  }
}

body.mobile-app-page .services-header {
  margin-bottom: 36px;
}
/* ==========================================================================
   HERO SHOWCASE — Phone Reveal on Hover (Exact Proportions)
   ========================================================================== */
.mobile-hero-showcase {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 570px;
  cursor: pointer;
}

/* Phone mockups container — anchors all 3 devices */
.mobile-hero-phones {
  position: relative;
  width: 268px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  margin: 0 auto;
}

/* Base phone style */
.mobile-hero-phone {
  will-change: translate, opacity;
}

/* CENTER PHONE: Main hero device — distinctly larger, prominent in front */
.phone-center {
  position: relative;
  width: 268px;
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.22));
}

.phone-center img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 36px;
}

/* LEFT PHONE: Slightly smaller (204px), perfectly centered vertically with equal top/bottom padding */
.phone-left {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 204px;
  z-index: 2;
  opacity: 0;
  translate: -50% -50%;
  transition: translate 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  pointer-events: none;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.16));
}

.phone-left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

/* RIGHT PHONE: Slightly smaller (204px), perfectly centered vertically with equal top/bottom padding */
.phone-right {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 204px;
  z-index: 2;
  opacity: 0;
  translate: -50% -50%;
  transition: translate 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  pointer-events: none;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.16));
}

.phone-right img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

/* ===== HOVER & IN-VIEW: Center phone remains hero, Left & Right slide out with equal padding & tight gap ===== */
.mobile-hero-showcase:hover .phone-left,
.mobile-hero-showcase.is-in-view .phone-left,
.mobile-hero-showcase.is-active .phone-left {
  translate: calc(-50% - 248px) -50%;
  opacity: 1;
  pointer-events: auto;
}

.mobile-hero-showcase:hover .phone-right,
.mobile-hero-showcase.is-in-view .phone-right,
.mobile-hero-showcase.is-active .phone-right {
  translate: calc(-50% + 248px) -50%;
  opacity: 1;
  pointer-events: auto;
}



/* ===== Responsive ===== */
@media (max-width: 768px) {
  .mobile-hero-showcase {
    min-height: 440px;
    margin-top: 30px;
  }
  .mobile-hero-phones {
    width: 200px;
  }
  .phone-center {
    width: 200px;
  }
  .phone-center img {
    border-radius: 26px;
  }
  .phone-left,
  .phone-right {
    width: 152px;
  }
  .phone-left img,
  .phone-right img {
    border-radius: 20px;
  }
  .mobile-hero-showcase:hover .phone-left,
  .mobile-hero-showcase.is-in-view .phone-left,
  .mobile-hero-showcase.is-active .phone-left {
    translate: calc(-50% - 186px) -50%;
  }
  .mobile-hero-showcase:hover .phone-right,
  .mobile-hero-showcase.is-in-view .phone-right,
  .mobile-hero-showcase.is-active .phone-right {
    translate: calc(-50% + 186px) -50%;
  }
}

@media (max-width: 480px) {
  .mobile-hero-showcase {
    min-height: 330px;
    margin-top: 20px;
  }
  .mobile-hero-phones {
    width: 145px;
  }
  .phone-center {
    width: 145px;
  }
  .phone-center img {
    border-radius: 20px;
  }
  .phone-left,
  .phone-right {
    width: 110px;
  }
  .phone-left img,
  .phone-right img {
    border-radius: 14px;
  }
  .mobile-hero-showcase:hover .phone-left,
  .mobile-hero-showcase.is-in-view .phone-left,
  .mobile-hero-showcase.is-active .phone-left {
    translate: calc(-50% - 134px) -50%;
  }
  .mobile-hero-showcase:hover .phone-right,
  .mobile-hero-showcase.is-in-view .phone-right,
  .mobile-hero-showcase.is-active .phone-right {
    translate: calc(-50% + 134px) -50%;
  }
}

/* ==========================================================================
   OUR PHILOSOPHY SECTION (Native or Cross-Platform) - Phone Mockup & Cards
   ========================================================================== */
.mobile-philosophy-section {
  background-color: #FFFFFF;
  position: relative;
}

.mobile-philosophy-showcase {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 640px;
}

/* Floating App Icons container layer */
.philosophy-floating-apps {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 320px;
  pointer-events: none;
  z-index: 1;
}

/* Base App Icon styling */
.app-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  opacity: 0.85;
}

/* App Icon specific backgrounds & placements */
/* Row 1 */
.app-facetime {
  background: linear-gradient(180deg, #34D399 0%, #10B981 100%);
  left: 7%;
  top: 15px;
}
.app-calendar {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  left: 23%;
  top: 15px;
}
.app-calendar .cal-day {
  color: #EF4444;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.app-calendar .cal-num {
  color: #1F2937;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.1;
}

.app-clock {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  left: 40%;
  top: 15px;
}
.app-home {
  background: linear-gradient(180deg, #FDE047 0%, #EAB308 100%);
  right: 40%;
  top: 15px;
}
.app-camera {
  background: linear-gradient(180deg, #F3F4F6 0%, #D1D5DB 100%);
  border: 1px solid #E5E7EB;
  right: 23%;
  top: 15px;
}
.app-settings {
  background: linear-gradient(180deg, #E5E7EB 0%, #9CA3AF 100%);
  border: 1px solid #D1D5DB;
  right: 7%;
  top: 15px;
}

/* Row 2 */
.app-reminders {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  left: 7%;
  top: 110px;
  padding: 6px;
  box-sizing: border-box;
  justify-content: space-evenly;
}
.rem-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
}
.rem-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rem-dot.red { background: #EF4444; }
.rem-dot.yellow { background: #F59E0B; }
.rem-dot.blue { background: #3B82F6; }
.rem-line {
  height: 2px;
  background: #E5E7EB;
  border-radius: 1px;
  flex: 1;
}

.app-podcasts {
  background: linear-gradient(180deg, #C084FC 0%, #9333EA 100%);
  left: 23%;
  top: 110px;
}
.app-health {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  left: 41%;
  top: 120px;
}
.app-wallet {
  background: #111827;
  right: 41%;
  top: 120px;
}
.app-maps {
  background: linear-gradient(180deg, #6EE7B7 0%, #3B82F6 100%);
  right: 23%;
  top: 110px;
}
.app-appstore {
  background: linear-gradient(180deg, #60A5FA 0%, #2563EB 100%);
  right: 7%;
  top: 110px;
}

/* Row 3 */
.app-books {
  background: linear-gradient(180deg, #FB923C 0%, #EA580C 100%);
  left: 23%;
  top: 205px;
}

/* Central iPhone Mockup Frame */
.philosophy-phone-mockup {
  position: relative;
  width: 320px;
  z-index: 3;
  margin: 0 auto;
}

.phone-bevel {
  position: relative;
  width: 320px;
  background: #000000;
  border-radius: 46px;
  padding: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), inset 0 0 0 2px #333333;
  box-sizing: border-box;
}

/* Dynamic Island Pill */
.phone-dynamic-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000000;
  border-radius: 20px;
  z-index: 10;
}

/* Screen Area inside iPhone */
.phone-screen-inner {
  background: #FFFFFF;
  border-radius: 38px;
  padding: 50px 14px 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
}

/* Cards inside Screen */
.ph-card {
  width: 100%;
  border-radius: 22px;
  padding: 22px 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ph-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ph-card-title {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px 0;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.ph-card-desc {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

/* Card 1: iOS (Black) */
.ph-card-ios {
  background: #060608;
  color: #FFFFFF;
}
.ph-card-ios .ph-card-title { color: #FFFFFF; }
.ph-card-ios .ph-card-desc { color: rgba(255, 255, 255, 0.75); }

/* Card 2: Android (Green) */
.ph-card-android {
  background: #82BE50;
  color: #FFFFFF;
}
.ph-card-android .ph-card-title { color: #FFFFFF; }
.ph-card-android .ph-card-desc { color: rgba(255, 255, 255, 0.9); }

/* Card 3: Cross-Platform (Yellow/Amber) */
.ph-card-cross {
  background: #FFC82C;
  color: #111111;
}
.ph-card-cross .ph-card-title { color: #111111; }
.ph-card-cross .ph-card-desc { color: #222222; }

/* Highlight Banner at bottom */
.mobile-philosophy-banner {
  margin-top: 36px;
  background-color: #F4FAEE;
  border-radius: 12px;
  padding: 16px 28px;
  text-align: center;
  box-sizing: border-box;
}

.mobile-philosophy-banner p {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1D1D1F;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 920px;
}

@media (max-width: 768px) {
  .mobile-philosophy-showcase {
    min-height: auto;
    margin-top: 24px;
  }
  .philosophy-floating-apps {
    display: none;
  }
  .philosophy-phone-mockup {
    width: 290px;
  }
  .phone-bevel {
    width: 290px;
    border-radius: 40px;
    padding: 8px;
  }
  .phone-screen-inner {
    border-radius: 34px;
    padding: 44px 12px 16px 12px;
    gap: 12px;
  }
  .ph-card {
    padding: 18px 14px;
    border-radius: 18px;
  }
  .ph-card-title {
    font-size: 15px;
  }
  .ph-card-desc {
    font-size: 11px;
  }
  .mobile-philosophy-banner {
    padding: 14px 16px;
    margin-top: 24px;
  }
  .mobile-philosophy-banner p {
    font-size: 13px;
  }
}

/* ==========================================================================
   ERGONOMICS & HUMAN FACTORS SECTION
   ========================================================================== */
.ergonomics-section {
  background-color: #FFFFFF;
  position: relative;
}

.ergonomics-card {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #ECECEF;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  margin-top: 48px;
  padding: 44px 44px 52px 44px;
  box-sizing: border-box;
}

.ergonomics-card-title {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #060612;
  margin: 0 0 32px 0;
  line-height: 1.3;
}

.ergonomics-diagram-wrap {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.ergonomics-svg {
  width: 100%;
  height: auto;
  min-width: 580px;
  display: block;
  margin: 0 auto;
}

.ergonomics-mobile-chips {
  display: none;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}

.ergo-mobile-chip {
  background-color: #F4FBF0;
  border: 1.5px solid #D4F0C4;
  color: #1E293B;
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px 12px 22px;
  border-radius: 9999px;
  width: 100%;
  max-width: 320px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(117, 191, 70, 0.08);
  box-sizing: border-box;
  letter-spacing: -0.01em;
}

.ergo-chip-leaf {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ergonomics-svg {
    display: none !important;
  }
  .ergonomics-mobile-chips {
    display: flex;
  }
  .ergonomics-diagram-wrap {
    overflow-x: visible;
  }
}

@media (max-width: 991px) {
  .ergonomics-card {
    padding: 32px 24px 40px 24px;
  }
  .ergonomics-card-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

/* ==========================================================================
   BEHIND THE GLASS SECTION (15 Backend Capabilities)
   ========================================================================== */
.behind-glass-section {
  background-color: #FFFFFF;
  position: relative;
}

.behind-glass-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.behind-glass-card {
  background: #FFFFFF;
  border: 1px solid #ECECEF;
  border-radius: 18px;
  padding: 26px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.behind-glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.behind-glass-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #E4F7D6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.behind-glass-card-title {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #060612;
  margin: 0 0 8px 0;
  line-height: 1.3;
  letter-spacing: -0.2px;
  min-height: 40px;
  display: flex;
  align-items: flex-start;
}

.behind-glass-card-desc {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: #69686E;
  line-height: 1.5;
  margin: 0;
}

.behind-glass-banner {
  margin-top: 36px;
  background-color: #EDF7E8;
  border-radius: 12px;
  padding: 22px 32px;
  text-align: center;
  box-sizing: border-box;
}

.behind-glass-banner p {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #060612;
  line-height: 1.55;
  margin: 0;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.behind-glass-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

@media (max-width: 1200px) {
  .behind-glass-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .behind-glass-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .behind-glass-card {
    padding: 22px 18px;
  }
}

@media (max-width: 480px) {
  .behind-glass-grid {
    grid-template-columns: 1fr;
  }
  .behind-glass-card-title {
    min-height: auto;
  }
  .behind-glass-banner {
    padding: 18px 16px;
  }
  .behind-glass-banner p {
    font-size: 14.5px;
  }
}

/* ==========================================================================
   ENTERPRISE INTEROPERABILITY SECTION
   ========================================================================== */
.interop-section {
  background-color: #FFFFFF;
  position: relative;
}

.interop-diagram-card {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #ECECEF;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  margin-top: 48px;
  padding: 40px 30px;
  box-sizing: border-box;
}

.interop-svg-wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.interop-svg-desktop {
  width: 100%;
  height: auto;
  min-width: 680px;
  display: block;
  margin: 0 auto;
}

.interop-svg-mobile {
  display: none;
}

@media (max-width: 768px) {
  .interop-svg-desktop {
    display: none !important;
  }
  .interop-svg-mobile {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  .interop-diagram-card {
    padding: 20px 8px !important;
  }
  .interop-svg-wrap {
    overflow-x: visible !important;
  }
}

.interop-bottom-card {
  margin-top: 32px;
  background: #FFFFFF;
  border: 1px solid #ECECEF;
  border-radius: 18px;
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
}

.interop-bottom-text {
  flex: 1;
}

.interop-bottom-desc {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #060612;
  line-height: 1.55;
  margin: 0;
}

.interop-bottom-sub {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #69686E;
  margin: 8px 0 0 0;
  line-height: 1.4;
}

.interop-bottom-action {
  flex-shrink: 0;
}

@media (max-width: 840px) {
  .interop-bottom-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 20px;
  }
  .interop-bottom-action,
  .interop-bottom-action .start-project-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   HOW WE WORK SECTION STYLES
   ========================================================================== */
.hww-card {
  background: #FFFFFF;
  border: 1px solid #ECECEF;
  border-radius: 28px;
  padding: 56px 64px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.02);
  margin-top: 36px;
  box-sizing: border-box;
  width: 100%;
}

.hww-steps-list {
  display: flex;
  flex-direction: column;
}

.hww-step {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  position: relative;
}

.hww-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 54px;
  flex-shrink: 0;
}

.hww-step-num {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #75BF46;
  line-height: 1;
  text-align: center;
}

.hww-step-line {
  width: 2px;
  height: 52px;
  border-left: 2px dashed #D4D4D8;
  margin: 10px 0;
}

.hww-step:last-child .hww-step-line {
  display: none;
}

.hww-step-content {
  padding-top: 4px;
  padding-bottom: 24px;
}

.hww-step:last-child .hww-step-content {
  padding-bottom: 0;
}

.hww-step-title {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.hww-step-desc {
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #69686E;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hww-card {
    padding: 32px 20px;
    border-radius: 20px;
  }
  .hww-step {
    gap: 20px;
  }
  .hww-step-num {
    font-size: 28px;
  }
  .hww-step-marker {
    width: 42px;
  }
  .hww-step-line {
    height: 44px;
  }
  .hww-step-title {
    font-size: 17px;
  }
  .hww-step-desc {
    font-size: 13.5px;
  }
}


/* ==========================================================================
   FAQS SECTION STYLES
   ========================================================================== */
.faqs-section .faqs-single-column {
  border-radius: 24px;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.faqs-section .faq-item-card {
  display: flex;
  padding: 24px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  border-radius: 12px;
  border-bottom: 1px solid #E5E7EB;
  background: #FFF;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.faqs-section .faq-item-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faqs-section .faq-item-card.is-open {
  border-bottom-color: rgba(117, 191, 70, 0.3);
}

.faqs-section .faq-item-card.is-open .faq-question-text {
  color: #75BF46;
}

.faqs-section .faq-item-card.is-open .faq-toggle-btn svg circle {
  fill: #75BF46;
}

@media (max-width: 768px) {
  .faqs-section .faqs-single-column {
    padding: 16px;
    border-radius: 18px;
  }
  .faqs-section .faq-item-card {
    padding: 18px 20px;
  }
}

/* ==========================================================================
   TECH STACK CONSTELLATION SECTION
   ========================================================================== */
.stack-section {
  background-color: #FFFFFF;
  position: relative;
}

.stack-intro-text {
  text-align: left;
  font-size: 15.5px;
  color: #64748B;
  margin: 24px 0 6px 0;
  width: 100%;
  max-width: 100%;
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
}

.stack-constellation-wrap {
  width: 100%;
  max-width: 680px;
  height: 520px;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.stack-constellation-wrap .tech-ecosystem {
  width: 100%;
  height: 100%;
  min-height: 520px;
  position: relative;
}

@media (max-width: 768px) {
  .stack-constellation-wrap {
    height: 440px;
  }
  .stack-constellation-wrap .tech-ecosystem {
    min-height: 440px;
  }
}

@media (max-width: 480px) {
  .stack-constellation-wrap {
    height: 360px;
  }
  .stack-constellation-wrap .tech-ecosystem {
    min-height: 360px;
  }
}

.stack-desc-text {
  text-align: left;
  font-size: 15px;
  line-height: 1.65;
  color: #64748B;
  width: 100%;
  max-width: 100%;
  margin: 0 0 28px 0;
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
}

/* Technology Pills Marquee Track */
.stack-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 14px 0 24px 0;
  margin-bottom: 24px;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.stack-marquee-track {
  display: flex;
  width: max-content;
  animation: stack-marquee-loop 35s linear infinite;
  will-change: transform;
}

.stack-marquee-container:hover .stack-marquee-track {
  animation-play-state: paused;
}

@keyframes stack-marquee-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.stack-pills-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
  flex-shrink: 0;
}

.stack-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 9999px;
  background-color: #F8FAFC;
  color: #334155;
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1.5px solid #E2E8F0;
  font-family: Satoshi, 'Inter', -apple-system, sans-serif;
}

.stack-pill-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.stack-pill:hover {
  background-color: #F1F5F9;
  border-color: #CBD5E1;
  color: #0F172A;
}

.stack-pill.active {
  background-color: #FFFFFF;
  border-color: #75BF46;
  color: #75BF46;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(117, 191, 70, 0.2);
}

.stack-pill-arrow {
  color: #94A3B8;
  font-size: 16px;
  line-height: 1;
  user-select: none;
}

/* Bottom CTA Row */
.stack-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}

.stack-cta-row .start-project-btn,
.stack-cta-row .hero-btn {
  font-size: 15px;
  padding: 11px 26px;
}

/* Full Width Equal Sized Mobile Action Buttons */
@media (max-width: 640px) {
  .uiux-hero-actions,
  .interop-bottom-action,
  .behind-glass-actions,
  .stack-cta-row,
  .cta-actions {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: stretch !important;
    box-sizing: border-box !important;
  }

  .uiux-hero-actions .start-project-btn,
  .uiux-hero-actions .hero-btn,
  .interop-bottom-action .start-project-btn,
  .interop-bottom-action .hero-btn,
  .behind-glass-actions .start-project-btn,
  .behind-glass-actions .hero-btn,
  .stack-cta-row .start-project-btn,
  .stack-cta-row .hero-btn,
  .cta-actions .start-project-btn,
  .cta-actions .hero-btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    flex: 1 1 100% !important;
  }
}



/* ==========================================================================
   UNIFORM GLOBAL SECTION SPACING (EXACT SAME AS INDEX.HTML)
   ========================================================================== */
body.mobile-app-page .uiux-hero-section,
body.mobile-app-page .uiux-section,
body.mobile-app-page .uiux-why-choose-section,
body.mobile-app-page .why-mobile-section,
body.mobile-app-page .why-approach-section,
body.mobile-app-page .faqs-section,
body.mobile-app-page .cta-section {
  margin-top: 0 !important;
  margin-bottom: 80px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.mobile-app-page .uiux-hero-section {
  padding-top: 24px !important;
  padding-bottom: 0 !important;
  margin-bottom: 80px !important;
}

body.mobile-app-page .uiux-hero-container,
body.mobile-app-page .uiux-container,
body.mobile-app-page .faqs-container,
body.mobile-app-page .cta-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Tablet Uniform Section Spacing (<= 960px) */
@media (max-width: 960px) {
  body.mobile-app-page .uiux-hero-section,
  body.mobile-app-page .uiux-section,
  body.mobile-app-page .uiux-why-choose-section,
  body.mobile-app-page .why-mobile-section,
  body.mobile-app-page .why-approach-section,
  body.mobile-app-page .faqs-section,
  body.mobile-app-page .cta-section {
    margin-top: 0 !important;
    margin-bottom: 56px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.mobile-app-page .uiux-hero-section {
    padding-top: 24px !important;
    padding-bottom: 0 !important;
    margin-bottom: 56px !important;
  }

  body.mobile-app-page .uiux-container {
    padding-left: 24px !important;
    padding-right: 24px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.mobile-app-page .uiux-container,
  body.mobile-app-page .faqs-container,
  body.mobile-app-page .cta-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* Mobile Uniform Section Spacing (<= 480px) */
@media (max-width: 480px) {
  body.mobile-app-page .uiux-hero-section,
  body.mobile-app-page .uiux-section,
  body.mobile-app-page .uiux-why-choose-section,
  body.mobile-app-page .why-mobile-section,
  body.mobile-app-page .why-approach-section,
  body.mobile-app-page .faqs-section,
  body.mobile-app-page .cta-section {
    margin-top: 0 !important;
    margin-bottom: 40px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.mobile-app-page .uiux-hero-section {
    padding-top: 24px !important;
    padding-bottom: 0 !important;
    margin-bottom: 40px !important;
  }

  body.mobile-app-page .uiux-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.mobile-app-page .uiux-container,
  body.mobile-app-page .faqs-container,
  body.mobile-app-page .cta-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}






