:root{
  --bg: #0a0f0c;
  --surface: #101614;
  --surface-2: rgba(16, 22, 20, 0.72);

  --text: #e7f3ed;
  --muted: #a6b9b0;
  --border: rgba(255,255,255,.08);

  /* Reference-like green */
  --accent: #00e676;
  --accent-2: #00c853;

  --radius: 18px;
  --shadow: 0 18px 44px rgba(0,0,0,.48);
  --max: 1140px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 18% 0%, rgba(0,230,118,.14), transparent 60%),
    radial-gradient(900px 600px at 82% 10%, rgba(0,200,83,.10), transparent 55%),
    var(--bg);
  line-height:1.6;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 22px;
}

/* ================= HEADER ================= */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(10, 15, 12, 0.70);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

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

/* ================= HEADER BUTTONS ================= */
.header-actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.header-btn{
  padding:8px 14px;
  font-size:13px;
  font-weight:700;
  border-radius:999px; /* more like reference pills */
  border:1px solid transparent;
  transition: transform .15s ease, opacity .15s ease, background .15s ease, box-shadow .15s ease;
  white-space:nowrap;
}

.header-btn-primary{
  background: linear-gradient(135deg, rgba(0,230,118,.95), rgba(0,200,83,.90));
  color:#03180d;
  box-shadow: 0 10px 22px rgba(0,230,118,.18);
}

.header-btn-secondary{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  color: var(--text);
}

.header-btn:hover{
  transform: translateY(-1px);
  opacity:.96;
}

/* Mobile header */
@media (max-width:520px){
  .header-actions{ gap:6px; }
  .header-btn{ padding:7px 10px; font-size:12px; }
}

/* ================= HERO ================= */
.hero{
  padding:22px 0 10px;
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap:18px;
  align-items:stretch;
}

.hero-banner,
.hero-content{
  background: var(--surface-2);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-banner{
  overflow:hidden;
  min-height: 260px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

/* soft dark overlay to match reference depth */
.hero-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(700px 420px at 65% 50%, rgba(0,230,118,.10), transparent 60%),
              linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.15));
  pointer-events:none;
}

.hero-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:relative;
  z-index:0;
}

.hero-content{
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.hero-content h1{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.12;
  letter-spacing:-0.2px;
}

.hero-content p{
  margin:0 0 16px;
  color:var(--muted);
}

.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  border:none;
  background: linear-gradient(135deg, rgba(0,230,118,.96), rgba(0,200,83,.90));
  color:#03180d;
  width: fit-content;
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
  box-shadow: 0 14px 26px rgba(0,230,118,.20);
}

.cta-button:hover{
  transform: translateY(-1px);
  opacity: .97;
  box-shadow: 0 16px 30px rgba(0,230,118,.26);
}

/* ================= MAIN CONTENT ================= */
.site-content{
  padding:14px 0 30px;
}

.content-section{
  margin-top:18px;
}

.content-section .container{
  background: var(--surface-2);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
}

.content-section h2{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-0.1px;
}

.content-section p{
  margin:0;
  color:var(--muted);
}

.content-section + .content-section p{
  margin-top:8px;
}

/* Pros / Cons */
.pros-list,
.cons-list{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
}

.pros-list li,
.cons-list li{
  margin:6px 0;
}

.pros-list li::marker{ color: rgba(0,230,118,.95); }
.cons-list li::marker{ color: rgba(255,91,110,.95); }

.list{ margin:8px 0 0; padding-left:18px; color:var(--muted); }
.list li{ margin:6px 0; }

/* ================= BRAND TABLE ================= */
.brand-table{
  margin: 28px 0 40px;
}

.card{
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}

.brand-table h2{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.25;
}

.muted{
  margin:0 0 16px;
  opacity:.78;
  font-size:14px;
  color: var(--muted);
}

.table-wrap{
  overflow-x:auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.12);
}

/* FIX: table should NOT be fixed-layout (it causes “wrong standing” on desktop) */
.info-table{
  width:100%;
  border-collapse: collapse;
  table-layout: auto; /* key fix */
  background: transparent;
}

.info-table th,
.info-table td{
  padding: 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  vertical-align: middle; /* key fix */
  line-height: 1.45;      /* key fix */
}

.info-table th{
  width: 34%;
  text-align:left;
  font-weight: 650;
  color: rgba(231,243,237,.92);
  background: rgba(0,230,118,.08); /* reference-like tint */
}

.info-table td{
  color: var(--muted);
}

.info-table tr:last-child th,
.info-table tr:last-child td{
  border-bottom:none;
}

/* CTA in table row aligns nicely */
.table-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,230,118,.92), rgba(0,200,83,.88));
  color:#03180d;
  border: 1px solid rgba(0,0,0,.12);
  font-weight: 750;
  white-space: nowrap;
}

.table-cta:hover{
  opacity:.96;
  transform: translateY(-1px);
}

/* ================= FAQ (supports BOTH HTML variants) ================= */
/* Your current HTML: .faq .faq__q + .faq__a */
.faq{
  display:grid;
  gap:12px;
  max-width: 980px;
}

/* Template variant support: .faq__list .faq__item ... */
.faq__list{
  display:grid;
  gap:12px;
  max-width: 980px;
}

.faq__q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: inherit;
  text-align:left; /* hard fix */
  cursor:pointer;
  font-weight:700;
}

.faq__q::after{
  content:"+";
  font-weight:800;
  opacity:.70;
}

.faq__q[aria-expanded="true"]::after{
  content:"–";
}

.faq__a{
  padding: 12px 16px 16px;
  border:1px solid rgba(255,255,255,.10);
  border-top:0;
  border-radius: 0 0 12px 12px;
  background: rgba(255,255,255,.03);
  color: var(--muted);
  text-align:left; /* hard fix */
}

/* ================= FOOTER ================= */
.site-footer{
  margin-top:18px;
  padding:22px 0 40px;
  color:var(--muted);
}

.footer-inner{
  background: rgba(16, 22, 20, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
  margin-bottom:14px;
}

.footer-links a{
  font-size:13px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a:hover{
  color: var(--text);
}

.site-footer p{
  margin:0 0 10px;
}

.site-footer p:last-child{
  margin-bottom:0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 920px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-content h1{ font-size:30px; }
  .site-logo img{ width:140px; }
}

@media (max-width: 520px){
  .container{ padding:0 16px; }
  .hero{ padding-top:18px; }
  .hero-content{ padding:18px; }
  .content-section .container{ padding:18px; }
  .info-table th{ width: 46%; }
}
