﻿:root {
  --mobile-app-blue: #0346ab;
  --mobile-app-dark: #03275a;
  --mobile-app-sky: #27aae1;
  --mobile-app-soft-sky: #dff5fb;
  --mobile-app-phone-border: #e3f0f6;

  /* Vertical spacing applied to padding-top of each section on mobile (≤899px).
     padding-bottom is forced to 0 so the gap never doubles up. Tweak here. */
  --mobile-app-section-gap: 75px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--mobile-app-dark);
  font-family: "proxima-nova", "Proxima Nova", Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Long Greek words wrap cleanly on narrow viewports */
.mobile-app-page h1,
.mobile-app-page h2,
.mobile-app-page h3,
.mobile-app-page p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.mobile-app-page {
  min-height: 100vh;
  overflow: hidden;
  background: #ffffff;
}

.mobile-app-section {
  position: relative;
}

.mobile-app-hero {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 101px;
  min-height: 848px;
  overflow: hidden;
  background: #ffffff;
}

.mobile-app-hero__copy {
  position: relative;
  z-index: 2;
  flex: 1 1 46%;
  min-width: 0;
  padding: 24px 40px 24px min(11.1vw, 213px);
}

.mobile-app-hero__text {
  max-width: 600px;
  margin: 0 0 57px;
}

.mobile-app-hero__title {
  width: 600px;
  max-width: 600px;
  margin: 0 0 24px;
  color: var(--mobile-app-blue);
  font-size: 55.726px;
  font-weight: 400;
  line-height: 66px;
  letter-spacing: 0;
}

.mobile-app-hero__intro {
  max-width: 558px;
  margin: 0;
  color: var(--mobile-app-dark);
  font-size: 22px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0;
}

/* The Razor partial splits the intro TextArea on blank lines and emits
   one <p> per paragraph inside .mobile-app-hero__intro. Visually separate
   them with a comfortable bottom margin; the last paragraph has none. */
.mobile-app-hero__intro p {
  margin: 0 0 18px;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.mobile-app-hero__intro p:last-child {
  margin-bottom: 0;
}

.mobile-app-download {
  max-width: 426px;
}

.mobile-app-download__text {
  min-height: 74px;
  margin: 0 0 11px;
  color: var(--mobile-app-blue);
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.mobile-app-download__text strong {
  font-weight: 700;
  line-height: 33px;
}

.mobile-app-store-list {
  display: flex;
  align-items: center;
  gap: 23px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-app-store-list a {
  display: block;
  width: 188px;
  height: 55px;
  border-radius: 6px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-app-store-list a:hover,
.mobile-app-store-list a:focus-visible {
  transform: translateY(-2px);
  opacity: 0.9;
  outline: none;
}

.mobile-app-store-list img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-app-hero__media {
  position: relative;
  flex: 0 0 min(54.22vw, 1041px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 720px;
  color: var(--mobile-app-blue);
}

.mobile-app-hero__visual {
  display: block;
  width: 100%;
  max-width: 1041px;
  height: auto;
  position: relative;
  z-index: 3;
}

/* ── Floating circular badges (vertical column, left of phone) ── */
.mobile-app-hero__badges {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 26px;
  pointer-events: none;
}

.mobile-app-hero__badge {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-app-hero__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Slight horizontal stagger for visual interest */
.mobile-app-hero__badge--1 { transform: translateX(0); }
.mobile-app-hero__badge--2 { transform: translateX(-22px); }
.mobile-app-hero__badge--3 { transform: translateX(8px); }

/* ── Floating shields on the right edge ── */
.mobile-app-hero__shields {
  position: absolute;
  z-index: 4;
  top: 14%;
  right: 12%;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
  width: 200px;
  height: 70%;
}

.mobile-app-hero__shield {
  position: absolute;
  width: 46px;
  height: 52px;
}

.mobile-app-hero__shield img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mobile-app-hero__shield--1 { top:  0%; right: 30%; }
.mobile-app-hero__shield--2 { top: 26%; right:  0%; }
.mobile-app-hero__shield--3 { top: 56%; right: 36%; }
.mobile-app-hero__shield--4 { top: 80%; right:  6%; }

@media (max-width: 1399px) {
  .mobile-app-hero__copy {
    padding-left: 80px;
  }

  .mobile-app-hero__title {
    font-size: 48px;
    line-height: 58px;
  }
}

@media (max-width: 1199px) {
  .mobile-app-hero {
    gap: 48px;
    min-height: 720px;
  }

  .mobile-app-hero__copy {
    flex-basis: 48%;
    padding-left: 48px;
    padding-right: 24px;
  }

  .mobile-app-hero__title {
    width: auto;
    font-size: 42px;
    line-height: 50px;
  }

  .mobile-app-hero__intro,
  .mobile-app-download__text {
    font-size: 19px;
    line-height: 28px;
  }

  .mobile-app-hero__media {
    flex-basis: 52%;
    min-height: 600px;
  }

  .mobile-app-hero__visual {
    max-width: 820px;
  }

  .mobile-app-hero__badges {
    gap: 18px;
    left: 4%;
  }

  .mobile-app-hero__badge {
    width: 58px;
    height: 58px;
  }

  .mobile-app-hero__shields {
    width: 160px;
  }

  .mobile-app-hero__shield {
    width: 38px;
    height: 44px;
  }
}

@media (max-width: 899px) {
  .mobile-app-hero {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 0;
  }

  /* Visual first, copy second on mobile */
  .mobile-app-hero__media {
    order: 1;
  }

  .mobile-app-hero__copy {
    order: 2;
    width: 100%;
    max-width: none;
    padding: 32px 22px 56px;
  }

  .mobile-app-hero__text {
    width: 100%;
    max-width: 560px;
    margin: 0 auto 34px;
  }

  .mobile-app-hero__title {
    width: 100%;
    max-width: 100%;
    font-size: 34px;
    line-height: 41px;
  }

  .mobile-app-hero__intro {
    width: 100%;
    max-width: 100%;
    font-size: 17px;
    line-height: 26px;
  }

  .mobile-app-download {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .mobile-app-download__text {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    font-size: 18px;
    line-height: 25px;
  }

  .mobile-app-store-list {
    gap: 14px;
    flex-wrap: wrap;
  }

  .mobile-app-store-list a {
    width: 150px;
    height: 44px;
  }

  .mobile-app-hero__media {
    width: 100%;
    flex: 0 0 auto;
    max-width: 560px;
    margin: 0 auto;
    min-height: 0;
  }

  /* Mobile: hide editor-picked decorative icons — show only the phone visual. */
  .mobile-app-hero__badges,
  .mobile-app-hero__shields {
    display: none !important;
  }

  .mobile-app-hero__visual {
    width: 100%;
    max-width: 560px;
  }
}

@media (max-width: 439px) {
  .mobile-app-hero__copy {
    padding: 42px 18px 18px;
  }

  .mobile-app-hero__title {
    font-size: 28px;
    line-height: 36px;
  }

  .mobile-app-store-list a {
    width: 144px;
    height: 44px;
  }

  .mobile-app-hero__media {
    max-width: 420px;
  }

  .mobile-app-hero__visual {
    max-width: 400px;
  }
}

/* ==========================================================================
   Section 02 — Features ("Τι προσφέρει η εφαρμογή")
   Centered heading + two-column body (phone visual left, 4 features right).
   ========================================================================== */

.mobile-app-features {
  padding: 100px min(7vw, 80px) 110px;
  background: #ffffff;
}

.mobile-app-features__heading {
  max-width: 986px;
  margin: 0 auto 70px;
  text-align: center;
}

.mobile-app-features__title {
  margin: 0 0 19px;
  color: var(--mobile-app-blue);
  font-size: 36px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}

.mobile-app-features__intro {
  margin: 0;
  color: var(--mobile-app-dark);
  font-size: 22px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0;
}

.mobile-app-features__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 124px;
  max-width: 1494px;
  margin: 0 auto;
}

/* --- Left media: composite Figma export (phone + all decorations baked in) */
.mobile-app-features__media {
  flex: 0 0 auto;
  width: 568px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-app-features__visual {
  display: block;
  width: 100%;
  max-width: 568px;
  height: auto;
  filter: drop-shadow(0 22px 60px rgba(3, 78, 162, 0.18));
}

/* --- Right list of 4 features ------------------------------------------ */
.mobile-app-features__list {
  flex: 0 1 623px;
  max-width: 623px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mobile-app-features__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.mobile-app-features__icon {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-app-features__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.mobile-app-features__item-content {
  flex: 1 1 auto;
  min-width: 0;
}

.mobile-app-features__item-title {
  margin: 0 0 8px;
  color: var(--mobile-app-blue);
  font-size: 26px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 0;
}

.mobile-app-features__item-desc {
  margin: 0;
  color: var(--mobile-app-dark);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 1399px) {
  .mobile-app-features {
    padding: 90px 64px 100px;
  }

  .mobile-app-features__body {
    gap: 80px;
  }
}

@media (max-width: 1199px) {
  .mobile-app-features {
    padding: 80px 48px 90px;
  }

  .mobile-app-features__title {
    font-size: 32px;
    line-height: 42px;
  }

  .mobile-app-features__intro {
    font-size: 19px;
    line-height: 28px;
  }

  .mobile-app-features__body {
    gap: 56px;
  }

  .mobile-app-features__media {
    width: 440px;
  }

  .mobile-app-features__list {
    gap: 32px;
  }

  .mobile-app-features__item {
    gap: 20px;
  }

  .mobile-app-features__item-title {
    font-size: 22px;
    line-height: 28px;
  }

  .mobile-app-features__item-desc {
    font-size: 16px;
    line-height: 25px;
  }
}

@media (max-width: 899px) {
  .mobile-app-features {
    padding: 48px 22px 48px;
  }

  .mobile-app-features__heading {
    margin-bottom: 32px;
  }

  .mobile-app-features__title {
    font-size: 28px;
    line-height: 36px;
  }

  .mobile-app-features__intro {
    font-size: 17px;
    line-height: 26px;
  }

  .mobile-app-features__body {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .mobile-app-features__media {
    flex: 0 0 auto;
    width: 100%;
    max-width: 440px;
  }

  .mobile-app-features__list {
    width: 100%;
    max-width: 560px;
    gap: 28px;
  }

  .mobile-app-features__item {
    gap: 16px;
  }

  .mobile-app-features__icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }

  .mobile-app-features__item-title {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 439px) {
  .mobile-app-features {
    padding: 36px 18px 36px;
  }

  .mobile-app-features__title {
    font-size: 24px;
    line-height: 31px;
  }

  .mobile-app-features__intro {
    font-size: 16px;
    line-height: 24px;
  }

  .mobile-app-features__media {
    max-width: 360px;
  }

  .mobile-app-features__icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .mobile-app-features__item-title {
    font-size: 18px;
    line-height: 24px;
  }

  .mobile-app-features__item-desc {
    font-size: 15px;
    line-height: 23px;
  }
}

/* ==========================================================================
   Section 03 — Goals ("Βάλτε στόχο υγιείς συμπεριφορές")
   Centered heading + composite orbit visual (icons + central badge group).
   ========================================================================== */

.mobile-app-goals {
  padding: 80px min(7vw, 80px) 90px;
  background: var(--mobile-app-soft-sky);
  text-align: center;
}

.mobile-app-goals__heading {
  max-width: 986px;
  margin: 0 auto 56px;
}

.mobile-app-goals__title {
  margin: 0 0 19px;
  color: var(--mobile-app-blue);
  font-size: 36px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}

.mobile-app-goals__intro {
  margin: 0;
  color: var(--mobile-app-dark);
  font-size: 22px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0;
}

.mobile-app-goals__visual {
  display: block;
  width: 100%;
  max-width: 1197px;
  height: auto;
  margin: 0 auto;
}

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 1399px) {
  .mobile-app-goals {
    padding: 72px 64px 80px;
  }
}

@media (max-width: 1199px) {
  .mobile-app-goals {
    padding: 64px 48px 72px;
  }

  .mobile-app-goals__title {
    font-size: 32px;
    line-height: 42px;
  }

  .mobile-app-goals__intro {
    font-size: 19px;
    line-height: 28px;
  }

  .mobile-app-goals__heading {
    margin-bottom: 44px;
  }
}

@media (max-width: 899px) {
  .mobile-app-goals {
    padding: 48px 22px 48px;
  }

  .mobile-app-goals__heading {
    margin-bottom: 28px;
  }

  .mobile-app-goals__title {
    font-size: 28px;
    line-height: 36px;
  }

  .mobile-app-goals__intro {
    font-size: 17px;
    line-height: 26px;
  }
}

@media (max-width: 439px) {
  .mobile-app-goals {
    padding: 36px 18px 36px;
  }

  .mobile-app-goals__title {
    font-size: 24px;
    line-height: 31px;
  }

  .mobile-app-goals__intro {
    font-size: 16px;
    line-height: 24px;
  }
}

/* ==========================================================================
   Section 04 — Ally ("Ένας σύμμαχος υγείας, δίπλα σας")
   Two-column: text + checklist (left), photo + decorations composite (right).
   ========================================================================== */

.mobile-app-ally {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 132px;
  padding: 90px min(7vw, 80px) 90px;
  background: #ffffff;
}

.mobile-app-ally__copy {
  flex: 0 1 623px;
  max-width: 623px;
  min-width: 0;
}

.mobile-app-ally__title {
  margin: 0 0 28px;
  color: var(--mobile-app-blue);
  font-size: 36px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}

.mobile-app-ally__intro {
  margin: 0 0 38px;
  color: var(--mobile-app-dark);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.mobile-app-ally__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.mobile-app-ally__item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.mobile-app-ally__check {
  flex: 0 0 35px;
  width: 35px;
  height: 34px;
  display: block;
  margin-top: 2px;
}

.mobile-app-ally__item-text {
  flex: 1 1 auto;
  color: var(--mobile-app-dark);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0;
}

.mobile-app-ally__visual {
  flex: 0 0 auto;
  display: block;
  width: 100%;
  max-width: 739px;
  height: auto;
}

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 1399px) {
  .mobile-app-ally {
    gap: 80px;
    padding: 80px 64px;
  }

  .mobile-app-ally__visual {
    max-width: 600px;
  }
}

@media (max-width: 1199px) {
  .mobile-app-ally {
    gap: 56px;
    padding: 72px 48px;
  }

  .mobile-app-ally__title {
    font-size: 32px;
    line-height: 42px;
  }

  .mobile-app-ally__intro {
    font-size: 17px;
    line-height: 26px;
  }

  .mobile-app-ally__item-text {
    font-size: 16px;
    line-height: 25px;
  }

  .mobile-app-ally__visual {
    max-width: 500px;
  }
}

@media (max-width: 899px) {
  .mobile-app-ally {
    flex-direction: column;
    gap: 32px;
    padding: 48px 22px;
  }

  .mobile-app-ally__copy {
    flex: 1 1 auto;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .mobile-app-ally__title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 22px;
  }

  .mobile-app-ally__intro {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 30px;
  }

  .mobile-app-ally__list {
    gap: 22px;
  }

  .mobile-app-ally__item {
    gap: 16px;
  }

  .mobile-app-ally__check {
    flex-basis: 30px;
    width: 30px;
    height: 29px;
  }

  .mobile-app-ally__visual {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 439px) {
  .mobile-app-ally {
    padding: 36px 18px;
    gap: 28px;
  }

  .mobile-app-ally__title {
    font-size: 24px;
    line-height: 31px;
  }

  .mobile-app-ally__intro {
    font-size: 16px;
    line-height: 24px;
  }

  .mobile-app-ally__item-text {
    font-size: 15px;
    line-height: 23px;
  }

  .mobile-app-ally__check {
    flex-basis: 26px;
    width: 26px;
    height: 25px;
  }
}

/* ==========================================================================
   Section 05 — FAQ ("Συχνές Ερωτήσεις")
   Two-column: megaphone illustration (left), heading + accordion (right).
   Accordion is JS-driven (one open at a time, animated max-height).
   ========================================================================== */

.mobile-app-faq {
  padding: 90px min(7vw, 80px) 90px;
  background: #ffffff;
}

.mobile-app-faq__inner {
  max-width: 1494px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 132px;
}

.mobile-app-faq__visual {
  flex: 0 0 auto;
  display: block;
  width: 100%;
  max-width: 415px;
  height: auto;
}

.mobile-app-faq__content {
  flex: 0 1 623px;
  max-width: 623px;
  min-width: 0;
}

.mobile-app-faq__title {
  margin: 0 0 32px;
  color: var(--mobile-app-blue);
  font-size: 36px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}

.mobile-app-faq__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(3, 39, 90, 0.12);
}

.mobile-app-faq__item {
  border-bottom: 1px solid rgba(3, 39, 90, 0.12);
}

.mobile-app-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 30px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: var(--mobile-app-blue);
  transition: color 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-app-faq__trigger:hover,
.mobile-app-faq__trigger:focus-visible {
  color: var(--mobile-app-blue);
  outline: none;
}

.mobile-app-faq__trigger:focus-visible {
  outline: 2px solid var(--mobile-app-sky);
  outline-offset: 4px;
  border-radius: 2px;
}

.mobile-app-faq__item.is-open .mobile-app-faq__question {
  font-weight: 600;
}

.mobile-app-faq__question {
  flex: 1 1 auto;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

/* +/- toggle drawn entirely in CSS via the icon span */
.mobile-app-faq__icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: inline-block;
  color: var(--mobile-app-blue);
}

.mobile-app-faq__icon::before,
.mobile-app-faq__icon::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-app-faq__icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

.mobile-app-faq__icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}

.mobile-app-faq__item.is-open .mobile-app-faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* JS controls inline max-height/opacity. We just provide the transition. */
.mobile-app-faq__panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 280ms ease, opacity 200ms ease;
}

/* Failsafe: when the JS marks the panel hidden after closing, fully remove
   it from layout so it cannot contribute any leftover height. */
.mobile-app-faq__panel[hidden] {
  display: none !important;
}

.mobile-app-faq__panel p {
  margin: 0;
  padding: 0 0 30px 0;
  max-width: 556px;
  color: var(--mobile-app-dark);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
}

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 1399px) {
  .mobile-app-faq {
    padding: 80px 64px;
  }

  .mobile-app-faq__inner {
    gap: 80px;
  }
}

@media (max-width: 1199px) {
  .mobile-app-faq {
    padding: 72px 48px;
  }

  .mobile-app-faq__inner {
    gap: 56px;
  }

  .mobile-app-faq__visual {
    max-width: 360px;
  }

  .mobile-app-faq__title {
    font-size: 32px;
    line-height: 42px;
  }

  .mobile-app-faq__question {
    font-size: 17px;
  }

  .mobile-app-faq__panel p {
    font-size: 16px;
  }
}

@media (max-width: 899px) {
  .mobile-app-faq {
    padding: 48px 22px;
  }

  .mobile-app-faq__inner {
    flex-direction: column;
    gap: 28px;
  }

  /* On mobile the FAQ list is more useful first; visual goes below */
  .mobile-app-faq__visual {
    order: 2;
    max-width: 320px;
    margin: 0 auto;
  }

  .mobile-app-faq__content {
    order: 1;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .mobile-app-faq__title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 24px;
  }

  .mobile-app-faq__trigger {
    padding: 20px 0;
    gap: 16px;
  }

  .mobile-app-faq__icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}

@media (max-width: 439px) {
  .mobile-app-faq {
    padding: 36px 18px;
  }

  .mobile-app-faq__title {
    font-size: 24px;
    line-height: 31px;
  }

  .mobile-app-faq__question {
    font-size: 16px;
  }

  .mobile-app-faq__panel p {
    font-size: 15px;
    padding-bottom: 18px;
  }
}

/* ==========================================================================
   Section 06 — CTA ("Κατέβασε την εφαρμογή και ξεκίνα το ταξίδι")
   Two-column: heading + intro + store badges (left), dual-phone composite (right).
   ========================================================================== */

.mobile-app-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 90px min(7vw, 80px) 90px;
  background: #ffffff;
}

.mobile-app-cta__copy {
  flex: 0 1 623px;
  max-width: 623px;
  min-width: 0;
}

.mobile-app-cta__title {
  margin: 0 0 24px;
  color: var(--mobile-app-blue);
  font-size: 38px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}

.mobile-app-cta__intro {
  margin: 0 0 32px;
  color: var(--mobile-app-dark);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}

.mobile-app-cta__store-list {
  display: flex;
  align-items: center;
  gap: 23px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.mobile-app-cta__store-list a {
  display: block;
  width: 188px;
  height: 55px;
  border-radius: 6px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-app-cta__store-list a:hover,
.mobile-app-cta__store-list a:focus-visible {
  transform: translateY(-2px);
  opacity: 0.9;
  outline: none;
}

.mobile-app-cta__store-list img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-app-cta__visual {
  flex: 0 0 auto;
  display: block;
  width: 100%;
  max-width: 758px;
  height: auto;
}

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 1399px) {
  .mobile-app-cta {
    gap: 64px;
    padding: 80px 64px;
  }

  .mobile-app-cta__title {
    font-size: 34px;
    line-height: 44px;
  }

  .mobile-app-cta__visual {
    max-width: 620px;
  }
}

@media (max-width: 1199px) {
  .mobile-app-cta {
    gap: 48px;
    padding: 72px 48px;
  }

  .mobile-app-cta__title {
    font-size: 30px;
    line-height: 40px;
  }

  .mobile-app-cta__intro {
    font-size: 18px;
    line-height: 28px;
  }

  .mobile-app-cta__visual {
    max-width: 520px;
  }
}

@media (max-width: 899px) {
  .mobile-app-cta {
    flex-direction: column;
    gap: 32px;
    padding: 48px 22px 48px;
  }

  .mobile-app-cta__copy {
    flex: 1 1 auto;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }

  .mobile-app-cta__title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 18px;
  }

  .mobile-app-cta__intro {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 26px;
  }

  .mobile-app-cta__store-list {
    justify-content: center;
    gap: 14px;
  }

  .mobile-app-cta__store-list a {
    width: 158px;
    height: 46px;
  }

  .mobile-app-cta__visual {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 439px) {
  .mobile-app-cta {
    padding: 36px 18px 36px;
    gap: 28px;
  }

  .mobile-app-cta__title {
    font-size: 22px;
    line-height: 30px;
  }

  .mobile-app-cta__intro {
    font-size: 16px;
    line-height: 24px;
  }

  .mobile-app-cta__store-list a {
    width: 144px;
    height: 44px;
  }
}

/* ==========================================================================
   Global mobile section spacing — uses --mobile-app-section-gap variable
   --------------------------------------------------------------------------
   Each section gets ONLY a top padding equal to --mobile-app-section-gap.
   Bottom padding is forced to 0 so adjacent sections never double-stack
   their spacing — the visible gap between two sections is always exactly
   --mobile-app-section-gap.
   ========================================================================== */
@media (max-width: 899px) {
  .mobile-app-features,
  .mobile-app-goals,
  .mobile-app-ally,
  .mobile-app-faq,
  .mobile-app-cta {
    padding-top: var(--mobile-app-section-gap);
    padding-bottom: 0;
  }

  /* Hero copy bottom is also zeroed since hero is followed by features
     which now provides all 75px of the gap from its own padding-top. */
  .mobile-app-hero__copy {
    padding-bottom: 0;
  }
}

/* ==========================================================================
   Mobile-friendly polish — applies across all sections
   --------------------------------------------------------------------------
   Catches edge cases: tablet portrait, image rendering, body scroll lock
   prevention, hover-on-touch fix.
   ========================================================================== */

/* Disable hover-lift on touch devices so it doesn't get stuck after a tap */
@media (hover: none) {
  .mobile-app-store-list a:hover,
  .mobile-app-cta__store-list a:hover {
    transform: none;
    opacity: 1;
  }
}

/* Sharper rendering on the composite Figma exports */
.mobile-app-hero__visual,
.mobile-app-features__visual,
.mobile-app-goals__visual,
.mobile-app-ally__visual,
.mobile-app-faq__visual,
.mobile-app-cta__visual {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Tablet portrait (600-899px): stack already happens at 899px,
   but loosen padding and tighten the gap-after-stack so things breathe better. */
@media (min-width: 600px) and (max-width: 899px) {
  .mobile-app-hero__copy,
  .mobile-app-features,
  .mobile-app-goals,
  .mobile-app-ally,
  .mobile-app-faq,
  .mobile-app-cta {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Anything narrower than 380px (small phones / e.g. iPhone SE in old portrait):
   shrink store badges and outer padding a touch more. */
@media (max-width: 379px) {
  .mobile-app-hero__copy,
  .mobile-app-features,
  .mobile-app-goals,
  .mobile-app-ally,
  .mobile-app-faq,
  .mobile-app-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mobile-app-store-list a,
  .mobile-app-cta__store-list a {
    width: 138px;
    height: 44px;
  }

  .mobile-app-hero__title {
    font-size: 26px;
    line-height: 34px;
  }
}
