:root {
  --bg: #FFFFFF;
  --surface: #F5F4F1;
  --surface2: #EBEBEB;
  --text: #0F0F0F;
  --muted: #888888;
  --accent: #CC2B09;
  --border: #DEDEDE;
  --border-dark: #0F0F0F;
  --green: #1A7530;
  --nav-h: 52px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0F0F0F;
    --surface: #1A1A1A;
    --surface2: #252525;
    --text: #EFEFEF;
    --border: #2A2A2A;
    --border-dark: #EFEFEF;
    --muted: #777777;
    --accent: #FF4D28;
  }
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  padding: 0 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border-bottom: 1px solid var(--border-dark);
}

.logo {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  height: var(--nav-h);
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  transition: color 0.15s, background 0.15s;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  border-left: 1px solid var(--border);
  letter-spacing: 0.5px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--surface);
}

.lang-switcher {
  display: flex;
  height: var(--nav-h);
  border-left: 1px solid var(--border-dark);
}
.lang-btn {
  background: none;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  padding: 0 12px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.5px;
}
.lang-btn:last-child { border-right: none; }
.lang-btn:hover, .lang-btn.active {
  background: var(--text);
  color: var(--bg);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 40px) 48px 72px;
  position: relative;
  border-bottom: 2px solid var(--border-dark);
}

.hero-glow, .hero-glow2 { display: none; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-dark);
  padding: 7px 16px;
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 56px;
  width: fit-content;
  animation: fadeUp 0.5s ease both;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.hero h1 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(42px, 7.5vw, 108px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -4px;
  margin-bottom: 48px;
  max-width: 1100px;
  animation: fadeUp 0.5s 0.1s ease both;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 14px;
  animation: fadeUp 0.5s 0.2s ease both;
}

.hero-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--muted);
  margin-bottom: 40px;
  animation: fadeUp 0.5s 0.25s ease both;
  letter-spacing: 0.5px;
}

.hero-cta {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: var(--bg);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 12px;
  padding: 14px 28px;
  text-decoration: none;
  border: 2px solid var(--text);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 12px;
  padding: 14px 28px;
  text-decoration: none;
  border: 2px solid var(--border-dark);
  border-left: none;
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-secondary:hover { background: var(--surface); }

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--border-dark);
  animation: fadeUp 0.5s 0.4s ease both;
}
.hero-stats > div {
  padding: 28px 56px 0 0;
  margin-right: 56px;
  border-right: 1px solid var(--border);
}
.hero-stats > div:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.stat-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -2px;
}
.stat-num span { color: var(--accent); }
.stat-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ─── SECTIONS ─── */
section { padding: 96px 48px; }

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  font-family: 'IBM Plex Mono', monospace;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.0;
  margin-bottom: 24px;
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 480px;
  line-height: 1.7;
}

/* ─── SERVICES ─── */
#services { background: var(--bg); border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--border-dark);
}

.service-card {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.2s;
  position: relative;
  border-right: 1px solid var(--border-dark);
}
.service-card:last-child { border-right: none; }
.service-card::before { display: none; }
.service-card:hover { background: var(--surface); }

.service-icon {
  width: auto; height: auto;
  border-radius: 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  display: block;
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-card h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-from {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.service-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 16px; }

.tag {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  padding: 3px 9px;
  letter-spacing: 0.5px;
}

/* ─── PRICING ─── */
#pricing { background: var(--surface); border-bottom: 1px solid var(--border-dark); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  margin-top: 56px;
  max-width: 960px;
  border: 1px solid var(--border-dark);
}

.pricing-card {
  background: var(--bg);
  border: none;
  border-right: 1px solid var(--border-dark);
  padding: 40px 32px;
  position: relative;
  transition: background 0.2s;
}
.pricing-card:hover { background: var(--surface2); }
.pricing-card:last-child { border-right: none; }

.pricing-card.popular { background: var(--text); }
.pricing-card.popular .plan-name,
.pricing-card.popular .plan-note,
.pricing-card.popular .plan-features li { color: rgba(255,255,255,0.55); }
.pricing-card.popular .plan-price { color: var(--bg); }
.pricing-card.popular .plan-price sup { color: rgba(255,255,255,0.4); }
.pricing-card.popular .plan-divider { background: rgba(255,255,255,0.12); }
.pricing-card.popular .plan-features li::before { color: rgba(255,255,255,0.4); }
.pricing-card.popular .btn-plan-filled { background: var(--accent); border-color: var(--accent); color: #fff; }
.pricing-card.popular .btn-plan-filled:hover { background: #FF5533; border-color: #FF5533; }
.pricing-card.popular:hover { background: #1a1a1a; }

.popular-badge {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  padding: 5px 16px;
  letter-spacing: 2px;
  text-align: center;
  transform: none;
  white-space: nowrap;
}

.plan-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  margin-top: 28px;
}

.plan-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 64px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -3px;
}

.plan-price sup {
  font-size: 22px;
  vertical-align: super;
  line-height: 0;
  color: var(--muted);
  letter-spacing: 0;
}

.plan-price-custom { font-size: 36px; letter-spacing: -1px; padding-top: 8px; }

.plan-note {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 28px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.5px;
}

.plan-divider { height: 1px; background: var(--border); margin-bottom: 28px; }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.plan-features li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'IBM Plex Sans', sans-serif;
}

.plan-features li::before {
  content: '+';
  color: var(--green);
  font-weight: 700;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1.4;
}

.plan-features li.muted::before { content: '—'; color: var(--border); }

.btn-plan {
  display: block;
  text-align: center;
  padding: 13px 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid;
}

.btn-plan-outline { border-color: var(--border-dark); color: var(--text); background: transparent; }
.btn-plan-outline:hover { background: var(--text); color: var(--bg); }
.btn-plan-filled { background: var(--bg); color: var(--text); border-color: var(--bg); }
.btn-plan-filled:hover { background: var(--surface2); }

.pricing-note {
  margin-top: 40px;
  color: var(--muted);
  font-size: 13px;
  font-family: 'IBM Plex Mono', monospace;
}
.pricing-note strong { color: var(--text); }

/* ─── PROCESS ─── */
#process { background: var(--bg); border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--border-dark);
}

.step {
  padding: 40px 32px;
  border-right: 1px solid var(--border-dark);
  transition: background 0.2s;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--surface); }

.step-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 72px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -4px;
}

.step h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step p { color: var(--muted); font-size: 13px; line-height: 1.7; }

/* ─── WHY ─── */
#why { background: var(--surface); border-bottom: 1px solid var(--border-dark); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--border-dark);
}

.why-items {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-dark);
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  transition: background 0.2s;
}
.why-item:last-child { border-bottom: none; }
.why-item:hover { background: var(--surface2); }

.why-icon {
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
  width: 44px;
  letter-spacing: 0.5px;
}

.why-item h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-item p { color: var(--muted); font-size: 13px; line-height: 1.6; }

.why-visual {
  background: var(--bg);
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.why-visual::before { display: none; }

.big-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 88px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -5px;
}
.big-number-sm { font-size: 64px; letter-spacing: -3px; }

.big-label {
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.divider-line { width: 32px; height: 1px; background: var(--border); margin: 28px auto; }

/* ─── TRUST STRIP ─── */
.trust-strip {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  background: var(--surface);
  flex-wrap: wrap;
}

.trust-label {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'IBM Plex Mono', monospace;
  white-space: nowrap;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.trust-badges { display: flex; gap: 0; flex-wrap: wrap; }

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  border-right: 1px solid var(--border);
  padding: 16px 24px;
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--muted);
  white-space: nowrap;
}
.trust-badge span { font-size: 11px; color: var(--text); font-weight: 600; }

/* ─── LEAD MAGNET ─── */
.lead-magnet-section {
  padding: 0;
  background: var(--text);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  max-width: 100%;
  margin: 0;
}
.lead-magnet-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-items: stretch;
  background: none;
  border: none;
  padding: 0;
}
.lead-magnet-icon {
  font-size: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  color: var(--accent);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-magnet-content { padding: 56px 64px; }
.lead-magnet-content h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: var(--bg);
}
.lead-magnet-content p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 600px;
}
.lm-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 48px;
  margin-bottom: 36px;
}
.lm-checklist li {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-family: 'IBM Plex Mono', monospace;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lm-checklist li::before {
  content: '→';
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
}
.lm-cta { display: inline-flex !important; font-size: 12px !important; }

/* ─── CONTACT ─── */
#contact {
  background: var(--bg);
  border-top: 1px solid var(--border-dark);
  padding: var(--nav-h) 48px 48px;
}

.contact-hero-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 0.95;
  margin-bottom: 20px;
  max-width: 900px;
}
.contact-hero-title em {
  font-style: normal;
  color: var(--accent);
}
.contact-hero-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.funding-widget {
  margin: 0 0 32px;
}
.funding-widget iframe {
  width: 100%;
  max-width: 646px;
  height: 290px;
  border: none;
  display: block;
}

.contact-box {
  max-width: 800px;
  margin: 24px 0 0;
  background: var(--text);
  color: var(--bg);
  padding: 56px;
  position: relative;
}
.contact-box::before { display: none; }

.contact-box h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: var(--bg);
}

.contact-box p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
}

.contact-links { display: flex; gap: 0; flex-wrap: wrap; }

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.18);
  border-left: none;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  letter-spacing: 0.5px;
}
.contact-link:first-child { border-left: 1px solid rgba(255,255,255,0.18); }
.contact-link:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }

/* ─── FOOTER ─── */
footer {
  padding: 22px 48px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.3px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-dark); }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0 16px;
  background: none;
  border: none;
  border-left: 1px solid var(--border-dark);
  height: var(--nav-h);
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 0 0 20px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    height: auto;
    border-bottom: 2px solid var(--border-dark);
    z-index: 99;
    margin-left: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    padding: 16px 24px;
    font-size: 13px;
    height: auto;
    border-left: none;
    border-bottom: 1px solid var(--border);
  }
  .lang-switcher { border-left: none; }
  .hero, section { padding: 80px 24px; }
  .hero { padding-top: calc(var(--nav-h) + 24px); }
  .hero h1 { letter-spacing: -2px; }
  .hero-stats { flex-direction: column; }
  .hero-stats > div { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 20px; }
  .hero-stats > div:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .btn-secondary { border-left: 2px solid var(--border-dark); }
  .hero-badge { margin-bottom: 36px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-items { border-right: none; border-bottom: 1px solid var(--border-dark); }
  footer { flex-direction: column; gap: 10px; text-align: center; }
  .contact-box { padding: 32px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .pricing-card:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .service-card:last-child { border-bottom: none; }
  .process-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .step:last-child { border-bottom: none; }
  .lead-magnet-box { grid-template-columns: 1fr; }
  .lead-magnet-icon {
    writing-mode: horizontal-tb;
    transform: none;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 32px;
    justify-content: flex-start;
  }
  .lead-magnet-content { padding: 32px 24px; }
  .lm-checklist { grid-template-columns: 1fr; }
  .contact-links { flex-direction: column; }
  .contact-link { border-left: 1px solid rgba(255,255,255,0.18) !important; border-top: none; }
  .contact-link:first-child { border-top: 1px solid rgba(255,255,255,0.18); }
  .trust-strip { padding: 0; }
}

/* ─── RTL (Arabic) ─── */
[dir="rtl"] body { font-family: 'Cairo', 'IBM Plex Sans', sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { font-family: 'Cairo', 'IBM Plex Mono', monospace; }
[dir="rtl"] nav { padding: 0 32px 0 0; }
[dir="rtl"] .nav-links { margin-left: 0; margin-right: auto; }
[dir="rtl"] .nav-links a { border-left: none; border-right: 1px solid var(--border); }
[dir="rtl"] .lang-switcher { border-left: none; border-right: 1px solid var(--border-dark); }
[dir="rtl"] .lang-btn { border-right: none; border-left: 1px solid var(--border); }
[dir="rtl"] .lang-btn:last-child { border-left: none; }
[dir="rtl"] .hamburger { border-left: none; border-right: 1px solid var(--border-dark); }
[dir="rtl"] .hero-stats > div { padding: 28px 0 0 56px; margin-right: 0; margin-left: 56px; border-right: none; border-left: 1px solid var(--border); }
[dir="rtl"] .hero-stats > div:last-child { border-left: none; margin-left: 0; padding-left: 0; }
[dir="rtl"] .service-card { border-right: none; border-left: 1px solid var(--border-dark); }
[dir="rtl"] .service-card:last-child { border-left: none; }
[dir="rtl"] .pricing-card { border-right: none; border-left: 1px solid var(--border-dark); }
[dir="rtl"] .pricing-card:last-child { border-left: none; }
[dir="rtl"] .step { border-right: none; border-left: 1px solid var(--border-dark); }
[dir="rtl"] .step:last-child { border-left: none; }
[dir="rtl"] .why-items { border-right: none; border-left: 1px solid var(--border-dark); }
[dir="rtl"] .trust-label { border-right: none; border-left: 1px solid var(--border); }
[dir="rtl"] .trust-badge { border-right: none; border-left: 1px solid var(--border); }
[dir="rtl"] .contact-link:first-child { border-left: none; border-right: 1px solid rgba(255,255,255,0.18); }

@media (max-width: 768px) {
  [dir="rtl"] nav { padding: 0 20px 0 0; }
  [dir="rtl"] .lang-switcher { border-right: 1px solid var(--border-dark); border-left: none; }
  [dir="rtl"] .btn-secondary { border-left: none; border-right: 2px solid var(--border-dark); }
  [dir="rtl"] .why-items { border-left: none; }
  [dir="rtl"] .service-card { border-left: none; }
  [dir="rtl"] .step { border-left: none; }
  [dir="rtl"] .pricing-card { border-left: none; }
}

/* ─── COOKIE BANNER ─── */
#cookieBanner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  background: var(--text);
  color: rgba(255,255,255,0.65);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 680px;
  width: calc(100% - 48px);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  line-height: 1.5;
  flex-wrap: wrap;
  border: 1px solid var(--border-dark);
}
#cookieBanner p { flex: 1; min-width: 200px; margin: 0; }
#cookieBanner a { color: var(--accent); text-decoration: none; }
#cookieBanner a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: 0; flex-shrink: 0; }
.cookie-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cookie-accept:hover { background: #FF5533; }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.45);
  border: none;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  cursor: pointer;
  transition: color 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cookie-decline:hover { color: rgba(255,255,255,0.75); }
#cookieBanner.cookie-hidden { display: none !important; }
.text-center { text-align: center; }

/* ─── SPA PAGE SYSTEM ─── */
.page { display: none; }
.page.active { animation: pageIn 0.3s ease forwards; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
