:root {
  --bg: #081120;
  --bg-soft: #101b2f;
  --card: rgba(16, 27, 47, 0.78);
  --card-strong: #12203a;
  --text: #eef4ff;
  --muted: #a8b4ca;
  --primary: #4dc2ff;
  --primary-strong: #0ea5e9;
  --border: rgba(255,255,255,0.09);
  --shadow: 0 20px 50px rgba(0,0,0,0.35);
}

body.light-theme {
  --bg: #eef4ff;
  --bg-soft: #ffffff;
  --card: rgba(255, 255, 255, 0.88);
  --card-strong: #ffffff;
  --text: #12203a;
  --muted: #52627d;
  --primary: #0f7fe8;
  --primary-strong: #0558af;
  --border: rgba(18,32,58,0.1);
  --shadow: 0 20px 40px rgba(15, 34, 67, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(77,194,255,0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(14,165,233,0.15), transparent 25%),
    var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.site-shell { min-height: 100vh; }

.topbar {
  position: relative;
  padding: 18px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: rgba(7, 12, 24, 0.68);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
body.light-theme .nav-wrap { background: rgba(255,255,255,0.78); }

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 320px;
}
.brand-logo {
  width: min(100%, 360px);
  max-height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(5, 88, 175, 0.18));
}
.brand-copy {
  display: flex;
  align-items: center;
}
.brand-copy span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}
.desktop-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  background: rgba(77,194,255,0.12);
  color: var(--text);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.lang-toggle,
.theme-toggle,
.mobile-action-btn {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  min-width: 198px;
  justify-content: center;
}
.theme-toggle { width: 44px; height: 44px; display: grid; place-items: center; }
.phone-btn,
.support-btn {
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.phone-btn {
  border: 1px solid var(--border);
  background: var(--card);
}
.support-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: white;
  box-shadow: 0 14px 28px rgba(14,165,233,0.25);
}
.phone-btn:hover,
.support-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.contact-card:hover,
.service-card:hover,
.about-card:hover,
.highlight-card:hover,
.stat-card:hover,
.socials a:hover,
.footer-links a:hover,
.footer-contact-list a:hover,
.partners-grid .partner:hover,
.back-to-top:hover,
.cookie-btn:hover,
.cookie-link:hover { transform: translateY(-2px); }

.mobile-menu-btn,
.mobile-panel { display: none; }

.hero {
  padding: 40px 0 22px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}
.hero-card,
.glass-card,
.service-card,
.about-card,
.highlight-card,
.stat-card,
.contact-card,
.info-card,
.legal-card,
.partners-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.hero-card { padding: 38px; }
.hero-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(77,194,255,0.1);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1,
.section-head h2,
.page-hero h1 {
  margin: 0 0 16px;
  line-height: 1.04;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}
.hero p,
.page-hero p,
.section-head p,
.card-text,
.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
}
.primary-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: white;
}
.secondary-btn {
  border: 1px solid var(--border);
  background: var(--card-strong);
}
.hero-side {
  display: grid;
  gap: 16px;
}
.info-card { padding: 24px; }
.info-card h3 { margin: 0 0 12px; font-size: 1.1rem; }
.info-card ul { padding-left: 18px; margin: 0; color: var(--muted); line-height: 1.9; }
.info-card strong { color: var(--text); }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat-card { padding: 22px; text-align: center; }
.stat-card strong { display: block; font-size: 2rem; color: var(--primary); margin-bottom: 6px; }
.stat-card span { color: var(--muted); font-weight: 600; }

.section { padding: 30px 0; }
.section-head { margin-bottom: 20px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 3rem); }
.cards-3,
.cards-4,
.highlights-grid,
.contact-grid,
.about-grid,
.services-grid {
  display: grid;
  gap: 18px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.highlights-grid,
.contact-grid,
.about-grid { grid-template-columns: repeat(2, 1fr); }
.service-card,
.about-card,
.highlight-card,
.contact-card { padding: 24px; }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  background: rgba(77,194,255,0.12);
}
.service-card h3,
.about-card h3,
.highlight-card h3,
.contact-card h3,
.legal-card h2,
.legal-card h3 { margin: 0 0 12px; }
.service-list,
.simple-list { padding-left: 18px; color: var(--muted); line-height: 1.9; }
.simple-list { margin: 0; }

.page-hero { padding: 32px 0 18px; }
.page-hero-box { padding: 34px; }

.partners-section { padding: 28px; }
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.partner {
  background: #fff;
  padding: 15px;
  border-radius: 13px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner img {
  max-width: 170px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.site-footer {
  padding: 34px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.footer-logo {
  width: min(100%, 340px);
  object-fit: contain;
  margin-bottom: 12px;
  cursor: pointer; /*Cursore Hand */
}
.footer-motto { color: var(--muted); line-height: 1.8; }
.socials,
.footer-links,
.footer-contact-list { display: flex; flex-wrap: wrap; gap: 12px; }
.socials a,
.footer-links a,
.footer-contact-list a {
  padding: 10px 14px;
  background: var(--card-strong);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.footer-bottom { text-align: center; color: var(--muted); margin-top: 18px; }
.footer-line { height: 1px; background: var(--border); margin-bottom: 16px; }
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 18px 32px rgba(14,165,233,0.3);
  z-index: 35;
}

.legal-card { padding: 28px; }
.legal-card ul { padding-left: 18px; color: var(--muted); line-height: 1.9; }
.spacer-16 { height: 16px; }

.cookie-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 7, 18, 0.62);
  backdrop-filter: blur(10px);
  z-index: 90;
}
.cookie-overlay.show { display: flex; }
.cookie-modal {
  position: relative;
  width: min(760px, 100%);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at top right, rgba(77,194,255,0.22), transparent 22%),
    radial-gradient(circle at bottom left, rgba(14,165,233,0.18), transparent 28%),
    rgba(8, 17, 32, 0.96);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  padding: 30px;
  animation: cookiePop .45s ease;
}
body.light-theme .cookie-modal {
  background:
    radial-gradient(circle at top right, rgba(77,194,255,0.18), transparent 22%),
    radial-gradient(circle at bottom left, rgba(14,165,233,0.14), transparent 28%),
    rgba(255,255,255,0.98);
}
@keyframes cookiePop {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.55;
}
.cookie-glow-one {
  top: -28px;
  right: -18px;
  width: 120px;
  height: 120px;
  background: rgba(77,194,255,0.26);
}
.cookie-glow-two {
  bottom: -34px;
  left: -24px;
  width: 140px;
  height: 140px;
  background: rgba(14,165,233,0.18);
}
.cookie-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(77,194,255,0.12);
  color: var(--primary);
  font-weight: 800;
}
.cookie-link {
  color: var(--text);
  font-weight: 700;
  border-bottom: 1px solid rgba(77,194,255,0.35);
}
.cookie-modal h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}
.cookie-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}
.cookie-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 26px;
}
.cookie-point {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
body.light-theme .cookie-point {
  background: rgba(15, 127, 232, 0.05);
  border-color: rgba(15,127,232,0.1);
}
.cookie-point strong {
  display: block;
  margin-bottom: 8px;
}
.cookie-point span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.cookie-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cookie-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 18px 34px rgba(14,165,233,0.28);
}
.cookie-btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
body.light-theme .cookie-btn-secondary {
  background: rgba(15,127,232,0.06);
  border-color: rgba(15,127,232,0.14);
}

@media (max-width: 1180px) {
  .actions { display: none; }
}

@media (max-width: 1100px) {
  .hero-grid,
  .cards-3,
  .cards-4,
  .services-grid,
  .highlights-grid,
  .contact-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-wrap { padding-left: 70px; }
  .desktop-nav { display: none; }
  .brand {
    min-width: 0;
    flex: 1;
  }
  .brand-logo { max-height: 52px; }
  .brand-copy span { font-size: 0.78rem; }
  .mobile-menu-btn {
    display: grid;
    place-items: center;
    position: absolute;
    top: 26px;
    left: 24px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    font-size: 1.2rem;
    z-index: 20;
    cursor: pointer;
  }
  .mobile-menu-btn.hidden-on-scroll { opacity: 0; pointer-events: none; }
  .mobile-panel {
    position: absolute;
    top: 76px;
    left: 20px;
    width: min(320px, calc(100% - 40px));
    z-index: 25;
  }
  .mobile-panel.open { display: block; }
  .mobile-panel-inner {
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(7,12,24,0.92);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  body.light-theme .mobile-panel-inner { background: rgba(255,255,255,0.96); }
  .mobile-panel a,
  .mobile-panel button {
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--card-strong);
    border: 1px solid var(--border);
    color: var(--text);
    text-align: left;
    font-weight: 600;
  }
  .hero-grid,
  .cards-3,
  .cards-4,
  .services-grid,
  .highlights-grid,
  .contact-grid,
  .about-grid,
  .footer-grid,
  .metric-grid,
  .cookie-points {
    grid-template-columns: 1fr;
  }
  .hero-card,
  .page-hero-box,
  .service-card,
  .about-card,
  .highlight-card,
  .contact-card,
  .partners-section,
  .legal-card,
  .info-card,
  .cookie-modal { padding: 24px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 20px, 1200px); }
  .nav-wrap { border-radius: 20px; }
  .hero-actions,
  .socials,
  .footer-links,
  .footer-contact-list,
  .cookie-actions { flex-direction: column; }
  .phone-btn,
  .support-btn,
  .primary-btn,
  .secondary-btn,
  .socials a,
  .footer-links a,
  .footer-contact-list a,
  .cookie-btn,
  .lang-toggle { width: 100%; text-align: center; justify-content: center; }
  .brand-copy { display: none; }
  .cookie-topline {
    align-items: flex-start;
    flex-direction: column;
  }
}


.contact-hero-box {
  position: relative;
  overflow: hidden;
}
.contact-hero-box::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,194,255,0.25), transparent 65%);
  pointer-events: none;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.contact-main-column {
  display: grid;
  gap: 20px;
}
.contact-info-panel,
.contact-hours-panel,
.contact-form-panel {
  padding: 28px;
}
.compact-head h2 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.compact-head p {
  margin: 0;
}
.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-detail-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  background: var(--card-strong);
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact-detail-card:hover {
  transform: translateY(-3px);
  border-color: rgba(77,194,255,0.35);
  box-shadow: 0 18px 32px rgba(0,0,0,0.12);
}
.contact-detail-card strong { font-size: 1.03rem; }
.contact-detail-card span:last-child { color: var(--muted); line-height: 1.7; }
.contact-detail-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 1.3rem;
  background: rgba(77,194,255,0.12);
}
.highlight-contact {
  background: linear-gradient(135deg, rgba(77,194,255,0.14), rgba(14,165,233,0.08));
}
.hours-list {
  display: grid;
  gap: 14px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--card-strong);
  border: 1px solid var(--border);
}
.hours-row span {
  color: var(--muted);
  font-weight: 600;
}
.hours-row strong {
  text-align: right;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.form-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row {
  display: grid;
  gap: 8px;
}
.form-row label {
  font-weight: 700;
}
.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--card-strong);
  color: var(--text);
  border-radius: 18px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(77,194,255,0.55);
  box-shadow: 0 0 0 4px rgba(77,194,255,0.12);
}
.form-row textarea {
  resize: vertical;
  min-height: 180px;
}
.submit-btn {
  border: 0;
  cursor: pointer;
}
.form-alert {
  padding: 14px 16px;
  border-radius: 18px;
  margin-bottom: 18px;
  font-weight: 600;
  line-height: 1.7;
}
.form-alert.success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.24);
  color: #b8ffd2;
}
.form-alert.error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.24);
  color: #ffd1d1;
}
body.light-theme .form-alert.success { color: #166534; }
body.light-theme .form-alert.error { color: #991b1b; }
.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1100px) {
  .contact-page-grid,
  .contact-detail-grid,
  .form-two-cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .hours-row {
    flex-direction: column;
  }
  .hours-row strong {
    text-align: left;
  }
}
/* Link social nel footer */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-link i {
    font-size: 26px;
    width: 26px;
    height: 26px;
    line-height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Colori ufficiali / riconoscibili */
.social-link .fa-whatsapp {
    color: #25D366;
}

.social-link .fa-instagram {
    color: #E4405F;
}

.social-link .fa-facebook-f {
    color: #1877F2;
}

.social-link .fa-youtube {
    color: #FF0000;
}

/* =========================
   POPUP COOKIE
   ========================= */

.sws-cookie-banner {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sws-hidden {
    display: none !important;
}

.sws-cookie-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sws-cookie-modal {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(16, 24, 40, 0.98), rgba(10, 16, 30, 0.98));
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
    padding: 24px;
    -webkit-overflow-scrolling: touch;
}

.sws-cookie-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.sws-cookie-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.sws-cookie-head-text h3 {
    margin: 0 0 8px 0;
    font-size: 1.35rem;
    line-height: 1.2;
    color: #ffffff;
}

.sws-cookie-head-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.sws-cookie-body {
    margin-bottom: 20px;
}

.sws-cookie-body p {
    margin: 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.90);
}

.sws-cookie-body a {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 600;
}

.sws-cookie-body a:hover {
    text-decoration: underline;
}

.sws-cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sws-cookie-btn {
    flex: 1 1 220px;
    min-height: 52px;
    border: 0;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}

.sws-cookie-btn:hover {
    transform: translateY(-2px);
}

.sws-cookie-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.sws-cookie-btn-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body.sws-cookie-open {
    overflow: hidden;
}

/* Mobile */
@media (max-width: 768px) {
    .sws-cookie-banner {
        align-items: flex-end;
        padding: 12px;
    }

    .sws-cookie-modal {
        width: 100%;
        max-width: 100%;
        max-height: 85dvh;
        padding: 18px;
        border-radius: 22px 22px 16px 16px;
        padding-bottom: calc(18px + env(safe-area-inset-bottom));
    }

    .sws-cookie-header {
        gap: 12px;
    }

    .sws-cookie-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 24px;
        border-radius: 15px;
    }

    .sws-cookie-head-text h3 {
        font-size: 1.1rem;
    }

    .sws-cookie-head-text p,
    .sws-cookie-body p {
        font-size: 0.95rem;
    }

    .sws-cookie-actions {
        flex-direction: column;
    }

    .sws-cookie-btn {
        width: 100%;
        flex: 1 1 auto;
    }

    /* FOOTER MOBILE +8px */
    footer {
        padding-bottom: 8px;
    }
}
/* Software@Solutions */