    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background: #f8f9fa;
      color: #333;
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background: white;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 10;
    }
    header img {
      height: 60px;
      object-fit: contain;
    }
    nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #333;
      font-weight: 600;
      transition: 0.4s;
    }
    nav a:hover {
      color: #acacac;
      transition: 0.4s;
    }
    .hero {
      text-align: center;
      padding: 80px 20px;
      background: linear-gradient(147deg, #e0f7fa, #f8f9fa);
    }
    .hero h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
    }
    .content-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 20px 20px;
      gap: 20px;
    }

.highlight2 {
  color: #007bff;
  font-weight: bolder;
  font-family: cursive;
  text-shadow: 1px 1px 5px #00a2ffa6;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  max-width: 300px;
  flex: 1 1 250px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.card img {
  height: 80px;
  margin: 0 auto 10px;
  transition: all 0.3s ease;
  filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.15));
}

.card img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0px 6px 12px rgba(0,0,0,0.25));
}

.card h2 {
  margin: 10px 0;
  font-size: 1.3rem;
  color: #222;
}

.card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
}

    footer {
      background: #343a40;
      color: white;
      text-align: center;
      padding: 20px 20px;
    }
    footer h3 {
      margin-top: 0;
    }
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }
    }

    .seo-block {
      max-width: 800px;
      margin: 60px auto;
      padding: 0 20px;
      text-align: center;
    }

    .seo-block h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .seo-block p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #444;
    }

  .section-header {
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.1;
    text-align: center;

    /* gradient text */
    background: linear-gradient(90deg, #00d8d6, #007bff, #4dd2ff, #00d8d6);
    background-size: 300% 100%;
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;

    /* wave anim */
    animation: waveShift 6s ease-in-out infinite;
  }

  .section-header::after {
    content: "";
    display: block;
    height: 4px;
    width: 64px;
    margin: 10px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #00d8d6, #007bff, #4dd2ff, #00d8d6);
    background-size: 300% 100%;
    animation: waveShift 6s ease-in-out infinite;
  }

  @keyframes waveShift {
    0%   { background-position:   0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position:   0% 50%; }
  }

  @media (prefers-reduced-motion: reduce) {
    .section-header,
    .section-header::after {
      animation: none;
      background-position: 50% 50%;
    }
  }

  .cta-btn {
    display: inline-block;
    padding: 14px 28px;
    margin: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #00d8d6, #007bff, #4dd2ff, #00d8d6);
    background-size: 300% 100%;
    animation: waveShift 6s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 16px rgba(0,0,0,0.2);
  }

  @keyframes waveShift {
    0%   { background-position:   0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position:   0% 50%; }
  }

  .contact-section {
  background: #f8f9fa;
  padding: 60px 20px;
  }

  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
  }

  .contact-form, .contact-info {
    flex: 1 1 400px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .contact-form h2,
  .contact-info h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: left;
  }

  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* egységes távolság az elemek között */
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box; /* ne lógjon ki */
    resize: none; /* textarea ne legyen átméretezhető */
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #00d8d6;
  }

  /* CTA gomb stílus */
  .contact-form button {
    margin-top: 10px;
    border: none; /* fekete keret kikapcs */
    cursor: pointer;
  }

  /* Jobb oldal */
  .contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .contact-info img {
    height: 40px;
    margin-right: 15px;
  }

  .highlight {
    background: #e0f7fa;
    padding: 2px 6px;
    border-radius: 4px;
    filter: drop-shadow(1px 1px 1px #00e1ff86);
  }

  /*GHOST MODE*/

  .choose-glass {
  max-width: 800px;
  margin: 80px auto;
  padding: 60px 30px;
  background: linear-gradient(135deg, #f1faff, #ffffff);
  border: 2px dashed #00d8d6;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.choose-glass h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #333;
}

.ghost-link {
  display: inline-block;
  font-weight: 600;
  color: #007bff;
  text-decoration: underline;
  font-size: 1.1rem;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}

.ghost-link:hover {
  color: #00bcd4;
  border-bottom: 1px solid #00bcd4;
}


/*uveg tablazat*/

.glass-table {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.glass-table h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.table-wrapper {
  overflow-x: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 12px;
  background: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  min-width: 600px;
}

thead {
  background: linear-gradient(90deg, #00d8d6, #4dd2ff);
  color: white;
}

th, td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

tbody tr:hover {
  background: #f4fafd;
}


/*uveg egyeb infok*/

.thermix-info {
  max-width: 900px;
  margin: 60px auto 40px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  text-align: center;
  padding: 40px 30px;
}

.thermix-info img {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  margin-bottom: 20px;
  filter: drop-shadow(0px 6px 12px rgba(0,0,0,0.15));
}

.thermix-info h2 {
  font-size: 1.8rem;
  color: #007bff;
  margin-bottom: 10px;
}

.thermix-info p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.ug-info {
  max-width: 900px;
  margin: 60px auto 20px;
  padding: 0 20px;
  text-align: center;
}

.ug-info h2 {
  font-size: 1.6rem;
  color: #007bff;
  margin-bottom: 10px;
}

.ug-info p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
}


/* Dropdown under Útmutatók */
nav { display: flex; align-items: center; gap: 20px; }
nav .dropdown { position: relative; display: inline-block; }
nav .dropdown-toggle { cursor: pointer; }
nav .dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  padding: 10px;
  display: none;
  z-index: 20;
}
nav .dropdown:hover .dropdown-menu,
nav .dropdown:focus-within .dropdown-menu { display: block; }
nav .dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  margin: 2px 0;
  font-weight: 500;
}
nav .dropdown-menu a:hover { background: #f4fafd; }

@media (max-width: 768px) {
  header { flex-wrap: wrap; gap: 10px; }
  nav { width: 100%; justify-content: flex-start; flex-wrap: wrap; gap: 10px; }
  nav .dropdown { width: 100%; }
  nav .dropdown-menu { position: static; box-shadow: none; padding: 0; display: block; }
  nav .dropdown-menu a { padding-left: 0; }
}

/* Related topics mini-cards */
.related-section {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 20px;
}
.related-section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.related-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.mini-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
  padding: 16px;
}
.mini-card a { text-decoration: none; font-weight: 600; color: #007bff; }
.mini-card p { margin: 8px 0 0; color: #555; font-size: 0.95rem; }

/* CTA to Tudástár */
.cta-tudastar {
  max-width: 900px;
  margin: 20px auto 0;
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(147deg, #e0f7fa, #f8f9fa);
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
  color: #202020;
}
.cta-tudastar a { font-weight: 700; }

/*UVEG LISTA*/

/* Panel keret */
.glass-specs{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 22px 22px 26px;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 34px rgba(0,0,0,0.45);
}

/* Cím + fénycsík */
.glass-title{
  margin: 0 0 10px;
  font: 600 1.3rem/1.2 "Poppins",system-ui,Arial;
  color: #202020;
  letter-spacing:.2px;
  position: relative;
  display: inline-block;
}
.glass-title::after{
  content:"";
  display:block;
  height:2px;
  margin-top:8px;
  background: linear-gradient(90deg, #7ca7ff, transparent 70%);
  opacity:.85;
}

.glass-list{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;   /* kártyák mindig középen */
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.glass-list li{
  flex: 0 0 240px;           /* kártya-szélesség */
}

.glass-list li{
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 14px 14px 12px;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.28);
}

/* Neon pötty bal felül – „műszaki” jelzés */
.glass-list li::before{
  content:"";
  position:absolute;
  top:10px; left:10px;
  width:8px; height:8px; border-radius:50%;
  background: radial-gradient(circle, #7ca7ff 0%, rgba(124,167,255,0) 70%);
  box-shadow: 0 0 8px rgba(124,167,255,.6);
  opacity:.9;
}

/* Hover finom emelés + fény */
.glass-list li:hover{
  transform: translateY(-3px);
  border-color: rgba(124,167,255,0.35);
  box-shadow: 0 12px 28px rgba(124,167,255,0.18);
}

/* A szöveg megjelenése */
.glass-list li span{
  display:block;
  color: #202020;
  font: 600 1.02rem/1.25 "Nunito",system-ui,Arial;
  letter-spacing:.3px;
  padding: 2px 10px 4px;
}

/* Low-E kiemelés – finom highlight a sor végén */
.glass-list li span{
  background:
    linear-gradient( to right, rgba(124,167,255,0.10), rgba(124,167,255,0.00) 70% );
  border-radius: 10px;
}

/* Responsív finomhangolás */
@media (max-width: 540px){
  .glass-specs{ padding:18px; }
  .glass-list{ grid-template-columns: 1fr; }
  .glass-list li span{ font-size: 1rem; }
    .glass-list{ justify-content: center; }
  .glass-list li{ flex-basis: 100%; max-width: 420px; }
}

/* Chip jelvények – csak ha a .chips osztályt használod a <ul>-on */
.glass-list.chips .stack{ display:inline-flex; gap:6px; align-items:center; justify-content:center; flex-wrap:wrap; }
.chip{
  display:inline-block;
  font-size:.78rem;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.16);
  letter-spacing:.3px;
  backdrop-filter: blur(2px);
}
.chip.gas{ background: rgba(124,167,255,0.18); color:#7ca7ff; border-color: rgba(124,167,255,0.30); }
.chip.coat{ background: rgba(200,200,255,0.08); color:#bcd2ff; border-color: rgba(124,167,255,0.28); }


/*UVEG EGYEB*/

.glass-break {
  border: none;
  border-top: 4px dashed rgba(120,165,255,0.4);
  margin: 30px 0;
  width: 90%;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 8px rgba(120,165,255,0.3);
  margin-left: auto;
  margin-right: auto;
}

.highlight3 {
  border: 1px solid rgba(124,167,255,0.25);
  color: #222222;
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: .3px;
  backdrop-filter: blur(4px);
  transition: all .25s ease;
  background: rgba(124,167,255,0.20);
  box-shadow:
    0 0 14px rgba(124,167,255,0.35),
    inset 0 0 5px rgba(124,167,255,0.25);
}


/*UVEG ELSO*/

/* Üvegdoki alap */
:root{
  --glass: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.10);
  --ink: #e9ecf6;
  --muted: #c7ccda;
  --primary: #7ca7ff;
  --primary-soft: rgba(124,167,255,0.18);
  --ok: #3bd16f;
}

.glass-panel{
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 22px 26px;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 34px rgba(0,0,0,0.45);
  color: #202020;
}

/* Cím + aláhúzott fény */
.block-head h2{
  margin: 8px 0 2px;
  font: 600 1.35rem/1.2 "Poppins",system-ui,Arial;
  letter-spacing:.2px;
  color: #202020;
  position: relative;
  display: inline-block;
}
.block-head h2::after{
  content:"";
  display:block;
  height:2px;
  margin-top:8px;
  background: linear-gradient(90deg, var(--primary), transparent 70%);
  opacity:.8;
}
.block-head .subline{
  display:block;
  font-size:.9rem;
  color: #202020;
  margin-bottom: 10px;
}

/* Kétrétegű lista – műszaki sorok */
.spec-list{
  display: grid;
  gap: 14px;
  margin: 8px 0 18px;
}
.spec-item{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  transition: border-color .25s ease, transform .25s ease;
}
.spec-item:hover{
  border-color: rgba(124,167,255,0.35);
  transform: translateY(-2px);
}
.spec-left{
  display:flex; align-items:center; gap:10px;
  font-weight:600;
}
.dot{
  width:8px;height:8px;border-radius:50%;
  background: radial-gradient(circle, var(--primary) 0%, rgba(124,167,255,0) 70%);
  box-shadow: 0 0 8px rgba(124,167,255,.6);
  flex:0 0 8px;
}
.spec-right{
  margin-top:8px;
  display:flex; flex-wrap:wrap; gap:8px;
}
.spec-note{
  margin:8px 0 0;
  font-size:.92rem;
  color: #202020;
}

/* Chipek és badge-ek */
.chip{
  display:inline-block;
  font-size:.78rem;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.16);
  letter-spacing:.3px;
  backdrop-filter: blur(2px);
}
.chip.gas{ background: var(--primary-soft); color: #202020; }
.chip.coat{ background: rgba(200,200,255,0.08); color:#202020; border-color: rgba(124,167,255,0.28); }

.badge{
  display:inline-block;
  padding:4px 10px;
  border-radius:10px;
  font-size:.8rem;
  border:1px dashed rgba(255,255,255,0.22);
}
.badge.ug{ color:#202020; border-color: rgba(59,209,111,0.45); }
.badge.ug.muted{ color:#202020; opacity:.7; }
.badge.thick{ color:#202020; border-color: rgba(255,215,154,0.45); }

/* Szaggatott szekcióválasztó */
.dashed-break{
  border: none;
  border-top: 1px dashed rgba(255,255,255,0.22);
  margin: 18px 0 14px;
  width: 100%;
}

/* Háromrétegű – kártyarács */
.glass-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 14px;
  margin: 10px 0 14px;
}
.glass-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 14px 12px;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.glass-card:hover{
  transform: translateY(-3px);
  border-color: rgba(124,167,255,0.35);
  box-shadow: 0 10px 26px rgba(124,167,255,0.18);
}
.glass-card h4{
  margin: 0 0 8px;
  font: 600 1.02rem/1.25 "Poppins",system-ui,Arial;
  color:#202020;
  letter-spacing:.2px;
}
.glass-card .meta{
  display:flex; gap:8px; justify-content:center; flex-wrap:wrap;
}

/* Összegző szöveg */
.summary{
  margin: 8px 0 0;
  color: var(--ink);
  opacity:.9;
  line-height:1.6;
}

/* Responsív finomhangolás */
@media (max-width: 540px){
  .glass-panel{ padding:18px; }
  .spec-right{ gap:6px; }
  .badge, .chip{ font-size:.77rem; padding:3px 9px; }
}

/*DISZPANEL RESZ*/

/* ===== Üvegdoki moduláris blokk ===== */
.glass-info-block{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.45);
  color: #202020;
  font-family: "Poppins", system-ui, Arial;
    max-width: 1080px;       /* ízlés szerint: 920–1200px */
  margin: 0 auto;          /* középre húzás */
  max-height: fit-content;
  margin-top: 28px;
  margin-bottom: 28px;
}

/* --- Címek --- */
.glass-info-block h2{
  font-size: 1.35rem;
  font-weight: 600;
  color: #202020;
  margin: 20px 0 10px;
  position: relative;
  display: inline-block;
  letter-spacing: .3px;
}
.glass-info-block h2::after{
  content:"";
  display:block;
  height:2px;
  margin-top:6px;
  background: linear-gradient(90deg, #7ca7ff, transparent 70%);
  opacity:.8;
}

/* --- Lista --- */
.glass-info-list{
  list-style: none;
  padding: 0;
  margin: 12px 0 20px;
  display: grid;
  gap: 10px;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 520px));
  justify-content: center; /* a teljes rács középre igazítása */
  gap: 14px;
}
.glass-info-list li{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color .25s ease, transform .25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.glass-info-list li::before{
  content:"";
  flex:0 0 8px;
  height:8px;
  border-radius:50%;
  background: radial-gradient(circle, #7ca7ff 0%, rgba(124,167,255,0) 70%);
  box-shadow:0 0 6px rgba(124,167,255,.6);
}
.glass-info-list li:hover{
  border-color: rgba(124,167,255,0.35);
  transform: translateY(-2px);
}
.glass-info-list li strong{
  color: #202020;
  font-weight: 600;
}

/* --- Jegyzet / leírás --- */
.glass-info-note{
  margin: 8px 0 18px;
  color: #383838;
  line-height: 1.6;
  font-size: .95rem;
  text-align: center;
}

/* --- Elérhetőség box --- */
.glass-info-contact{
  margin-top: 24px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  text-align: center;
  box-shadow: inset 0 0 20px rgba(124,167,255,0.05);
}
.glass-info-contact h2{
  margin-top: 0;
  color: #7ca7ff;
}
.glass-info-contact strong{
  color: #202020;
  background: rgba(124,167,255,0.15);
  padding: 3px 8px;
  border-radius: 8px;
  border: 1px solid rgba(124,167,255,0.25);
  font-weight: 600;
}

/* --- Vizuális elválasztó a listák után --- */
.glass-info-list::after{
  content:"";
  display:block;
  border-top:1px dashed rgba(255,255,255,0.15);
  margin:16px 0 4px;
}

.glass-info-list.security {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  grid-template-areas:
    "a b"
    "c c";
  justify-content: center;
  gap: 14px;
}

/* hozzárendeljük az elemeket */
.glass-info-list.security li:nth-child(1){ grid-area: a; }
.glass-info-list.security li:nth-child(2){ grid-area: b; }
.glass-info-list.security li:nth-child(3){ grid-area: c; justify-self: center; width: 100%; max-width: 520px; }

/* mobilon egymás alatt */
@media (max-width: 640px){
  .glass-info-list.security{
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c";
  }
}


/* --- Mobilbarát finomítás --- */
@media (max-width: 560px){
  .glass-info-block{ padding: 20px; }
  .glass-info-list li{ flex-direction: column; align-items: flex-start; }
}

/*szolgaltatasi teruletek*/

/* ===== Service Areas (SEO-friendly accordion) ===== */
.service-areas{
  margin: 60px auto;
  padding: 34px 18px;
  max-width: 1050px;
}

.sa-head{
  text-align: center;
  margin-bottom: 22px;
}
.sa-head h2{
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  margin: 0 0 10px;
}
.sa-head p{
  margin: 0;
  opacity: .85;
}

.sa-accordion{
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.sa-item{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}

.sa-btn{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 18px 18px;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.sa-title{
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}
.sa-meta{
  display: block;
  margin-top: 4px;
  opacity: .75;
  font-size: .95rem;
}

.sa-icon{
  align-self: center;
  font-weight: 800;
  font-size: 1.3rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.12);
}

.sa-panel{
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sa-panel-inner{
  padding: 16px 18px 18px;
}

.sa-search{
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.sa-label{
  font-size: .95rem;
  opacity: .85;
}

.sa-input{
  width: 100%;
  padding: 12px 42px 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  color: inherit;
  outline: none;
}

.sa-input:focus{
  border-color: rgba(255,255,255,0.22);
}

.sa-clear{
  position: absolute;
  right: 10px;
  bottom: 9px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  color: inherit;
  cursor: pointer;
  opacity: .9;
}

.sa-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 220px;
  overflow: auto;
  padding-right: 6px;
}

.sa-chip{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.14);
  font-size: .92rem;
  opacity: .95;
}

.sa-chip[hidden]{
  display: none !important;
}

.sa-empty{
  margin: 12px 0 0;
  opacity: .75;
  font-size: .95rem;
}

.sa-foot{
  text-align: center;
  margin-top: 18px;
}

.sa-cta{
  display: inline-block;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
  color: inherit;
  color: #007bff;
  text-shadow: 2px 2px 7px #000000a1;
}
