/* ─── Shared App Section — used across all pages ─── */
.app-section {
  position: relative;
  background: #063B1F;
  width: 100%;
  padding: 73px 126px;
  display: flex;
  align-items: center;
  gap: 56px;
  overflow: hidden;
}

.app-ellipse {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  overflow: hidden;
}
.app-ellipse img { display: block; width: 100%; height: 100%; object-fit: cover; }
.app-ellipse--1 { width: 284px; height: 284px; left: 578px; top: 244px; opacity: 0.35; }
.app-ellipse--2 { width: 284px; height: 284px; left: -94px; top: -90px; opacity: 0.25; }

.app-content {
  position: relative;
  z-index: 1;
  flex: 0 0 646px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #FFCE1B;
}

.app-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.app-features {
  list-style: none;
  padding: 0;
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.app-feature img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.app-feature span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

.app-badges {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 24px 0 0;
  flex-wrap: wrap;
}

.app-badge-link {
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s, opacity 0.2s;
}
.app-badge-link:hover { transform: translateY(-2px); opacity: 0.9; }
.app-badge-link img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 160px;
}

.app-badge-appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  border-radius: 10px;
  padding: 8px 18px;
  height: 52px;
  box-sizing: border-box;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
}
.appstore-apple { width: 26px; height: 26px; flex-shrink: 0; }
.appstore-text  { display: flex; flex-direction: column; gap: 1px; }
.appstore-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.appstore-main {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}

.app-mockup-wrap {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  height: auto;
  min-width: 340px;
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
}
.mockup-layer  { display: block; object-fit: contain; }
.mockup-iphone { position: relative; width: auto; max-width: 100%; height: auto; }

/* ── Responsive ── */
@media (max-width: 1280px) {
  .app-section  { padding: 73px 60px; gap: 40px; }
  .app-content  { flex: 0 0 480px; }
}

@media (max-width: 900px) {
  .app-section  { flex-direction: column; padding: 64px 24px; gap: 48px; }
  .app-content  { flex: none; width: 100%; }
  .app-title    { font-size: 28px; }
  .app-mockup-wrap { display: none; }
}
