﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter";
  background: #f7f4ef;
  color: #1a1a1a;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #c9a84c;
}

/* HERO */
.hero {
  position: relative;
  min-height: 424px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: url("../images/image_155.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;

}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(13, 13, 13, 0.637) 25%,
      rgba(13, 13, 13, 0.25) 100%);
}

.btn-gold {
  background: linear-gradient(135deg, #c9a84c, #e8c86a);
  color: #1a1a1a;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
  border: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #c9a84c, #e8c86a);
  border-radius: 2px;
}

/* SOLUTION SECTION */
.solution-section {
  background: white;
  border-radius: 0;
}

.solution-section:nth-child(even) {
  background: #f7f4ef;
}

.solution-icon {
  width: 52px;
  height: 52px;
  background: #1a1a1a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* VANTAGGI / COME FUNZIONA cols */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.check-item .icon-gold {
  color: #c9a84c;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.check-item span {
  color: #444;
  font-size: 0.83rem;
  line-height: 1.55;
}

.step-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #c9a84c, #e8c86a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a1a1a;
  flex-shrink: 0;
  margin-top: 1px;
}

.step-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.step-item span {
  color: #444;
  font-size: 0.83rem;
  line-height: 1.55;
}

/* MINI CARDS in solution */
.mini-card {
  border-radius: 18px;
  background: #F3F2F1;
  padding: 18px 20px;
  border-left: 3px solid #c9a84c;
  font-size: 0.82rem;
  color: #444;
  line-height: 1.55;
}

.mini-card .icon-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}



.mini-card-dark {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 18px 20px;
  border-left: 3px solid #c9a84c;
  font-size: 0.82rem;
  color: #ccc;
  line-height: 1.55;
}

.mini-card h4,
.mini-card-dark h4 {
  font-weight: 600;
  margin-bottom: 4px;
  color: #1a1a1a;
  font-size: 0.85rem;
}

.mini-card-dark h4 {
  color: #e8c86a;
}

/* DISCLAIMER BOX */
.disclaimer {
  background: #fffbf0;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.78rem;
  color: #666;
  line-height: 1.6;
}

/* SALE & RIACQUISTO benefit cards */
.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  border-top: 3px solid #c9a84c;
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.benefit-card h4 {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.benefit-card p {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.55;
}

/* DOCS */
.doc-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #555;
  padding: 4px 0;
}

.doc-item::before {
  content: "›";
  color: #c9a84c;
  font-size: 1rem;
  margin-right: 6px;
  font-weight: 700;
}

/* FADE */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, #c9a84c, #e8c86a);
  z-index: 999;
  width: 0%;
}

footer {
  background: #111;
  color: rgba(255, 255, 255, 0.55);
}

/* FOR WHO TAG */
.for-who {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #9a7530;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 12px;
}

hr.gold-hr {
  border: none;
  border-top: 2px solid rgba(201, 168, 76, 0.2);
  margin: 32px 0;
}


.nav-desktop-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

#burger-btn {
  display: none;
}

#mobile-menu {
  display: none;
}

@media (max-width: 767px) {
  .nav-desktop-links {
    display: none !important;
  }

  .nav-desktop-btns {
    display: none !important;
  }

  #burger-btn {
    display: flex !important;
  }
}

#mobile-menu.open {
  display: block !important;
}

.mob-link {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.mob-link:hover {
  background: #fffbeb;
  color: #b45309;
}

.mob-link.active {
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.1);
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

#burger-btn.open .burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#burger-btn.open .burger-line:nth-child(2) {
  opacity: 0;
}

#burger-btn.open .burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}