:root {
  --primary-color: #2563eb;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --bg-primary: #1f2937;
  --bg-secondary: #111827;
  --border-color: #374151;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.3);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.3);
  --focus: #f59e0b;
  --popular-badge: #10b981;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  margin: 0;
}
a { color: var(--primary-color); text-decoration: none; }
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
header { background: transparent; padding: 1.5rem 0 0.5rem 0; }
.logo span { font-weight: 700; font-size: 1.3rem; color: var(--primary-color); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.2rem; }
.hero { text-align: center; padding: 4rem 1rem 2rem 1rem; }
.hero h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 2rem; }
.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 0.9em 2.2em;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus { background: #1e40af; transform: scale(1.04); box-shadow: var(--shadow-lg);}
.cta-pricing { margin: 2.5rem auto 0 auto; display: block; }
.pricing { padding: 4rem 0 2rem 0; }
.section-title { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; text-align: center; }
.section-subtitle { color: var(--text-secondary); text-align: center; margin-bottom: 2.5rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.pricing-card {
  background: var(--bg-secondary);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover, .pricing-card:focus-within { box-shadow: var(--shadow-lg); transform: translateY(-4px) scale(1.03);}
.pricing-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.price { font-size: 2.1rem; font-weight: 700; color: var(--primary-color); margin-bottom: 0.2rem; }
.price-period { color: var(--text-secondary); font-size: 1rem; margin-bottom: 1.2rem; }
.features-list { list-style: none; padding: 0; margin: 0 0 1.2rem 0; }
.features-list li { margin-bottom: 0.5rem; color: var(--text-primary);}
.pricing-note { margin-bottom: 0.7rem; color: var(--text-secondary); font-size: 0.98rem;}
.popular { border-top: 4px solid var(--popular-badge) !important; box-shadow: 0 8px 32px -8px #10b98144; }
.popular-badge {
  position: absolute; top: -1.2rem; left: 50%; transform: translateX(-50%);
  background: var(--popular-badge); color: #fff; font-size: 0.95rem; font-weight: 700;
  padding: 0.3em 1.1em; border-radius: 1.2em; box-shadow: 0 2px 8px #10b98133;
  letter-spacing: 0.02em;
}
.pricing-delivery { text-align: center; color: var(--text-secondary); margin-top: 1.2rem; font-size: 1.05rem; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero { padding: 2.5rem 0.5rem 1.5rem 0.5rem; }
  .pricing-card { padding: 1.5rem 0.7rem 1rem 0.7rem; }
}
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #222c; color: #fff;
  padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center;
  z-index: 1000; font-size: 1rem; box-shadow: 0 -2px 8px #0002; backdrop-filter: blur(2px);
}
.cookie-banner a { color: #60a5fa; text-decoration: underline; }
.cookie-accept {
  background: var(--primary-color); color: #fff; border: none; border-radius: 4px;
  padding: 0.5em 1.2em; font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.cookie-accept:focus, .cookie-accept:hover { background: #1e40af; } 
.nav-bar {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: rgba(255,255,255,0.92);
  color: #18181b;
  border-radius: 0 0 2.2rem 2.2rem;
  box-shadow: 0 2px 16px 0 rgba(30,41,59,0.07);
  border-bottom: 1.5px solid #e5e7eb;
  backdrop-filter: blur(8px);
  padding: 1.5rem 0 0.7rem 0;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-bar > .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3.5rem;
  position: relative;
}
.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.nav-bar img {
  width: 44px;
  height: 44px;
  filter: none;
}
.nav-bar span {
  color: #2563eb;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-bar .nav-link {
  color: #18181b;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 6px;
  padding: 0.3em 1.1em;
  transition: color 0.18s, background 0.18s;
  font-size: 1.08rem;
  text-align: center;
}
.nav-bar .nav-link:hover, .nav-bar .nav-link:focus {
  color: #2563eb;
  background: rgba(37,99,235,0.07);
}
.login-link {
  margin-left: 0;
  color: #2563eb;
  font-weight: 600;
  background: rgba(37,99,235,0.07);
  border-radius: 6px;
  padding: 0.4em 1.2em;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-link:hover, .login-link:focus {
  background: #2563eb;
  color: #fff;
}
@media (max-width: 1100px) {
  .nav-bar > .container {
    padding: 0 1.2rem;
  }
}
@media (max-width: 900px) {
  .nav-bar > .container {
    gap: 1.2rem;
    padding: 0 0.5rem;
  }
}
@media (max-width: 700px) {
  .nav-bar {
    border-radius: 0 0 0 0;
    padding: 1.1rem 0 0.5rem 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .nav-bar > .container {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding: 0 0.5rem;
  }
  .logo-title {
    justify-content: center;
    gap: 0.7rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .nav-bar .nav-link {
    font-size: 1.08rem;
    padding: 0.5em 1.2em;
    width: 100%;
    max-width: 320px;
  }
  .login-link {
    margin: 0 auto;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .hero {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
@media(max-width: 768px){
  .cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #10b981;
    color: white;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    z-index: 999;
    font-size: 1.1rem;
    box-shadow: 0 -2px 8px #0002;
    border-radius: 0;
    letter-spacing: 0.01em;
    transition: background 0.2s;
  }
  .cta-sticky:active,
  .cta-sticky:focus {
    background: #059669;
  }
}
@media(min-width: 769px){
  .cta-sticky { display: none; }
} 
.footer {
  background: var(--bg-secondary);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  margin-top: 3rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}
.footer-section p,
.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 1.6;
  font-size: 1rem;
}
.footer-section a:hover {
  color: var(--primary-color);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.98rem;
}
@media (max-width: 700px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
} 
.nav-bar-glass {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(90deg, rgba(255,255,255,0.92) 60%, rgba(37,99,235,0.08) 100%);
  color: #18181b;
  border-radius: 0 0 2.2rem 2.2rem;
  box-shadow: 0 2px 16px 0 rgba(30,41,59,0.07);
  border-bottom: 1.5px solid #e5e7eb;
  backdrop-filter: blur(12px);
  padding: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 1.2rem 2.2rem 1.2rem 2.2rem;
  position: relative;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 #2563eb22;
  padding: 0.3rem 1.1rem 0.3rem 0.3rem;
}
.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px #2563eb33;
  background: #f3f6fd;
  object-fit: contain;
}
.logo-texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo-title-main {
  color: #2563eb;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.logo-subtitle {
  color: #18181b;
  font-size: 0.98rem;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 0.1em;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-link {
  color: #18181b;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 6px;
  padding: 0.3em 1.1em;
  transition: color 0.18s, background 0.18s;
  font-size: 1.08rem;
  text-align: center;
  position: relative;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 44px;
}
.nav-link:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.18em;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb 60%, #10b981 100%);
  border-radius: 2px;
  transition: width 0.32s cubic-bezier(.4,0,.2,1), left 0.32s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.nav-link:hover:after, .nav-link:focus:after {
  width: 100%;
  left: 0;
}
.nav-link:hover, .nav-link:focus {
  color: #2563eb;
  background: rgba(37,99,235,0.07);
}
.login-link {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(90deg, #2563eb 60%, #10b981 100%);
  border-radius: 2em;
  padding: 0.55em 1.7em 0.55em 1.2em;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px #2563eb22;
  border: none;
  outline: none;
  gap: 0.5em;
}
.login-link:hover, .login-link:focus {
  background: linear-gradient(90deg, #1e40af 60%, #059669 100%);
  color: #fff;
  box-shadow: 0 4px 16px #2563eb33;
}
@media (max-width: 900px) {
  .header-inner {
    gap: 1.2rem;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
}
@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 0.5rem 1.1rem 0.5rem;
  }
  .logo-block {
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.7rem 0.3rem 0.3rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .login-link {
    margin: 0 auto;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
} 
.policy-main {
  max-width: 800px;
  margin: 3rem auto 2rem auto;
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  background: var(--bg-secondary);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  color: var(--text-primary);
}
.policy-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 2.2rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.policy-section {
  margin-bottom: 2.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-color);
}
.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.policy-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--primary-color);
}
.policy-icon {
  font-size: 1.3em;
  vertical-align: middle;
  opacity: 0.85;
}
.policy-list {
  list-style: none;
  padding: 0 0 0 0.2em;
  margin: 0;
}
.policy-list li {
  margin-bottom: 0.5em;
  padding-left: 1.2em;
  position: relative;
}
.policy-list li:before {
  content: '•';
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-size: 1.1em;
  top: 0.1em;
}
@media (max-width: 700px) {
  .policy-main {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    margin: 1.2rem 0 1.2rem 0;
  }
  .policy-title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  .policy-section {
    margin-bottom: 1.2rem;
    padding-bottom: 0.7rem;
  }
  .policy-section h2 {
    font-size: 1.08rem;
  }
} 
/* FAQ Section */
.faq-section {
  background: var(--bg-secondary);
  padding: 4rem 0 2.5rem 0;
  border-radius: 1.5rem;
  margin: 3rem 0 2rem 0;
  box-shadow: var(--shadow);
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.faq-item {
  background: rgba(31,41,55,0.85);
  border-radius: 1rem;
  box-shadow: 0 2px 12px #0002;
  padding: 0.2rem 0.7rem;
  transition: box-shadow 0.2s, background 0.2s;
  outline: none;
}
.faq-item:focus-within, .faq-item:focus {
  box-shadow: 0 0 0 2px var(--focus), 0 2px 12px #0002;
  background: rgba(37,99,235,0.10);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.13rem;
  font-weight: 600;
  text-align: left;
  padding: 1.1rem 0.5rem 1.1rem 0.2rem;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.18s;
  position: relative;
}
.faq-question:after {
  content: '\25BC';
  font-size: 1.1em;
  margin-left: 0.7em;
  color: var(--primary-color);
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"]:after {
  transform: rotate(-180deg);
}
.faq-answer {
  color: var(--text-secondary);
  font-size: 1.05rem;
  padding: 0 0.5rem 1.1rem 0.2rem;
  line-height: 1.6;
  animation: faqOpen 0.35s cubic-bezier(.4,0,.2,1);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 700px) {
  .faq-section { padding: 2.2rem 0 1.2rem 0; }
  .faq-list { gap: 0.7rem; }
  .faq-question { font-size: 1rem; }
  .faq-answer { font-size: 0.98rem; }
} 
/* Contact/Preventivo Section */
.contact-section {
  background: var(--bg-secondary);
  border-radius: 1.5rem;
  margin: 2.5rem 0 2rem 0;
  box-shadow: var(--shadow);
  padding: 3.5rem 0 2.5rem 0;
}
.contact-form {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-form label {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1.05rem;
}
.contact-form input,
.contact-form textarea {
  background: rgba(31,41,55,0.85);
  border: 1.5px solid var(--border-color);
  border-radius: 0.7rem;
  color: var(--text-primary);
  font-size: 1.08rem;
  padding: 0.85em 1em;
  transition: border 0.18s, box-shadow 0.18s;
  font-family: inherit;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--focus);
  outline: none;
}
.contact-form textarea {
  min-height: 110px;
  max-height: 260px;
}
.form-privacy {
  flex-direction: row;
  align-items: center;
  gap: 0.7em;
  font-size: 0.98rem;
}
.form-privacy input[type="checkbox"] {
  accent-color: var(--primary-color);
  width: 1.1em;
  height: 1.1em;
  margin: 0;
}
.contact-form .cta-button {
  margin-top: 0.7rem;
  width: 100%;
  font-size: 1.13rem;
}
.form-success, .form-error {
  margin-top: 1.1rem;
  padding: 1em;
  border-radius: 0.7em;
  font-size: 1.05rem;
  text-align: center;
}
.form-success {
  background: rgba(16,185,129,0.13);
  color: #10b981;
  border: 1.5px solid #10b981;
}
.form-error {
  background: rgba(245,158,11,0.13);
  color: #f59e0b;
  border: 1.5px solid #f59e0b;
}
@media (max-width: 700px) {
  .contact-section { padding: 2rem 0 1.2rem 0; }
  .contact-form { gap: 0.7rem; }
  .contact-form input, .contact-form textarea { font-size: 1rem; }
} 
.hidden {
  display: none !important;
} 