/* ===========================================================
   Palvexo — static stylesheet (hand-written from Tailwind + tokens)
   =========================================================== */

:root {
  --Palvexo-primary: #1a1a2e;
  --Palvexo-secondary: #16213e;
  --Palvexo-accent: #00c9a7;
  --Palvexo-accent-hover: #00a88c;
  --Palvexo-bg: #f4f7f9;
  --Palvexo-surface: #ffffff;
  --Palvexo-text: #1a1a2e;
  --Palvexo-text-muted: #6b7a8d;
  --Palvexo-border: #e2e8f0;

  --background: #f4f7f9;
  --foreground: #1a1a2e;

  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Syne', 'Trebuchet MS', sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid var(--Palvexo-border);
}

html {
  scroll-behavior: smooth;
  background: #f4f7f9;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; background: none; }
ul { list-style: none; }
strong { font-weight: 700; }

:focus-visible { outline: 2px solid rgba(0, 201, 167, 0.6); outline-offset: 2px; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin-inline: auto;
  padding-inline: 1rem;
}
.container-4xl { max-width: 56rem; }
.container-5xl { max-width: 64rem; }
.container-3xl { max-width: 48rem; }
@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}

.text-balance { text-wrap: balance; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Brutalist utilities */
.brutalist-box { border: 3px solid #1a1a2e; box-shadow: 6px 6px 0 #1a1a2e; }
.brutalist-box-accent { border: 3px solid #00c9a7; box-shadow: 6px 6px 0 #00c9a7; }

/* Geo pattern for hero */
.geo-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2300c9a7' stroke-width='0.5' opacity='0.08'%3E%3Crect x='0' y='0' width='60' height='60'/%3E%3Cline x1='0' y1='30' x2='60' y2='30'/%3E%3Cline x1='30' y1='0' x2='30' y2='60'/%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
}

/* Reveal-on-scroll (framer-motion replacement) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.reveal-left { transform: translateX(-24px); }
.reveal.reveal-right { transform: translateX(24px); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #1a1a2e;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}
.header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-mark { width: 2rem; height: 2rem; display: flex; }
.brand-name {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: #00c9a7; }

.header-cta { display: none; align-items: center; gap: 0.75rem; }
.btn-login {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  min-height: 40px;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}
.btn-login:hover { border-color: #00c9a7; color: #00c9a7; }
.btn-trial {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: #00c9a7;
  color: #1a1a2e;
  border-radius: 0.5rem;
  min-height: 40px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-trial:hover { background: #00a88c; }

.hamburger {
  color: #fff;
  padding: 0.5rem;
  min-height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger .icon-close { display: none; }
.hamburger.open .icon-menu { display: none; }
.hamburger.open .icon-close { display: block; }

.nav-mobile {
  display: none;
  background: #16213e;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  animation: slideDown 0.18s ease;
}
.nav-mobile.open { display: block; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
}
.nav-mobile a {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  min-height: 48px;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}
.nav-mobile a:hover,
.nav-mobile a.active { color: #00c9a7; background: rgba(255, 255, 255, 0.05); }
.nav-mobile-cta {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nav-mobile-cta a {
  justify-content: center;
  min-height: 48px;
}
.nav-mobile-cta .m-login {
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-mobile-cta .m-trial {
  background: #00c9a7;
  color: #1a1a2e;
  font-weight: 600;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .header-cta { display: flex; }
  .hamburger { display: none; }
  .nav-mobile { display: none !important; }
}

/* ===========================================================
   BUTTONS / shared
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  transition: all 0.2s;
}
.btn svg { flex-shrink: 0; }

.btn-accent {
  background: #00c9a7;
  color: #1a1a2e;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  min-height: 52px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}
.btn-accent:hover {
  background: #00a88c;
  box-shadow: 0 0 32px rgba(0, 201, 167, 0.45);
  transform: scale(1.02);
}
.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  min-height: 52px;
}
.btn-outline-white:hover { border-color: #00c9a7; color: #00c9a7; }
.btn-outline-dark {
  border: 2px solid #1a1a2e;
  color: #1a1a2e;
  padding: 0.875rem 1.75rem;
  min-height: 52px;
}
.btn-outline-dark:hover { background: #1a1a2e; color: #fff; }
.btn-dark {
  background: #1a1a2e;
  color: #fff;
  padding: 1rem 2rem;
  min-height: 52px;
}
.btn-dark:hover { background: #16213e; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2); }

.eyebrow {
  display: inline-block;
  border: 2px solid #1a1a2e;
  color: #1a1a2e;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.eyebrow-accent {
  border-color: #00c9a7;
  color: #00c9a7;
}
.eyebrow-accent-soft {
  border-color: rgba(0, 201, 167, 0.4);
  color: #00c9a7;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(0, 201, 167, 0.4);
  background: rgba(0, 201, 167, 0.1);
  color: #00c9a7;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Section title helpers */
.section {
  padding-block: 4rem;
}
@media (min-width: 768px) { .section { padding-block: 6rem; } }
.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #1a1a2e;
  font-family: var(--font-heading);
}
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.accent-text { color: #00c9a7; }
.muted-text { color: #6b7a8d; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #1a1a2e;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .geo-pattern { position: absolute; inset: 0; }
.hero-bg .hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, #1a1a2e, rgba(26,26,46,0.95), rgba(22,33,62,0.9));
}
.hero-accent-shape {
  position: absolute; top: 0; right: 0;
  width: 40vw; height: 60vh; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(0,201,167,0.12) 0%, transparent 70%);
}
.hero .container {
  position: relative;
  z-index: 10;
  padding-block: 5rem;
}
@media (min-width: 768px) { .hero .container { padding-block: 7rem; } }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
}
.hero-underline {
  position: relative;
  display: inline-block;
}
.hero-underline > .accent-text { position: relative; }
.hero-underline .underline-bar {
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 3px;
  background: #00c9a7;
  border-radius: 2px;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 36rem;
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-ctas { display: flex; flex-direction: column; gap: 0.75rem; }
.hero-ctas .btn { width: 100%; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1rem; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
.trust-badge svg { color: #00c9a7; }
.hero-visual { display: flex; justify-content: center; }
.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 32rem;
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
}
.hero-mockup .frame {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.hero-mockup img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
.hero-float-badge {
  position: absolute;
  bottom: -1rem; left: -1rem;
  background: #00c9a7; color: #1a1a2e;
  font-weight: 700; font-size: 0.75rem;
  padding: 0.5rem 1rem; border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}
.hero-bottom-accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, transparent, #00c9a7, transparent);
  opacity: 0.4;
}
.eyebrow-pill-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(0, 201, 167, 0.4);
  background: rgba(0, 201, 167, 0.1);
  color: #00c9a7;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: fit-content;
}

@media (min-width: 768px) {
  .hero-h1 { font-size: 3.75rem; }
  .hero-sub { font-size: 1.25rem; }
  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn { width: auto; }
  .hero-br { display: block; }
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; }
  .hero-content { grid-column: span 7; }
  .hero-visual { grid-column: span 5; justify-content: flex-end; }
  .hero-h1 { font-size: 4.5rem; }
}
.hero-br { display: none; }

/* ===========================================================
   SOCIAL PROOF
   =========================================================== */
.social-proof {
  background: #f4f7f9;
  border-block: 1px solid #e2e8f0;
  padding-block: 2.5rem;
  overflow: hidden;
}
.social-proof-label {
  text-align: center;
  color: #6b7a8d;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.social-proof-label strong { color: #1a1a2e; }
.client-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.client-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border: 2px solid #b0bec5;
  border-radius: 0.5rem;
}
.client-chip span {
  color: #b0bec5;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .social-proof { padding-block: 3rem; }
  .client-row { gap: 2.5rem; }
}

/* ===========================================================
   Generic card grids
   =========================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-2-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .grid-2-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-2-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Section header block */
.section-head { margin-bottom: 3rem; }
.section-head .eyebrow,
.section-head .eyebrow-accent { margin-bottom: 1rem; }
.section-head.center { text-align: center; }

/* Problem / Solution cards */
.ps-card {
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: #f4f7f9;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}
.ps-card.solution { border-color: #00c9a7; }
.ps-card .corner {
  position: absolute; top: 0; right: 0;
  width: 6rem; height: 6rem;
  background: rgba(0, 201, 167, 0.08);
  border-bottom-left-radius: 9999px;
}
.icon-box {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #fff;
  color: #6b7a8d;
  flex-shrink: 0;
}
.icon-box.accent {
  background: #00c9a7;
  border: none;
  color: #1a1a2e;
}
.icon-box.dark { background: #1a1a2e; border: none; color: #fff; }
.card-h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: #1a1a2e;
}
.card-p {
  color: #6b7a8d;
  font-size: 0.875rem;
  line-height: 1.7;
}

/* Divider between problem/solution */
.ps-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-block: 2.5rem;
}
.ps-divider .line { width: 1px; height: 2.5rem; background: #e2e8f0; }
.ps-divider .line-accent { background: rgba(0, 201, 167, 0.4); }
.ps-divider .badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid #00c9a7;
  background: rgba(0, 201, 167, 0.1);
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
}
.ps-divider .badge svg { color: #00c9a7; }
.ps-divider .badge span {
  color: #1a1a2e;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===========================================================
   FEATURES SUMMARY (home)
   =========================================================== */
.feature-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.2s;
}
.feature-card:hover {
  border-color: #00c9a7;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.feature-card .fc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feature-card .fc-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a2e;
  border-radius: 0.5rem;
  color: #fff;
  transition: all 0.2s;
}
.feature-card:hover .fc-icon { background: #00c9a7; color: #1a1a2e; }
.feature-card .fc-tag {
  font-size: 0.625rem;
  font-weight: 700;
  color: #6b7a8d;
  letter-spacing: 0.1em;
  border: 1px solid #e2e8f0;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}

/* ===========================================================
   STATS + CHART
   =========================================================== */
.stats-section {
  background: #1a1a2e;
  padding-block: 4rem;
  overflow: hidden;
}
@media (min-width: 768px) { .stats-section { padding-block: 6rem; } }
.stats-grid { margin-bottom: 3.5rem; }
.stat-card {
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) { .stat-card { padding: 1.5rem; } }
.stat-value {
  font-size: 1.875rem;
  font-weight: 800;
  color: #00c9a7;
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) { .stat-value { font-size: 3rem; } }
.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.chart-head { margin-bottom: 1.5rem; }
.chart-head .eyebrow-accent-soft { margin-bottom: 0.75rem; }
.chart-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-heading);
}
@media (min-width: 768px) { .chart-title { font-size: 2.25rem; } }
.chart-box {
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) { .chart-box { padding: 1.5rem; } }
.chart-box svg { width: 100%; height: auto; display: block; }
.chart-legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}
.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
.chart-legend .swatch {
  width: 0.75rem; height: 0.75rem; border-radius: 2px;
}
.chart-note {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.625rem;
  margin-top: 0.75rem;
  text-align: center;
}

/* ===========================================================
   DEMO
   =========================================================== */
.demo-wrap { max-width: 48rem; margin-inline: auto; }
.demo-video {
  position: relative;
  border: 3px solid #1a1a2e;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
  background: #1a1a2e;
  cursor: pointer;
}
.demo-video img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.demo-play-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.demo-play {
  width: 5rem; height: 5rem;
  background: #00c9a7;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
  transition: all 0.3s;
}
.demo-video:hover .demo-play {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(0, 201, 167, 0.5);
}
.demo-play svg { margin-left: 4px; }
.demo-tags {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.demo-tag-dur {
  background: rgba(26, 26, 46, 0.8);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(4px);
}
.demo-tag-free {
  background: #00c9a7;
  color: #1a1a2e;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
}
.demo-cta { margin-top: 2rem; text-align: center; }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonial-card {
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f4f7f9;
  transition: all 0.2s;
}
.testimonial-card:hover {
  border-color: #00c9a7;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.stars { display: flex; gap: 0.125rem; }
.testimonial-card blockquote {
  color: #1a1a2e;
  font-size: 1rem;
  line-height: 1.7;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}
.avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.avatar span { color: #00c9a7; font-size: 0.75rem; font-weight: 700; }
.testimonial-author .name { color: #1a1a2e; font-weight: 700; font-size: 0.875rem; }
.testimonial-author .role { color: #6b7a8d; font-size: 0.75rem; }
.footnote {
  margin-top: 2rem;
  text-align: center;
  color: #6b7a8d;
  font-size: 0.75rem;
  font-style: italic;
}

/* ===========================================================
   FAQ (accordion)
   =========================================================== */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
  background: #fff;
  color: #1a1a2e;
  min-height: 64px;
  transition: background 0.2s, color 0.2s;
}
@media (min-width: 768px) { .faq-q { padding: 1.5rem; } }
.faq-q:hover { background: #f4f7f9; }
.faq-q .q-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
}
.faq-q .q-icon {
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  color: #6b7a8d;
}
.faq-q .q-icon .icon-minus { display: none; }
.faq-item.open .faq-q { background: #1a1a2e; color: #fff; }
.faq-item.open .faq-q .q-icon { border-color: #00c9a7; color: #00c9a7; }
.faq-item.open .faq-q .q-icon .icon-plus { display: none; }
.faq-item.open .faq-q .q-icon .icon-minus { display: block; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
  background: #f4f7f9;
}
.faq-a-inner p {
  padding: 1rem 1.25rem 1.25rem;
  color: #6b7a8d;
  font-size: 0.875rem;
  line-height: 1.7;
  border-top: 2px solid #e2e8f0;
}
@media (min-width: 768px) {
  .faq-a-inner p { padding-inline: 1.5rem; }
}

/* ===========================================================
   CTA FINAL
   =========================================================== */
.cta-final {
  position: relative;
  overflow: hidden;
  padding-block: 5rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
@media (min-width: 768px) { .cta-final { padding-block: 7rem; } }
.cta-final .light {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,201,167,0.15) 0%, transparent 70%);
}
.cta-final .top-border {
  position: absolute; top: 0; left: 0; right: 0; height: 4px; background: #00c9a7;
}
.cta-final .container { position: relative; z-index: 10; text-align: center; }
.cta-final .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-final h2 {
  font-size: 1.875rem;
  font-weight: 800;
  color: #fff;
  max-width: 48rem;
  line-height: 1.15;
  font-family: var(--font-heading);
}
@media (min-width: 768px) { .cta-final h2 { font-size: 3.75rem; } }
.cta-final p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 36rem;
}
.cta-final p strong { color: #fff; }
.cta-final .btn-big {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  min-height: 60px;
  font-family: var(--font-heading);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3);
}
.cta-final .btn-big:hover {
  box-shadow: 0 0 48px rgba(0, 201, 167, 0.5);
  transform: scale(1.03);
}
.cta-final .users {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}
.cta-final .users svg { color: #00c9a7; }
.cta-final .users strong { color: rgba(255,255,255,0.7); margin-inline: 0.25rem; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: #1a1a2e;
  color: #fff;
}
.footer-inner { padding-block: 3rem; }
@media (min-width: 768px) { .footer-inner { padding-block: 4rem; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand .brand-name { font-size: 1.125rem; }
.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: #fff;
  transition: all 0.2s;
}
.social-links a:hover { border-color: #00c9a7; color: #00c9a7; }
.footer-col h3 {
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a,
.footer-col ul li span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #00c9a7; }
.footer-contact li { display: flex; gap: 0.5rem; align-items: flex-start; }
.footer-contact li svg { color: #00c9a7; flex-shrink: 0; margin-top: 0.15rem; }
.footer-contact li.center-icon svg { margin-top: 0; }
.footer-contact li a:hover { color: #00c9a7; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom .copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  text-align: center;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #00c9a7;
  border: 1px solid rgba(0, 201, 167, 0.3);
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
}
.footer-badge .dot {
  width: 0.375rem; height: 0.375rem;
  background: #00c9a7; border-radius: 9999px;
  animation: pulse-dot 2s ease-in-out infinite;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
  .footer-bottom .copy { text-align: left; }
}

/* ===========================================================
   COOKIE BANNER
   =========================================================== */
.cookie-banner {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 60;
  display: none;
  animation: cookieUp 0.4s cubic-bezier(0.22, 1, 0.5, 1);
}
.cookie-banner.show { display: block; }
@keyframes cookieUp {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-box {
  background: #1a1a2e;
  border: 2px solid #00c9a7;
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.cookie-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.cookie-head .title-wrap { display: flex; align-items: center; gap: 0.5rem; }
.cookie-head svg { color: #00c9a7; flex-shrink: 0; }
.cookie-head h2 {
  color: #fff; font-weight: 600; font-size: 0.875rem;
  font-family: var(--font-heading);
}
.cookie-close {
  color: rgba(255, 255, 255, 0.4);
  padding: 0.25rem;
  min-height: 32px; min-width: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.cookie-close:hover { color: #fff; }
.cookie-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.cookie-text strong { color: #fff; }
.cookie-text a { color: #00c9a7; text-decoration: underline; }
.cookie-text a:hover { color: #00a88c; }
.cookie-actions { display: flex; gap: 0.5rem; }
.cookie-actions button {
  flex: 1;
  padding: 0.625rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.5rem;
  min-height: 40px;
  transition: all 0.2s;
}
.cookie-decline {
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cookie-decline:hover { border-color: rgba(255, 255, 255, 0.4); }
.cookie-accept {
  background: #00c9a7;
  color: #1a1a2e;
}
.cookie-accept:hover { background: #00a88c; }
@media (min-width: 768px) {
  .cookie-banner {
    left: auto; right: 1.5rem; bottom: 1.5rem;
    max-width: 28rem;
  }
}

/* ===========================================================
   INNER PAGE HERO (about/features/pricing/contact)
   =========================================================== */
.page-hero {
  position: relative;
  background: #1a1a2e;
  padding-block: 5rem;
  overflow: hidden;
}
@media (min-width: 768px) { .page-hero { padding-block: 7rem; } }
.page-hero .geo-pattern { position: absolute; inset: 0; pointer-events: none; }
.page-hero .hero-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,46,0.8), #1a1a2e);
}
.page-hero .container { position: relative; z-index: 10; }
.page-hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}
.page-hero .eyebrow-accent-soft { margin-bottom: 1.5rem; }
.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .page-hero h1 { font-size: 3.75rem; }
  .page-hero p { font-size: 1.25rem; }
}
@media (min-width: 1024px) {
  .page-hero h1 { font-size: 4.5rem; }
}
.page-hero .maxw-4xl { max-width: 56rem; }
.page-hero .maxw-3xl { max-width: 48rem; }
.page-hero .maxw-2xl { max-width: 42rem; }
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(0, 201, 167, 0.3);
  background: rgba(0, 201, 167, 0.1);
  color: #00c9a7;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}

/* ===========================================================
   FEATURES PAGE alternating sections
   =========================================================== */
.feature-split-section { padding-block: 4rem; background: #f4f7f9; }
.feature-split-section.alt { background: #fff; }
@media (min-width: 768px) { .feature-split-section { padding-block: 6rem; } }
.feature-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .feature-split { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .feature-split.reverse .fs-image { order: 2; }
  .feature-split.reverse .fs-content { order: 1; }
}
.fs-image { position: relative; }
.fs-image .frame {
  border: 2px solid #1a1a2e;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 6px 6px 0 #1a1a2e;
}
.fs-image .frame img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
.fs-image .tag {
  position: absolute; top: -0.75rem; right: -0.75rem;
  background: #00c9a7; color: #1a1a2e;
  font-size: 0.75rem; font-weight: 700;
  padding: 0.375rem 0.75rem;
  border: 2px solid #1a1a2e;
}
.fs-content { display: flex; flex-direction: column; gap: 1.25rem; }
.fs-content .fs-icon-row {
  display: flex; align-items: center; gap: 0.75rem;
}
.fs-content .fs-icon {
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  background: #1a1a2e; border-radius: 0.5rem; color: #00c9a7;
}
.fs-content .fs-tagline {
  color: #00c9a7; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.fs-content h2 {
  font-size: 1.875rem; font-weight: 800; color: #1a1a2e;
  font-family: var(--font-heading);
}
@media (min-width: 768px) { .fs-content h2 { font-size: 2.25rem; } }
.fs-content > p { color: #6b7a8d; font-size: 1rem; line-height: 1.7; }
.fs-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.25rem; }
.fs-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: #1a1a2e;
}
.fs-list li svg { color: #00c9a7; flex-shrink: 0; margin-top: 0.15rem; }

/* Simple centered dark CTA (features/about) */
.cta-dark { background: #1a1a2e; padding-block: 4rem; }
@media (min-width: 768px) { .cta-dark { padding-block: 5rem; } }
.cta-dark .inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.cta-dark h2 { font-size: 1.875rem; font-weight: 800; color: #fff; font-family: var(--font-heading); }
@media (min-width: 768px) { .cta-dark h2 { font-size: 2.25rem; } }
.cta-dark p { color: rgba(255,255,255,0.6); font-size: 1rem; }
.cta-light { background: #f4f7f9; padding-block: 4rem; }
@media (min-width: 768px) { .cta-light { padding-block: 5rem; } }
.cta-light .inner { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; text-align: center; }
.cta-light h2 { font-size: 1.875rem; font-weight: 800; color: #1a1a2e; font-family: var(--font-heading); }
@media (min-width: 768px) { .cta-light h2 { font-size: 2.25rem; } }

/* ===========================================================
   PRICING
   =========================================================== */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
  margin-top: 0.5rem;
}
.pricing-toggle button {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.pricing-toggle button:hover { color: #fff; }
.pricing-toggle button.active { background: #00c9a7; color: #1a1a2e; }
.pricing-toggle .save {
  font-size: 0.75rem;
  background: rgba(0, 201, 167, 0.2);
  color: #00c9a7;
  border: 1px solid rgba(0, 201, 167, 0.3);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
}
.pricing-toggle button.active .save { background: rgba(26,26,46,0.15); color: #1a1a2e; border-color: transparent; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.plan {
  position: relative;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid #e2e8f0;
}
.plan.pro {
  background: #1a1a2e;
  border: 2px solid #00c9a7;
  box-shadow: 0 0 40px rgba(0, 201, 167, 0.2);
}
.plan-badge {
  position: absolute;
  top: -0.875rem; left: 50%;
  transform: translateX(-50%);
}
.plan-badge span {
  background: #00c9a7; color: #1a1a2e;
  font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  border: 2px solid #1a1a2e;
  white-space: nowrap;
}
.plan-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.25rem;
}
@media (min-width: 768px) { .plan-body { padding: 2rem; } }
.plan h2 {
  font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem;
  color: #1a1a2e; font-family: var(--font-heading);
}
.plan.pro h2 { color: #fff; }
.plan .plan-desc { font-size: 0.875rem; line-height: 1.6; color: #6b7a8d; }
.plan.pro .plan-desc { color: rgba(255, 255, 255, 0.6); }
.plan-price-wrap { border-top: 1px solid #e2e8f0; padding-top: 1rem; }
.plan.pro .plan-price-wrap { border-top-color: rgba(255,255,255,0.1); }
.plan-price { display: flex; align-items: flex-end; gap: 0.25rem; }
.plan-price .amount {
  font-size: 2.25rem; font-weight: 800;
  color: #1a1a2e; font-family: var(--font-heading);
}
.plan.pro .plan-price .amount { color: #fff; }
.plan-price .amount.devis { font-size: 1.875rem; }
.plan-price .per { font-size: 0.875rem; margin-bottom: 0.375rem; color: #6b7a8d; }
.plan.pro .plan-price .per { color: rgba(255,255,255,0.5); }
.plan-yearly-note { font-size: 0.75rem; margin-top: 0.25rem; color: #00c9a7; }
.plan-features { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem;
}
.plan-features li svg { flex-shrink: 0; margin-top: 0.15rem; }
.plan-features li .icon-yes { color: #00c9a7; }
.plan-features li .icon-no { color: #cbd5e0; }
.plan.pro .plan-features li .icon-no { color: rgba(255,255,255,0.2); }
.plan-features li.included span { color: #1a1a2e; }
.plan.pro .plan-features li.included span { color: rgba(255,255,255,0.8); }
.plan-features li.excluded span { color: #6b7a8d; }
.plan.pro .plan-features li.excluded span { color: rgba(255,255,255,0.3); }
.plan-cta {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700; font-size: 0.875rem;
  min-height: 48px;
  transition: all 0.2s;
}
.plan-cta.accent { background: #00c9a7; color: #1a1a2e; }
.plan-cta.accent:hover { background: #00a88c; }
.plan-cta.outline-dark { border: 2px solid #1a1a2e; color: #1a1a2e; }
.plan-cta.outline-dark:hover { background: #1a1a2e; color: #fff; }
.plan-cta.outline-white { border: 2px solid rgba(255,255,255,0.3); color: #fff; }
.plan-cta.outline-white:hover { border-color: #00c9a7; color: #00c9a7; }

.price-legal {
  color: #6b7a8d;
  font-size: 0.75rem;
  margin-top: 1.5rem;
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

/* Comparison table */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border: 2px solid #1a1a2e;
  border-radius: 0.75rem;
  overflow: hidden;
  border-collapse: collapse;
}
.compare-table thead tr { background: #1a1a2e; }
.compare-table th {
  padding: 1rem;
  font-size: 0.875rem;
}
.compare-table th.feat-col {
  text-align: left;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  width: 50%;
}
.compare-table th.plan-col {
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
}
.compare-table th.plan-col.pro { color: #00c9a7; }
.compare-table td { padding: 0.875rem 1rem; font-size: 0.875rem; border-top: 1px solid #e2e8f0; }
.compare-table tbody tr:nth-child(odd) { background: #fff; }
.compare-table tbody tr:nth-child(even) { background: #f4f7f9; }
.compare-table td.feat { color: #1a1a2e; font-weight: 500; }
.compare-table td.cell { text-align: center; color: #6b7a8d; }
.compare-table td.cell.pro { color: #00c9a7; font-weight: 600; }
.compare-table td.cell.no { color: #cbd5e0; }

/* Pricing FAQ (help style) */
.pfaq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.pfaq-item {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  overflow: hidden;
}
.pfaq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  text-align: left;
  min-height: 56px;
}
.pfaq-q .q-text { font-weight: 600; color: #1a1a2e; font-size: 0.875rem; }
.pfaq-q svg { flex-shrink: 0; color: #6b7a8d; transition: color 0.2s; }
.pfaq-item.open .pfaq-q svg { color: #00c9a7; }
.pfaq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.pfaq-item.open .pfaq-a { grid-template-rows: 1fr; }
.pfaq-a-inner { overflow: hidden; }
.pfaq-a-inner p {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid #e2e8f0;
  color: #6b7a8d;
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===========================================================
   ABOUT
   =========================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-split { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-split h2 {
  font-size: 1.875rem; font-weight: 800; color: #1a1a2e;
  margin-bottom: 1.25rem; font-family: var(--font-heading);
}
@media (min-width: 768px) { .about-split h2 { font-size: 2.25rem; } }
.about-split .eyebrow { margin-bottom: 1rem; }
.about-split p { color: #6b7a8d; font-size: 1rem; line-height: 1.7; margin-bottom: 1rem; }
.about-img { position: relative; }
.about-img .frame {
  border: 2px solid #00c9a7;
  border-radius: 0.75rem;
  overflow: hidden;
}
.about-img .frame img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
.about-img .badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: #1a1a2e; border: 2px solid #00c9a7;
  padding: 0.75rem 1.25rem; border-radius: 0.5rem;
}
.about-img .badge .row { display: flex; align-items: center; gap: 0.5rem; }
.about-img .badge svg { color: #00c9a7; }
.about-img .badge span { color: #fff; font-size: 0.75rem; font-weight: 700; }

.values-grid { margin-top: 4rem; }
.value-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.2s;
}
.value-card:hover { border-color: #00c9a7; }

.team-card {
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #f4f7f9;
  transition: all 0.2s;
}
.team-card:hover { border-color: #00c9a7; }
.team-photo {
  height: 11rem;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo .placeholder-svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.4; object-fit: cover; }
.team-photo .initials {
  position: relative;
  font-size: 2.25rem;
  font-weight: 800;
  color: #00c9a7;
  font-family: var(--font-heading);
}
.team-body { padding: 1rem; }
.team-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 0.125rem;
}
.team-body .role {
  color: #00c9a7;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.team-body .bio { color: #6b7a8d; font-size: 0.75rem; line-height: 1.6; }

.about-stats { background: #1a1a2e; padding-block: 4rem; }
@media (min-width: 768px) { .about-stats { padding-block: 5rem; } }
.about-stat-card {
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}
.about-stat-card .value {
  font-size: 1.875rem; font-weight: 800; color: #00c9a7;
  margin-bottom: 0.5rem; font-family: var(--font-heading);
}
@media (min-width: 768px) { .about-stat-card .value { font-size: 2.25rem; } }
.about-stat-card .label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-stats .note {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  margin-top: 1.5rem;
  text-align: center;
}

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 2fr; gap: 4rem; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info h2 {
  font-size: 1.5rem; font-weight: 800; color: #1a1a2e;
  margin-bottom: 1rem; font-family: var(--font-heading);
}
.contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-list .ci-icon {
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  background: #1a1a2e; border-radius: 0.5rem; color: #00c9a7;
  flex-shrink: 0;
}
.contact-list .ci-label { font-weight: 600; color: #1a1a2e; font-size: 0.875rem; }
.contact-list .ci-value, .contact-list a { color: #6b7a8d; font-size: 0.875rem; }
.contact-list a:hover { color: #00c9a7; }
.rgpd-box {
  background: #1a1a2e;
  border: 2px solid rgba(0, 201, 167, 0.3);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.rgpd-box h3 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; font-family: var(--font-heading); }
.rgpd-box p { color: rgba(255, 255, 255, 0.6); font-size: 0.75rem; line-height: 1.7; }
.rgpd-box a { color: #00c9a7; }
.rgpd-box a:hover { text-decoration: underline; }

.contact-form-wrap { }
.contact-form {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.contact-form h2 {
  font-size: 1.5rem; font-weight: 800; color: #1a1a2e;
  margin-bottom: 0.25rem; font-family: var(--font-heading);
}
.form-error {
  display: flex; align-items: flex-start; gap: 0.5rem;
  background: #fef2f2; border: 1px solid #fecaca;
  border-radius: 0.5rem; padding: 0.75rem 1rem;
  color: #b91c1c; font-size: 0.875rem;
}
.form-error svg { flex-shrink: 0; margin-top: 0.15rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.375rem; }
.field label { font-size: 0.875rem; font-weight: 600; color: #1a1a2e; }
.field .req { color: #ef4444; }
.field input,
.field textarea,
.field select {
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #1a1a2e;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s;
  min-height: 48px;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(107, 122, 141, 0.6); }
.field input:focus,
.field textarea:focus,
.field select:focus { outline: none; border-color: #00c9a7; }
.field textarea { resize: none; min-height: auto; }
.consent-row { display: flex; align-items: flex-start; gap: 0.75rem; }
.consent-row input { width: 1rem; height: 1rem; margin-top: 0.15rem; accent-color: #00c9a7; flex-shrink: 0; }
.consent-row label { font-size: 0.75rem; color: #6b7a8d; line-height: 1.7; }
.consent-row a { color: #00c9a7; }
.consent-row a:hover { text-decoration: underline; }
.form-submit {
  width: 100%;
  background: #00c9a7;
  color: #1a1a2e;
  font-weight: 700;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  min-height: 52px;
  transition: background 0.2s;
}
.form-submit:hover { background: #00a88c; }
.form-legal { color: #6b7a8d; font-size: 0.75rem; text-align: center; }
.form-legal .req { color: #ef4444; }
.form-success {
  background: #fff;
  border: 2px solid #00c9a7;
  border-radius: 0.75rem;
  padding: 2.5rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.form-success.show { display: flex; }
.form-success .check {
  width: 3.5rem; height: 3.5rem;
  background: #00c9a7; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
}
.form-success h2 { font-size: 1.5rem; font-weight: 800; color: #1a1a2e; font-family: var(--font-heading); }
.form-success p { color: #6b7a8d; font-size: 0.875rem; max-width: 28rem; }

/* ===========================================================
   LEGAL PAGES (privacy / terms)
   =========================================================== */
.legal-hero { background: #1a1a2e; padding-block: 4rem; }
@media (min-width: 768px) { .legal-hero { padding-block: 5rem; } }
.legal-hero h1 {
  font-size: 2.25rem; font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 1rem; font-family: var(--font-heading);
}
@media (min-width: 768px) { .legal-hero h1 { font-size: 3rem; } }
.legal-hero .updated { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; }
.legal-hero .eyebrow-accent-soft { margin-bottom: 1.5rem; }
.legal-hero .jump-nav {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.legal-hero .jump-nav a {
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.legal-hero .jump-nav a:hover { border-color: #00c9a7; color: #00c9a7; }

.legal-body { background: #fff; padding-block: 3rem; }
@media (min-width: 768px) { .legal-body { padding-block: 4rem; } }
.legal-intro {
  background: #f4f7f9;
  border-left: 4px solid #00c9a7;
  padding: 1rem 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin-bottom: 2rem;
}
.legal-intro p { font-size: 0.875rem; color: #6b7a8d; margin: 0; }
.legal-intro strong { color: #1a1a2e; }

.legal-section { margin-bottom: 2.5rem; }
.legal-section > h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
  font-family: var(--font-heading);
}
@media (min-width: 768px) { .legal-section > h2 { font-size: 1.5rem; } }
.legal-content { color: #6b7a8d; font-size: 0.875rem; line-height: 1.7; }
.legal-content > * + * { margin-top: 0.75rem; }
.legal-content a { color: #00c9a7; }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: #1a1a2e; }
.legal-content ul { list-style: disc; padding-left: 1.25rem; }
.legal-content ul > * + * { margin-top: 0.25rem; }
.legal-content h3 { font-weight: 700; color: #1a1a2e; margin-top: 1rem; margin-bottom: 0.25rem; font-family: var(--font-sans); }

/* terms-specific */
.terms-body { background: #fff; padding-block: 3rem; }
@media (min-width: 768px) { .terms-body { padding-block: 4rem; } }
.terms-body .container { display: flex; flex-direction: column; gap: 4rem; }
.scroll-mt { scroll-margin-top: 6rem; }
.section-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #00c9a7;
  font-family: var(--font-heading);
}
@media (min-width: 768px) { .section-heading { font-size: 1.875rem; } }
.legal-block { color: #6b7a8d; font-size: 0.875rem; line-height: 1.7; }
.legal-block > * + * { margin-top: 1rem; }
.legal-block a { color: #00c9a7; }
.legal-block a:hover { text-decoration: underline; }
.legal-block strong { color: #1a1a2e; }
.legal-block ul { list-style: disc; padding-left: 1.25rem; }
.legal-block ul > * + * { margin-top: 0.5rem; }
.legal-block h3 { font-weight: 700; color: #1a1a2e; font-family: var(--font-sans); }
.subsection { margin-top: 1.5rem; }
.subsection:first-child { margin-top: 0; }
.subsection > h3 {
  font-weight: 700; font-size: 1rem; color: #1a1a2e;
  margin-bottom: 0.5rem; font-family: var(--font-heading);
}
.callout-amber {
  background: #fffbeb;
  border-left: 4px solid #fbbf24;
  padding: 1rem 1.25rem;
  border-radius: 0 0.375rem 0.375rem 0;
  margin-bottom: 1.25rem;
}
.callout-amber .t { color: #92400e; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.callout-amber p { color: #b45309; font-size: 0.875rem; }
.callout-amber strong { color: #92400e; }
.retract-box {
  background: #f4f7f9;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  color: #6b7a8d;
}
.retract-box strong { color: #1a1a2e; }

.legal-table {
  width: 100%;
  border: 1px solid #e2e8f0;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border-collapse: collapse;
}
.legal-table thead { background: #1a1a2e; color: #fff; }
.legal-table th { padding: 0.75rem 1rem; text-align: left; font-weight: 600; }
.legal-table td { padding: 0.75rem 1rem; border-top: 1px solid #e2e8f0; }
.legal-table tbody tr:nth-child(odd) { background: #fff; }
.legal-table tbody tr:nth-child(even) { background: #f4f7f9; }
.legal-table td.fin { color: #6b7a8d; }
.legal-table td.base { color: #00c9a7; font-weight: 500; }

.legal-footer-note {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}
.legal-footer-note p { color: #6b7a8d; font-size: 0.875rem; }
.legal-footer-note p + p { margin-top: 0.5rem; }
.legal-footer-note a { color: #00c9a7; }
.legal-footer-note a:hover { text-decoration: underline; }

/* Utility spacing */
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.center { text-align: center; }
.maxw-2xl { max-width: 42rem; }
.mx-auto { margin-inline: auto; }
