/* ========================================
   MADRASSAT AN-NOOR — SANTUARIO DEL SAPERE
   Landing statica autonoma | Single page
   Design System: premium pastello luminoso
   ======================================== */

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

:root {
  /* Palette Madrassat an-Noor */
  --crema: #F6F1E9;
  --crema2: #FAF6F1;
  --sabbia: #E9DCC9;
  --menta: #BFE7DA;
  --rosa: #F4C7C3;
  --lavanda: #D9CCEE;
  --azzurro: #CFE7F7;
  --oro: #E8D9A8;

  /* Accent dark */
  --acc: #7B5EA7;
  --acc2: #3A9A8C;
  --teal: #0b7b6c;
  --gold-d: #8B6500;

  /* Testo */
  --text-dark: #1C0A38;
  --text2: #333333;
  --text3: #555555;
  --text-muted: #6B6B6B;
  --text-light: #9A8AB8;
  --white: #FFFFFF;

  /* Bordi morbidi */
  --border-soft: rgba(0,0,0,0.06);
  --border-light: rgba(0,0,0,0.08);

  /* Font */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Quicksand', 'Segoe UI', sans-serif;
  --font-arabic: 'Amiri', serif;

  /* Raggi */
  --r-xl: 24px;
  --r-lg: 18px;
  --r-md: 14px;
  --r-sm: 10px;
  --r-pill: 50px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-dark);
  background-color: var(--crema);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--oro);
  color: var(--text-dark);
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

@media (min-width: 1024px) {
  .container { padding: 0 56px; }
}

.font-display { font-family: var(--font-display); }
.font-arabic { font-family: var(--font-arabic); direction: rtl; }

/* ========================================
   NAVBAR INTERNA (non WordPress)
   ======================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246,241,233,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(233,220,201,0.50);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  height: 68px;
}

@media (min-width: 768px) {
  .nav-inner { padding: 10px 40px; }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-brand img {
  height: 38px;
  width: auto;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--acc);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav-brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 4px;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--lavanda);
  color: var(--acc);
}

.nav-links a.active {
  background: var(--lavanda);
  color: var(--acc);
}

.mobile-menu-btn {
  display: block;
  padding: 8px;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(246,241,233,0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 24px 28px;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text3);
  padding: 12px 16px;
  border-radius: var(--r-md);
  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  background: var(--lavanda);
  color: var(--acc);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #EDE5F5 0%, #D8F0E8 40%, #F0DDE8 100%);
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}

.orb-1 { width: 420px; height: 420px; background: rgba(211,195,240,0.7); top: -80px; left: -60px; }
.orb-2 { width: 360px; height: 360px; background: rgba(186,234,218,0.65); top: 20%; right: -40px; }
.orb-3 { width: 300px; height: 300px; background: rgba(244,199,195,0.60); bottom: 5%; left: 15%; }
.orb-4 { width: 260px; height: 260px; background: rgba(207,231,247,0.55); bottom: 10%; right: 10%; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--r-pill);
  padding: 7px 22px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--acc);
  margin-bottom: 18px;
  line-height: 1.4;
}

.hero-body {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-dark {
  background: var(--text-dark);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(28,10,56,0.25);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(28,10,56,0.32); }

.btn-mint {
  background: var(--menta);
  color: #0b4a3f;
  box-shadow: 0 4px 16px rgba(58,154,140,0.20);
}
.btn-mint:hover { transform: translateY(-2px); background: #A8DECE; }

.btn-ghost {
  background: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(123,94,167,0.35);
  color: var(--acc);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--white); transform: translateY(-2px); }

.btn-rosa {
  background: var(--rosa);
  color: #7a2f2a;
}
.btn-rosa:hover { transform: translateY(-2px); }

.btn-outline-mint {
  background: transparent;
  border: 2px solid var(--acc2);
  color: var(--acc2);
}
.btn-outline-mint:hover { background: var(--menta); color: #0b4a3f; }

/* ========================================
   SECTIONS COMMON
   ======================================== */
section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  section { padding: 100px 0; }
}

.sec-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sec-head .label-up {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 16px;
}

.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.sec-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--acc), var(--acc2));
  border-radius: 4px;
  margin: 16px auto 0;
}

/* ========================================
   INTRO
   ======================================== */
.intro {
  background: var(--crema);
  padding: 64px 0;
}

.intro-lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--text-dark);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.75;
}

.intro-lead strong {
  font-style: normal;
  color: var(--acc);
}

/* ========================================
   PORTE DI LUCE — CARDS
   ======================================== */
#porte {
  background: var(--crema2);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

.card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0,0,0,0.05);
  border: 1px solid var(--border-soft);
  transition: all 0.45s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(0,0,0,0.09);
}

.card-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--crema);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.card-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.card-desc {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  flex-grow: 1;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: gap 0.3s ease;
}

.card-cta:hover {
  gap: 14px;
}

.card-cta svg {
  width: 16px;
  height: 16px;
}

/* Card accent colors */
.card-fiqh .card-subtitle { color: var(--acc); }
.card-fiqh .card-cta { color: var(--acc); }

.card-uomini .card-subtitle { color: #5A8BA0; }
.card-uomini .card-cta { color: #5A8BA0; }

.card-donne .card-subtitle { color: var(--acc2); }
.card-donne .card-cta { color: var(--acc2); }

.card-mamme .card-subtitle { color: #C48A5A; }
.card-mamme .card-cta { color: #C48A5A; }

.card-reverts .card-subtitle { color: #C75E7A; }
.card-reverts .card-cta { color: #C75E7A; }

/* ========================================
   SEZIONI DETTAGLIATE SPORTELLI
   ======================================== */
.detail-section {
  padding: 80px 0;
}

.detail-section:nth-child(odd) {
  background: var(--white);
}

.detail-section:nth-child(even) {
  background: linear-gradient(160deg, var(--crema) 0%, #EBF5FD 50%, var(--crema) 100%);
}

.detail-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .detail-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .detail-reverse .detail-inner {
    direction: rtl;
  }
  .detail-reverse .detail-inner > * {
    direction: ltr;
  }
}

.detail-visual {
  position: relative;
}

.detail-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.detail-content .label-up {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 14px;
}

.detail-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.detail-content p {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.detail-content .btn {
  margin-top: 12px;
}

/* ========================================
   COME FUNZIONA
   ======================================== */
#come-funziona {
  background: var(--crema);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

.step-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  border: 1px solid var(--border-soft);
  transition: all 0.35s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--lavanda);
  line-height: 1;
  margin-bottom: 20px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ========================================
   RISERVATEZZA E METODO
   ======================================== */
#riservatezza {
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

.trust-card {
  border-radius: var(--r-xl);
  padding: 36px 28px;
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.trust-lav { background: rgba(217,204,238,0.25); border-color: rgba(217,204,238,0.6); }
.trust-mint { background: rgba(191,231,218,0.25); border-color: rgba(191,231,218,0.6); }
.trust-rosa { background: rgba(244,199,195,0.25); border-color: rgba(244,199,195,0.6); }
.trust-oro  { background: rgba(232,217,168,0.25); border-color: rgba(232,217,168,0.6); }

.disclaimer-box {
  margin-top: 48px;
  background: var(--crema2);
  border-radius: var(--r-xl);
  padding: 32px;
  border-left: 4px solid var(--acc2);
}

.disclaimer-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

/* ========================================
   OFFERTA LIBERA
   ======================================== */
#offerta {
  background: linear-gradient(160deg, var(--crema) 0%, #EBF5FD 50%, var(--crema) 100%);
}

.offer-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 56px 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.05);
  border: 1px solid var(--border-soft);
}

.offer-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--oro);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold-d);
}

.offer-icon svg {
  width: 28px;
  height: 28px;
}

.offer-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.offer-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.offer-fine {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 28px;
}

.offer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.offer-amounts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.offer-amounts span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-right: 6px;
}

.amount-badge {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--crema2);
  color: var(--text-dark);
  border: 1px solid var(--border-soft);
  transition: all 0.2s ease;
}

.amount-badge:hover {
  background: var(--menta);
  color: #0b4a3f;
  transform: translateY(-2px);
}

.bonifico-box {
  margin-top: 40px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bonifico-box h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.bonifico-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.bonifico-box a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========================================
   FAQ
   ======================================== */
#faq {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--crema2);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--lavanda);
}

.faq-item summary {
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--acc);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ========================================
   CTA FINALE
   ======================================== */
.final-cta {
  background: linear-gradient(145deg, #EDE5F5 0%, #D8F0E8 60%, #EDE5F5 100%);
  text-align: center;
  padding: 100px 0;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.final-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--sabbia);
  padding: 56px 0 32px;
  text-align: center;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin: 0 auto 24px;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.footer-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--acc);
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.footer-icons a:hover {
  transform: translateY(-3px);
  background: var(--lavanda);
  color: var(--white);
}

.footer-icons a svg {
  width: 18px;
  height: 18px;
}

.footer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--acc);
}

.copyright {
  font-size: 0.78rem;
  color: var(--text-light);
  opacity: 0.8;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeup {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { transition: none; opacity: 1; transform: none; }
  .orb { animation: none; }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 430px) {
  .hero h1 { font-size: 2.3rem; }
  .hero-sub { font-size: 1rem; }
  .hero-body { font-size: 0.95rem; }
  .btn { padding: 11px 22px; font-size: 0.82rem; }
  .card { padding: 32px 24px; min-height: auto; }
  .offer-card { padding: 40px 24px; }
  .step-card { padding: 32px 24px; }
  .trust-card { padding: 28px 22px; }
}

@media (max-width: 375px) {
  .hero h1 { font-size: 2.1rem; }
  .nav-brand-text { font-size: 0.9rem; }
  .nav-brand img { height: 32px; }
}
