/* ================================================
   REALYZE — Main Stylesheet
   ================================================ */

/* ── 1. Variables ─────────────────────────────── */
:root {
  --accent:        #e6007e;
  --accent-dark:   #c40069;
  --text:          #343434;
  --text-light:    #aaaaaa;
  --text-mid:      #666666;
  --bg:            #ffffff;
  --dark:          #111111;
  --dark-2:        #1a1a1a;
  --gray-light:    #f5f5f5;
  --gray-lighter:  #fafafa;
  --border:        #e8e8e8;

  --font-heading:  'Playfair Display', serif;
  --font-body:     'Inter', sans-serif;

  --max-w:         1200px;
  --gutter:        24px;
  --radius:        14px;
  --radius-sm:     8px;
  --radius-pill:   100px;
  --shadow:        0 4px 24px rgba(0,0,0,.08);
  --shadow-md:     0 8px 40px rgba(0,0,0,.14);
  --transition:    .25s ease;
}

/* ── 2. Reset & Base ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 3. Typography ────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 700; }
h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

.em-accent { font-style: italic; color: var(--accent); }

p { color: var(--text-mid); line-height: 1.7; }

/* ── 4. Layout utilities ──────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: 780px; }

section { position: relative; }

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--dark { background: var(--dark); }
.section--dark-2 { background: var(--dark-2); }
.section--gray { background: var(--gray-light); }

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section__header h2 { margin-bottom: 16px; }
.section__header p { font-size: 17px; }

.text-center { text-align: center; }
.text-white { color: #fff !important; }
.text-white p, .text-white h1, .text-white h2, .text-white h3 { color: #fff; }
.text-white p { color: rgba(255,255,255,.72); }

/* ── 5. Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(230,0,126,.35);
}
.btn--primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 28px rgba(230,0,126,.45);
}

.btn--outline {
  border: 1.5px solid var(--text);
  color: var(--text);
  background: transparent;
}
.btn--outline:hover { background: var(--text); color: #fff; }

.btn--outline-white {
  border: 1.5px solid rgba(255,255,255,.6);
  color: #fff;
  background: transparent;
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); }

.btn--white {
  background: #fff;
  color: var(--accent);
}
.btn--white:hover { background: #f0f0f0; }

.btn--lg { padding: 17px 36px; font-size: 16px; }

.text-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.text-link:hover { gap: 10px; }

.text-link--white { color: #fff; }

/* ── 6. Tag / Badge ───────────────────────────── */
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(230,0,126,.08);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ── 7. Cards ─────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.card--dark {
  background: #1e1e1e;
  border-color: #2e2e2e;
  color: #fff;
}
.card--dark p { color: rgba(255,255,255,.65); }

.card--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(230,0,126,.06);
}

/* ── 8. Checklist ─────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 10'%3E%3Cpath d='M1 5l4 4L13 1' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.checklist--dark li { color: rgba(255,255,255,.85); }

/* ── 9. Phone mockup ──────────────────────────── */
.phone-mockup {
  width: 260px;
  background: #1a1a1a;
  border: 8px solid #2a2a2a;
  border-radius: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transform: rotate(-3deg);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.phone-mockup::before {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  background: #2a2a2a;
  border-radius: 3px;
  margin: 14px auto 0;
}
.phone-mockup__screen {
  width: 100%;
  aspect-ratio: 9/19;
  overflow: hidden;
}
.phone-mockup__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ── 10. Navbar ───────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid transparent;
  padding-top: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.navbar .container {
  max-width: none;
  padding-left: 48px;
  padding-right: 48px;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar__logo {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}
.navbar__logo span { color: var(--accent); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.navbar__nav a:hover,
.navbar__nav a[aria-current="page"] { color: var(--accent); }
.navbar__nav a:hover::after,
.navbar__nav a[aria-current="page"]::after { transform: scaleX(1); }

.navbar__cta { margin-left: 8px; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.navbar__mobile-menu.open { display: flex; }
.navbar__mobile-menu a {
  font-size: 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}
.navbar__mobile-menu a:hover { color: var(--accent); }
.navbar__mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
}

/* ── 11. Hero — Homepage ──────────────────────── */
.hero {
  padding: 80px 0 0;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: 540px;
}
.hero__content { padding-bottom: 80px; }
.hero__content h1 {
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero__content > p {
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero__checklist { margin-bottom: 36px; }
.hero__cta-group { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.hero__cta-note {
  font-size: 13px;
  color: var(--text-mid);
  margin: 0;
}
.hero__cta-warning {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
}
.hero__image {
  position: relative;
  align-self: flex-end;
  text-align: center;
  background: linear-gradient(to bottom, #fde8f0 0%, #fff4f8 60%, transparent 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.hero__image img {
  max-height: 580px;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── 12. Section: Problem ─────────────────────── */
.problem { padding: 96px 0; }
.problem__title {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: clamp(24px, 3vw, 34px);
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem__card {
  text-align: center;
  padding: 36px 28px;
}
.problem__icon {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--accent);
}
.problem__card h3 { margin-bottom: 10px; font-size: 19px; }
.problem__card p { font-size: 15px; }
.problem__cta { text-align: center; margin-top: 48px; }

/* ── 13. Section: Quote ───────────────────────── */
.quote { padding: 96px 0; text-align: center; }
.quote__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  max-width: 780px;
  margin: 0 auto 24px;
  line-height: 1.2;
}
.quote__sub {
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── 14. Section: Services (dark) ───────────── */
.services {
  padding: 96px 0;
  background: var(--dark);
  color: #fff;
}
.services .section__header h2 { color: #fff; }
.services .section__header p { color: rgba(255,255,255,.65); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.service-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(230,0,126,.12);
}
.service-card__icon { font-size: 32px; margin-bottom: 16px; color: var(--accent); }
.service-card h3 { color: #fff; font-size: 20px; margin-bottom: 16px; }
.service-card .checklist li { color: rgba(255,255,255,.75); font-size: 14px; }
.service-card .checklist li::before { width: 16px; height: 16px; background-size: 8px; }
.services__cta { text-align: center; }

/* ── 15. Section: Reel / Stats ───────────────── */
.reel { padding: 96px 0; }
.reel__stat {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.reel__stat-headline {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
}
.reel__stat p { font-size: 17px; }
.reel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.reel-item {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
}
.reel-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.reel-item__icon { font-size: 32px; margin-bottom: 14px; color: var(--accent); }
.reel-item h3 { font-size: 19px; margin-bottom: 10px; }
.reel-item p { font-size: 15px; }
.reel__cta { text-align: center; }

/* ── 16. Section: Modality ───────────────────── */
.modality { padding: 96px 0; background: var(--gray-light); }
.modality__label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.modality__title {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: clamp(24px, 3vw, 34px);
}
.modality__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.modality-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.modality-card--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 5px rgba(230,0,126,.05);
}
.modality-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}
.modality-card h3 { margin-bottom: 8px; font-size: 22px; }
.modality-card__desc { font-size: 14px; margin-bottom: 20px; }
.modality-card .checklist { margin-bottom: 28px; }
.modality-card__note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
  font-style: italic;
}

/* ── 17. Section: Packages ───────────────────── */
.packages { padding: 96px 0; }
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}
.package-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.package-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.package-card--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 5px rgba(230,0,126,.05), var(--shadow);
  position: relative;
  transform: scale(1.02);
}
.package-card--featured:hover { transform: scale(1.02) translateY(-4px); }
.package-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.package-card__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.package-card__desc { font-size: 14px; margin-bottom: 24px; }
.package-card .checklist { margin-bottom: 24px; }
.package-card .checklist li { font-size: 14px; }
.package-card__note {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.packages__cta {
  text-align: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 18. Section: Club (dark) ────────────────── */
.club { padding: 96px 0; background: var(--dark); color: #fff; }
.club .section__header h2 { color: #fff; }
.club .section__header p { color: rgba(255,255,255,.65); }
.club__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 48px;
  max-width: 760px;
  margin: 0 auto 40px;
}
.club__grid .checklist li { color: rgba(255,255,255,.85); }
.club__cta { text-align: center; }

/* ── 19. Section: How it works ───────────────── */
.how { padding: 96px 0; }
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  counter-reset: steps;
}
.how-step { text-align: center; }
.how-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(230,0,126,.1);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.how-step h3 { font-size: 18px; margin-bottom: 8px; }
.how-step p { font-size: 14px; }

/* ── 20. Section: FAQ ────────────────────────── */
.faq { padding: 96px 0; background: var(--gray-light); }
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.faq__question:hover { color: var(--accent); }
.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  color: var(--text-mid);
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq__answer-inner {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq__item.open .faq__answer { max-height: 400px; }
.faq__cta { text-align: center; margin-top: 48px; }

/* ── 21. Hero — Listino ──────────────────────── */
.hero-listino {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.hero-listino__left {
  padding: 96px 56px 96px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: calc(var(--max-w)/2 + var(--gutter));
  margin-left: auto;
}
.hero-listino__left h1 { margin-bottom: 20px; }
.hero-listino__left p { font-size: 17px; margin-bottom: 12px; max-width: 460px; }
.hero-listino__cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-top: 32px;
}
.hero-listino__right {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.hero-listino__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(230,0,126,.12) 0%, transparent 70%);
}

/* ── Hero listino video ──────────────────────── */
.hero-listino__right--video {
  background: linear-gradient(to bottom, #fde8f0 0%, #fff4f8 60%, #fff 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 32px 0;
  overflow: hidden;
}
.hero-listino__right--video::before { display: none; }
.hero-listino__right--video video {
  width: 100%;
  height: auto;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow-md);
  display: block;
}

/* ── 22. Section: Intro (listino) ────────────── */
.listino-intro { padding: 96px 0; background: var(--dark); }
.listino-intro .section__header h2 { color: #fff; }
.listino-intro .section__header p { color: rgba(255,255,255,.65); }
.listino-intro .section__header p + p { color: rgba(255,255,255,.45); margin-top: 12px; }
.listino-intro .section__header { margin-bottom: 40px; }

/* ── 23. Section: Feature (alternating) ─────── */
.feature { padding: 96px 0; }
.feature--gray { background: var(--gray-light); }
.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feature__grid--reverse { direction: rtl; }
.feature__grid--reverse > * { direction: ltr; }

.feature__content h2 { margin-bottom: 20px; }
.feature__content p { font-size: 16px; margin-bottom: 16px; }
.feature__content .checklist { margin: 24px 0 28px; }
.feature__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.feature__image img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

/* ── 24. Section: Dark CTA banner ───────────── */
.dark-cta { padding: 96px 0; background: var(--dark); text-align: center; }
.dark-cta h2 { color: #fff; margin-bottom: 16px; }
.dark-cta p { color: rgba(255,255,255,.65); font-size: 17px; margin-bottom: 36px; }
.dark-cta .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 25. Footer ──────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 64px 0 32px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}
.footer__logo {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer__logo span { color: var(--accent); }
.footer__tagline { font-size: 14px; line-height: 1.6; }
.footer__col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer__col ul li + li { margin-top: 10px; }
.footer__col ul li a {
  font-size: 14px;
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 13px; }
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  font-size: 13px;
  transition: color var(--transition);
}
.footer__legal a:hover { color: #fff; }

/* ── 26. Pre-footer CTA ──────────────────────── */
.pre-footer {
  padding: 80px 0;
  background: var(--dark-2);
  text-align: center;
}
.pre-footer h2 { color: #fff; margin-bottom: 24px; max-width: 640px; margin-left: auto; margin-right: auto; }
.pre-footer .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Hero video ──────────────────────────────── */
.hero__image--video {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image--video video {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-md);
}

/* ── Fade-in animations ──────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 28. Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { padding-bottom: 0; order: 1; }
  .hero__image { order: 2; max-height: 400px; overflow: hidden; }
  .hero__image--video { max-height: none; overflow: visible; }
  .hero__image img { border-radius: var(--radius); object-position: top; }

  .hero-listino { grid-template-columns: 1fr; }
  .hero-listino__left { padding: 64px var(--gutter); max-width: 100%; }
  .hero-listino__right { min-height: 380px; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .how__steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top > :first-child { grid-column: 1 / -1; }

  .feature__grid { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px 0; }
  .section { padding: 64px 0; }
  .section--sm { padding: 48px 0; }

  h1 { font-size: 32px; }
  h2 { font-size: 26px; }

  .navbar .container { padding-left: 20px; padding-right: 20px; }
  .navbar__nav { display: none; }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  .hero { padding: 48px 0 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__image img { max-height: 320px; }
  .hero__image--video { max-height: none; overflow: visible; }
  .hero__image--video video { border-radius: var(--radius-sm); }

  .problem__grid { grid-template-columns: 1fr; gap: 16px; }
  .reel__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .modality__grid { grid-template-columns: 1fr; }
  .packages__grid { grid-template-columns: 1fr; }
  .package-card--featured { transform: scale(1); }
  .package-card--featured:hover { transform: translateY(-4px); }
  .club__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr 1fr; }

  .feature__grid { grid-template-columns: 1fr; gap: 32px; }
  .feature__grid--reverse { direction: ltr; }
  .feature__image { order: -1; }

  .hero-listino { grid-template-columns: 1fr; }
  .hero-listino__left { padding: 56px var(--gutter); }
  .hero-listino__right { min-height: 300px; padding: 40px var(--gutter); }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }

  .packages__cta { flex-direction: column; align-items: center; }
  .dark-cta .btn-group { flex-direction: column; align-items: center; }
  .pre-footer .btn-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero__content h1 { font-size: 28px; }
  .how__steps { grid-template-columns: 1fr; }
  .modality-card { padding: 28px 20px; }
  .phone-mockup { width: 200px; }
}

/* ── 31. Pricing Table (rzb-srv.html) ───────── */
.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.pricing-table thead tr {
  background: var(--gray-lighter);
  border-bottom: 2px solid var(--accent);
}
.pricing-table th {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px 24px;
  text-align: center;
  white-space: nowrap;
  color: var(--text-light);
}
.pricing-table th:first-child { text-align: left; color: var(--text); }
.pricing-table th:not(:first-child) { color: var(--accent); }
.pricing-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--gray-lighter); }
.pricing-table td {
  padding: 18px 24px;
  vertical-align: middle;
  color: var(--text-mid);
  font-size: 15px;
}
.pricing-table td:first-child { color: var(--text); }
.pricing-table td strong { font-weight: 600; color: var(--text); }
.pricing-table td:not(:first-child) {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  min-width: 110px;
}

/* ── 32. Price Cards (rzb-srv.html) ─────────── */
.price-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.price-card__icon { font-size: 28px; color: var(--accent); }
.price-card h3 { font-size: 20px; line-height: 1.3; }
.price-card p { font-size: 15px; flex: 1; }
.price-card__price {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
}
.price-card__price--preventivo {
  font-size: 17px;
  color: var(--text-mid);
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 500;
}
.price-card__note {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-top: -6px;
}

/* ── Package note link ─────────────────────────── */
.package-note-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--transition);
}
.package-note-link:hover { opacity: .75; }
@media (max-width: 900px) {
  .price-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .price-cards-grid { grid-template-columns: 1fr; }
  .pricing-table th,
  .pricing-table td { padding: 14px 12px; }
  .pricing-table td:not(:first-child) { min-width: 80px; }
}

/* ── 33. Pricing gram detail ──────────────────── */
.pricing-gram {
  font-size: 12px;
  color: var(--text-mid);
  font-style: normal;
  font-weight: 500;
}

/* ── Pricing subtable title ───────────────────── */
.pricing-subtable-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 12px;
}

.pricing-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 20px;
}

/* ── Package price (rzb-srv.html) ─────────────── */
.package-card__price {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  margin: 8px 0 4px;
}
.package-card__include {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}
.package-card__onetime {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 16px;
  letter-spacing: .02em;
}

/* ── 34. Club Price Cards (rzb-srv.html) ──────── */
.club-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.club-price-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition);
}
.club-price-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.club-price-card--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(230,0,126,.1);
}
.club-price-card__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.club-price-card > p { color: rgba(255,255,255,.65); font-size: 14px; }
.club-price-card__price {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 4px;
}
.club-price-card__period {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  font-family: var(--font-body);
  font-weight: 500;
  margin-left: 4px;
}
.club-price-card__note {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  font-style: italic;
}
@media (max-width: 900px) {
  .club-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .club-cards-grid { grid-template-columns: 1fr; }
}

/* ── 29. Page Hero (inner pages) ─────────────── */
.page-hero {
  padding: 80px 0 64px;
  background: var(--gray-light);
  text-align: center;
}
.page-hero .tag { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 16px; font-size: clamp(40px, 6vw, 64px); }
.page-hero__sub { font-size: 18px; max-width: 520px; margin: 0 auto; }

/* ── 30. Contacts ─────────────────────────────── */
.contacts-section { padding: 96px 0; }
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Big WhatsApp card */
.contact-big-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 48px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-big-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(230,0,126,.18) 0%, transparent 60%);
  pointer-events: none;
}
.contact-big-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(230,0,126,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}
.contact-big-card__icon svg { width: 28px; height: 28px; }
.contact-big-card h2 { color: #fff; margin-bottom: 12px; font-size: clamp(22px, 2.5vw, 28px); }
.contact-big-card p { color: rgba(255,255,255,.62); margin-bottom: 32px; font-size: 16px; }
.contact-big-card__number {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  font-style: italic;
}

/* Contact list items */
.contact-list { display: flex; flex-direction: column; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: var(--transition);
}
.contact-item:first-child { border-top: 1px solid var(--border); }
.contact-item:hover .contact-item__label { color: var(--accent); }
.contact-item:hover .contact-item__icon-wrap { background: var(--accent); color: #fff; }
.contact-item:hover .contact-item__arrow { transform: translateX(5px); color: var(--accent); }

.contact-item__icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: background var(--transition), color var(--transition);
}
.contact-item__icon-wrap svg { width: 20px; height: 20px; }

.contact-item__content { flex: 1; min-width: 0; }
.contact-item__type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-item__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-item__arrow {
  flex-shrink: 0;
  color: var(--border);
  transition: transform var(--transition), color var(--transition);
  font-size: 18px;
}

/* Contacts responsive */
@media (max-width: 900px) {
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 60px 0 48px; }
  .contact-big-card { padding: 36px 28px; }
}

/* ── Cookie Banner ────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 1px solid #2a2a2a;
  padding: 20px 0 calc(20px + env(safe-area-inset-bottom));
  transform: translateY(0);
  transition: transform .35s ease, opacity .35s ease;
  opacity: 1;
}
.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}
.cookie-banner__text {
  flex: 1;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.cookie-banner__text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__text a:hover { color: #fff; }
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 10px 22px;
  font-size: 14px;
}
@media (max-width: 700px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
}
