/* ============================================
   LANDING PAGE — Dott. Federico Rossi
   Osteopata Milano
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0D9488;
  --primary-dark: #0F766E;
  --primary-light: #CCFBF1;
  --primary-bg: #F0FDFA;
  --text: #0F172A;
  --text-secondary: #475569;
  --text-light: #64748B;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --border: #E2E8F0;
  --star: #F59E0B;
  --success: #10B981;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 6px rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 25px rgba(0,0,0,.08), 0 4px 10px rgba(0,0,0,.04);
  --transition: .25s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); }
p  { font-size: 1rem; }

.subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.5;
}

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 720px; margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }

@media (min-width: 768px) {
  .container { padding: 0 32px; }
  section { padding: 80px 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.3;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13,148,136,.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,148,136,.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary-bg);
}

.btn-white {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   1. HERO
   ============================================ */
.hero {
  padding: 48px 0 40px;
  background: linear-gradient(165deg, var(--primary-bg) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content { text-align: center; position: relative; z-index: 1; }

.hero-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
  margin: 0 auto 24px;
}

.hero h1 { margin-bottom: 16px; }
.hero h1 span { color: var(--primary); }
.hero .subtitle { margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }

@media (min-width: 768px) {
  .hero { padding: 64px 0 56px; }
  .hero-photo { width: 150px; height: 150px; }
}

/* ============================================
   2. TRUST BAR
   ============================================ */
.trust-bar {
  padding: 16px 0;
  background: var(--primary-dark);
  color: #fff;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .85rem;
  font-weight: 500;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.trust-stars { color: var(--star); font-size: .9rem; letter-spacing: 1px; }

@media (max-width: 600px) {
  .trust-bar-inner {
    gap: 12px 24px;
    font-size: .78rem;
    justify-content: center;
  }
}

/* ============================================
   3. PROBLEMA
   ============================================ */
.problema { background: var(--bg); }

.problema-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problema-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  font-size: .95rem;
  line-height: 1.5;
}

.problema-item .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .75rem;
  margin-top: 1px;
}

.problema-closing {
  margin-top: 24px;
  padding: 20px;
  background: var(--primary-bg);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.5;
  text-align: center;
}

/* ============================================
   4. SOLUZIONE
   ============================================ */
.soluzione { background: var(--bg-alt); }

.steps-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.step-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
}

.step-card h3 { margin-bottom: 8px; }
.step-card p { color: var(--text-secondary); font-size: .93rem; }

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .step-card { min-height: 280px; }
}

/* ============================================
   5. RISULTATI (Carousel)
   ============================================ */
.risultati { background: var(--bg); }

.risultati-header {
  text-align: center;
  margin-bottom: 12px;
}

.risultati-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 16px 0 32px;
  flex-wrap: wrap;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary-bg);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 24px;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 280px;
  height: 440px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #1B2A4A;
  transition: transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide:hover { transform: scale(1.02); }
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

.carousel-nav {
  display: none;
}

@media (min-width: 768px) {
  .carousel-slide { flex: 0 0 320px; height: 500px; }
  .carousel-nav {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: var(--shadow);
    font-size: 1rem;
    color: var(--text);
    transition: all var(--transition);
  }
  .carousel-nav:hover { background: var(--primary-bg); }
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
}

.carousel-hint {
  text-align: center;
  font-size: .82rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* ============================================
   6 / 11. FORM
   ============================================ */
.form-section { background: var(--bg-alt); }
.form-section:last-of-type { background: var(--primary-bg); }

.form-box {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-lg);
  max-width: 560px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 28px;
}

.form-header h2 { margin-bottom: 8px; }
.form-header p { color: var(--text-secondary); font-size: .93rem; }

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group label .optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: .8rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,148,136,.15);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.checkbox-pill {
  position: relative;
}

.checkbox-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-pill span {
  display: inline-block;
  padding: 8px 16px;
  font-size: .88rem;
  border: 2px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
  color: var(--text-secondary);
}

.checkbox-pill input:checked + span {
  background: var(--primary-bg);
  border-color: var(--primary);
  color: var(--primary-dark);
  font-weight: 600;
}

.checkbox-pill span:hover {
  border-color: var(--primary);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-footer {
  text-align: center;
  margin-top: 20px;
}

.scarcity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: #FEF3C7;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  color: #92400E;
  margin-bottom: 16px;
}

.privacy-note {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 12px;
}

.privacy-note a { text-decoration: underline; }

/* Visit info below form */
.visit-info {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.visit-info h3 {
  font-size: 1rem;
  margin-bottom: 14px;
  text-align: center;
}

.visit-phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.visit-phase {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-secondary);
  padding: 8px 12px;
  background: var(--bg-alt);
  border-radius: 8px;
}

.visit-phase .phase-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--primary);
  font-weight: 700;
}

.visit-extras {
  margin-top: 12px;
  text-align: center;
  font-size: .82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.visit-extras strong { color: var(--text); }

.visit-locations {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: var(--primary-bg);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* ============================================
   7. CHI SONO
   ============================================ */
.chi-sono { background: var(--bg); }

.chi-sono-content {
  text-align: center;
}

.chi-sono-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--primary-bg);
  box-shadow: var(--shadow);
}

.chi-sono-content h2 { margin-bottom: 4px; }
.chi-sono-role {
  color: var(--primary);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 16px;
}

.chi-sono-text {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 24px;
  font-size: .95rem;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.credential {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
}

.credential .cred-icon { font-size: .9rem; }

/* ============================================
   8. TESTIMONIANZE
   ============================================ */
.testimonianze { background: var(--bg-alt); }

.testimonianze-header { text-align: center; margin-bottom: 32px; }

.miodottore-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--bg);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-top: 16px;
  font-size: .88rem;
  font-weight: 600;
}

.miodottore-badge .stars { color: var(--star); }

.reviews-featured {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.review-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.review-name { font-weight: 700; font-size: .95rem; }
.review-verified {
  font-size: .72rem;
  color: var(--success);
  font-weight: 600;
}
.review-stars { color: var(--star); font-size: .85rem; margin-left: auto; }

.review-text {
  font-size: .93rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

/* Scrolling marquee reviews */
.reviews-marquee {
  overflow: hidden;
  position: relative;
  padding: 4px 0;
}

.reviews-marquee::before,
.reviews-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
.reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-alt), transparent);
}
.reviews-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-alt), transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  animation: marquee 35s linear infinite;
  width: max-content;
}

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

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

.mini-review {
  flex-shrink: 0;
  padding: 14px 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 320px;
  font-size: .84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.mini-review strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
  font-size: .82rem;
}

.mini-review .mini-stars {
  color: var(--star);
  font-size: .75rem;
  margin-bottom: 6px;
  display: block;
}

/* ============================================
   9. PRIMA VISITA
   ============================================ */
.prima-visita { background: var(--bg); }

.prima-visita-header { text-align: center; margin-bottom: 8px; }

.durata-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--primary-bg);
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 12px auto 32px;
}

.fasi-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.fase-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  align-items: flex-start;
}

.fase-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  margin-top: 2px;
}

.fase-content h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.fase-content p {
  font-size: .88rem;
  color: var(--text-secondary);
}

.visita-closing {
  text-align: center;
  padding: 20px;
  background: var(--primary-bg);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.visita-closing p {
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
}

.visita-locations {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.visita-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--bg);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary-dark);
}

/* ============================================
   10. COME FUNZIONA
   ============================================ */
.come-funziona { background: var(--bg-alt); }
.come-funziona-header { text-align: center; margin-bottom: 36px; }

.funziona-steps {
  display: grid;
  gap: 20px;
  position: relative;
}

.funziona-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.funziona-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.funziona-text h3 { margin-bottom: 4px; }
.funziona-text p { font-size: .9rem; color: var(--text-secondary); }

@media (min-width: 768px) {
  .funziona-steps { grid-template-columns: repeat(3, 1fr); text-align: center; }
  .funziona-step { flex-direction: column; align-items: center; }
}

/* ============================================
   11. FAQ
   ============================================ */
.faq-section { background: var(--bg); }
.faq-header { text-align: center; margin-bottom: 32px; }

.faq-list {
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  gap: 12px;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform var(--transition), background var(--transition);
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-bg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-answer-inner {
  padding: 0 0 18px;
  font-size: .93rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   12. FOOTER
   ============================================ */
.footer {
  padding: 28px 0;
  text-align: center;
  background: var(--text);
  color: #94A3B8;
  font-size: .82rem;
}

.footer a { color: #CBD5E1; }
.footer a:hover { color: #fff; }
.footer-links { margin-top: 8px; }
.footer-links a { margin: 0 8px; }

/* ============================================
   STICKY CTA (Mobile)
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: #fff;
  box-shadow: 0 -4px 12px rgba(0,0,0,.1);
  transform: translateY(100%);
  transition: transform .3s ease;
}

.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; padding: 14px; font-size: .95rem; }

@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* ============================================
   ANIMATIONS (scroll reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* Hide on mobile / desktop */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

/* Body padding when sticky CTA active */
@media (max-width: 767px) {
  body { padding-bottom: 72px; }
}
