/* ================================
   VARIABLES & RESET
   ================================ */
:root {
  --green-50:  #faf5ff;
  --green-100: #ede9fe;
  --green-500: #8b5cf6;
  --green-600: #7c3aed;
  --green-700: #6d28d9;
  --green-800: #5b21b6;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white:     #ffffff;
  --brand-green:      #22c55e;
  --brand-green-dark: #166534;
  --teal-primary:     #142A30;
  --teal-bg-dark:     #0B181A;
  --teal-secondary:   #1E3F47;
  --teal-accent:      #2F6F78;
  --teal-light:       #7FB6BD;
  --teal-text:        #F4F7F8;
  --teal-muted:       #B8C7CA;
  --font:      'Inter', sans-serif;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: #111; background: var(--white); line-height: 1.6; }
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ================================
   LAYOUT
   ================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section.bg-light { background: var(--white); }
.section.bg-dark  { background: var(--white); }
.section + .section { border-top: 1px solid #e8f5e9; }

/* ================================
   TYPOGRAPHY
   ================================ */
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.2rem; font-weight: 600; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2       { color: var(--brand-green); }
.section-header.light h2 { color: var(--brand-green); }
.section-header.light .section-sub { color: var(--brand-green-dark); }

.section-tag {
  display: inline-block;
  background: rgba(22,163,74,0.1);
  color: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header.light .section-tag { background: rgba(34,197,94,0.12); color: var(--brand-green); }

.section-sub {
  color: var(--brand-green-dark);
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

/* ================================
   BUTTONS
   ================================ */
.btn-primary {
  display: inline-block;
  background: var(--green-600);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--green-700); transform: translateY(-1px); }
.btn-primary.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--green-600);
  color: var(--green-600);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--green-600); color: var(--white); }
.btn-outline.btn-lg { padding: 14px 30px; font-size: 1rem; }

/* ================================
   NAVBAR
   ================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-100);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 1px 24px rgba(0,0,0,0.07); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 48px; width: auto; object-fit: contain; }
.logo-text { display: none; font-size: 1.2rem; font-weight: 700; color: var(--slate-900); }
.logo-text.visible { display: inline; }
.logo-accent { color: var(--green-500); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--slate-600);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--slate-900); }

.nav-actions { display: flex; align-items: center; gap: 20px; }

.lang-switcher { display: flex; align-items: center; }
.lang-select {
  background: var(--white);
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.83rem;
  font-family: var(--font);
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--transition);
}
.lang-select:focus { outline: none; border-color: var(--brand-green); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--slate-700); border-radius: 2px; transition: var(--transition); }

/* ================================
   HERO
   ================================ */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(34,197,94,0.12) 0%, transparent 65%),
    linear-gradient(rgba(34,197,94,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.04) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; padding: 80px 24px; }

.hero-badge {
  display: inline-block;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--brand-green);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 { color: var(--brand-green); margin-bottom: 24px; }

.hero-sub {
  color: var(--brand-green-dark);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 24px;
}

.hero-stat {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--slate-500);
  border-left: 2px solid var(--brand-green);
  padding-left: 12px;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

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

.hero .btn-outline {
  border-color: var(--brand-green);
  color: var(--brand-green);
}
.hero .btn-outline:hover {
  background: var(--brand-green);
  color: var(--white);
}

.hero-clouds { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cloud-badge {
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
  color: var(--brand-green-dark);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cloud-badge.coming { opacity: 0.5; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  color: var(--brand-green);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ================================
   STATS BAR
   ================================ */
.stats-bar { background: var(--green-700); padding: 32px 0; }

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item { text-align: center; padding: 16px 48px; }
.stat-number { display: block; font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); font-weight: 500; margin-top: 4px; display: block; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.22); }

/* ================================
   FEATURES
   ================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.feature-card.featured {
  border-color: var(--green-600);
  background: var(--green-50);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.feature-icon.green  { background: var(--green-100); color: var(--green-700); }
.feature-icon.lime   { background: rgba(22,163,74,0.12); color: var(--brand-green-dark); }
.feature-icon.blue   { background: #dbeafe; color: #1d4ed8; }
.feature-icon.purple { background: var(--green-100); color: var(--green-600); }

.feature-card h3 { margin-bottom: 12px; }
.feature-card p  { color: #111; font-size: 0.95rem; }

/* ================================
   HOW IT WORKS
   ================================ */
.workflow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.workflow-step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  padding: 24px 16px;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-500);
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 { color: var(--brand-green); margin-bottom: 8px; font-size: 1.05rem; }
.step-content p  { color: #111; font-size: 0.88rem; }

.workflow-arrow { color: var(--brand-green); font-size: 1.1rem; padding-top: 38px; }

/* ================================
   MARKETS
   ================================ */
.markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.market-card {
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 2px solid var(--slate-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.market-card:hover { border-color: var(--green-600); box-shadow: var(--shadow); }

.market-card.eu     { background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%); }
.market-card.global { background: linear-gradient(135deg, #f8fafc 0%, #faf5ff 100%); }

.market-flag { font-size: 2.5rem; margin-bottom: 16px; }
.market-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.market-sub { color: var(--slate-500); font-size: 0.88rem; margin-bottom: 24px; font-weight: 500; }

.market-list { display: flex; flex-direction: column; gap: 12px; }
.market-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.94rem; color: #111; }
.market-list .fa-check { color: var(--green-600); margin-top: 3px; flex-shrink: 0; }

/* ================================
   ARCHITECTURE
   ================================ */
.arch-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.arch-module {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow var(--transition);
}
.arch-module:hover { box-shadow: var(--shadow); }
.arch-module.highlighted {
  border-color: var(--green-600);
  background: var(--green-50);
}

.arch-icon {
  width: 48px; height: 48px;
  background: var(--green-100); color: var(--green-700);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}
.arch-module.highlighted .arch-icon { background: var(--green-700); color: var(--white); }

.arch-module h3 { font-size: 0.95rem; margin-bottom: 12px; }
.arch-module ul { text-align: left; display: flex; flex-direction: column; gap: 6px; }
.arch-module li { font-size: 0.8rem; color: #111; }
.arch-module li::before { content: "→ "; color: var(--green-600); }

.arch-arrow { color: var(--green-600); font-size: 1.1rem; padding: 52px 8px 0; }

/* ================================
   TEAM / ROLES
   ================================ */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.role-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.role-card:hover { border-color: var(--green-600); box-shadow: var(--shadow); transform: translateY(-2px); }

.role-icon { font-size: 1.8rem; color: var(--green-600); margin-bottom: 12px; }
.role-card h3 { margin-bottom: 8px; font-size: 1rem; }
.role-card p  { color: #111; font-size: 0.86rem; margin-bottom: 14px; }
.role-tag {
  font-size: 0.73rem;
  color: var(--green-700);
  background: var(--green-100);
  padding: 4px 10px;
  border-radius: 100px;
}

.team-cta { text-align: center; }

/* ================================
   CONTACT FORM
   ================================ */
.contact-form { max-width: 700px; margin: 0 auto; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label { color: #333; font-size: 0.88rem; font-weight: 500; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--slate-200);
  color: #111;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--font);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--brand-green); box-shadow: 0 0 0 3px rgba(34,197,94,0.1); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-group select option { background: var(--white); color: #111; }
.form-group textarea { resize: vertical; }

.contact-form .btn-primary { width: 100%; text-align: center; font-size: 1rem; }

/* ================================
   FOOTER
   ================================ */
.footer { background: var(--white); color: var(--brand-green-dark); border-top: 1px solid #bbf7d0; }
.footer-logo-img { height: 72px; width: auto; margin-bottom: 12px; display: block; }

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0;
}

.footer-logo { font-size: 1.4rem; font-weight: 700; color: var(--brand-green); margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; margin-bottom: 6px; color: #555; }
.footer-email { color: var(--brand-green) !important; font-weight: 500; }

.footer-links h4,
.footer-social h4 { color: var(--brand-green); font-size: 0.88rem; font-weight: 600; margin-bottom: 16px; }

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 0.88rem; color: #555; transition: color var(--transition); }
.footer-links li a:hover { color: var(--brand-green); }

.social-icons { display: flex; gap: 14px; }
.social-icons a { font-size: 1.3rem; color: #555; transition: color var(--transition); }
.social-icons a:hover { color: var(--brand-green); }

.footer-bottom { border-top: 1px solid #bbf7d0; }
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.83rem;
  color: #777;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal a { margin-left: 20px; color: #777; transition: color var(--transition); }
.footer-legal a:hover { color: var(--brand-green); }

/* ================================
   COMPETITIVE COMPARISON
   ================================ */
.compare-wrapper { overflow-x: auto; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-table th {
  padding: 16px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--slate-200);
  color: var(--slate-500);
  white-space: nowrap;
  background: var(--slate-50);
}

.compare-table th:first-child { text-align: left; }

.compare-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--slate-100);
  color: var(--slate-500);
  vertical-align: middle;
}

.compare-table td:first-child {
  text-align: left;
  color: #111;
  font-weight: 500;
}

.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--slate-50); }
.compare-table tbody tr:hover .col-gp { background: var(--green-700); }

.col-gp { background: transparent; font-weight: 700; }

.compare-table thead .col-gp {
  background: var(--slate-50);
  color: var(--green-600);
  font-size: 0.88rem;
  border-top: 3px solid var(--green-600);
  border-bottom: 2px solid var(--slate-200);
}

.compare-table tbody tr:hover .col-gp { background: transparent; }

.check { font-size: 1.1rem; font-weight: 700; display: inline-block; }
.check.yes     { color: var(--green-600); }
.check.no      { color: var(--slate-300); }
.check.partial { color: #ca8a04; }

.check-note {
  display: block;
  font-size: 0.73rem;
  color: var(--slate-400);
  font-weight: 400;
  margin-top: 2px;
}

/* ================================
   SCROLL ANIMATIONS
   ================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   COOKIE BANNER
   ================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: var(--slate-900);
  color: var(--white);
  padding: 20px 24px;
  display: none;
  border-top: 3px solid var(--brand-green);
}
.cookie-banner.visible { display: block; }

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-msg { font-size: 0.88rem; color: rgba(255,255,255,0.85); flex: 1; min-width: 200px; }
.cookie-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cookie-link { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-decoration: underline; }
.cookie-link:hover { color: var(--brand-green); }

.btn-sm { padding: 8px 16px !important; font-size: 0.83rem !important; }

/* ================================
   HERO STATUS BAR
   ================================ */
.hero-status-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.status-badge {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.22);
  color: var(--brand-green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.status-badge.live {
  background: rgba(34,197,94,0.14);
  border-color: var(--brand-green);
  color: var(--brand-green-dark);
}
.status-badge.live .fa-circle {
  font-size: 0.55rem;
  color: var(--brand-green);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ================================
   WORKFLOW NOTE
   ================================ */
.workflow-note {
  text-align: center;
  margin-top: 40px;
  color: var(--brand-green-dark);
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 8px;
  padding: 12px 24px;
  display: inline-block;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ================================
   PROBLEM SECTION
   ================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.problem-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.problem-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.problem-icon {
  width: 48px; height: 48px;
  background: #fff3f3;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #dc2626;
  margin-bottom: 16px;
}
.problem-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.problem-card p { color: #444; font-size: 0.92rem; line-height: 1.7; }

/* ================================
   PILOT PROGRAMME
   ================================ */
.pilot-section { background: var(--slate-50); }
.pilot-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.pilot-offer {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 36px;
}
.pilot-offer h3 { color: var(--brand-green); margin-bottom: 24px; }
.pilot-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pilot-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: #111;
}
.pilot-list .fa-check-circle { color: var(--brand-green); margin-top: 2px; flex-shrink: 0; }
.pilot-note {
  background: rgba(34,197,94,0.06);
  border-left: 3px solid var(--brand-green);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.6;
}
.pilot-note .fa-info-circle { color: var(--brand-green); flex-shrink: 0; margin-top: 2px; }
.pilot-cta-box {
  background: var(--white);
  border: 2px solid var(--green-600);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
}
.pilot-cta-box h3 { color: var(--brand-green); margin-bottom: 16px; }
.pilot-cta-box p { color: #444; font-size: 0.93rem; line-height: 1.7; margin-bottom: 28px; }
.pilot-cta-box .btn-primary { width: 100%; text-align: center; margin-bottom: 16px; }
.pilot-availability {
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}

/* ================================
   SECURITY / TRUST
   ================================ */
.security-section { background: var(--slate-50); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.trust-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.trust-icon {
  width: 44px; height: 44px;
  background: rgba(34,197,94,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--brand-green-dark);
  margin-bottom: 14px;
}
.trust-card h3 { font-size: 0.98rem; margin-bottom: 8px; }
.trust-card p { color: #444; font-size: 0.88rem; line-height: 1.65; }
.security-link-row { text-align: center; }

/* ================================
   EU GOVERNANCE
   ================================ */
.gov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}
.gov-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.gov-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.gov-icon {
  width: 48px; height: 48px;
  background: rgba(124,58,237,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--green-600);
  margin-bottom: 16px;
}
.gov-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.gov-card p { color: #444; font-size: 0.9rem; line-height: 1.65; margin-bottom: 16px; }
.gov-label {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.gov-note {
  text-align: center;
  color: var(--slate-500);
  font-size: 0.85rem;
  background: #fefce8;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.gov-note .fa-info-circle { color: #ca8a04; flex-shrink: 0; }

/* ================================
   ARCHITECTURE ROADMAP
   ================================ */
.arch-roadmap {
  margin-top: 56px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 36px;
  background: var(--slate-50);
}
.arch-roadmap h3 { color: var(--brand-green); margin-bottom: 24px; text-align: center; font-size: 1.05rem; }
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.roadmap-item {
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--slate-200);
}
.roadmap-badge {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--slate-200);
  color: var(--slate-600);
  margin-bottom: 10px;
}
.roadmap-badge.live {
  background: rgba(34,197,94,0.14);
  color: var(--brand-green-dark);
}
.roadmap-item p { font-size: 0.85rem; color: #444; line-height: 1.6; }

/* ================================
   PROOF / ASSESSMENT OUTPUT
   ================================ */
.proof-section { background: var(--slate-50); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.proof-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow var(--transition);
}
.proof-card:hover { box-shadow: var(--shadow); }
.proof-icon {
  width: 42px; height: 42px;
  background: rgba(34,197,94,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--brand-green-dark);
  margin-bottom: 14px;
}
.proof-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.proof-card p { color: #444; font-size: 0.86rem; line-height: 1.6; }
.proof-note {
  text-align: center;
  font-size: 0.84rem;
  color: var(--slate-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.proof-note .fa-info-circle { color: var(--slate-400); }

/* ================================
   ROLE CARDS UPDATE
   ================================ */
.role-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.role-header h3 { margin-bottom: 0; }
.role-status {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.role-status.future { background: var(--slate-100); color: var(--slate-500); }
.role-status.open   { background: rgba(34,197,94,0.1); color: var(--brand-green-dark); }

/* ================================
   FORM CONSENT CHECKBOX
   ================================ */
.form-consent { margin-bottom: 20px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--brand-green);
}
.consent-label span {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.5;
}
.consent-label span a { color: var(--green-600); font-weight: 500; }

/* ================================
   STATS NOTE (inline disclaimer)
   ================================ */
.stat-note {
  display: block;
  font-size: 0.68rem;
  color: var(--slate-400);
  font-style: italic;
  margin-top: 5px;
  line-height: 1.45;
  max-width: 200px;
}

/* ================================
   CARBON METHODOLOGY SECTION
   ================================ */
.carbon-note {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--brand-green);
  border-radius: 12px;
  padding: 32px;
  max-width: 780px;
  margin: 0 auto;
}
.carbon-note-icon {
  width: 48px;
  height: 48px;
  background: rgba(34,197,94,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-green);
  font-size: 1.3rem;
}
.carbon-note-body h3 { color: var(--slate-800); margin-bottom: 8px; }
.carbon-note-body p  { color: var(--slate-600); font-size: 0.96rem; line-height: 1.8; margin-bottom: 16px; }
@media (max-width: 600px) { .carbon-note { flex-direction: column; } }

/* ================================
   FOUNDER / ABOUT SECTION
   ================================ */
.about-section { background: var(--slate-50); }
.founder-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 40px 48px;
  box-shadow: var(--shadow);
}
.founder-name-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.founder-name-row h3 { font-size: 1.3rem; color: var(--slate-900); margin-bottom: 0; }
.founder-role-tag {
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(34,197,94,0.1);
  color: var(--brand-green-dark);
  padding: 3px 10px;
  border-radius: 100px;
}
.founder-bio {
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  margin-top: 4px;
}
.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0a66c2;
  font-weight: 600;
  font-size: 0.92rem;
  transition: opacity var(--transition);
}
.founder-linkedin:hover { opacity: 0.8; }
.founder-linkedin .fab { font-size: 1.1rem; }
@media (max-width: 640px) { .founder-card { padding: 28px 24px; } }

/* ================================
   SECTION DEEP LINKS
   ================================ */
.section-link-row {
  text-align: center;
  margin-bottom: 32px;
}
.section-deep-link {
  color: var(--green-600);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.section-deep-link:hover { color: var(--green-700); }

/* ================================
   SAMPLE REPORT PREVIEW
   ================================ */
.preview-section { background: var(--slate-50); }
.preview-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 36px 40px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}
.preview-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.preview-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--slate-700);
}
.preview-item i {
  color: var(--brand-green);
  width: 18px;
  flex-shrink: 0;
}
.preview-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.preview-label {
  font-size: 0.78rem;
  color: var(--slate-400);
  font-style: italic;
  text-align: center;
  margin: 0;
}
@media (max-width: 700px) {
  .preview-card { flex-direction: column; padding: 28px 24px; gap: 28px; }
  .preview-actions { align-items: flex-start; }
}

/* ================================
   FOUNDER SNIPPET
   ================================ */
.founder-snippet-section { background: #fff; }
.founder-snippet {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.founder-snippet h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 16px;
  color: var(--slate-900);
}
.founder-snippet p {
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.97rem;
}

/* ================================
   FOOTER LOCATION
   ================================ */
.footer-lisbon {
  font-size: 0.82rem;
  color: var(--slate-400);
  margin-top: 4px;
}

/* ================================
   DARK THEME — data-theme="dark"
   ================================ */

/* Base */
body[data-theme="dark"] {
  background: #0B181A;
  color: rgba(255,255,255,0.82);
}

/* Navbar */
[data-theme="dark"] .navbar {
  background: rgba(7,13,26,0.94);
  border-bottom-color: rgba(255,255,255,0.07);
}
[data-theme="dark"] .logo-text { color: #fff; }
[data-theme="dark"] .nav-links a { color: rgba(255,255,255,0.58); }
[data-theme="dark"] .nav-links a:hover { color: #fff; }
[data-theme="dark"] .nav-links.open {
  background: #142A30;
  border-bottom-color: rgba(255,255,255,0.07);
}
[data-theme="dark"] .hamburger span { background: rgba(255,255,255,0.65); }
[data-theme="dark"] .lang-select {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.58);
}

/* Hero (index.html) */
[data-theme="dark"] .hero { background: #0B181A; }
[data-theme="dark"] .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(34,197,94,0.15) 0%, transparent 65%),
    linear-gradient(rgba(34,197,94,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.04) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
}
[data-theme="dark"] .hero h1 { color: #fff; }
[data-theme="dark"] .hero-sub { color: rgba(255,255,255,0.58); }
[data-theme="dark"] .hero-stat { color: rgba(255,255,255,0.36); }
[data-theme="dark"] .status-badge {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.22);
  color: #4ade80;
}
[data-theme="dark"] .status-badge.live {
  background: rgba(34,197,94,0.14);
  border-color: rgba(34,197,94,0.4);
  color: #4ade80;
}
[data-theme="dark"] .cloud-badge {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.52);
}
[data-theme="dark"] .hero .btn-outline {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}
[data-theme="dark"] .hero .btn-outline:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: rgba(255,255,255,0.38);
}

/* Sections */
[data-theme="dark"] .section {
  background: #0B181A;
  border-top-color: rgba(255,255,255,0.05);
}
[data-theme="dark"] .section.bg-light,
[data-theme="dark"] .section.bg-dark { background: #0B181A; }
[data-theme="dark"] .section + .section { border-top-color: rgba(255,255,255,0.05); }

/* Typography / section tags */
[data-theme="dark"] .section-tag {
  background: rgba(34,197,94,0.1);
  color: #4ade80;
}
[data-theme="dark"] .section-header h2 { color: #4ade80; }
[data-theme="dark"] .section-header.light h2 { color: #4ade80; }
[data-theme="dark"] .section-header.light .section-sub { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .section-sub { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .section-deep-link { color: #4ade80; }

/* Buttons */
[data-theme="dark"] .btn-outline {
  border-color: rgba(34,197,94,0.4);
  color: #4ade80;
}
[data-theme="dark"] .btn-outline:hover {
  background: rgba(34,197,94,0.1);
  color: #4ade80;
  border-color: rgba(34,197,94,0.6);
}

/* Feature cards */
[data-theme="dark"] .feature-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .feature-card:hover {
  box-shadow: 0 0 0 1px rgba(34,197,94,0.2), 0 8px 32px rgba(0,0,0,0.35);
  border-color: rgba(34,197,94,0.25);
}
[data-theme="dark"] .feature-card.featured {
  background: rgba(34,197,94,0.07);
  border-color: rgba(34,197,94,0.28);
}
[data-theme="dark"] .feature-icon.green  { background: rgba(34,197,94,0.12); color: #4ade80; }
[data-theme="dark"] .feature-icon.lime   { background: rgba(34,197,94,0.1);  color: #4ade80; }
[data-theme="dark"] .feature-icon.blue   { background: rgba(59,130,246,0.12); color: #60a5fa; }
[data-theme="dark"] .feature-icon.purple { background: rgba(139,92,246,0.12); color: #a78bfa; }
[data-theme="dark"] .feature-card h3 { color: rgba(255,255,255,0.9); }
[data-theme="dark"] .feature-card p  { color: rgba(255,255,255,0.52); }

/* Problem cards */
[data-theme="dark"] .problem-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .problem-card:hover {
  border-color: rgba(34,197,94,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
[data-theme="dark"] .problem-icon { background: rgba(220,38,38,0.12); }
[data-theme="dark"] .problem-card h3 { color: rgba(255,255,255,0.88); }
[data-theme="dark"] .problem-card p  { color: rgba(255,255,255,0.52); }

/* How it works (old workflow) */
[data-theme="dark"] .step-content h3  { color: #4ade80; }
[data-theme="dark"] .step-content p   { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .step-number      { color: rgba(34,197,94,0.55); }
[data-theme="dark"] .workflow-note {
  background: rgba(34,197,94,0.06);
  border-color: rgba(34,197,94,0.18);
  color: rgba(255,255,255,0.52);
}

/* Architecture modules */
[data-theme="dark"] .arch-module {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .arch-module:hover {
  box-shadow: 0 0 0 1px rgba(34,197,94,0.2), 0 8px 24px rgba(0,0,0,0.35);
}
[data-theme="dark"] .arch-module.highlighted {
  background: rgba(34,197,94,0.09);
  border-color: rgba(34,197,94,0.3);
}
[data-theme="dark"] .arch-icon { background: rgba(34,197,94,0.1); color: #4ade80; }
[data-theme="dark"] .arch-module.highlighted .arch-icon { background: rgba(34,197,94,0.22); color: #4ade80; }
[data-theme="dark"] .arch-module h3 { color: rgba(255,255,255,0.88); }
[data-theme="dark"] .arch-module li { color: rgba(255,255,255,0.5); }

/* Trust / security cards */
[data-theme="dark"] .security-section { background: #0B181A; }
[data-theme="dark"] .trust-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .trust-card:hover {
  border-color: rgba(34,197,94,0.22);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
[data-theme="dark"] .trust-icon { background: rgba(34,197,94,0.1); color: #4ade80; }
[data-theme="dark"] .trust-card h3 { color: rgba(255,255,255,0.88); }
[data-theme="dark"] .trust-card p  { color: rgba(255,255,255,0.52); }

/* EU Governance cards */
[data-theme="dark"] .gov-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .gov-card:hover {
  border-color: rgba(34,197,94,0.22);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
[data-theme="dark"] .gov-icon { background: rgba(139,92,246,0.1); color: #a78bfa; }
[data-theme="dark"] .gov-card h3 { color: rgba(255,255,255,0.88); }
[data-theme="dark"] .gov-card p  { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .gov-label { background: rgba(34,197,94,0.1); color: #4ade80; }
[data-theme="dark"] .gov-note {
  background: rgba(202,138,4,0.08);
  border-color: rgba(202,138,4,0.2);
  color: rgba(255,255,255,0.52);
}
[data-theme="dark"] .gov-note .fa-info-circle { color: #fbbf24; }

/* Roadmap */
[data-theme="dark"] .arch-roadmap {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .arch-roadmap h3 { color: #4ade80; }
[data-theme="dark"] .roadmap-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .roadmap-item p { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .roadmap-badge { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.45); }
[data-theme="dark"] .roadmap-badge.live { background: rgba(34,197,94,0.12); color: #4ade80; }

/* Markets */
[data-theme="dark"] .market-card,
[data-theme="dark"] .market-card.eu,
[data-theme="dark"] .market-card.global {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .market-card:hover { border-color: rgba(34,197,94,0.28); }
[data-theme="dark"] .market-card h3 { color: rgba(255,255,255,0.9); }
[data-theme="dark"] .market-sub  { color: rgba(255,255,255,0.38); }
[data-theme="dark"] .market-list li { color: rgba(255,255,255,0.58); }

/* Proof cards */
[data-theme="dark"] .proof-section { background: #0B181A; }
[data-theme="dark"] .proof-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .proof-card h4 { color: rgba(255,255,255,0.88); }
[data-theme="dark"] .proof-card p  { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .proof-icon { background: rgba(34,197,94,0.1); color: #4ade80; }
[data-theme="dark"] .proof-note { color: rgba(255,255,255,0.32); }
[data-theme="dark"] .proof-note .fa-info-circle { color: rgba(255,255,255,0.22); }

/* Compare table */
[data-theme="dark"] .compare-table { background: rgba(255,255,255,0.03); }
[data-theme="dark"] .compare-table th {
  background: rgba(255,255,255,0.04);
  border-bottom-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.42);
}
[data-theme="dark"] .compare-table td {
  border-bottom-color: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.42);
}
[data-theme="dark"] .compare-table td:first-child { color: rgba(255,255,255,0.82); }
[data-theme="dark"] .compare-table tbody tr:hover { background: rgba(255,255,255,0.03); }
[data-theme="dark"] .compare-table thead .col-gp {
  background: rgba(34,197,94,0.07);
  color: #4ade80;
  border-top-color: rgba(34,197,94,0.5);
  border-bottom-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .check.no    { color: rgba(255,255,255,0.18); }
[data-theme="dark"] .check.yes   { color: #4ade80; }
[data-theme="dark"] .check-note  { color: rgba(255,255,255,0.28); }
[data-theme="dark"] .compare-note { color: rgba(255,255,255,0.32); }

/* Role cards */
[data-theme="dark"] .role-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .role-card:hover {
  border-color: rgba(34,197,94,0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
[data-theme="dark"] .role-card h3 { color: rgba(255,255,255,0.88); }
[data-theme="dark"] .role-card p  { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .role-icon  { color: #4ade80; }
[data-theme="dark"] .role-tag   { background: rgba(34,197,94,0.1); color: #4ade80; }
[data-theme="dark"] .role-status.future { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.38); }
[data-theme="dark"] .role-status.open   { background: rgba(34,197,94,0.1); color: #4ade80; }

/* Pilot section (index.html widget) */
[data-theme="dark"] .pilot-section { background: #0B181A; }
[data-theme="dark"] .pilot-offer {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .pilot-offer h3 { color: #4ade80; }
[data-theme="dark"] .pilot-list li  { color: rgba(255,255,255,0.68); }
[data-theme="dark"] .pilot-note {
  background: rgba(34,197,94,0.06);
  border-left-color: rgba(34,197,94,0.35);
  color: rgba(255,255,255,0.5);
}
[data-theme="dark"] .pilot-cta-box {
  background: rgba(255,255,255,0.04);
  border-color: rgba(34,197,94,0.3);
}
[data-theme="dark"] .pilot-cta-box h3 { color: #4ade80; }
[data-theme="dark"] .pilot-cta-box p  { color: rgba(255,255,255,0.52); }

/* Forms */
[data-theme="dark"] .form-group label { color: rgba(255,255,255,0.68); }
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
  border-color: rgba(34,197,94,0.5);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.08);
}
[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
[data-theme="dark"] .form-group select option { background: #142A30; color: rgba(255,255,255,0.85); }
[data-theme="dark"] .consent-label span { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .consent-label span a { color: #4ade80; }

/* Founder card */
[data-theme="dark"] .about-section { background: #0B181A; }
[data-theme="dark"] .founder-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}
[data-theme="dark"] .founder-name-row h3 { color: rgba(255,255,255,0.92); }
[data-theme="dark"] .founder-role-tag { background: rgba(34,197,94,0.1); color: #4ade80; }
[data-theme="dark"] .founder-bio { color: rgba(255,255,255,0.55); }

/* Legal notice / yellow callout */
[data-theme="dark"] .legal-notice {
  background: rgba(202,138,4,0.08);
  border-left-color: rgba(202,138,4,0.4);
}
[data-theme="dark"] .legal-notice p { color: rgba(255,255,255,0.62); }
[data-theme="dark"] .legal-notice a { color: #4ade80; }

/* Carbon note */
[data-theme="dark"] .carbon-note {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  border-left-color: rgba(34,197,94,0.4);
}
[data-theme="dark"] .carbon-note-icon { background: rgba(34,197,94,0.1); color: #4ade80; }
[data-theme="dark"] .carbon-note-body h3 { color: rgba(255,255,255,0.88); }
[data-theme="dark"] .carbon-note-body p  { color: rgba(255,255,255,0.55); }

/* Preview / snippet sections (index.html) */
[data-theme="dark"] .preview-section { background: #0B181A; }
[data-theme="dark"] .preview-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .preview-item { color: rgba(255,255,255,0.62); }
[data-theme="dark"] .founder-snippet-section { background: #0B181A; }
[data-theme="dark"] .founder-snippet h2 { color: rgba(255,255,255,0.9); }
[data-theme="dark"] .founder-snippet p  { color: rgba(255,255,255,0.52); }

/* Legal page styles (security.html) */
[data-theme="dark"] .legal-page { background: #0B181A; }
[data-theme="dark"] .legal-header { border-bottom-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .legal-header h1 { color: #4ade80; }
[data-theme="dark"] .legal-meta  { color: rgba(255,255,255,0.32); }
[data-theme="dark"] .legal-back  { color: #4ade80; }
[data-theme="dark"] .legal-body h2 { color: #4ade80; }
[data-theme="dark"] .legal-body h3 { color: rgba(255,255,255,0.85); }
[data-theme="dark"] .legal-body p  { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .legal-body ul li { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .legal-body ul li::before { color: #4ade80; }
[data-theme="dark"] .legal-body a { color: #4ade80; }
[data-theme="dark"] .legal-footer-nav { border-top-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .security-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .security-item h3 { color: #4ade80; }
[data-theme="dark"] .security-item p  { color: rgba(255,255,255,0.52); }

/* About page (about.html) */
[data-theme="dark"] .about-hero {
  background: linear-gradient(135deg, #0B181A 0%, #0a1220 100%);
  border-bottom-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .about-hero h1 { color: rgba(255,255,255,0.92); }
[data-theme="dark"] .about-hero p  { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .about-page-section     { background: #0B181A; }
[data-theme="dark"] .about-page-section.alt { background: #1E3F47; }
[data-theme="dark"] .about-section-header h2 { color: rgba(255,255,255,0.9); }
[data-theme="dark"] .about-section-header p  { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .origin-block p      { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .origin-block strong { color: rgba(255,255,255,0.85); }
[data-theme="dark"] .status-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .status-card h3 { color: rgba(255,255,255,0.88); }
[data-theme="dark"] .status-card p  { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .status-label.live { background: rgba(34,197,94,0.12); color: #4ade80; }
[data-theme="dark"] .status-label.next { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.42); }
[data-theme="dark"] .about-cta-strip {
  background: linear-gradient(135deg, #0B181A 0%, #1E3F47 100%);
  border-top-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .about-cta-strip h2 { color: rgba(255,255,255,0.92); }
[data-theme="dark"] .about-cta-strip p  { color: rgba(255,255,255,0.52); }

/* Platform page (platform.html) */
[data-theme="dark"] .platform-hero {
  background: linear-gradient(135deg, #0B181A 0%, #1E3F47 100%);
  border-bottom-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .platform-hero h1 { color: rgba(255,255,255,0.92); }
[data-theme="dark"] .platform-hero p  { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .platform-section.alt { background: #1E3F47; }
[data-theme="dark"] .platform-section-header h2 { color: rgba(255,255,255,0.9); }
[data-theme="dark"] .platform-section-header p  { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .platform-feature-detail { color: rgba(255,255,255,0.42); }
[data-theme="dark"] .platform-cta-strip {
  background: linear-gradient(135deg, #0B181A 0%, #1E3F47 100%);
  border-top-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .platform-cta-strip h2 { color: rgba(255,255,255,0.92); }
[data-theme="dark"] .platform-cta-strip p  { color: rgba(255,255,255,0.52); }

/* Pilot page (pilot.html) */
[data-theme="dark"] .pilot-page-hero {
  background: linear-gradient(135deg, #0B181A 0%, #1E3F47 100%);
  border-bottom-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .pilot-page-hero h1 { color: rgba(255,255,255,0.92); }
[data-theme="dark"] .pilot-page-hero p  { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .pilot-hero-badge {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.62);
}
[data-theme="dark"] .pilot-section:nth-child(even) { background: #1E3F47; }
[data-theme="dark"] .pilot-section-header h2 { color: rgba(255,255,255,0.9); }
[data-theme="dark"] .pilot-section-header p  { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .who-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .who-card h3 { color: rgba(255,255,255,0.88); }
[data-theme="dark"] .who-card p  { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .include-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .include-item h3 { color: rgba(255,255,255,0.88); }
[data-theme="dark"] .include-item p  { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .include-item.optional {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .include-item.optional .include-tag {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.4);
}
[data-theme="dark"] .stage-line { background: rgba(255,255,255,0.1); }
[data-theme="dark"] .stage-badge.optional {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.4);
}
[data-theme="dark"] .stage-content h3 { color: rgba(255,255,255,0.88); }
[data-theme="dark"] .stage-content p  { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .stage-detail {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
}
[data-theme="dark"] .access-block {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .access-block h3 { color: #4ade80; }
[data-theme="dark"] .access-block ul li { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .pilot-form-section {
  background: linear-gradient(135deg, #0B181A 0%, #1E3F47 100%);
}
[data-theme="dark"] .pilot-form-header h2 { color: rgba(255,255,255,0.92); }
[data-theme="dark"] .pilot-form-header p  { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .pilot-availability   { color: rgba(255,255,255,0.35); }
[data-theme="dark"] .pilot-footer-nav { border-top-color: rgba(255,255,255,0.08); }

/* Footer */
[data-theme="dark"] .footer {
  background: #08121A;
  color: rgba(255,255,255,0.45);
  border-top-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .footer-bottom { border-top-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .footer-logo   { color: #4ade80; }
[data-theme="dark"] .footer-brand p { color: rgba(255,255,255,0.38); }
[data-theme="dark"] .footer-email  { color: #4ade80 !important; }
[data-theme="dark"] .footer-links h4,
[data-theme="dark"] .footer-social h4 { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .footer-links li a { color: rgba(255,255,255,0.38); }
[data-theme="dark"] .footer-links li a:hover { color: #4ade80; }
[data-theme="dark"] .social-icons a { color: rgba(255,255,255,0.38); }
[data-theme="dark"] .social-icons a:hover { color: #4ade80; }
[data-theme="dark"] .footer-legal   { color: rgba(255,255,255,0.28); }
[data-theme="dark"] .footer-legal a { color: rgba(255,255,255,0.28); }
[data-theme="dark"] .footer-legal a:hover { color: #4ade80; }

/* ================================
   WORKFLOW DARK SECTION
   ================================ */
.workflow-dark {
  background: #0B181A;
  padding: 100px 0 88px;
  position: relative;
  overflow: hidden;
}
.workflow-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.workflow-dark::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 480px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.workflow-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.workflow-tag {
  display: inline-block;
  background: rgba(34,197,94,0.1);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(34,197,94,0.22);
  margin-bottom: 18px;
}
.workflow-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.workflow-header p {
  color: rgba(255,255,255,0.4);
  font-size: 0.95rem;
}

/* PIPELINE */
.pipeline-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 52px;
}
.pipeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}
.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  width: 136px;
}
.step-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.22);
  position: relative;
  transition: background 0.5s ease, border-color 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
}
.pipeline-step.active .step-icon-wrap {
  background: rgba(34,197,94,0.13);
  border-color: rgba(34,197,94,0.48);
  color: #4ade80;
  box-shadow: 0 0 0 6px rgba(34,197,94,0.07), 0 0 28px rgba(34,197,94,0.22);
}
.step-num {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  color: rgba(255,255,255,0.28);
  transition: background 0.5s ease, border-color 0.5s ease, color 0.5s ease;
}
.pipeline-step.active .step-num {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}
.step-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.step-label {
  font-size: 0.81rem;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  text-align: center;
  transition: color 0.5s ease;
}
.pipeline-step.active .step-label { color: rgba(255,255,255,0.9); }
.step-sub {
  font-size: 0.71rem;
  color: rgba(255,255,255,0.18);
  text-align: center;
  line-height: 1.35;
  transition: color 0.5s ease;
}
.pipeline-step.active .step-sub { color: rgba(255,255,255,0.42); }

/* CONNECTORS */
.pipeline-connector {
  flex: 1;
  min-width: 32px;
  max-width: 72px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  position: relative;
  align-self: flex-start;
  margin-top: 27px;
}
.connector-dot {
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.9);
  animation: wf-flow-dot 1.8s linear infinite;
}
.pipeline-connector:nth-child(2) .connector-dot { animation-delay: 0s; }
.pipeline-connector:nth-child(4) .connector-dot { animation-delay: 0.45s; }
.pipeline-connector:nth-child(6) .connector-dot { animation-delay: 0.9s; }
.pipeline-connector:nth-child(8) .connector-dot { animation-delay: 1.35s; }
@keyframes wf-flow-dot {
  0%   { left: 0; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* DEMO CARD */
.wf-demo-wrap {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.wf-demo-card {
  background: #142A30;
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(34,197,94,0.05),
    0 0 60px rgba(34,197,94,0.09),
    0 32px 80px rgba(0,0,0,0.55);
}
.wf-titlebar {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wf-dots { display: flex; gap: 6px; align-items: center; }
.wf-dot { width: 10px; height: 10px; border-radius: 50%; }
.wf-dot.r { background: #ff5f57; }
.wf-dot.y { background: #ffbd2e; }
.wf-dot.g { background: #28ca40; }
.wf-title-text {
  flex: 1;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.28);
  font-family: ui-monospace, 'SF Mono', 'Fira Code', monospace;
  margin-left: 10px;
}
.wf-body {
  min-height: 210px;
  position: relative;
}
.wf-phase {
  position: absolute;
  inset: 0;
  padding: 24px 28px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.wf-phase.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Scan lines */
.wf-scan-lines {
  font-family: ui-monospace, 'SF Mono', 'Fira Code', monospace;
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.wf-line {
  display: flex;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  opacity: 0;
}
.wf-line.px  { color: #4ade80; flex-shrink: 0; }
.wf-line-px  { color: #4ade80; flex-shrink: 0; font-style: normal; }
.wf-line-val { color: rgba(255,255,255,0.85); font-weight: 500; }
.wf-line-dim { color: rgba(255,255,255,0.28); font-size: 0.77rem; }
.wf-phase.active .wf-line { animation: wf-line-in 0.3s ease forwards; }
.wf-phase.active .wf-line:nth-child(1) { animation-delay: 0.10s; }
.wf-phase.active .wf-line:nth-child(2) { animation-delay: 0.38s; }
.wf-phase.active .wf-line:nth-child(3) { animation-delay: 0.66s; }
.wf-phase.active .wf-line:nth-child(4) { animation-delay: 0.94s; }
.wf-phase.active .wf-line:nth-child(5) { animation-delay: 1.22s; }
.wf-phase.active .wf-line:nth-child(6) { animation-delay: 1.50s; }
@keyframes wf-line-in {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Report phase */
.wf-report-summary {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wf-metric { display: flex; flex-direction: column; gap: 3px; }
.wf-metric-val {
  font-size: 1.55rem;
  font-weight: 700;
  color: #4ade80;
  line-height: 1;
}
.wf-metric-label { font-size: 0.74rem; color: rgba(255,255,255,0.32); }
.wf-metric-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.07); }
.wf-findings { display: flex; flex-direction: column; gap: 10px; }
.wf-finding {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
}
.wf-finding strong { color: rgba(255,255,255,0.82); }
.wf-fdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wf-finding.hi .wf-fdot { background: #f87171; box-shadow: 0 0 6px rgba(248,113,113,0.5); }
.wf-finding.md .wf-fdot { background: #fb923c; box-shadow: 0 0 6px rgba(251,146,60,0.4); }

/* Approve phase */
.wf-approval-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.wf-approval-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  background: rgba(248,113,113,0.13);
  color: #f87171;
  border: 1px solid rgba(248,113,113,0.22);
}
.wf-approval-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin: 0 0 4px;
}
.wf-approval-sub {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.32);
  margin: 0;
}
.wf-approval-sub strong { color: rgba(255,255,255,0.58); }
.wf-approval-actions { display: flex; gap: 8px; flex-shrink: 0; padding-top: 2px; }
.wf-btn {
  padding: 6px 14px;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid;
  transition: all 0.25s ease;
  font-family: var(--font);
}
.wf-btn.approve {
  background: rgba(34,197,94,0.13);
  border-color: rgba(34,197,94,0.38);
  color: #4ade80;
}
.wf-btn.approve.clicked {
  background: rgba(34,197,94,0.25);
  border-color: #22c55e;
}
.wf-btn.defer {
  background: transparent;
  border-color: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.3);
}
.wf-confirmed {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: #4ade80;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 4px 2px;
  font-family: ui-monospace, 'SF Mono', 'Fira Code', monospace;
}
.wf-confirmed.visible { opacity: 1; }
.wf-confirmed i { font-size: 0.95rem; }

/* ================================
   RESPONSIVE — 1024px
   ================================ */
@media (max-width: 1024px) {
  .roles-grid    { grid-template-columns: repeat(2, 1fr); }
  .trust-grid    { grid-template-columns: repeat(2, 1fr); }
  .gov-grid      { grid-template-columns: 1fr 1fr; }
  .roadmap-grid  { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

/* ================================
   RESPONSIVE — 768px
   ================================ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--slate-100);
    gap: 20px;
  }
  .hamburger { display: flex; }

  .features-grid  { grid-template-columns: 1fr; }
  .problem-grid   { grid-template-columns: 1fr; }
  .pilot-layout   { grid-template-columns: 1fr; }
  .trust-grid     { grid-template-columns: 1fr; }
  .gov-grid       { grid-template-columns: 1fr; }
  .proof-grid     { grid-template-columns: 1fr; }
  .cookie-content { flex-direction: column; align-items: flex-start; }

  .workflow { flex-direction: column; align-items: center; }
  .workflow-arrow { transform: rotate(90deg); padding: 0; }

  .arch-grid { flex-direction: column; align-items: center; }
  .arch-arrow { transform: rotate(90deg); padding: 0; }
  .arch-module { max-width: 100%; width: 100%; }

  .form-row { grid-template-columns: 1fr; }

  .stat-item { padding: 16px 24px; }
  .stat-divider { display: none; }

  .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 0; }

  /* Workflow dark — mobile */
  .pipeline-step { width: 80px; }
  .step-icon-wrap { width: 44px; height: 44px; font-size: 0.88rem; }
  .pipeline-connector { margin-top: 22px; min-width: 16px; max-width: 28px; }
  .step-sub { display: none; }
  .step-label { font-size: 0.72rem; }
  .wf-demo-wrap { margin: 0 -4px; }
  .wf-report-summary { flex-direction: column; gap: 12px; align-items: flex-start; }
  .wf-metric-divider { width: 36px; height: 1px; }
  .wf-approval-item { flex-direction: column; }
  .wf-approval-actions { padding-top: 8px; }
}

/* ================================
   RESPONSIVE — 480px
   ================================ */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .roles-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .lang-select { font-size: 0.78rem; padding: 4px 6px; }
}
