:root {
  --color-header-bg: #E0F7FA;    /* azzurro pastello */
  --color-primary: #003366;      /* blu scuro */
  --color-accent: #FF7F50;       /* corallo */
  --color-bg: #ffffff;           /* bianco */
  --color-text: #333333;         /* testo scuro */
  --font-base: 'Inter', sans-serif;
}

/*──────────────────── Global Reset & Base ────────────────────*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}
a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color 0.3s;
}
a:hover {
  color: var(--color-primary);
  text-decoration: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/*──────────────────── Header & Navigation ────────────────────*/
.site-header {
  background-color: var(--color-header-bg);
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  height: 100px;               /* altezza fissa */
  display: flex;
  align-items: flex-end;       /* nav verso il basso */
}
.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
}

/* logo + titolo */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--color-primary);
}
.logo-wrapper .logo {
  height: 50px;
}
.logo-wrapper .site-title {
  font-size: 2rem;             /* titolo moderato */
  font-weight: 700;
  margin-left: 1rem;
  line-height: 1;
}

/* menu */
.site-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: flex-end;
  height: 100%;
}
.site-nav a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
  line-height: normal;
}
.site-nav a:hover {
  color: var(--color-accent);
}

/*──────────────────── Hero ────────────────────*/
.hero-section {
  background-color: var(--color-bg);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}
.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;                  
  padding: 3rem 0;          /* altro respiro top/bottom */
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}
.hero-content .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  background-color: var(--color-primary);
  color: #fff;
  transition: background-color 0.3s, transform 0.3s;
  margin: 2.5rem 0;
}
.hero-content .btn:hover {
  background-color: #002244;
  transform: translateY(-2px);
}

/* Home-page call-to-action logo */
.home-app-link {
  display: flex;
  justify-content: center;
  margin: 5rem 0;
  padding: 3rem
}
.home-app-link .app-logo {
  height: 80px;
  cursor: pointer;
  transition: transform 0.3s;
}
.home-app-link .app-logo:hover {
  transform: scale(1.05);
}

/*──────────────────── Sections & Titles ────────────────────*/
.main-content,
.app-features,
.app-how-it-works,
.app-screenshots,
.app-pricing {
  padding: 4rem 0;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 3rem;         /* gap titoli→contenuto */
  letter-spacing: 0.5px;
}

/* App-page header logo + title */
.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-header .section-logo {
  height: 80px;                /* doppia dimensione */
}
.section-header .section-title {
  font-size: 2.5rem;           /* principale <h1> */
}

/* sposta “Come Funziona” più in alto su app.html */
.app-how-it-works .section-title {
  margin-top: 3rem;
}

.developing-img {
  display: block;
  margin: 1.5rem auto;
  height: 80px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.step-icon {
  height: 60px;
}

/*──────────────────── Footer ────────────────────*/
.site-footer {
  background-color: var(--color-header-bg);
  color: var(--color-primary);
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.footer-logo-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 4rem 0;          /* spazio generoso sopra e sotto il footer */
}
.footer-logo {
  height: 30px;
}
.footer-logo-title .site-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}
.footer-nav {
  font-size: 0.9rem;
}
.footer-nav a {
  color: var(--color-primary);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: var(--color-accent);
}
.site-footer p {
  font-size: 0.9rem;
}

/*──────────────────── Typography ────────────────────*/
h1, h2, h3, h4 {
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  max-width: 40em;
  line-height: 1.6;
}

ul, ol {
  margin: 0 0 1.5rem 2rem;
}
li {
  margin-bottom: 0.5rem;
}

dl {
  margin-bottom: 1.5rem;
}
dt {
  font-weight: 600;
  margin-top: 1rem;
}
dd {
  margin: 0.25rem 0 0.75rem 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-primary);
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.4;
}

/*──────────────────── Forms ────────────────────*/
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-primary);
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}
.btn:hover {
  background-color: #002244;
  transform: translateY(-2px);
}
.btn-accent {
  background-color: var(--color-primary);
}

/*──────────────────── FAQ Styling ────────────────────*/
.faq-header {
  text-align: center;
  margin: 3rem 0 2rem;
}
.faq-header h2 {
  margin-bottom: 0.5rem;
}
.faq-header p {
  margin: 0 auto 2rem;
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.faq-list details,
.faq-section details {
  background-color: #fafafa;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  transition: background-color 0.3s;
}
.faq-list details:hover,
.faq-section details:hover {
  background-color: #f4f4f4;
}

.faq-list summary,
.faq-section summary {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker,
.faq-section summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::before,
.faq-section summary::before {
  content: '▶';
  display: inline-block;
  margin-right: 0.5rem;
  transition: transform 0.3s;
}
.faq-list details[open] summary::before,
.faq-section details[open] summary::before {
  transform: rotate(90deg);
}

.faq-list p,
.faq-section p {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* App-specific FAQ sizing */
.app-screenshots .faq-list summary {
  font-size: 1.35rem;
}
.app-screenshots .faq-list p {
  font-size: 1.2rem;
}


/* ───────── Header: centratura verticale ───────── */
.site-header {
  height: 80px;
  display: flex;
  align-items: center;    /* centra logo + titolo + nav */
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

/* ───────── App Page: logo + titolo ───────── */
.section-header {
  display: flex;
  align-items: center;     /* allinea icon + testo */
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.section-header .section-logo {
  height: 80px;
}
.section-header .section-title {
  font-size: 2.5rem;
  line-height: 1;
}

/* ───────────── FAQ-page subtitle ───────────── */
.faq-header h2 {
  text-align: center;                /* centra titolo FAQ */
}
.faq-header p {
  text-align: center;                /* centra sottotitolo */
  margin: 1rem auto 3rem;            /* più spazio sotto titolo */
  max-width: 600px;
}


/* ───────── Hero: spacing e layout ───────── */
.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 4rem auto;      /* spinge hero in basso e in alto */
}
.hero-content .btn {
  margin: 5rem 0;          /* doppio dello spazio sopra/sotto */
}

/* raddoppia gap tra P1 e P2 nel nuovo container */
.app-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;        /* spazio sopra P2 + logo */
}

/* P1 e P2 */
.hero-text-1 {
  margin-bottom: 0;        /* già spaziate dal btn */
}
.hero-text-2 {
  margin: 0;
}

/* 3) Immagine decorativa “genio” */
.home-genio.decorative {
  margin-top: 6rem;
transform: scale(2);
}
.home-genio.decorative .genio-img {
  height: 100px;      /* regola se serve */
  opacity: 0.8;
}

/* logo home-intro */
.app-intro .app-logo {
  height: 80px;
  transition: transform 0.3s;
}
.app-intro .app-logo:hover {
  transform: scale(1.05);
}


/* ───── Reset vertical alignment header ───── */
.site-header,
.nav-container {
  align-items: center !important;   /* centra logo e nav */
}

/* i <ul> dei link devono essere centrati */
.site-nav ul {
  align-items: center;
  height: auto;
  padding-top: 2rem;
}

/* ───── Hero: riduci gap tra titolo e CTA ───── */
.hero-content .btn {
  margin: 1rem 0; /* prima era 5rem */
}

/* ───── Hero: riposiziona icon+testo ───── */
.app-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 4rem 0; /* spazio sopra e sotto */
}

/* testo dentro app-intro */
.app-intro p {
  margin: 0;
}

/* ───── Hero: seconda frase più in basso ───── */
.hero-text-2 {
  margin-top: 5rem;
}



/* ───────── Sezione GiftAIdeas ───────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-header .section-logo {
  height: 80px;       /* doppio rispetto ai 40px precedenti */
}
.section-header .section-title {
  font-size: 2.5rem;  /* leggermente più grande */
  margin: 0;
}
.section-header .section-extra-icon {
  height: 60px;       /* regola a piacere */
  opacity: 0.8;
}

/* ───────── Download row ───────── */
.download-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}
.download-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  background-color: var(--color-header-bg);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: background-color 0.2s, transform 0.2s;
}
.download-btn img {
  height: 32px;
}
.download-btn span {
  color: var(--color-primary);
  font-weight: 600;
}
.download-btn:hover {
  background-color: #d0f0fa;
  transform: translateY(-2px);
}


.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.step-icon {
  height: 60px;
}


/* ───────────── Global mobile padding ───────────── */
body, .container, .site-header, .site-footer {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ───────────── Responsive Header & Nav ───────────── */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;           /* permetti al menu di andare a capo */
    justify-content: center;   /* centra logo e nav */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .logo-wrapper {
    margin-bottom: 0.5rem;     /* spazio sotto il logo */
  }
  .site-nav ul {
    flex-wrap: wrap;
    gap: 1rem;                 /* riduci lo spazio orizzontale */
    justify-content: center;
  }
  .site-nav a {
    font-size: 0.9rem;         /* testi un po’ più piccoli */
    line-height: 1.2;
  }
}

/* ───────────── Global mobile content padding ───────────── */
@media (max-width: 768px) {
  .hero-content, 
  .main-content, 
  .app-features, 
  .app-how-it-works, 
  .app-screenshots, 
  .app-pricing, 
  .faq-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ───────────── FAQ & Contact padding ───────────── */
@media (max-width: 768px) {
  .faq-header, .faq-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .faq-header p {
    max-width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* ───────────── Adjust page titles on mobile ───────────── */
@media (max-width: 768px) {
  .section-title, .hero-content h1, .faq-header h2 {
    font-size: 1.5rem;         /* riduci un po’ su mobile */
  }
}



/* ───────── Termini & Condizioni / Privacy ───────── */
/* Assicura che il titolo principale di T&C e Privacy sia sempre più grande dei sottotitoli */
.terms-conditions .section-title,
.privacy-policy .section-title {
  font-size: 2.5rem;       /* h1 più grande */
  margin-top: 2rem;        /* spazio sopra */
  margin-bottom: 2rem;     /* spazio sotto */
}

/* ───────── Footer a tutta larghezza ───────── */
/* Rimuove i bordi bianchi laterali e rende il footer full-width */
.site-footer {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: var(--color-header-bg);
}

/* Elimina eventuali padding orizzontali extra sul container interno */
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem; /* solo padding verticale se serve */
}

/* Colonna passi */
.steps {
  flex: 1 1 250px;
}
.step-item {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.step-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.step-item p {
  margin: 0;
  font-size: 1rem;
}
.step-item.active,
.step-item:hover {
  background-color: var(--color-header-bg);
  color: var(--color-primary);
}

/* ───────── Come funziona: slider a destra e lista a sinistra───────── */
.how-it-works-wrapper {
  display: flex;
  gap: 2rem;
  align-items: stretch;    /* stessa altezza per entrambe le colonne */
}

/* Colonna slider sulla sinistra */
.how-it-works-slider {
  order: 1;                /* prima colonna */
  flex: 0 0 50%;           /* occupa il 60% dello spazio */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: none;
}
.slide.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide img {
  max-height: 100%;
  max-width: 90%;
  width: auto;
  height: auto;
  border-radius: 8px;
}

/* Colonna lista sulla destra */
.steps {
  order: 0;                /* seconda colonna */
  flex: 0 0 40%;           /* occupa il 35% dello spazio */
}
.step-item {
  background: #fafafa;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: background-color .2s;
}
.step-item.active,
.step-item:hover {
  background: var(--color-header-bg);
}
.step-item h3 {
  margin-bottom: .5rem;
  font-size: 1.25rem;
}
.step-item p {
  margin: 0;
  font-size: 1rem;
}



/* ───────── Funzioni Principali: slider a sinistra, lista a destra ───────── */
.features-wrapper {
  display: flex;
  gap: 2rem;
  align-items: stretch;    /* stessa altezza per entrambe le colonne */
}

/* Colonna slider sulla sinistra */
.features-slider {
  order: 0;                /* prima colonna */
  flex: 0 0 50%;           /* occupa il 60% dello spazio */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.feature-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: none;
}
.feature-slide.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-slide img {
  max-height: 100%;
  max-width: 90%;
  width: auto;
  height: auto;
  border-radius: 8px;
}

/* Colonna lista sulla destra */
.features-list {
  order: 1;                /* seconda colonna */
  flex: 0 0 40%;           /* occupa il 35% dello spazio */
}
.feature-item {
  background: #fafafa;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: background-color .2s;
}
.feature-item.active,
.feature-item:hover {
  background: var(--color-header-bg);
}
.feature-item h3 {
  margin-bottom: .5rem;
  font-size: 1.25rem;
}
.feature-item p {
  margin: 0;
  font-size: 1rem;
}

/* ───────────── App Description e Legal Docs ───────────── */
.app-description {
  margin: 3rem 0;
  text-align: center;
}

.features-preview h3 {
  margin: 2rem 0 1rem;
  color: var(--color-primary);
}

.features-preview ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.features-preview li {
  background: #f8f9fa;
  margin: 0.75rem 0;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
  text-align: left;
}

.app-legal {
  margin: 3rem 0;
}

/*──────────────────── Legal Documentation ────────────────────*/
.legal-docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.doc-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: transform 0.3s, box-shadow 0.3s;
}

.doc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.doc-card h3 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.doc-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.doc-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.doc-link.primary {
  background-color: var(--color-primary);
  color: white;
}

.doc-link.primary:hover {
  background-color: #002244;
  transform: translateY(-1px);
}

.doc-link.secondary {
  background-color: var(--color-header-bg);
  color: var(--color-primary);
}

.doc-link.secondary:hover {
  background-color: #d0f0fa;
  transform: translateY(-1px);
}

/*──────────────────── Development Status ────────────────────*/
.development-status {
  margin: 3rem 0;
  text-align: center;
}

.status-info {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #fdcb6e;
  max-width: 500px;
  margin: 0 auto;
}

.status-info p {
  margin: 0.75rem 0;
  max-width: none;
}

.status-info strong {
  color: var(--color-primary);
}

/* ───────────── Sezioni App Multiple ───────────── */
.app-section {
  border-bottom: 2px solid var(--color-header-bg);
  margin-bottom: 4rem;
  padding-bottom: 4rem;
}

.app-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 2rem;
}

/* ───────────── Download buttons migliorati ───────────── */
.download-btn.disabled {
  opacity: 0.6;
  cursor: default;
  background-color: #f5f5f5;
}

.download-btn.disabled:hover {
  background-color: #f5f5f5;
  transform: none;
}

.download-btn span {
  font-size: 0.9rem;
}

/* ───────────── Organizzazione Privacy/Terms per app ───────────── */
.apps-privacy h3,
.apps-terms h3 {
  color: var(--color-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  border-bottom: 1px solid var(--color-header-bg);
  padding-bottom: 0.5rem;
}

.apps-privacy ul,
.apps-terms ul {
  margin-bottom: 2rem;
}

.apps-privacy li,
.apps-terms li {
  margin-bottom: 0.5rem;
}

/*──────────────────── App Sections ────────────────────*/
.app-section {
  border-bottom: 2px solid var(--color-header-bg);
  margin-bottom: 4rem;
  padding-bottom: 4rem;
}

.app-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 2rem;
}

/*──────────────────── Pricing Section ────────────────────*/
.pricing-next-plans {
  margin: 3rem 0;
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
}

/*──────────────────── Lightbox Overlay ────────────────────*/
#img-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
}
#img-overlay img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  border-radius: 8px;
  cursor: default;
}
#img-overlay::after {
  content: '✕';
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff;
  pointer-events: none;
}

/*──────────────────── Mobile Responsive ────────────────────*/
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  .logo-wrapper {
    margin-bottom: 0.5rem;
  }
  
  .site-nav ul {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .site-nav a {
    font-size: 0.9rem;
    line-height: 1.2;
  }
  
  .hero-content,
  .main-content,
  .app-features,
  .app-how-it-works,
  .app-screenshots,
  .app-pricing,
  .faq-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Home-page call-to-action containers */
.home-app-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 4rem 0;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  transition: background-color 0.3s;
}
.home-app-link:hover {
  background: var(--color-header-bg);
}
.home-app-link .app-logo {
  height: 80px;
  cursor: pointer;
  transition: transform 0.3s;
}
.home-app-link .app-logo:hover {
  transform: scale(1.05);
}
.home-app-link p {
  margin: 0;
  flex: 1;
  font-size: 1.1rem;
  text-align: left;
}
  
  .section-title,
  .hero-content h1,
  .faq-header h2 {
    font-size: 1.8rem;
  }
  
  .how-it-works-wrapper,
  .features-wrapper {
    flex-direction: column;
  }
  
  .how-it-works-slider,
  .features-slider {
    order: 0;
    flex: none;
    min-height: 300px;
  }
  
  .steps,
  .features-list {
    order: 1;
    flex: none;
  }
  
  .download-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .legal-docs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .doc-card {
    padding: 1.5rem;
  }
  
  .status-info {
    padding: 1.5rem;
    margin: 0 1rem;
  }
}

/*──────────────────── App Description Centering ────────────────────*/
.app-description p,
.pricing-next-plans p {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 600px;
}