/* ============================================================
 * ILYGO Backup — landing page styles
 * Style "hawser-like" : dark, enterprise security, technical sober.
 * ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  --bg: #07101f;
  --bg-2: #0a1124;
  --bg-3: #0d1f3a;
  --panel: #0f1b34;
  --border: #1d2c4d;
  --border-strong: #2a3a5a;
  --text: #e6edf6;
  --text-dim: #9aa9bf;
  --text-mute: #6b7a92;
  --accent: #33e7c5;
  --accent-2: #0091ff;
  --accent-soft: rgba(51, 231, 197, 0.12);
  --danger: #ff6b81;
  --warn: #ffb547;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --container: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 120ms ease;
}
a:hover {
  color: #7df0d6;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 0.4em;
}
h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
}
h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  line-height: 1.2;
}
h3 {
  font-size: 1.2rem;
}
p {
  margin: 0 0 1em;
  color: var(--text-dim);
}

code {
  font-family: var(--mono);
  font-size: 0.9em;
  background: #142447;
  color: #b7c7e8;
  padding: 1px 6px;
  border-radius: 4px;
}

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

/* ============================================================
 * NAV
 * ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7, 16, 31, 0.78);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand:hover {
  color: #fff;
}
.brand-accent {
  color: var(--accent);
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: 16px;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 0.93rem;
  font-weight: 500;
}
.nav-links a:hover {
  color: #fff;
}
.nav-cta {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

/* ============================================================
 * BUTTONS
 * ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.93rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 80ms ease,
    background 120ms ease,
    border-color 120ms ease,
    color 120ms ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-lg {
  padding: 12px 22px;
  font-size: 1rem;
}
.btn-block {
  display: flex;
  width: 100%;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #062a23;
}
.btn-primary:hover {
  color: #062a23;
  filter: brightness(1.05);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--text-dim);
}
.btn-ghost:hover {
  color: #fff;
}

/* ============================================================
 * HERO
 * ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 96px;
  background:
    radial-gradient(ellipse 60% 60% at 80% 0%, rgba(51, 231, 197, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(0, 145, 255, 0.12) 0%, transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy {
  max-width: 580px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(51, 231, 197, 0.25);
  font-size: 0.83rem;
  font-weight: 500;
  margin-bottom: 22px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(51, 231, 197, 0.2);
}
.grad {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead {
  font-size: 1.12rem;
  color: var(--text-dim);
  margin: 18px 0 28px;
  max-width: 540px;
}
.lead strong {
  color: #fff;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-dim);
  font-size: 0.93rem;
}
.hero-bullets li {
  padding: 4px 0 4px 24px;
  position: relative;
}
.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.terminal {
  background: #050a14;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 30px 60px -30px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(51, 231, 197, 0.05);
}
.terminal-server {
  border-color: rgba(51, 231, 197, 0.3);
  box-shadow:
    0 30px 60px -30px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(51, 231, 197, 0.2),
    0 0 50px -10px rgba(51, 231, 197, 0.15);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: #0a1124;
  border-bottom: 1px solid var(--border);
}
.tdot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.tdot-r {
  background: #ff5f57;
}
.tdot-y {
  background: #febc2e;
}
.tdot-g {
  background: #28c840;
}
.terminal-title {
  margin-left: 12px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-mute);
}
.terminal pre {
  margin: 0;
  padding: 18px 20px;
  font-family: var(--mono);
  font-size: 0.85rem;
  line-height: 1.65;
  color: #b7c7e8;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}
.c-com {
  color: #6b7a92;
  font-style: italic;
}
.c-str {
  color: #ffb547;
}
.c-key {
  color: var(--accent);
}
.hero-pill {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(51, 231, 197, 0.25);
  font-size: 0.78rem;
  font-family: var(--mono);
}

/* ============================================================
 * STRIP
 * ============================================================ */
.strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.strip-label {
  color: var(--text-mute);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.strip-items {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-dim);
  font-size: 0.92rem;
  flex-wrap: wrap;
}
.strip-items span {
  letter-spacing: 0.01em;
}

/* ============================================================
 * SECTIONS
 * ============================================================ */
.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--bg-2);
}
.section-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
}

/* GRID */
.grid {
  display: grid;
  gap: 22px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* CARDS */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition:
    border-color 150ms ease,
    transform 150ms ease;
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 16px;
}
.card h3 {
  margin-bottom: 8px;
}
.card p {
  font-size: 0.95rem;
  margin: 0;
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.step-num {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #062a23;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px -8px rgba(51, 231, 197, 0.6);
}
.step h3 {
  margin: 12px 0 8px;
}
.step p {
  margin: 0;
  font-size: 0.95rem;
}

/* ARCHITECTURE */
.arch-diagram {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  overflow-x: auto;
}
.arch-diagram svg {
  width: 100%;
  height: auto;
  min-width: 760px;
}
.arch-callouts {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.callout {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.callout-num {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
}
.callout p {
  margin: 0;
  font-size: 0.92rem;
}

/* STATS */
.section-stats {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat {
  text-align: center;
}
.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-top: 4px;
}

/* PRICING */
.pricing {
  align-items: stretch;
}
.price {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
  background: linear-gradient(180deg, #0f223c 0%, var(--panel) 100%);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #062a23;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.price h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.price-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.price-sub {
  font-size: 0.85rem;
  color: var(--text-mute);
  font-weight: 500;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.price-features li {
  padding: 7px 0 7px 22px;
  position: relative;
  color: var(--text-dim);
  font-size: 0.93rem;
  border-bottom: 1px dashed var(--border);
}
.price-features li:last-child {
  border-bottom: 0;
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* FAQ */
.faq details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 14px;
  transition: border-color 120ms ease;
}
.faq details[open] {
  border-color: var(--border-strong);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  list-style: none;
  padding-right: 24px;
  position: relative;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 150ms ease;
}
.faq details[open] summary::after {
  content: "−";
}
.faq p {
  margin: 12px 0 0;
  font-size: 0.95rem;
}

/* CTA */
.cta {
  padding: 88px 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(51, 231, 197, 0.16) 0%, transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}
.cta p {
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 28px 0 14px;
  flex-wrap: wrap;
}
.cta-fine {
  color: var(--text-mute);
  font-size: 0.85rem;
}

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 0.9rem;
  margin-top: 12px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer-cols h4 {
  color: #fff;
  font-size: 0.88rem;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-cols a {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.95;
}
.footer-cols a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-mute);
  font-size: 0.85rem;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(51, 231, 197, 0.2);
}

/* ============================================================
 * HERO CARDS (page lambda)
 * ============================================================ */
.hero-cards {
  display: grid;
  gap: 14px;
  perspective: 1000px;
}
.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  transition: transform 200ms ease, border-color 200ms ease;
}
.hero-card:hover {
  transform: translateX(-4px);
  border-color: var(--border-strong);
}
.hero-card-ok {
  border-color: rgba(51, 231, 197, 0.4);
}
.hero-card-ok .hero-card-icon {
  background: rgba(51, 231, 197, 0.15);
  color: var(--accent);
}
.hero-card-pulse {
  border-color: rgba(0, 145, 255, 0.4);
}
.hero-card-pulse .hero-card-icon {
  background: rgba(0, 145, 255, 0.15);
  color: var(--accent-2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 145, 255, 0); }
  50% { box-shadow: 0 0 0 8px rgba(0, 145, 255, 0.18); }
}
.hero-card-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-3);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-title {
  font-weight: 600;
  color: #fff;
}
.hero-card-sub {
  font-size: 0.85rem;
  color: var(--text-mute);
}

/* ============================================================
 * SCÉNARIO CARDS (colored)
 * ============================================================ */
.card-icon-red {
  background: rgba(255, 107, 129, 0.12);
  color: #ff8095;
}
.card-icon-orange {
  background: rgba(255, 181, 71, 0.14);
  color: var(--warn);
}
.card-icon-blue {
  background: rgba(0, 145, 255, 0.15);
  color: var(--accent-2);
}
.card-stat {
  margin: 14px 0 0 !important;
  font-size: 0.82rem !important;
  color: var(--text-mute) !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
}

/* ============================================================
 * WARN BANNER (after scénarios)
 * ============================================================ */
.warn-banner {
  margin-top: 32px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(255, 181, 71, 0.06), rgba(255, 107, 129, 0.06));
  border: 1px solid rgba(255, 181, 71, 0.25);
  border-radius: var(--radius);
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.65;
}
.warn-banner strong {
  color: var(--warn);
}

/* ============================================================
 * PROMISE CARDS
 * ============================================================ */
.card-promise {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 36px;
}
.promise-num {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #062a23;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 20px -8px rgba(51, 231, 197, 0.6);
}
.card-takeaway {
  margin: auto 0 0 !important;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 0.88rem !important;
  font-weight: 500;
  color: var(--accent) !important;
}

/* ============================================================
 * COMPARE AVANT / APRÈS
 * ============================================================ */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
}
.compare-col {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.compare-before {
  background: linear-gradient(180deg, rgba(255, 107, 129, 0.04), var(--panel));
}
.compare-after {
  background: linear-gradient(180deg, rgba(51, 231, 197, 0.06), var(--panel));
  border-color: rgba(51, 231, 197, 0.3);
}
.compare-head {
  margin-bottom: 18px;
}
.compare-head h3 {
  margin: 6px 0 0;
}
.compare-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 107, 129, 0.15);
  color: #ff8095;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare-tag-good {
  background: rgba(51, 231, 197, 0.15);
  color: var(--accent);
}
.compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-col li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--text-dim);
  font-size: 0.94rem;
  border-bottom: 1px dashed var(--border);
}
.compare-col li:last-child {
  border-bottom: 0;
}
.compare-before li::before {
  content: "✕";
  position: absolute;
  left: 4px;
  top: 8px;
  color: #ff8095;
  font-weight: 700;
}
.compare-after li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 8px;
  color: var(--accent);
  font-weight: 700;
}
.compare-arrow {
  align-self: center;
  color: var(--accent);
}

/* ============================================================
 * AUDIENCES
 * ============================================================ */
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.audience {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  transition: border-color 150ms ease, transform 150ms ease;
}
.audience:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.audience-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  line-height: 1;
}
.audience h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.audience p {
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================================
 * QUOTE / TÉMOIGNAGE
 * ============================================================ */
.section-quote {
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(51, 231, 197, 0.06) 0%, transparent 70%),
    var(--bg-2);
}
.section-quote blockquote {
  margin: 0;
  text-align: center;
  position: relative;
  padding: 0 30px;
}
.section-quote blockquote::before {
  content: "“";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}
.section-quote p {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.55;
  margin: 0 0 24px;
}
.section-quote footer {
  color: var(--text-mute);
  font-size: 0.95rem;
}
.section-quote strong {
  color: var(--text);
}

/* ============================================================
 * PRICING — extras (note + popular size)
 * ============================================================ */
.price-note {
  color: var(--text-mute);
  font-size: 0.88rem;
  margin: -16px 0 22px;
}
.pricing-note {
  text-align: center;
  color: var(--text-dim);
  margin-top: 28px;
  font-size: 0.95rem;
}

/* ============================================================
 * PAGE BANNER (used on /technologie.html)
 * ============================================================ */
.page-banner {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.page-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.page-banner a {
  color: var(--accent);
}

/* ============================================================
 * RESPONSIVE
 * ============================================================ */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .steps,
  .arch-callouts,
  .stats,
  .footer-cols,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .compare {
    grid-template-columns: 1fr;
  }
  .compare-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}
@media (max-width: 620px) {
  .nav-cta .btn-ghost {
    display: none;
  }
  .grid-3,
  .steps,
  .arch-callouts,
  .stats,
  .footer-cols,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 56px 0 64px;
  }
  .section {
    padding: 72px 0;
  }
  .strip-inner {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
