/* ========================================
   Biosarda Disinfestazioni - Stili Globali
   ======================================== */

/* --- Custom Properties --- */
:root {
  --color-primary: #0F9D58;
  --color-primary-dark: #0B8043;
  --color-primary-light: #B0DAB9;
  --color-text: #2e2e2e;
  --color-text-light: #606060;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f8f8;
  --color-dark: #1e1e1e;
  --color-border: #e5e5e5;
  --font-heading: 'Dosis', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-logo: 'Exo 2', sans-serif;
  --max-width: 1170px;
  --header-height: 70px;
  --transition: 0.3s ease;
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  padding: 10px 20px;
  z-index: 10000;
  border-radius: 0 0 4px 4px;
  font-weight: 700;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  height: var(--header-height);
}

.site-header.scrolled {
  background: rgba(30, 30, 30, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo img {
  height: 50px;
  width: auto;
}

.site-logo .logo-text {
  font-family: var(--font-logo);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.site-header.scrolled .site-logo .logo-text {
  color: #fff;
}

/* Desktop Nav */
.main-nav {
  display: none;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav a {
  display: block;
  padding: 8px 14px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary-light);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: '\25BE';
  margin-left: 5px;
  font-size: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 100;
  /* Forza layout verticale (sovrascrive .main-nav ul flex) */
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 6px 0;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu a {
  display: block;
  color: var(--color-text);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), color var(--transition);
}

.dropdown-menu a:hover {
  color: var(--color-primary);
  background: var(--color-bg-alt);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--color-dark);
  padding: 80px 20px 20px;
  transition: right var(--transition);
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  padding: 12px 10px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
  color: var(--color-primary-light);
}

.mobile-nav .mobile-dropdown-items {
  padding-left: 15px;
  display: none;
}

.mobile-nav .mobile-dropdown-items.open {
  display: block;
}

.mobile-nav .mobile-nav-cta {
  margin: 20px 10px 10px;
  text-align: center;
  display: block;
  padding: 14px 32px;
  font-size: 15px;
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
  border-bottom: none;
  border-radius: 4px;
  transition: all var(--transition);
}

.mobile-nav .mobile-nav-cta:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}

.mobile-nav .mobile-dropdown-items a {
  font-size: 13px;
  padding: 8px 10px;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-family: var(--font-logo);
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.hero .subtitle {
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.6;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.hero-buttons .btn {
  min-width: 220px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  min-width: 44px;
  min-height: 44px;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--color-primary);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-dark:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 20px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.service-card .btn {
  font-size: 12px;
  padding: 8px 20px;
}

/* ========================================
   COME OPERIAMO (How We Work)
   ======================================== */
.come-operiamo {
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
  color: #fff;
}

.come-operiamo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.come-operiamo .container {
  position: relative;
  z-index: 1;
}

.come-operiamo .section-title h2,
.come-operiamo .section-title p {
  color: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}

.step-item {
  padding: 20px;
}

.step-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--color-primary-light);
}

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

.step-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.step-item h3 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.step-item p {
  color: #ddd;
  font-size: 0.9rem;
}

/* ========================================
   ATTREZZATURE (Equipment)
   ======================================== */
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.equipment-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.equipment-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.equipment-card-body {
  padding: 16px;
}

.equipment-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.equipment-card p {
  color: var(--color-text-light);
  font-size: 0.85rem;
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 40px 18px 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 0 18px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

/* Quick contact cards */
.contact-quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-quick-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--color-text);
  display: block;
}

a.contact-quick-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  color: var(--color-text);
}

.contact-quick-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-quick-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  color: var(--color-primary-dark);
}

.contact-quick-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.5;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

/* Contact info sidebar */
.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.contact-detail:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact-icon-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(15, 157, 88, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail strong {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
  margin-bottom: 2px;
}

.contact-detail span {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.contact-detail a {
  color: var(--color-text);
  font-size: 0.9rem;
}

.contact-detail a:hover {
  color: var(--color-primary);
}

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-social-links a {
  display: block;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.25rem;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-group label.required::after {
  content: ' *';
  color: #d32f2f;
  font-weight: 700;
}

.form-group:not(.altcha-wrapper) input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23606060' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 157, 88, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-group-checkbox input[type="checkbox"] {
  width: auto;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--color-primary);
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

.form-group-checkbox label {
  font-weight: 400;
  font-size: 0.9rem;
  margin-bottom: 0;
  cursor: pointer;
  line-height: 1.5;
}

.form-group-checkbox label.required::after {
  content: ' *';
  color: #d32f2f;
  font-weight: 700;
  margin-left: 2px;
}

.form-group-checkbox label a {
  text-decoration: underline;
}

.form-group.error.form-group-checkbox .error-message {
  margin-left: 28px;
}

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 1rem;
}

/* Map - full width below grid */
.map-section {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 400px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.map-section iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Map - legacy container (used in sidebar) */
.map-container {
  margin-top: 24px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding-bottom: 55%;
  height: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form error states */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #d32f2f;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
}

.form-group.error.form-group-checkbox input[type="checkbox"] {
  outline: 2px solid #d32f2f;
  outline-offset: 2px;
}

.error-message {
  display: block;
  color: #d32f2f;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* Form notification (success/error popup) - card chiara, mai nera */
#form-notification.form-notification {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  max-width: 90%;
  width: 520px;
  padding: 24px 28px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  animation: notificationSlideDown 0.35s ease;
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff !important;
  color: var(--color-text) !important;
  border: 1px solid var(--color-border);
}

@keyframes notificationSlideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

#form-notification.form-notification.notification-success {
  border-left: 5px solid var(--color-primary);
}

#form-notification.form-notification.notification-error {
  border-left: 5px solid #c62828;
}

#form-notification.form-notification::before {
  content: '✓';
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 157, 88, 0.12);
  color: var(--color-primary);
  border-radius: 50%;
}

#form-notification.form-notification.notification-error::before {
  content: '✕';
  background: rgba(198, 40, 40, 0.12);
  color: #c62828;
}

.form-notification-text {
  flex: 1;
  color: var(--color-text);
}

@media (max-width: 767px) {
  #form-notification.form-notification {
    width: 90%;
    max-width: 340px;
    padding: 20px 22px;
    font-size: 0.95rem;
  }
  
  #form-notification.form-notification::before {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--color-dark);
  color: #ccc;
  padding: 36px 0 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

/* Brand column: logo + name */
.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 3px;
  flex-shrink: 0;
}

.footer-brand-header h4 {
  margin-bottom: 0;
}

/* Credential badges row */
.footer-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.footer-badge {
  height: 50px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 5px;
  padding: 6px 10px;
}

.footer-badge-wide {
  height: 46px;
}

.footer-badges-link {
  display: inline-block;
  text-decoration: none;
  margin-top: 14px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 5px;
}

.footer-col a {
  color: #ccc;
  font-size: 0.85rem;
}

.footer-col a:hover {
  color: var(--color-primary-light);
}

.footer-links {
  columns: 2;
  column-gap: 16px;
}

.footer-links li {
  margin-bottom: 5px;
  break-inside: avoid;
}

.footer-reviews {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-reviews-stars {
  font-size: 1rem;
  letter-spacing: 2px;
  color: #f0b429;
  margin: 0 0 4px 0;
  line-height: 1;
}

.footer-reviews-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.footer-reviews-links {
  font-size: 0.8rem;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-reviews-links a {
  color: var(--color-primary-light);
  display: inline-block;
}

.footer-reviews-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  text-align: center;
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-credit a:hover {
  color: #fff;
}

/* ========================================
   GOOGLE REVIEWS SECTION
   ======================================== */
.reviews-section {
  background: var(--color-bg-alt);
}

.reviews-google-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.reviews-google-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.reviews-google-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
}

.reviews-google-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews-rating-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.reviews-stars {
  display: flex;
  gap: 2px;
}

.reviews-stars .star {
  font-size: 1.5rem;
  color: #ddd;
}

.reviews-stars .star.filled {
  color: #FBBC05;
}

.reviews-count {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* Review items */
.reviews-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.review-item {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-border);
}

.review-item:last-child {
  border-bottom: none;
}

.review-stars {
  color: #FBBC05;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.review-author {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA button */
.reviews-cta {
  padding: 1.5rem 2rem;
  text-align: center;
  background: var(--color-bg-alt);
}

/* Responsive: tablet */
@media (min-width: 768px) {
  .reviews-google-header {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .reviews-highlights {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-item {
    border-bottom: none;
    border-right: 1px solid var(--color-border);
  }

  .review-item:last-child {
    border-right: none;
  }
}

/* Responsive: mobile */
@media (max-width: 767px) {
  .reviews-google-header {
    padding: 1.5rem;
  }

  .reviews-rating-number {
    font-size: 2rem;
  }

  .review-item {
    padding: 1.25rem 1.5rem;
  }

  .reviews-cta {
    padding: 1.25rem 1.5rem;
  }
}

/* ========================================
   CHI SIAMO - About
   ======================================== */

/* Intro row: photo + text side by side */
.about-intro-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.about-photo {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  margin: 0;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-intro-row .about-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Full-width text block */
.about-content {
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.anchor-point {
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  scroll-margin-top: 80px;
}

.about-text-full p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Affiliations section */
.about-affiliations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.affiliation-card {
  background: var(--color-bg-alt);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}

.affiliation-card img {
  max-height: 100px;
  width: auto;
  max-width: 100%;
  margin: 0 auto 1.2rem;
  display: block;
  object-fit: contain;
}

.affiliation-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.about-pa-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0 0;
  text-align: left;
}

.about-pa-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.about-pa-list a:hover {
  text-decoration: underline;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-block {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.value-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.value-block p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Credentials grid */
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.credential-item {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--color-primary);
}

.credential-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary-dark);
}

.credential-item p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* About services list */
.about-services-list ul {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.about-services-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.6;
}

.about-services-list li::before {
  content: '\2714';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.about-services-list li:last-child {
  border-bottom: none;
}

.about-services-list a {
  font-weight: 700;
}

.about-services-list a:hover {
  text-decoration: underline;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
}

.cta-section h2 {
  color: #fff;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive: tablet */
@media (min-width: 768px) {
  .about-intro-row {
    flex-direction: row;
    align-items: center;
  }

  .about-photo {
    width: 45%;
    min-width: 300px;
  }

  .about-intro-row .about-text {
    flex: 1;
  }

  .about-affiliations {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive: mobile */
@media (max-width: 767px) {
  .about-photo img {
    height: 250px;
  }

  .affiliation-card {
    padding: 1.5rem;
  }

  .affiliation-card img {
    max-height: 70px;
  }
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
  padding: 15px 0;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--color-text-light);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb span {
  color: var(--color-text-light);
  margin: 0 8px;
}

/* Breadcrumb dentro page-header (sfondo scuro) */
.page-header .breadcrumb {
  margin-top: 12px;
}

.page-header .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.page-header .breadcrumb a:hover {
  color: #fff;
}

.page-header .breadcrumb span {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 8px;
}

.page-header .breadcrumb span[aria-current="page"] {
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   SERVICE PAGE (detail)
   ======================================== */
.page-header {
  background: var(--color-dark);
  padding: 120px 0 50px;
  text-align: center;
  color: #fff;
}

.page-header h1 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-header p {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.service-content {
  padding: 50px 0;
}

.service-content h2 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: var(--color-primary-dark);
}

.service-content h3 {
  font-size: 1.2rem;
  margin: 20px 0 10px;
}

.service-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.service-content ul {
  margin: 10px 0 20px 20px;
}

.service-content ul li {
  list-style: disc;
  padding: 4px 0;
  line-height: 1.7;
}

.service-sidebar {
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 25px;
  margin-top: 30px;
}

.service-sidebar h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.service-sidebar ul li {
  margin-bottom: 10px;
}

.service-sidebar a {
  color: var(--color-text);
  font-size: 0.95rem;
  display: block;
  padding: 8px 12px;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.service-sidebar a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(15, 157, 88, 0.06);
}

.service-sidebar a.active {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.service-sidebar .sidebar-preventivo-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding: 14px 32px;
  font-size: 15px;
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
  transition: all var(--transition);
}

.service-sidebar .sidebar-preventivo-btn:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}

.service-cta {
  background: var(--color-bg-alt);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
}

.service-cta h3 {
  margin-bottom: 10px;
}

.service-cta p {
  color: var(--color-text-light);
  margin-bottom: 20px;
}

/* ========================================
   CTA PREVENTIVO BANNER (componente riutilizzabile)
   ======================================== */
.cta-preventivo-banner {
  width: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-preventivo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.cta-preventivo-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-preventivo-title {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.cta-preventivo-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cta-preventivo-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.cta-preventivo-tel,
.cta-preventivo-email {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--transition);
}

.cta-preventivo-tel:hover,
.cta-preventivo-email:hover {
  opacity: 0.9;
  color: #fff;
  text-decoration: underline;
}

.cta-preventivo-sep {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.cta-preventivo-btn {
  display: inline-block;
  background: #fff;
  color: var(--color-primary);
  border: 2px solid #fff;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all var(--transition);
}

.cta-preventivo-btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

@media (max-width: 767px) {
  .cta-preventivo-banner {
    padding: 36px 0;
  }
  .cta-preventivo-title {
    font-size: 1.4rem;
  }
  .cta-preventivo-subtitle {
    font-size: 0.98rem;
  }
  .cta-preventivo-contact {
    flex-direction: column;
    gap: 6px;
  }
  .cta-preventivo-sep {
    display: none;
  }
}

/* Fix: disabilita parallax hero su mobile per evitare effetto zoom */
@media (max-width: 767px) {
  .hero {
    background-attachment: scroll;
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet (768px+) */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .footer-links {
    columns: 1;
  }

  .hero h1 {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }

  .hero .subtitle {
    font-size: 1.15rem;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 16px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: block;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .equipment-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-quick-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 380px;
  }

  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 32px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero .subtitle {
    font-size: 1.3rem;
  }

  .section {
    padding: 80px 0;
  }

  .service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }

  .service-sidebar {
    margin-top: 0;
    position: sticky;
    top: 90px;
    align-self: start;
  }
}

/* ========================================
   Cookie banner (banner sotto)
   ======================================== */
/* Pagine policy (Privacy, Cookie) */
.policy-text h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-size: 1.25rem;
}
.policy-text ul {
  list-style: disc;
  padding-left: 1.5em;
  margin: 0.75em 0;
}
.policy-text li {
  margin-bottom: 0.35em;
}
.policy-text p + h3 {
  margin-top: 1.75em;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--color-dark);
  color: #fff;
  padding: 16px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner-text {
  flex: 1;
  min-width: 260px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: #fff;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.cookie-banner-link {
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.cookie-banner-link:hover {
  background: #fff;
  border-color: #fff;
  color: #1e1e1e !important;
}

.cookie-banner-accept {
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-banner-actions {
    justify-content: center;
  }
}

/* ========================================
   GALLERY / I NOSTRI LAVORI
   ======================================== */
.gallery-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-section-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.gallery-section-header p {
  color: var(--color-text-light);
  max-width: 650px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 157, 88, 0.35);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10001;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-caption {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-align: center;
  z-index: 10001;
}

/* Gallery responsive */
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* ========================================
   ALTCHA WIDGET CUSTOMIZATION
   ======================================== */
altcha-widget {
  display: block;
  width: 100%;
  --altcha-color-base: #ffffff;
  --altcha-color-text: #2e2e2e;
  --altcha-color-border: #d0d0d0;
  --altcha-color-border-focus: var(--color-primary);
  --altcha-color-error-text: #c62828;
  --altcha-color-footer-bg: #f8f8f8;
  --altcha-border-width: 1px;
  --altcha-border-radius: 6px;
  --altcha-max-width: 100%;
  accent-color: var(--color-primary);
}
