@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;700&family=DM+Mono:wght@400;500&display=swap');

:root {
  --bg:       #090d14;
  --bg2:      #0f1520;
  --bg3:      #161e2e;
  --border:   #1e2d45;
  --accent:   #c0201a;
  --accent2:  #d4922a;
  --text:     #c8d8f0;
  --muted:    #5a7090;
  --white:    #e8f0ff;
  --red:      #c0201a;
  --green:    #38c97a;
  --radius:   10px;
  --font:     'DM Sans', sans-serif;
  --mono:     'DM Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
}

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 60px;
  background: rgba(9,13,20,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--mono); font-size: 1.05rem; font-weight: 500;
  color: var(--white); text-decoration: none; letter-spacing: -.01em;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: .9rem;
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: .35rem .9rem; border-radius: 6px; font-weight: 500;
}
.nav-cta:hover { background: #a01815 !important; }
.nav-demo {
  color: var(--accent2) !important; font-size: .85rem;
  padding: .35rem .5rem; white-space: nowrap;
}
.nav-demo:hover { color: var(--white) !important; }

/* Lang switcher */
.lang-switch { display: flex; gap: .4rem; }
.lang-switch a {
  font-size: .78rem; color: var(--muted); text-decoration: none;
  padding: .15rem .4rem; border-radius: 4px;
  transition: background .15s, color .15s;
}
.lang-switch a:hover, .lang-switch a.active {
  background: var(--bg3); color: var(--white);
}

/* ── Layout ── */
.container { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 1.5rem 0 4rem; }

h1 { font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1.2; }
h2 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
p  { margin-bottom: 1rem; color: var(--text); }
a  { color: var(--accent); }

.label {
  display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent2);
  margin-bottom: .75rem;
}

/* ── Legal pages ── */
.legal-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.legal-body h2 { font-size: 1.15rem; margin: 2rem 0 .5rem; }
.legal-body h3 { font-size: 1rem; margin: 1.5rem 0 .4rem; color: var(--text); }
.legal-body p, .legal-body li { font-size: .93rem; color: var(--text); }
.legal-body ul, .legal-body ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-body li { margin-bottom: .35rem; }
.legal-body address { font-style: normal; line-height: 1.9; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  font-size: .83rem; color: var(--muted);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-links { display: flex; gap: 1.2rem; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--white); }

/* ── Pricing specific ── */
.hero-pricing {
  text-align: center; padding: 2.5rem 0 1.5rem;
}
.hero-pricing h1 { margin-bottom: .75rem; }
.hero-pricing p { color: var(--muted); font-size: 1.05rem; }
.hero-pricing .hero-mairlist {
  font-size: 1.15rem; color: var(--text); margin-top: .5rem; margin-bottom: 0;
}
.hero-pricing .hero-mairlist a { color: var(--accent2); text-decoration: none; border-bottom: 1px solid rgba(212,146,42,.4); }
.hero-pricing .hero-mairlist a:hover { border-bottom-color: var(--accent2); }

.billing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 1.5rem 0 0;
}
.billing-toggle span { font-size: .9rem; color: var(--muted); }
.billing-toggle span.active { color: var(--white); font-weight: 600; }
.toggle-track {
  width: 44px; height: 24px; border-radius: 12px;
  background: var(--accent); cursor: pointer; position: relative;
  transition: background .2s;
}
.toggle-track.monthly { background: var(--bg3); border: 1px solid var(--border); }
.toggle-knob {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; transition: transform .2s;
}
.toggle-track.monthly .toggle-knob { transform: translateX(0); }
.toggle-track:not(.monthly) .toggle-knob { transform: translateX(20px); }
.save-badge {
  font-size: .72rem; background: rgba(212,146,42,.15);
  color: var(--accent2); padding: .2rem .5rem; border-radius: 4px;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin: 2rem 0;
}
.price-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: border-color .2s, transform .2s;
  position: relative;
}
.price-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.price-card.popular {
  border-color: var(--accent2);
  background: linear-gradient(160deg, rgba(212,146,42,.08) 0%, var(--bg2) 60%);
}
.popular-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--accent2); color: #090d14;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .2rem .7rem; border-radius: 10px;
}
.price-card .monitors {
  font-size: .8rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: .5rem;
}
.price-card .amount {
  font-family: var(--mono); font-size: 2rem; font-weight: 500;
  color: var(--white); line-height: 1;
}
.price-card .amount sup { font-size: 1rem; vertical-align: top; margin-top: .3rem; }
.price-card .amount-vat { font-size: .75rem; font-weight: 400; color: var(--muted); margin-left: .3rem; font-family: var(--sans); }
.price-card .amount-net { font-size: .78rem; color: var(--muted); margin-top: .2rem; }
.price-card .per { font-size: .78rem; color: var(--muted); margin-top: .25rem; }
.price-card .discount {
  font-size: .75rem; color: var(--accent2); margin-top: .5rem; font-weight: 500;
}
.price-card .cta-btn {
  display: block; width: 100%; margin-top: 1.2rem;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--white); padding: .55rem; border-radius: 6px;
  text-align: center; text-decoration: none; font-size: .88rem;
  font-weight: 500; cursor: pointer; transition: background .15s, border-color .15s;
}
.price-card .cta-btn:hover { background: var(--accent); border-color: var(--accent); }
.price-card.popular .cta-btn {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.price-card.popular .cta-btn:hover { background: #a01815; border-color: #a01815; }

/* ── Compatibility section ── */
.compat-section {
  margin: 3rem 0;
  background: var(--bg2); border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius); padding: 1.75rem 2rem;
}
.compat-section h2 { margin-bottom: .5rem; }
.seo-intro {
  font-size: .82rem; color: var(--accent2); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .75rem;
}
.compat-disclaimer {
  margin-top: 1rem; font-size: .8rem; color: var(--muted);
  border-top: 1px solid var(--border); padding-top: .75rem;
}

.addon-section {
  margin: 3rem 0;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.addon-grid-bundle { grid-template-columns: 1fr auto 1fr; align-items: stretch; }
.addon-plus {
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; font-weight: 800; color: var(--accent);
  line-height: 1; padding: 0 .25rem;
}
.addon-intro { font-size: .88rem; color: var(--text); margin: .5rem 0 0; max-width: 640px; }
.addon-cta-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }
.addon-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.2rem;
}
.addon-card h3 { font-size: .95rem; margin-bottom: .35rem; }
.addon-card .addon-price {
  font-family: var(--mono); font-size: 1.4rem; color: var(--white);
  margin: .5rem 0 .25rem;
}
.addon-card p { font-size: .83rem; color: var(--muted); margin: 0; }

.note-box {
  background: rgba(192,32,26,.07); border: 1px solid rgba(192,32,26,.25);
  border-radius: 8px; padding: 1rem 1.25rem; margin: 2rem 0;
  font-size: .85rem; color: var(--text);
}
.note-box strong { color: var(--accent2); }

@media (max-width: 600px) {
  .addon-grid { grid-template-columns: 1fr; }
  .addon-grid-bundle .addon-plus { padding: .25rem 0; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 1.6rem; }
  .footer-inner { flex-direction: column; }
}

/* ── Language badge ── */
.lang-badge-section {
  margin: 1.5rem 0 0;
  background: rgba(212,146,42,.07); border: 1px solid rgba(212,146,42,.2);
  border-radius: var(--radius); padding: 1rem 1.25rem; text-align: center;
}
.lang-badge-h {
  font-weight: 700; color: var(--accent2); font-size: .95rem; margin-bottom: .3rem;
}
.lang-badge-sub { font-size: .83rem; color: var(--muted); margin-bottom: .75rem; }
.lang-flags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem;
}
.lang-flags span {
  font-size: .8rem; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 5px; padding: .2rem .6rem; color: var(--text);
}
