/* ============================================================
   RICO Boxing Academy — Design System
   ============================================================ */

:root {
  --bg-0: #0a0a0b;
  --bg-1: #121215;
  --bg-2: #1a1a1f;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #e8e8ec;
  --text-muted: #8a8a96;
  --text-dim: #5a5a64;

  --gold-1: #d4a72c;
  --gold-2: #f5d061;
  --gold-grad: linear-gradient(135deg, #d4a72c 0%, #f5d061 100%);

  --success: #43d39e;
  --whatsapp: #25d366;
  --accent-red: #c0392b;

  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* Legacy aliases */
  --font-serif: var(--font-display);
  --font-sans: var(--font-body);

  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.62;
  font-size: 16px;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video, svg { max-width: 100%; display: block; }
img { background: linear-gradient(180deg, #1a1a20, #0a0a0b); }

a { color: inherit; text-decoration: none; transition: color .25s var(--ease-out); }
a:hover { color: var(--gold-2); }

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

::selection { background: var(--gold-1); color: var(--bg-0); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-2); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-1); }

/* ============================================================
   Typography
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-feature-settings: "ss01", "liga", "calt";
  color: var(--text);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 72, "SOFT" 20;
}

h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.012em;
}

h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.02em; line-height: 1.3; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: inline-block;
  margin-bottom: 1rem;
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.62;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 60ch;
}
.tabular, .stat-number { font-variant-numeric: tabular-nums; font-feature-settings: "tnum", "lnum"; }

p { line-height: 1.62; }

/* ============================================================
   Layout
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: clamp(64px, 10vw, 120px) 0; position: relative; }

.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; margin-right: 0; }

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   Top Nav (sticky)
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s var(--ease-out), padding .3s var(--ease-out), border-color .3s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-logo img { height: 38px; width: auto; display: block; }
.nav.scrolled .nav-logo img { height: 34px; }
@media (max-width: 600px) {
  .nav-logo img { height: 30px; }
}
.footer-brand .nav-logo img { height: 40px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-grad);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-2); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--whatsapp);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  position: relative;
  transition: background .2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px; height: 2px;
  background: var(--text);
  transition: transform .3s var(--ease-out);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(86vw, 360px);
    height: 100vh;
    background: var(--bg-1);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px 32px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform .35s var(--ease-out);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-links .nav-cta { margin-top: 12px; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s, color .25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-grad);
  color: #0a0a0b !important;
  box-shadow: 0 8px 22px rgba(212, 167, 44, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(245, 208, 97, 0.4);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.4);
  color: #fff !important;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--gold-2);
  color: var(--gold-2);
  transform: translateY(-2px);
}
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 0.88rem; }

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   WhatsApp Floating Button
   ============================================================ */

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float .wa-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s var(--ease-out);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  50%      { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

@media (max-width: 600px) {
  .wa-float { width: 64px; height: 64px; right: 16px; bottom: 16px; }
  .wa-float .wa-tooltip { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(15%) contrast(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(212, 167, 44, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.45) 0%, rgba(10, 10, 11, 0.7) 50%, rgba(10, 10, 11, 0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  color: var(--text);
  transition: border-color .25s, background .25s;
}
.hero-badge:hover { border-color: var(--gold-2); background: rgba(212, 167, 44, 0.08); color: var(--gold-2); }
.hero-badge .stars { color: var(--gold-2); }

.hero h1 { margin-bottom: 22px; }
.hero .lead { margin: 0 auto 36px; max-width: 64ch; font-size: clamp(1.1rem, 1.6vw, 1.3rem); }
.hero-micro { margin-top: 22px; font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.03em; }

.hero .btn-row { justify-content: center; }

/* ============================================================
   Proof Bar
   ============================================================ */

.proof-bar {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 36px;
  font-size: 0.86rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-align: center;
}
.proof-bar-inner span { display: inline-flex; align-items: center; gap: 8px; }
.proof-bar-inner .dot { width: 4px; height: 4px; background: var(--gold-1); border-radius: 50%; }

/* ============================================================
   Cards
   ============================================================ */

.card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: transform .35s var(--ease-out), border-color .35s, background .35s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: var(--bg-2);
}
.card .icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(212, 167, 44, 0.1);
  border: 1px solid rgba(212, 167, 44, 0.25);
  color: var(--gold-2);
  margin-bottom: 22px;
  font-size: 1.4rem;
}
.card h3 { margin-bottom: 12px; font-family: var(--font-sans); font-size: 1.1rem; letter-spacing: 0.02em; text-transform: uppercase; }
.card p { color: var(--text-muted); font-size: 0.96rem; }

/* ============================================================
   Reviews
   ============================================================ */

.review-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .35s var(--ease-out), border-color .35s;
}
.review-card:hover { transform: translateY(-4px); border-color: var(--gold-1); }
.review-stars { color: var(--gold-2); letter-spacing: 2px; font-size: 1.05rem; }
.review-body {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--text);
  flex-grow: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bg-0);
  font-size: 0.9rem;
}
.review-meta { display: flex; flex-direction: column; }
.review-name { font-weight: 600; font-size: 0.95rem; }
.review-date { font-size: 0.8rem; color: var(--text-muted); }

.reviews-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
}
.reviews-cta a {
  color: var(--gold-2);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ============================================================
   Featured-In logos row
   ============================================================ */

.featured-in {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.featured-in-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.featured-in-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-muted);
}
.featured-in-row span { white-space: nowrap; opacity: 0.85; transition: opacity .25s, color .25s; }
.featured-in-row a:hover span { color: var(--gold-2); opacity: 1; }

/* ============================================================
   Pricing cards (Packages page + Home teaser)
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.price-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform .35s var(--ease-out), border-color .35s, background .35s;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.price-card.featured {
  background: linear-gradient(180deg, rgba(212, 167, 44, 0.05), rgba(212, 167, 44, 0.02));
  border-color: var(--gold-1);
  box-shadow: 0 30px 60px -30px rgba(212, 167, 44, 0.35);
}
.price-card .badge-pop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: var(--bg-0);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card .pkg-name {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.price-card .price {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum", "lnum";
  letter-spacing: -0.025em;
}
.price-card .price small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.02em;
  text-transform: none;
}
.price-card .save {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--success);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 8px;
  flex-grow: 1;
}
.price-card ul li {
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}
.price-card ul li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2343d39e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.price-card .best-for {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.price-card .best-for strong { color: var(--text); }

/* ============================================================
   Why Rico — feature columns
   ============================================================ */

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Meet Rico teaser
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.split .media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-1);
}
.split .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.split .media:hover img { transform: scale(1.03); }
.split .media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 11, 0.45));
}
.split ul.checks {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.split ul.checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--text);
}
.split ul.checks li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: 9px;
  background: var(--gold-grad);
  border-radius: 50%;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   How it works — steps
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  position: relative;
  transition: border-color .35s, transform .35s var(--ease-out);
}
.step:hover { border-color: var(--gold-1); transform: translateY(-4px); }
.step .step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  font-weight: 600;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.step h3 { font-family: var(--font-sans); font-size: 1rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; color: var(--gold-2); }
.step p { color: var(--text-muted); font-size: 0.96rem; }

/* ============================================================
   Final CTA
   ============================================================ */

.final-cta {
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 167, 44, 0.12), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(192, 57, 43, 0.08), transparent 50%),
    var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.final-cta h2 { margin-bottom: 32px; max-width: 24ch; margin-left: auto; margin-right: auto; }

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-tag {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 36ch;
}
.footer-rating a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--text); font-size: 0.95rem; }
.footer ul a:hover { color: var(--gold-2); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 0.95rem; }
.footer-contact a { color: var(--text); }
.footer-contact a:hover { color: var(--gold-2); }

.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text);
  transition: border-color .25s, color .25s, transform .25s;
}
.social-row a:hover { border-color: var(--gold-2); color: var(--gold-2); transform: translateY(-2px); }
.social-row svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a:hover { color: var(--gold-2); }

/* ============================================================
   Packages page — comparison table
   ============================================================ */

.compare-wrap { overflow-x: auto; }
.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.compare th, .compare td {
  text-align: left;
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
}
.compare th {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  vertical-align: bottom;
}
.compare th.feat-col { width: 40%; }
.compare td.feat { color: var(--text); }
.compare td.center { text-align: center; }
.compare .yes::before {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2343d39e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.compare .no { color: var(--text-dim); }
.compare tr:hover td { background: rgba(255,255,255,0.02); }

/* ============================================================
   FAQ accordion
   ============================================================ */

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-sans);
  cursor: pointer;
}
.faq-q::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--gold-2);
  transition: transform .3s var(--ease-out);
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out);
}
.faq-a-inner {
  padding: 0 0 22px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 70ch;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ============================================================
   About — Credentials grid
   ============================================================ */

.creds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .creds-grid { grid-template-columns: 1fr; } }

.cred {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color .35s, transform .35s var(--ease-out);
}
.cred:hover { border-color: var(--gold-1); transform: translateY(-3px); }
.cred .ic {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(212, 167, 44, 0.08);
  color: var(--gold-2);
}
.cred h4 { font-family: var(--font-sans); font-size: 0.92rem; letter-spacing: 0.04em; margin-bottom: 6px; }
.cred p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; }

/* ============================================================
   Video embed wrap
   ============================================================ */

.video-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(212, 167, 44, 0.3);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ============================================================
   About — story
   ============================================================ */

.story-text { max-width: 720px; margin: 0 auto; }
.story-text p { font-size: 1.05rem; color: var(--text); margin-bottom: 1.2em; line-height: 1.75; }
.story-text p:last-child { margin-bottom: 0; }
.story-text p strong { color: var(--gold-2); font-weight: 600; }

/* ============================================================
   Contact form
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.form {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.field label .req { color: var(--gold-2); }
.field input,
.field select,
.field textarea {
  background: var(--bg-0);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  transition: border-color .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-2);
  background: rgba(212, 167, 44, 0.04);
}
.field .hint { font-size: 0.78rem; color: var(--text-dim); }
.gdpr {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 22px;
}
.gdpr input { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; accent-color: var(--gold-1); }
.gdpr a { color: var(--gold-2); text-decoration: underline; }

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}
.form-status.success { display: block; background: rgba(67, 211, 158, 0.1); border: 1px solid rgba(67, 211, 158, 0.4); color: var(--success); }
.form-status.error   { display: block; background: rgba(192, 57, 43, 0.1); border: 1px solid rgba(192, 57, 43, 0.4); color: #ff7a6b; }

.honeypot { position: absolute !important; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; }

/* Contact right column */
.contact-side .info-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 18px;
}
.contact-side h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.contact-side .lines { display: flex; flex-direction: column; gap: 10px; font-size: 0.96rem; }
.contact-side .lines a { color: var(--text); }
.contact-side .lines a:hover { color: var(--gold-2); }
.contact-side .info-card .btn-whatsapp { width: 100%; margin-bottom: 18px; }

.rating-card {
  background: var(--bg-1);
  border: 1px solid var(--gold-1);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.rating-card .stars { color: var(--gold-2); font-size: 1.1rem; letter-spacing: 2px; }
.rating-card .rating-num { font-family: var(--font-serif); font-size: 2.2rem; line-height: 1; color: var(--gold-2); font-weight: 600; }
.rating-card .rating-meta { font-size: 0.84rem; color: var(--text-muted); }
.rating-card a:hover { color: var(--gold-2); }

/* Locations list */
.zones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.zone-chip {
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: border-color .25s, background .25s;
}
.zone-chip:hover { border-color: var(--gold-2); background: rgba(212, 167, 44, 0.06); }

/* ============================================================
   News page
   ============================================================ */

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 1000px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px)  { .news-grid { grid-template-columns: 1fr; } }

.news-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease-out), border-color .35s;
}
.news-card:hover { transform: translateY(-4px); border-color: var(--gold-1); }
.news-card .news-img {
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}
.news-card .news-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 14%;
  transition: transform .9s var(--ease-out);
}
/* Per-photo crop tuning so faces / key subject stay in frame */
.news-card .news-img img[src*="rico-ubo-belt"]    { object-position: center 24%; }
.news-card .news-img img[src*="rico-coaching"]    { object-position: center 38%; }
.news-card .news-img img[src*="rico-pescara"]     { object-position: center 10%; }
.news-card .news-img img[src*="press-il-piccolo"] { object-position: center; }
.news-card .news-img img[src*="rico-wildcard"]    { object-position: center 5%; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(10, 10, 11, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.news-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.news-date { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.news-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--text);
}
.news-card p { color: var(--text-muted); font-size: 0.94rem; flex-grow: 1; }
.news-card .news-read {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   Banner blocks (free assessment, online)
   ============================================================ */

.banner {
  background:
    radial-gradient(circle at 90% 20%, rgba(212, 167, 44, 0.12), transparent 50%),
    var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.banner h2 { margin-bottom: 8px; }
.banner p { color: var(--text-muted); max-width: 56ch; }
@media (max-width: 800px) {
  .banner { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
  .banner .btn-row { justify-content: center; }
}

/* ============================================================
   Animations
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.stagger.in > * { opacity: 1; transform: translateY(0); }
.stagger.in > *:nth-child(1) { transition-delay: 0s; }
.stagger.in > *:nth-child(2) { transition-delay: .12s; }
.stagger.in > *:nth-child(3) { transition-delay: .24s; }
.stagger.in > *:nth-child(4) { transition-delay: .36s; }
.stagger.in > *:nth-child(5) { transition-delay: .48s; }
.stagger.in > *:nth-child(6) { transition-delay: .60s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .wa-float { animation: none; }
}

/* ============================================================
   Cookie banner
   ============================================================ */

.cookie-banner {
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 95;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transform: translateY(140%);
  transition: transform .5s var(--ease-out);
  max-width: 560px;
  margin: 0 auto;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner span { flex: 1; min-width: 220px; }
.cookie-banner button { padding: 9px 18px; font-size: 0.82rem; }
.cookie-banner a { color: var(--gold-2); text-decoration: underline; }

/* ============================================================
   Page hero (smaller, for non-home pages)
   ============================================================ */

.page-hero {
  padding: 160px 0 60px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 167, 44, 0.1), transparent 50%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 16px; }
.page-hero .lead { margin: 0 auto; }

/* ============================================================
   404
   ============================================================ */

.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}
.notfound .big {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

/* ============================================================
   Utilities
   ============================================================ */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.dim { color: var(--text-muted); }
.divider { height: 1px; background: var(--line); width: 100%; margin: 48px 0; }
