/* ============================================================
   Augusta Football Club - Design System
   ============================================================ */

/* ---- 1. Custom Properties ---- */
:root {
  --c-bg:            #080808;
  --c-bg-alt:        #0d0d0d;
  --c-surface:       rgba(255,255,255,.04);
  --c-surface-hover: rgba(255,255,255,.07);
  --c-border:        rgba(42,176,80,.26);
  --c-border-sub:    rgba(255,255,255,.07);
  --c-green:         #2ab050;
  --c-green-dark:    #1d8a3a;
  --c-green-glow:    rgba(42,176,80,.22);
  --c-text:          #ffffff;
  --c-text-muted:    rgba(255,255,255,.82);
  --c-text-dim:      rgba(255,255,255,.28);

  --ff-sans:   'Montserrat', sans-serif;
  --ff-script: 'Great Vibes', cursive;
  --fw-light:  300;
  --fw-bold:   700;
  --fw-black:  900;

  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 999px;

  --shadow-green: 0 0 24px rgba(42,176,80,.22);
  --shadow-card:  0 8px 32px rgba(0,0,0,.5);
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.16,1,0.3,1);
}

/* ---- 2. Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-sans);
  font-weight: var(--fw-light);
  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; font: inherit; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ---- 3. Typography Utilities ---- */
.t-script {
  font-family: var(--ff-script);
  font-weight: 400;
}
.t-overline {
  font-size: clamp(.54rem, 1.1vmin, .72rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  color: var(--c-green);
}

/* ---- 4. Layout Utilities ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 5vw, 3rem);
}

.section {
  padding-block: clamp(4rem, 10vw, 8rem);
}
.section--sm {
  padding-block: clamp(2.5rem, 6vw, 5rem);
}
.section--alt {
  background: var(--c-bg-alt);
}
.section--glow {
  position: relative;
}
.section--glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(42,176,80,.07), transparent 70%);
  pointer-events: none;
}

.section-header {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
}
.section-header h2 {
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  font-weight: var(--fw-black);
  line-height: 1.1;
}
.section-header p {
  font-size: clamp(.88rem, 1.8vw, 1.05rem);
  color: var(--c-text-muted);
  max-width: 55ch;
  margin-inline: auto;
}

.swoosh {
  width: clamp(120px, 28vmin, 400px);
  height: 2px;
  background: linear-gradient(to right, transparent, var(--c-green) 35%, var(--c-green) 65%, transparent);
  border-radius: 2px;
  margin-inline: auto;
}
.swoosh--left { margin-inline: 0; width: clamp(60px, 18vw, 200px); }

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px,100%), 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px,100%), 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px,100%), 1fr));
  gap: clamp(.8rem, 2vw, 1.25rem);
}

/* ---- 5. Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75em 1.8em;
  border-radius: var(--r-pill);
  font-weight: var(--fw-bold);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background 200ms, color 200ms, transform 150ms, box-shadow 200ms, border-color 200ms;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-green);
  color: #fff;
}
.btn--primary:hover {
  background: var(--c-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,176,80,.4);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 1px solid rgba(255,255,255,.25);
}
.btn--outline:hover {
  border-color: var(--c-green);
  color: var(--c-green);
  transform: translateY(-2px);
}

.btn--ghost {
  background: var(--c-surface);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn--ghost:hover {
  background: var(--c-surface-hover);
  border-color: var(--c-green);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
}
.btn-group--center { justify-content: center; }

/* ---- 6. General Card ---- */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(1.2rem, 3vw, 2rem);
  transition: background 250ms, border-color 250ms, transform 250ms var(--ease-out), box-shadow 250ms;
}
.card:hover {
  background: var(--c-surface-hover);
  border-color: var(--c-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(42,176,80,.1);
}

/* ---- 7. Navigation Header ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 300ms, backdrop-filter 300ms, border-color 300ms;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.header-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(var(--shadow-green));
  transition: transform 200ms;
}
.header-logo:hover img { transform: scale(1.06); }
.header-logo-text {
  display: none;
}
@media (min-width: 480px) {
  .header-logo-text {
    display: block;
    font-size: .73rem;
    font-weight: var(--fw-black);
    letter-spacing: .14em;
    text-transform: uppercase;
    line-height: 1.2;
  }
  .header-logo-text span {
    display: block;
    color: var(--c-green);
    font-size: .58rem;
    font-weight: var(--fw-bold);
    letter-spacing: .18em;
  }
}

.site-nav {
  display: none;
  align-items: center;
  gap: clamp(.6rem, 1.5vw, 1.8rem);
}
@media (min-width: 1024px) {
  .site-nav { display: flex; }
  .site-nav a {
    font-size: .72rem;
    font-weight: var(--fw-bold);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    transition: color 200ms;
    position: relative;
    padding-bottom: 3px;
  }
  .site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--c-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms;
  }
  .site-nav a:hover,
  .site-nav a.active { color: var(--c-text); }
  .site-nav a:hover::after,
  .site-nav a.active::after { transform: scaleX(1); }
}

/* ---- 8. Hamburger & Mobile Nav ---- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--r-sm);
  transition: background 200ms;
}
.hamburger:hover { background: var(--c-surface); }
@media (min-width: 1024px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 200ms, width 250ms;
}
.hamburger span:nth-child(2) { width: 70%; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  inset-inline: 0;
  bottom: 0;
  background: rgba(6,6,6,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-size: clamp(1.4rem, 5.5vw, 2.2rem);
  font-weight: var(--fw-black);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  transition: color 200ms, transform 200ms;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--c-green);
  transform: translateX(6px);
}

/* ---- 9. Footer ---- */
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.05);
  padding-block: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand img {
  width: 52px;
  filter: drop-shadow(var(--shadow-green));
}
.footer-brand p {
  font-size: .84rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 28ch;
}

.footer-col h4 {
  font-size: .65rem;
  font-weight: var(--fw-black);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a {
  font-size: .84rem;
  color: var(--c-text-muted);
  transition: color 200ms;
  display: flex;
  align-items: center;
  gap: .35rem;
  word-break: break-all;
}
.footer-col a:hover { color: var(--c-text); }

.footer-bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: .74rem;
  color: var(--c-text-dim);
}

.social-links {
  display: flex;
  gap: .6rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: .65rem;
  font-weight: var(--fw-black);
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: border-color 200ms, color 200ms, background 200ms;
}
.social-links a:hover {
  border-color: var(--c-green);
  color: var(--c-green);
  background: rgba(42,176,80,.08);
}

/* ---- 10. Home Hero ---- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-cornice {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: url('../img/cornice.jpg') bottom center / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.45) 55%, #000 100%);
  mask-image:         linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.45) 55%, #000 100%);
  opacity: .5;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(.55rem, 1.6vmin, 1.1rem);
  padding: calc(var(--nav-h) + 2rem) 1.5rem 5rem;
}
.hero-logo {
  width: clamp(90px, 18vmin, 190px);
  filter: drop-shadow(var(--shadow-green));
  animation: fadeIn 1.1s ease both;
}
.hero-tagline {
  font-family: var(--ff-script);
  font-size: clamp(1.9rem, 5.2vmin, 3.8rem);
  text-shadow: 0 2px 24px rgba(0,0,0,.95);
  animation: fadeUp 1.1s .15s ease both;
}
.hero-sub {
  font-size: clamp(.56rem, 1.15vmin, .76rem);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  font-weight: var(--fw-light);
  animation: fadeUp 1.1s .28s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(42,176,80,.12);
  border: 1px solid rgba(42,176,80,.3);
  border-radius: var(--r-pill);
  padding: .35em 1em;
  font-size: clamp(.58rem, 1.2vmin, .72rem);
  font-weight: var(--fw-bold);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-green);
  animation: fadeUp 1.1s .38s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 6px var(--c-green);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: clamp(.5rem, 1.5vmin, 1rem);
  animation: fadeUp 1.1s .5s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--c-text-dim);
  font-size: .54rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  animation: fadeIn 1.5s .8s ease both;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--c-green) 0%, transparent 100%);
  animation: scrollPulse 2s 1s ease-in-out infinite;
}

/* ---- 11. Page Hero (inner pages) ---- */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 8vw, 6rem);
  text-align: center;
  overflow: hidden;
  background: var(--c-bg);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(42,176,80,.08), transparent 70%);
  pointer-events: none;
}
.page-hero .t-overline { margin-bottom: .5rem; }
.page-hero h1 {
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  font-weight: var(--fw-black);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: var(--c-text-muted);
  max-width: 55ch;
  margin-inline: auto;
  line-height: 1.7;
}

/* ---- 12. Stats Grid ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-border);
  gap: 1px;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  background: var(--c-surface);
  padding: clamp(1.5rem, 4vw, 2.8rem) 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 250ms;
}
.stat-item:hover { background: var(--c-surface-hover); }
.stat-value {
  display: block;
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: var(--fw-black);
  color: var(--c-green);
  text-shadow: 0 0 20px rgba(42,176,80,.3);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  display: block;
  font-size: clamp(.58rem, 1.1vmin, .68rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  font-weight: var(--fw-bold);
}

/* ---- 13. Timeline ---- */
.timeline {
  position: relative;
  padding-left: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: .6rem; bottom: .6rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--c-green) 0%, rgba(42,176,80,.1) 100%);
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.2rem;
  top: .45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 10px rgba(42,176,80,.6);
  transform: translateX(-4px);
}
.timeline-year {
  font-size: .68rem;
  font-weight: var(--fw-black);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: .2rem;
}
.timeline-item h3 {
  font-size: .95rem;
  font-weight: var(--fw-bold);
  margin-bottom: .2rem;
}
.timeline-item p {
  font-size: .84rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ---- 14. Team Cards ---- */
.team-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 250ms var(--ease-out), box-shadow 250ms, border-color 250ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 28px rgba(42,176,80,.12);
  border-color: var(--c-green);
}
.team-card-header {
  padding: 1.4rem 1.5rem;
  background: linear-gradient(135deg, rgba(42,176,80,.1) 0%, transparent 60%);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.team-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: var(--fw-black);
  color: #fff;
  flex-shrink: 0;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.team-card-title h3 {
  font-size: .95rem;
  font-weight: var(--fw-black);
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1.2;
}
.team-card-title .cat {
  font-size: .65rem;
  color: var(--c-green);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  margin-top: .15rem;
}
.team-card-body {
  padding: 1.25rem 1.5rem 1.6rem;
}
.team-card-body p {
  font-size: .86rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.tag {
  padding: .28em .85em;
  border-radius: var(--r-pill);
  font-size: .63rem;
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tag--green {
  background: rgba(42,176,80,.14);
  color: var(--c-green);
  border: 1px solid rgba(42,176,80,.28);
}
.tag--dim {
  background: var(--c-surface);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border-sub);
}

/* ---- 15. Value Cards ---- */
.value-card {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: border-color 250ms, background 250ms, transform 250ms var(--ease-out);
}
.value-card:hover {
  border-color: var(--c-green);
  background: var(--c-surface-hover);
  transform: translateY(-3px);
}
.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(42,176,80,.12);
  border: 1px solid rgba(42,176,80,.22);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
}
.value-card h3 {
  font-size: .92rem;
  font-weight: var(--fw-black);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.value-card p {
  font-size: .84rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ---- 16. Plan Cards (Abbonamenti) ---- */
.plan-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: transform 250ms var(--ease-out), box-shadow 250ms, border-color 250ms;
}
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.plan-card--featured {
  border-color: var(--c-green);
  background: rgba(42,176,80,.04);
}
.plan-card--featured:hover {
  box-shadow: var(--shadow-card), 0 0 30px rgba(42,176,80,.15);
}
.plan-badge-pill {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-green);
  color: #fff;
  font-size: .62rem;
  font-weight: var(--fw-black);
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .32em 1.3em;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.plan-name {
  font-size: 1.1rem;
  font-weight: var(--fw-black);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.plan-price {
  font-size: clamp(2.4rem, 5.5vw, 3.2rem);
  font-weight: var(--fw-black);
  color: var(--c-green);
  line-height: 1;
}
.plan-price sup { font-size: 1.1rem; vertical-align: super; }
.plan-note {
  display: block;
  font-size: .76rem;
  color: var(--c-text-dim);
  font-weight: var(--fw-light);
  margin-top: .3rem;
  font-style: italic;
}
.plan-divider {
  height: 1px;
  background: var(--c-border);
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}
.plan-features li {
  font-size: .86rem;
  color: var(--c-text-muted);
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  line-height: 1.5;
}
.plan-features li::before {
  content: '✓';
  color: var(--c-green);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  margin-top: .05em;
}

/* ---- 17. Product Cards (Merchandising) ---- */
.product-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 250ms var(--ease-out), box-shadow 250ms, border-color 250ms;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--c-green);
}
.product-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(42,176,80,.07) 0%, rgba(255,255,255,.02) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  color: var(--c-text-dim);
  border-bottom: 1px solid var(--c-border);
  padding: 1rem;
}
.product-img-icon {
  font-size: 3rem;
  line-height: 1;
  opacity: .3;
}
.product-img-label {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  color: var(--c-text-dim);
}
.product-body { padding: 1.1rem 1.25rem 1.4rem; }
.product-name {
  font-weight: var(--fw-bold);
  font-size: .94rem;
  margin-bottom: .3rem;
}
.product-price {
  color: var(--c-green);
  font-weight: var(--fw-black);
  font-size: 1.05rem;
}
.product-placeholder {
  font-size: .7rem;
  color: var(--c-text-dim);
  font-style: italic;
  margin-top: .25rem;
}

/* ---- 18. Contact Form & Info ---- */
.contact-info-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: rgba(42,176,80,.1);
  border: 1px solid rgba(42,176,80,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
}
.contact-info-content h4 {
  font-size: .68rem;
  font-weight: var(--fw-black);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: .2rem;
}
.contact-info-content p,
.contact-info-content a {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.55;
}
.contact-info-content a:hover { color: var(--c-green); }

.contact-form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px,100%), 1fr));
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.form-group label {
  font-size: .68rem;
  font-weight: var(--fw-bold);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--c-border-sub);
  border-radius: var(--r-md);
  padding: .8em 1em;
  color: var(--c-text);
  font-size: .9rem;
  transition: border-color 200ms, background 200ms;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--c-green);
  background: rgba(42,176,80,.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-text-dim); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: #111; }

.form-msg {
  display: none;
  font-size: .85rem;
  font-weight: 700;
  padding: .8em 1em;
  border-radius: var(--r-md);
  line-height: 1.5;
}
.form-msg.visible { display: block; margin: .3rem 0 1.1rem; }
.form-msg--success {
  color: #4ade80;
  background: rgba(42,176,80,.12);
  border: 1px solid rgba(42,176,80,.35);
}
.form-msg--error {
  color: #f87171;
  background: rgba(248,113,113,.1);
  border: 1px solid rgba(248,113,113,.35);
}

.map-placeholder {
  aspect-ratio: 16/6;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  color: var(--c-text-muted);
  font-size: .85rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(42,176,80,.05), transparent 70%);
}
.map-placeholder-icon {
  font-size: 2.5rem;
  opacity: .25;
  position: relative;
}
.map-placeholder p { position: relative; font-size: .8rem; }

/* ---- 19. CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, rgba(42,176,80,.1) 0%, rgba(42,176,80,.03) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: var(--fw-black);
  margin-bottom: .8rem;
}
.cta-banner p {
  color: var(--c-text-muted);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: clamp(.88rem, 1.8vw, 1rem);
}

/* ---- 20. Placeholder Note ---- */
.placeholder-note {
  background: rgba(255,165,0,.06);
  border: 1px dashed rgba(255,165,0,.35);
  border-radius: var(--r-md);
  padding: .65em 1em;
  font-size: .78rem;
  color: rgba(255,185,50,.7);
  font-style: italic;
  line-height: 1.5;
}

/* ---- 21. Accordion / FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--c-border-sub);
}
.faq-item:first-child { border-top: 1px solid var(--c-border-sub); }
.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .95rem;
  font-weight: var(--fw-bold);
  color: var(--c-text);
  transition: color 200ms;
}
.faq-trigger:hover { color: var(--c-green); }
.faq-trigger .faq-icon {
  font-size: 1.3rem;
  color: var(--c-green);
  transition: transform 300ms var(--ease-out);
  flex-shrink: 0;
  line-height: 1;
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--ease-out);
}
.faq-body.open { grid-template-rows: 1fr; }
.faq-body-inner {
  overflow: hidden;
}
.faq-body-inner p {
  padding-bottom: 1.2rem;
  font-size: .9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ---- 22. Scroll Animations ---- */
[data-anim] {
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms var(--ease-out);
}
[data-anim="fade-up"]    { transform: translateY(28px); }
[data-anim="fade-in"]    { transform: none; }
[data-anim="fade-left"]  { transform: translateX(-28px); }
[data-anim="fade-right"] { transform: translateX(28px); }
[data-anim="scale-in"]   { transform: scale(.94); }
[data-anim].visible { opacity: 1; transform: none; }

/* ---- 23. Keyframes ---- */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  80%  { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ---- 24b. Notizie ---- */
.news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
@media (min-width: 900px) {
  .news-layout { grid-template-columns: 1.6fr 1fr; align-items: start; }
}

.news-date {
  font-size: .7rem;
  font-weight: var(--fw-bold);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.news-featured {
  display: block;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 250ms var(--ease-out), box-shadow 250ms, border-color 250ms;
}
.news-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(42,176,80,.12);
  border-color: var(--c-green);
}
.news-featured-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}
.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-featured-body {
  padding: clamp(1.2rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.news-featured-body .tag { align-self: flex-start; }
.news-featured-body h2 {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: var(--fw-black);
  line-height: 1.2;
}
.news-featured-body p:last-child {
  color: var(--c-text-muted);
  font-size: .9rem;
  line-height: 1.7;
}

.news-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.news-side-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: .7rem;
  transition: border-color 250ms, background 250ms, transform 250ms var(--ease-out);
}
.news-side-item:hover {
  border-color: var(--c-green);
  background: var(--c-surface-hover);
  transform: translateY(-2px);
}
.news-side-thumb {
  width: 84px;
  height: 64px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  overflow: hidden;
}
.news-side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-side-text h3 {
  font-size: .86rem;
  font-weight: var(--fw-bold);
  line-height: 1.35;
  margin-bottom: .3rem;
}

.news-other { margin-top: clamp(3rem, 6vw, 5rem); }

.news-body {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.85;
}
.news-body p { margin-bottom: 1.2rem; }
.news-body h2 {
  color: var(--c-text);
  font-size: 1.25rem;
  font-weight: var(--fw-black);
  margin: 2rem 0 1rem;
}
.news-body h3 {
  color: var(--c-text);
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  margin: 1.5rem 0 .8rem;
}
.news-body a { color: var(--c-green); text-decoration: underline; }
.news-body img { border-radius: var(--r-md); margin: 1.2rem 0; }

/* ---- 24. Misc Utilities ---- */
.text-green { color: var(--c-green); }
.text-muted { color: var(--c-text-muted); }

.intro-text {
  font-size: clamp(.92rem, 1.9vw, 1.08rem);
  color: var(--c-text-muted);
  line-height: 1.8;
  max-width: 70ch;
}

.highlight-box {
  background: rgba(42,176,80,.06);
  border-left: 3px solid var(--c-green);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}
