/* ============================================================
   RICO Consulting — Landing Italiana
   Design system derivato da RICO Boxing Academy
   ============================================================ */

: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%);

  --whatsapp: #25d366;

  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

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

  --ease-out: cubic-bezier(0.22, 1, 0.36, 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, 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); }

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--text);
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

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

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

.lead {
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 60ch;
}

p { line-height: 1.62; }

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

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

section { padding: clamp(56px, 9vw, 100px) 0; position: relative; }

.section-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }

/* ============================================================
   Header minimale (no nav — è una landing)
   ============================================================ */

.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 22px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo img { height: 36px; width: auto; }
.header-logo span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}
.header-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
@media (max-width: 540px) {
  .header-logo span { display: none; }
  .header-link { font-size: 0.76rem; }
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 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 25%;
  filter: grayscale(20%) contrast(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 167, 44, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.55) 0%, rgba(10, 10, 11, 0.75) 50%, rgba(10, 10, 11, 0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.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.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--gold-2);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-2);
}
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin: 0 0 32px; max-width: 620px; font-size: clamp(1.05rem, 2.4vw, 1.25rem); }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--gold-2);
  display: block;
  line-height: 1.1;
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   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);
  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-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-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   Chi sono (split)
   ============================================================ */

.about {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about-text h2 { margin-bottom: 22px; }
.about-text p { color: var(--text-muted); margin-bottom: 18px; font-size: 1.02rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text); font-weight: 600; }

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img { max-width: 380px; margin: 0 auto; aspect-ratio: 4/5; }
}

/* ============================================================
   Per chi è (3 col)
   ============================================================ */

.for-who {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.for-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.for-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.for-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(212, 167, 44, 0.1);
  border: 1px solid rgba(212, 167, 44, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.for-card h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  color: var(--gold-2);
}
.for-card p { color: var(--text-muted); font-size: 0.96rem; }

@media (max-width: 820px) {
  .for-who { grid-template-columns: 1fr; }
}

/* ============================================================
   Cosa otterrai
   ============================================================ */

.benefits {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #0a0a0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.benefit h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 6px;
}
.benefit p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.5; }

@media (max-width: 720px) {
  .benefits-list { grid-template-columns: 1fr; gap: 22px; }
}

.scope-note {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 22px 26px;
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--gold-1);
  border-radius: var(--radius-md);
  background: rgba(212, 167, 44, 0.04);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.scope-note strong {
  color: var(--gold-2);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   Pricing — 2 pacchetti
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform .25s var(--ease-out), border-color .25s;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.price-card.featured {
  border-color: var(--gold-1);
  background: linear-gradient(180deg, rgba(212, 167, 44, 0.06), var(--bg-1) 50%);
  box-shadow: 0 18px 40px rgba(212, 167, 44, 0.08);
}
.price-card .badge-pop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: #0a0a0b;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-card .pkg-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.price-card .pkg-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1;
}
.price-card .price small {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}
.price-card .price-note {
  font-size: 0.84rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.price-card ul {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.price-card ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text);
  font-size: 0.96rem;
  border-bottom: 1px solid var(--line);
}
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--gold-2);
  font-weight: 700;
}

@media (max-width: 820px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-card.featured { order: -1; }
}

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

.faq {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 36px 22px 0;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  position: relative;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-2);
  transition: transform .25s var(--ease-out);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] summary { color: var(--gold-2); }
.faq-item .answer {
  padding: 0 36px 22px 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ============================================================
   CTA Calendly
   ============================================================ */

.cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 167, 44, 0.12), transparent 55%),
    var(--bg-0);
}
.cta h2 { margin-bottom: 18px; }
.cta .lead { margin: 0 auto 36px; }
.cta-note {
  margin-top: 20px;
  font-size: 0.86rem;
  color: var(--text-muted);
}
.calendly-wrap {
  margin-top: 40px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  min-height: 720px;
}

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

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  text-align: center;
}
.footer-logo img { height: 36px; margin: 0 auto 18px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--gold-2); }
.footer-copy { font-size: 0.78rem; color: var(--text-dim); }

/* ============================================================
   WhatsApp Float
   ============================================================ */

.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);
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

@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 { right: 16px; bottom: 16px; }
}

/* ============================================================
   Reveal animation on scroll
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
