:root {
  --testo-celeste: #30bad3ff;
  --sfondo-testo-celeste: #122230;
  --sfondo-celeste: #0C9CBC;
  --sfondo-arancione: #ED6315;
  --sfondo-dark: #05091A;
  --testo: #b8cdd8ff;
  --sfondo-card: #1F2434;
}

body {
  background: linear-gradient(180deg, #05091A 0%, #0f1a3c 100%);
  color: var(--testo);
  font-family: 'Raleway', sans-serif;
}

/* HERO */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(12,156,188,0.2), transparent 90%),
    radial-gradient(circle at 80% 90%, rgba(237,99,21,0.15), transparent 70%);
}
/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(48,186,211,0.15);
  color: #30bad3;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 600;
}
/* Titolo principale */
.hero-main {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
/* Gradiente testo */
.hero-gradient span, .gradient {
  background: linear-gradient(90deg, #30bad3, #b9425c);
  background-clip: text;
  color: transparent;
  font-weight: 800;
}
.hero-content p {
  margin-top: 20px;
  font-size: 1.2rem;
}
/* Descrizione */
.hero-description {
  max-width: 650px;
  margin: 20px auto;
  opacity: 0.8;
  font-size: 1.1rem;
} 
/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat strong {
  font-size: 1.6rem;
  display: block;
  color: #c6ecf3;
}
.stat span {
  font-size: 0.9rem;
  opacity: 0.7;
}
/* CONTENITORE BOTTONI */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-hero-primary,
.btn-hero-secondary {
  padding: 14px 28px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-hero-primary {
  background: linear-gradient(135deg, #ed6315, #ff7b2f);
  color: white;
  border: none;
  box-shadow: 0 8px 20px rgba(237, 99, 21, 0.35);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(237, 99, 21, 0.5);
  color: white;
}

/* SECONDARY - SCURO CON BORDO CELESTE */
.btn-hero-secondary {
  background: transparent;
  color: #30bad3;
  border: 2px solid #30bad3;
}
.btn-hero-secondary:hover {
  background: #30bad3;
  color: #0e0e0e;
  transform: translateY(-3px);
}



.section-divider {
  height: 1px;
  width: 100%;
  margin: 0;
  background: linear-gradient(
    to right,
    transparent,
    #df9712,
    transparent
  );
}


/* =========================
   SERVICES SECTION
========================= */

.services-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #0b1220 0%, #0e1628 100%);
  position: relative;
}
/* Titolo sezione */
.services-section .section-sub {
  color: #30bad3;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.services-section .section-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 60px;
}
/* CARD */
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 45px 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border: 1px solid #30bad3;
  box-shadow: 0 15px 40px rgba(48,186,211,0.15);
}

/* Icon container */
.service-card i {
  width: 26px;
  height: 26px;
}
.service-card .icon-box {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #30bad3, #1f8fa3);
}

/* Titolo */
.service-card h3 {
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Testo */
.service-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* =========================
   PLANS SECTION
========================= */

.plans-section {
  padding: 120px 0;
 background: radial-gradient(
    circle at 50% 10%, /* centro in alto al centro */
    rgba(12,156,188,0.2), 
    transparent 80%
  );  position: relative;
  
}

/* Titolo */
.section-title {
  color: white;
  font-weight: 800;
  font-size: 2.7rem;
}

.section-subtitle {
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
}

/* CARD BASE */
.plan-card {
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 45px 35px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-10px);
  border: 1px solid #30bad3;
  box-shadow: 0 20px 40px rgba(48,186,211,0.15);
}
.plan-base:hover {
  transform: translateY(-10px);
  border: 1px solid #e0edf0;
  box-shadow: 0 20px 40px rgba(48,186,211,0.15);
}
/* Piano evidenziato */
.plan-card.featured {
  border: 1px solid #eb8007;
  box-shadow: 0 0 30px rgba(211, 146, 48, 0.25);
  transform: scale(1.05);
}

/* Badge */
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #e49216;
  color: #0e1628;
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 600;
}

/* Titolo */
.plan-card h3 {
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Prezzo */
.price {
  font-size: 2rem;
  font-weight: 800;
  color: #a9d0f0;
  margin-bottom: 20px;
}

/* Lista */
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-card ul li {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}


.hero-checks {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #eaeaea;
}

.hero-checks-b i {
  background: linear-gradient(135deg, #727272, #d1d3d3);
  color: #d6d6d6;
  font-size: 12px;
  font-weight: 900;
  padding: 8px;
  border-radius: 50%;
}
.hero-checks-c i {
  background: linear-gradient(135deg, #0c9cbc, #00e0ff);
  color: #d6d6d6;
  font-size: 12px;
  font-weight: 900;
  padding: 8px;
  border-radius: 50%;
}.hero-checks-p i {
  background: linear-gradient(135deg, #bc610c, #ff8800);
  color: #d6d6d6;
  font-size: 12px;
  font-weight: 900;
  padding: 8px;
  border-radius: 50%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}
.btn-hero {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.1); /* trasparente */
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px); /* effetto vetro */
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
/* Bottone Arancione */
.btn-hero-primary {
  background: linear-gradient(135deg, #ed6315, #ff8c42);
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(237,99,21,0.4);
}

/* Bottone Scuro con bordo celeste */
.btn-hero-secondary {
  background: transparent;
  color: #00e0ff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #00e0ff;
  transition: 0.3s ease;
}

.btn-hero-secondary:hover {
  background: #00e0ff;
  color: #0f0f0f;
}

/* ================= FEATURED AUCTIONS ================= */

.featured-auctions-section {
  min-height: 100vh;
  background: #071426;
  padding: 120px 0;
  display: flex;
  align-items: center;
}

.hot-label {
  color: #ff7b2f;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.featured-title {
  color: white;
  font-weight: 700;
  font-size: 2.5rem;
}

.featured-title span {
  color: #00c8ff;
}

.view-all {
  color: #00c8ff;
  text-decoration: none;
  font-size: 0.9rem;
}

.auction-card {
  background: #0f1f35;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

.auction-card:hover {
  transform: translateY(-6px);
}

.auction-img {
  position: relative;
  height: 220px;
}

.auction-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff7b2f;
  color: white;
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 20px;
}

.time-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 20px;
}

.auction-body {
  padding: 20px;
  color: white;
}

.auction-body h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.auction-body small {
  opacity: 0.6;
}

.auction-price {
  color: #00c8ff;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 10px 0 15px;
}

.btn-bid {
  width: 100%;
  padding: 10px;
  background: #1c2f4a;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
}

.btn-bid:hover {
  background: #243d5f;
}

/* ================= TESTIMONIALS ================= */

.testimonials-section {
  min-height: 100vh;
  background: linear-gradient(180deg, #071426, #0b1d34);
  padding: 120px 0;
  display: flex;
  align-items: center;
}

.testimonial-card {
  background: #0f1f35;
  border-radius: 15px;
  padding: 40px;
  color: white;
  border: 1px solid rgba(255,255,255,0.05);
}

.testimonial-card .stars {
  color: #ffb400;
  margin-bottom: 15px;
}

.testimonial-card p {
  opacity: 0.85;
}

.testimonial-user {
  margin-top: 20px;
  font-weight: 600;
}