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

:root {
  --bg: #ffffff;
  --bg2: #f4f7fb;
  --bg3: #eaf0f8;
  --bg4: #dde8f4;
  --sky: #4A9EE8;
  --sky2: #7EC8F0;
  --sky3: #2A6AAA;
  --sky4: #dbeeff;
  --text: #111827;
  --text2: #4b6080;
  --text3: #7a90a8;
  --border: #d4e2ef;
  --border2: #b8ccdf;
  --green: #3DCC8E;
  --green-deep: #157A56;
  --purple: #8B5CF6;
  --deep: #0F1319;
  --nav-h: 72px;
  --shadow-sm: 0 2px 10px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 10px 28px rgba(17, 24, 39, 0.10);
  --shadow-lg: 0 18px 50px rgba(17, 24, 39, 0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --container: 1220px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0F1319;
    --bg2: #141920;
    --bg3: #1A2130;
    --bg4: #1E2838;
    --sky4: #0D2A44;
    --text: #E4EEF8;
    --text2: #8AAEC8;
    --text3: #7A9AB0;
    --border: #1E3050;
    --border2: #2A4060;
    --deep: #05070A;
  }
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Staatliches', sans-serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

a:focus-visible, button:focus-visible, summary:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

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

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

@media (prefers-color-scheme: dark) {
  .site-header { background: rgba(15, 19, 25, 0.85); }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  position: relative;
  gap: 16px;
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Staatliches', sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--sky3);
  text-transform: uppercase;
}

/* Offset Nordic-cross mark: two bars, one shifted toward the hoist */
.logo .flag-dot {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}
.logo .flag-dot::before,
.logo .flag-dot::after { content: ''; position: absolute; background: var(--sky); border-radius: 1px; }
.logo .flag-dot::before { top: 0; bottom: 0; left: 34%; width: 26%; }
.logo .flag-dot::after { left: 0; right: 0; top: 38%; height: 24%; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text2);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--sky3); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-accent {
  background: var(--sky3);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover { filter: brightness(0.88); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--sky3);
  border: 1.5px solid var(--border2);
}

.btn-outline:hover { background: var(--bg2); border-color: var(--sky); }

.btn-lg { padding: 17px 32px; font-size: 1.02rem; }

/* ============ Hero (tilaaiptv pattern: centered, full-viewport, radial glow) ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 4rem) 5% 4rem;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgb(74 158 232 / .16), transparent), var(--bg);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero > * { position: relative; z-index: 2; }

.hero-mark {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  z-index: 1;
  opacity: 0.5;
}
.hero-mark .cross-block { position: relative; width: 100%; height: 100%; }
.hero-mark .bar-v { position: absolute; top: 0; bottom: 0; left: 38%; width: 15%; background: var(--sky); border-radius: 2px; }
.hero-mark .bar-h { position: absolute; left: 0; right: 0; top: 38%; height: 15%; background: var(--sky); border-radius: 2px; }
.hero-mark .chip { position: absolute; left: 38%; width: 15%; top: 38%; height: 15%; background: var(--green); border-radius: 2px; }
.hero-mark .bar-v, .hero-mark .bar-h { animation: reveal-bar 0.7s cubic-bezier(.16,1,.3,1) both; }
.hero-mark .bar-h { animation-delay: 0.15s; animation-name: reveal-bar-h; }
.hero-mark .chip { animation: fade-in 0.4s ease 0.55s both; }
@keyframes reveal-bar { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }
@keyframes reveal-bar-h { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes fade-in { from { opacity: 0; transform: scale(0.7); } to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero-mark .bar-v, .hero-mark .bar-h, .hero-mark .chip { animation: none; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--sky3);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero h1 span { color: var(--sky3); }
.hero h1 .accent-dot { color: var(--green); }

.hero p.lead {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.14rem;
  color: var(--text2);
  margin-bottom: 34px;
  max-width: 560px;
  font-weight: 500;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }

.trust-row { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }

.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--text2); font-weight: 600; }
.trust-item svg { color: var(--sky3); flex-shrink: 0; }

.hero-stat-strip {
  position: relative;
  z-index: 2;
  margin: 40px 0 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  width: 100%;
}

.stat-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item { text-align: center; }
.stat-item .num { font-family: 'Staatliches', sans-serif; font-weight: 400; font-size: 1.7rem; color: var(--sky3); line-height: 1; text-transform: uppercase; }
.stat-item .lbl { font-size: 0.82rem; color: var(--text2); font-weight: 600; margin-top: 6px; }

/* ============ Section shared ============ */
.section { padding: 88px 0; }
.section-frost { background: var(--bg2); }

.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head .eyebrow { color: var(--sky3); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; display: block; font-family: 'DM Sans', sans-serif; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 12px; }
.section-head p { font-family: 'DM Sans', sans-serif; color: var(--text2); font-size: 1.03rem; font-weight: 500; }

/* ============ Mobile nav toggle ============ */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* ============ Topic-hierarchy trail ============ */
.topic-trail { margin-bottom: 14px; }
.topic-trail ol { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; list-style: none; font-size: 0.85rem; color: var(--text2); font-weight: 600; font-family: 'DM Sans', sans-serif; }
.topic-trail li { display: flex; align-items: center; gap: 8px; }
.topic-trail .current { color: var(--sky3); }

/* ============ Feature spec-list ============ */
.spec-list { border-top: 1px solid var(--border); }

.spec-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.spec-row .spec-label {
  font-family: 'Staatliches', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--sky3);
  line-height: 1.1;
  text-transform: uppercase;
}

.spec-row .spec-desc { font-family: 'DM Sans', sans-serif; color: var(--text2); font-size: 1.02rem; max-width: 640px; }
.spec-row .spec-desc strong { color: var(--text); }

/* ============ Benefit cards ============ */
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sky2); }
.benefit-card .b-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--sky4);
  color: var(--sky3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.benefit-card h3 { font-family: 'DM Sans', sans-serif; text-transform: none; letter-spacing: normal; font-weight: 800; font-size: 1.02rem; margin-bottom: 6px; }
.benefit-card p { font-family: 'DM Sans', sans-serif; color: var(--text2); font-size: 0.9rem; font-weight: 500; }

/* ============ Comparison table ============ */
.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-md); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; font-family: 'DM Sans', sans-serif; }
.compare-table caption { text-align: left; padding: 16px 20px; font-weight: 700; color: var(--text2); font-size: 0.85rem; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.94rem; }
.compare-table thead th { background: var(--bg2); font-weight: 800; color: var(--text); white-space: nowrap; }
.compare-table tbody th { font-weight: 700; color: var(--text); white-space: nowrap; }
.compare-table tbody tr:last-child td, .compare-table tbody tr:last-child th { border-bottom: none; }
.compare-table td.yes { color: var(--green); font-weight: 700; }
.compare-table td.no { color: var(--text2); }
.compare-table tbody tr:hover { background: var(--bg2); }
.compare-table th.featured-col, .compare-table td:nth-child(3) { background: var(--sky4); }
.compare-table thead th.featured-col { background: var(--sky3); color: #ffffff; }

/* Simple two-column comparison */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vs-card { border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 28px; font-family: 'DM Sans', sans-serif; }
.vs-card.primary { border-color: var(--sky); background: var(--sky4); }
.vs-card h3 { font-family: 'Staatliches', sans-serif; text-transform: uppercase; font-size: 1.2rem; margin-bottom: 16px; color: var(--sky3); }
.vs-card ul { display: flex; flex-direction: column; gap: 10px; }
.vs-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.94rem; color: var(--text2); font-weight: 500; }
.vs-card li svg { flex-shrink: 0; color: var(--sky3); margin-top: 3px; }

/* ============ Device grid ============ */
.device-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.device-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.device-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--sky); }
.device-card .d-icon { width: 40px; height: 40px; margin: 0 auto 12px; color: var(--sky3); display: flex; align-items: center; justify-content: center; }
.device-card span { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--text); }

/* ============ Numbered install steps ============ */
.step-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; counter-reset: step; }
.step-card { position: relative; padding: 28px 22px 22px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); font-family: 'DM Sans', sans-serif; }
.step-card::before {
  counter-increment: step;
  content: counter(step);
  font-family: 'Staatliches', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #ffffff;
  background: var(--sky3);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step-card h3 { font-family: 'DM Sans', sans-serif; text-transform: none; letter-spacing: normal; font-weight: 800; font-size: 0.98rem; margin-bottom: 6px; }
.step-card p { color: var(--text2); font-size: 0.88rem; font-weight: 500; }

/* ============ Troubleshooting cards ============ */
.trouble-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.trouble-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px 24px; font-family: 'DM Sans', sans-serif; }
.trouble-card h3 { font-family: 'DM Sans', sans-serif; text-transform: none; letter-spacing: normal; font-weight: 800; font-size: 0.98rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.trouble-card h3 svg { color: var(--sky3); flex-shrink: 0; }
.trouble-card p { color: var(--text2); font-size: 0.9rem; font-weight: 500; }

/* ============ Trust / commitments ============ */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.trust-card { padding: 4px 0 4px 20px; border-left: 3px solid var(--sky); font-family: 'DM Sans', sans-serif; }
.trust-card h3 { font-family: 'DM Sans', sans-serif; text-transform: none; letter-spacing: normal; font-weight: 800; font-size: 1rem; margin-bottom: 6px; }
.trust-card p { color: var(--text2); font-size: 0.92rem; font-weight: 500; }

/* ============ Pricing cards ============ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; align-items: stretch; }
.price-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 32px 28px; display: flex; flex-direction: column; position: relative; font-family: 'DM Sans', sans-serif; }
.price-card.recommended { border-color: var(--sky); box-shadow: var(--shadow-md); }
.price-card .price-badge {
  position: absolute; top: -13px; left: 28px;
  background: var(--green-deep); color: #ffffff;
  font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 5px 12px; border-radius: 999px;
}
.price-card h3 { font-family: 'Staatliches', sans-serif; text-transform: uppercase; font-size: 1.3rem; margin-bottom: 4px; color: var(--text); }
.price-card .price-note { color: var(--text2); font-size: 0.88rem; font-weight: 600; margin-bottom: 18px; }
.price-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.price-card li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.92rem; color: var(--text); font-weight: 500; }
.price-card li svg { flex-shrink: 0; color: var(--green); margin-top: 3px; }

/* ============ Legality / honesty callout ============ */
.callout {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  font-family: 'DM Sans', sans-serif;
}

.callout::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--sky);
}

.callout svg { flex-shrink: 0; color: var(--sky3); margin-top: 2px; }
.callout h3 { font-family: 'DM Sans', sans-serif; text-transform: none; letter-spacing: normal; margin-bottom: 8px; font-size: 1.08rem; font-weight: 800; }
.callout p { color: var(--text2); font-size: 0.98rem; font-weight: 500; }

/* ============ FAQ ============ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  font-family: 'DM Sans', sans-serif;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--sky3); font-weight: 400; transition: transform 0.2s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text2); margin-top: 14px; font-size: 0.98rem; font-weight: 500; max-width: 680px; }

/* ============ CTA band ============ */
.cta-band {
  background: var(--deep);
  border-radius: var(--radius-md);
  padding: 64px 48px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -30%; right: -6%;
  width: 40%; height: 15%;
  background: var(--sky);
  opacity: 0.4;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -40%; left: 8%;
  width: 12%; height: 60%;
  background: var(--purple);
  opacity: 0.2;
}

.cta-band h2 { color: #ffffff; margin-bottom: 12px; position: relative; z-index: 1; font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.cta-band p { font-family: 'DM Sans', sans-serif; color: rgba(255, 255, 255, 0.78); margin-bottom: 28px; font-size: 1.05rem; position: relative; z-index: 1; font-weight: 500; }
.cta-band .btn { position: relative; z-index: 1; }

/* ============ Blog cards ============ */
.article-card {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  font-family: 'DM Sans', sans-serif;
}

.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.article-card .thumb { height: 6px; background: var(--sky); position: relative; }
.article-card .thumb::after { content: ''; position: absolute; right: 18%; top: 0; bottom: 0; width: 10%; background: var(--green); }
.article-card .body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.article-card .tag { color: var(--sky3); font-weight: 800; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.article-card h3 { font-family: 'DM Sans', sans-serif; text-transform: none; letter-spacing: normal; font-size: 1.1rem; margin-bottom: 10px; font-weight: 800; }
.article-card p { color: var(--text2); font-size: 0.93rem; flex: 1; font-weight: 500; }
.article-card .read-more { color: var(--sky3); font-weight: 700; font-size: 0.9rem; margin-top: 18px; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

/* ============ Footer ============ */
.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 60px 0 28px;
  font-family: 'DM Sans', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-grid .logo { color: #ffffff; }
.footer-grid .logo .flag-dot::before,
.footer-grid .logo .flag-dot::after { background: var(--sky2); }
.footer-grid h3 { font-family: 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: 0.06em; color: #ffffff; font-size: 0.9rem; margin-bottom: 18px; font-weight: 800; }
.footer-grid ul li { margin-bottom: 11px; }
.footer-grid a { color: rgba(255, 255, 255, 0.68); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.footer-grid a:hover { color: #ffffff; }
.footer-brand p { color: rgba(255, 255, 255, 0.62); font-size: 0.92rem; margin-top: 16px; max-width: 320px; font-weight: 500; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 24px; font-size: 0.84rem; text-align: center; color: rgba(255, 255, 255, 0.5); font-weight: 500; }

/* ============ WhatsApp floating button ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.08); }

/* ============ Blog post typography ============ */
.post-content { max-width: 740px; margin: 0 auto; font-family: 'DM Sans', sans-serif; }
.post-content h2 { margin: 44px 0 16px; font-size: 1.6rem; }
.post-content h3 { margin: 30px 0 12px; font-size: 1.2rem; text-transform: none; font-family: 'DM Sans', sans-serif; letter-spacing: normal; font-weight: 800; }
.post-content p { margin-bottom: 18px; color: var(--text); font-size: 1.03rem; font-weight: 500; }
.post-content ul, .post-content ol { margin: 0 0 18px 24px; }
.post-content li { margin-bottom: 8px; color: var(--text); font-weight: 500; }
.post-content a { color: var(--sky3); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.post-content img { margin: 24px 0; }
.post-content table { font-weight: 500; }
.post-hero { background: var(--bg2); padding: 52px 0 40px; border-bottom: 1px solid var(--border); }
.post-hero .meta { font-family: 'DM Sans', sans-serif; color: var(--text2); font-size: 0.9rem; margin-bottom: 14px; font-weight: 600; }
.post-hero h1 { font-family: 'DM Sans', sans-serif; text-transform: none; letter-spacing: normal; font-size: clamp(1.7rem, 3.4vw, 2.5rem); max-width: 760px; margin: 0 auto; font-weight: 800; }
.breadcrumb { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--text2); margin-bottom: 18px; max-width: 760px; margin-left: auto; margin-right: auto; font-weight: 600; }
.breadcrumb a { color: var(--sky3); }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .hero { min-height: auto; padding: calc(var(--nav-h) + 3rem) 5% 3rem; }
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 8px; }
  .vs-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .header-cta .btn-label-long { display: none; }
  .header-cta .btn-label-short { display: inline; }
}

.btn-label-short { display: none; }
