/* style/mobile-app.css */
.page-mobile-app {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-mobile-app__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-mobile-app__section {
  padding: 60px 0;
}

.page-mobile-app__section-title {
  font-size: 2.5em;
  color: #FFD36B; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-mobile-app__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
}

.page-mobile-app__card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Primary color for card titles */
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Hero Section */
.page-mobile-app__hero-section {
  background: linear-gradient(135deg, #0A0A0A 0%, #111111 100%); /* Dark background */
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page-mobile-app__hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-mobile-app__hero-image-container {
  margin-bottom: 30px;
  width: 100%;
  max-width: 1200px; /* Ensure image container respects max width */
}

.page-mobile-app__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-mobile-app__hero-text-content {
  max-width: 800px;
  text-align: center;
}

.page-mobile-app__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  color: #FFD36B; /* Auxiliary color for main title */
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
}

.page-mobile-app__hero-description {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-mobile-app__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-mobile-app__btn-primary,
.page-mobile-app__btn-secondary,
.page-mobile-app__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Ensure long words break */
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-mobile-app__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for bright button */
  border: none;
}

.page-mobile-app__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-mobile-app__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Primary color for text */
  border: 2px solid #3A2A12; /* Border */
}

.page-mobile-app__btn-secondary:hover {
  background: #F2C14E; /* Primary color */
  color: #111111; /* Dark text for bright button */
}

.page-mobile-app__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  background: #F2C14E; /* Primary color */
  color: #111111;
  border: none;
}

.page-mobile-app__btn-small:hover {
  filter: brightness(1.1);
}

/* Benefits Section */
.page-mobile-app__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-mobile-app__benefit-card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-mobile-app__benefit-card:hover {
  transform: translateY(-5px);
}

.page-mobile-app__benefit-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 5px;
}

/* Download Steps */
.page-mobile-app__download-steps .page-mobile-app__section-title,
.page-mobile-app__download-steps .page-mobile-app__section-description {
  color: #FFF6D6;
}

.page-mobile-app__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}