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

:root {
  --primary: #e61938;
  --primary-dark: #c01530;
  --secondary: #111827;
  --secondary-light: #1e2d45;
  --navy: #0f1623;
  --white: #ffffff;
  --background: #f8fafc;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --foreground: #0f172a;
  --card: #ffffff;
  --radius: 0.625rem;
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-outline-dark {
  background: transparent;
  color: var(--secondary);
  border-color: var(--border);
}
.btn-outline-dark:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: .9rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .85rem; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all .3s ease;
  background: rgba(17,24,39,.4);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.header-logo img { height: 2rem; width: auto; filter: brightness(0) invert(1); transition: filter .3s; }
.site-header.scrolled .header-logo img { filter: none; }
.header-nav { display: flex; align-items: center; gap: 2.5rem; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-dropdown { position: relative; }
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.site-header.scrolled .nav-links a { color: #475569; }
.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active { color: var(--secondary); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + .85rem);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: .1rem;
  min-width: 380px;
  padding: .75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: .5rem;
  box-shadow: 0 16px 40px rgba(15, 22, 35, .14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
  display: block;
  padding: .65rem .75rem;
  border-radius: .4rem;
  color: #334155;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover,
.site-header.scrolled .nav-dropdown-menu a:hover {
  color: var(--secondary);
  background: #f1f5f9;
}
.header-actions { display: flex; align-items: center; gap: 1rem; }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: none;
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  padding: .4rem .75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  transition: color .2s;
}
.btn-ghost:hover { color: #fff; }
.site-header.scrolled .btn-ghost { color: #475569; }
.site-header.scrolled .btn-ghost:hover { color: var(--secondary); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .25rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}
.site-header.scrolled .hamburger span { background: var(--secondary); }
.mobile-nav {
  display: none;
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin-bottom: 1rem; }
.mobile-nav ul li a {
  display: block;
  padding: .75rem 0;
  font-weight: 500;
  color: var(--secondary);
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.mobile-nav ul li:last-child a { border-bottom: none; }
.mobile-nav-group {
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-group span {
  display: block;
  margin-bottom: .4rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.mobile-nav-group div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .15rem .75rem;
}
.mobile-nav ul li.mobile-nav-group a {
  padding: .35rem 0;
  border-bottom: none;
  font-size: .875rem;
  color: #475569;
}
.mobile-nav-actions { display: flex; flex-direction: column; gap: .75rem; }

/* ─── Hero ─── */
.hero {
  position: relative;
  background: var(--secondary);
  padding: 9rem 0 5rem;
  overflow: hidden;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(230,25,56,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: .4rem 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-mockup { position: relative; z-index: 1; margin-top: 4rem; }

/* ─── Dashboard Mockup ─── */
.dashboard-mockup {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
  text-align: left;
}
.mockup-bar {
  background: #1a2235;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-url {
  flex: 1;
  display: flex;
  justify-content: center;
}
.mockup-url span {
  background: rgba(255,255,255,.08);
  border-radius: .4rem;
  padding: .25rem 1.5rem;
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.url-dot { width: 6px; height: 6px; border-radius: 50%; background: #28c840; }
.mockup-body { display: flex; height: 420px; }
.mockup-sidebar {
  width: 180px;
  background: #0d1420;
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 1rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex-shrink: 0;
}
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .25rem .75rem .75rem;
  margin-bottom: .5rem;
}
.sidebar-brand-icon {
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: .25rem;
}
.sidebar-brand span { color: #fff; font-weight: 700; font-size: .8rem; }
.sidebar-item {
  padding: .45rem .75rem;
  border-radius: .375rem;
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  cursor: default;
}
.sidebar-item.active { background: rgba(230,25,56,.15); color: var(--primary); }
.sidebar-user {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .5rem;
  padding: .5rem .6rem;
}
.sidebar-avatar {
  width: 24px; height: 24px;
  background: rgba(230,25,56,.2);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 700;
  flex-shrink: 0;
}
.sidebar-user-info .name { color: #fff; font-size: .65rem; font-weight: 600; }
.sidebar-user-info .role { color: rgba(255,255,255,.35); font-size: .55rem; }
.mockup-main { flex: 1; padding: 1.25rem; background: var(--navy); overflow: hidden; }
.mockup-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.mockup-topbar h2 { color: #fff; font-size: 1rem; font-weight: 700; }
.mockup-topbar p { color: rgba(255,255,255,.35); font-size: .6rem; margin-top: .1rem; }
.mockup-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: .4rem .85rem;
  border-radius: .375rem;
  font-size: .65rem;
  font-weight: 600;
  cursor: default;
}
.mockup-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: .6rem; margin-bottom: 1rem; }
.stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .625rem;
  padding: .75rem;
}
.stat-label { color: rgba(255,255,255,.45); font-size: .6rem; margin-bottom: .4rem; }
.stat-value { color: #fff; font-size: 1.25rem; font-weight: 700; margin-bottom: .2rem; }
.stat-trend { font-size: .55rem; }
.stat-trend.blue { color: #60a5fa; }
.stat-trend.green { color: #4ade80; }
.stat-trend.amber { color: #fbbf24; }
.stat-trend.dim { color: rgba(255,255,255,.35); }
.mockup-table-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .625rem;
  overflow: hidden;
}
.mockup-table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mockup-table-head span:first-child { color: #fff; font-size: .7rem; font-weight: 600; }
.mockup-table-head span:last-child { color: rgba(255,255,255,.35); font-size: .6rem; }
.mockup-table { width: 100%; border-collapse: collapse; font-size: .65rem; }
.mockup-table th {
  color: rgba(255,255,255,.3);
  font-weight: 400;
  text-align: left;
  padding: .4rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mockup-table td { color: rgba(255,255,255,.65); padding: .45rem 1rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.mockup-table tr:last-child td { border-bottom: none; }
.badge { display: inline-block; padding: .15rem .5rem; border-radius: .25rem; font-size: .55rem; font-weight: 600; }
.badge-amber { background: rgba(251,191,36,.15); color: #fbbf24; }
.badge-green { background: rgba(74,222,128,.15); color: #4ade80; }
.badge-blue { background: rgba(96,165,250,.15); color: #60a5fa; }

/* ─── Social Proof ─── */
.social-proof { padding: 3.5rem 0; background: #fff; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; max-width: 720px; margin: 0 auto; text-align: center; }
.stat-item-value { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--secondary); margin-bottom: .25rem; }
.stat-item-label { font-size: .875rem; color: var(--muted-foreground); }

/* ─── Section base ─── */
section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--secondary); margin-bottom: 1rem; }
.section-header p { color: var(--muted-foreground); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ─── Pain Points ─── */
.pain-points { background: #f8fafc; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; max-width: 960px; margin: 0 auto; }
.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: .875rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: all .2s;
}
.pain-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); border-color: rgba(230,25,56,.2); }
.pain-icon {
  background: rgba(230,25,56,.08);
  color: var(--primary);
  padding: .6rem;
  border-radius: .5rem;
  flex-shrink: 0;
  transition: background .2s;
}
.pain-card:hover .pain-icon { background: rgba(230,25,56,.15); }
.pain-icon svg { width: 22px; height: 22px; }
.pain-card p { font-weight: 500; color: var(--secondary); line-height: 1.45; padding-top: .1rem; }

/* ─── Solution ─── */
.solution-section { background: var(--secondary); color: #fff; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.solution-text h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: #fff; margin-bottom: 1.25rem; }
.solution-text p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 2.5rem; line-height: 1.75; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item { display: flex; align-items: flex-start; gap: .875rem; }
.feature-icon {
  background: rgba(230,25,56,.2);
  color: var(--primary);
  padding: .375rem;
  border-radius: .375rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-title { font-weight: 700; color: #fff; font-size: .95rem; margin-bottom: .15rem; }
.feature-desc { color: rgba(255,255,255,.55); font-size: .85rem; }
.order-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.order-card-header h3 { color: #fff; font-weight: 700; font-size: 1rem; }
.badge-status {
  background: rgba(251,191,36,.15);
  color: #fbbf24;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.order-meta { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.5rem; }
.meta-box { background: rgba(255,255,255,.04); padding: .75rem; border-radius: .5rem; }
.meta-label { color: rgba(255,255,255,.35); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .3rem; }
.meta-value { color: #fff; font-weight: 600; font-size: .875rem; }
.meta-sub { color: rgba(255,255,255,.45); font-size: .75rem; }
.tasks-label { color: rgba(255,255,255,.35); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .6rem; }
.task-list { display: flex; flex-direction: column; gap: .4rem; }
.task-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,.04);
  padding: .5rem .75rem;
  border-radius: .375rem;
}
.task-item span { color: rgba(255,255,255,.75); font-size: .8rem; }
.task-check { width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); flex-shrink: 0; }
.task-check.done { background: #4ade80; border-color: #4ade80; }
.task-check.progress { background: var(--primary); border-color: var(--primary); }
.order-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mechanic-info { display: flex; align-items: center; gap: .6rem; }
.mechanic-avatar {
  width: 30px; height: 30px;
  background: var(--secondary-light);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
}
.mechanic-name { color: rgba(255,255,255,.7); font-size: .8rem; }

/* ─── Modules ─── */
.modules-section { background: var(--muted); }
.modules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.module-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: .875rem;
  padding: 1.25rem;
  transition: all .2s;
  cursor: default;
}
.module-card:hover {
  border-color: rgba(230,25,56,.25);
  box-shadow: 0 8px 24px rgba(0,0,0,.09);
  transform: translateY(-2px);
}
.module-icon {
  width: 40px; height: 40px;
  background: rgba(230,25,56,.08);
  color: var(--primary);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background .2s;
}
.module-card:hover .module-icon { background: rgba(230,25,56,.15); }
.module-icon svg { width: 20px; height: 20px; }
.module-title { font-family: var(--font-heading); font-weight: 700; font-size: .875rem; color: var(--secondary); margin-bottom: .35rem; }
.module-desc { font-size: .775rem; color: var(--muted-foreground); line-height: 1.5; }
.modules-cta { text-align: center; margin-top: 3rem; }

/* ─── VeriFactu Banner ─── */
.verifactu-banner { background: var(--primary); }
.verifactu-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 1rem;
  padding: 2.5rem;
}
.verifactu-text { flex: 1; }
.verifactu-icon { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.verifactu-icon svg { width: 2rem; height: 2rem; color: #fff; }
.verifactu-text h2 { font-size: 1.75rem; font-weight: 800; color: #fff; }
.verifactu-text p { color: rgba(255,255,255,.85); margin-top: .75rem; font-size: 1rem; max-width: 600px; line-height: 1.65; }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: rgba(255,255,255,.9); }

/* ─── Audience ─── */
.audience-section { background: #fff; }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.audience-card {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  transition: all .2s;
}
.audience-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.07); transform: translateY(-2px); }
.audience-icon-wrap {
  width: 64px; height: 64px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  color: var(--primary);
}
.audience-icon-wrap svg { width: 30px; height: 30px; }
.audience-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--secondary); margin-bottom: .35rem; }
.audience-size { font-size: .8rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.audience-desc { color: var(--muted-foreground); font-size: .9rem; line-height: 1.6; }

/* ─── Testimonials ─── */
.testimonials-section { background: #f8fafc; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.stars { display: flex; gap: 3px; }
.star { color: #fbbf24; font-size: 1rem; }
.testimonial-quote { color: rgba(17,24,39,.75); font-size: .9rem; line-height: 1.7; flex: 1; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 38px; height: 38px;
  background: rgba(230,25,56,.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--secondary); font-size: .875rem; }
.author-company { color: var(--muted-foreground); font-size: .75rem; }

/* ─── Pricing ─── */
.pricing-section { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1060px; margin: 0 auto; align-items: stretch; }
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  position: relative;
}
.pricing-card.popular {
  background: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 20px 60px rgba(230,25,56,.2);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: .3rem 1.25rem;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: 0 4px 12px rgba(230,25,56,.4);
}
.plan-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--secondary); margin-bottom: 1.25rem; }
.pricing-card.popular .plan-name { color: #fff; }
.plan-price { display: flex; align-items: flex-end; gap: .25rem; margin-bottom: .5rem; }
.price-amount { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.pricing-card.popular .price-amount { color: #fff; }
.price-period { font-size: .85rem; color: var(--muted-foreground); margin-bottom: .35rem; }
.pricing-card.popular .price-period { color: rgba(255,255,255,.55); }
.plan-desc { font-size: .85rem; color: var(--muted-foreground); margin-bottom: 2rem; }
.pricing-card.popular .plan-desc { color: rgba(255,255,255,.65); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2.5rem; flex: 1; }
.plan-feature { display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem; }
.plan-feature svg { color: var(--primary); flex-shrink: 0; margin-top: .15rem; }
.plan-feature span { color: rgba(17,24,39,.8); }
.pricing-card.popular .plan-feature span { color: rgba(255,255,255,.8); }
.plan-cta { display: block; width: 100%; text-align: center; }

/* ─── FAQ ─── */
.faq-section { background: #f8fafc; }
.faq-list { max-width: 760px; margin: 0 auto; background: #fff; border-radius: 1rem; border: 1px solid var(--border); box-shadow: 0 1px 4px rgba(0,0,0,.04); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  color: var(--secondary);
  transition: background .2s;
  gap: 1rem;
}
.faq-question:hover { background: var(--muted); }
.faq-chevron { flex-shrink: 0; transition: transform .3s; width: 18px; height: 18px; color: var(--muted-foreground); }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.5rem; color: var(--muted-foreground); font-size: .9rem; line-height: 1.75; }

/* ─── CTA Final ─── */
.cta-final {
  background: var(--secondary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-final-content { position: relative; z-index: 1; text-align: center; }
.cta-final h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.cta-final p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.75rem; }
.cta-guarantee { color: rgba(255,255,255,.45); font-size: .8rem; }
.cta-guarantee span { margin: 0 .5rem; }

/* ─── Footer ─── */
.site-footer { background: var(--secondary); padding: 4.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-brand img { height: 1.875rem; filter: brightness(0) invert(1); margin-bottom: 1.25rem; }
.footer-desc { color: rgba(255,255,255,.55); font-size: .875rem; line-height: 1.75; margin-bottom: 1.5rem; }
.footer-contact { display: flex; flex-direction: column; gap: .6rem; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: color .2s;
}
.footer-contact a:hover { color: #fff; }
.footer-contact svg { width: 15px; height: 15px; flex-shrink: 0; }
.footer-col h4 { color: #fff; font-size: .875rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-col ul li a { color: rgba(255,255,255,.5); font-size: .85rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .8rem; }

/* ─── Interior pages ─── */
.page-hero {
  background: var(--secondary);
  padding: 8rem 0 4rem;
  text-align: center;
  color: #fff;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; color: #fff; margin-bottom: 1.25rem; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 640px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }
.page-hero .badge-pill {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  padding: .3rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.content-section { padding: 4.5rem 0; }
.content-section.alt-bg { background: #f8fafc; }

/* ─── Feature cards (funcionalidades) ─── */
.feature-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(480px, 1fr)); gap: 2rem; }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.feature-card-icon {
  width: 52px; height: 52px;
  background: rgba(230,25,56,.08);
  color: var(--primary);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-card-icon svg { width: 26px; height: 26px; }
.feature-card h2 { font-size: 1.2rem; font-weight: 800; color: var(--secondary); margin-bottom: .75rem; }
.feature-card > p { color: var(--muted-foreground); font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.feature-benefits { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.feature-benefits li { display: flex; align-items: flex-start; gap: .5rem; font-size: .85rem; color: rgba(17,24,39,.75); }
.feature-benefits li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.feature-usecase { font-size: .825rem; color: var(--muted-foreground); font-style: italic; border-top: 1px solid var(--border); padding-top: .875rem; }
.feature-read-more {
  display: inline-flex;
  align-items: center;
  margin-top: .25rem;
  color: var(--primary);
  font-size: .9rem;
  font-weight: 800;
}
.feature-read-more::after { content: '→'; margin-left: .4rem; }
.feature-read-more:hover { text-decoration: underline; }

/* ─── Long content (SEO pages) ─── */
.long-content { max-width: 860px; margin: 0 auto; }
.long-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--secondary); margin: 2.5rem 0 1rem; }
.long-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin: 1.75rem 0 .75rem; }
.long-content p { color: rgba(17,24,39,.75); line-height: 1.8; margin-bottom: 1.25rem; }
.long-content ul { margin: 0 0 1.25rem 1.5rem; }
.long-content ul li { color: rgba(17,24,39,.75); line-height: 1.75; margin-bottom: .4rem; }
.highlight-box {
  background: rgba(230,25,56,.06);
  border: 1px solid rgba(230,25,56,.2);
  border-left: 4px solid var(--primary);
  border-radius: .5rem;
  padding: 1.5rem;
  margin: 2rem 0;
}
.highlight-box p { margin: 0; color: var(--secondary); font-weight: 500; }
.feature-hero p { max-width: 760px; }
.lead-text {
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(17,24,39,.82);
  font-weight: 500;
  margin-bottom: 2rem;
}
.feature-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  align-items: start;
}
.feature-landing-main h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 2.75rem 0 1rem;
}
.feature-landing-main h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: .45rem;
}
.feature-landing-main p {
  color: rgba(17,24,39,.75);
  line-height: 1.8;
  margin-bottom: 1.15rem;
}
.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.75rem 0 2.5rem;
}
.feature-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.35rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.feature-detail-card p { font-size: .9rem; margin: 0; }
.workflow-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.workflow-step span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(230,25,56,.1);
  color: var(--primary);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.workflow-step p { margin: 0; font-size: .92rem; }
.feature-landing-sidebar {
  position: sticky;
  top: 6rem;
}
.related-box {
  margin-top: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}
.related-box h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.related-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.related-box a {
  color: var(--primary);
  font-size: .9rem;
  font-weight: 700;
}
.related-box a:hover { text-decoration: underline; }
.disclaimer-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: .5rem;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.disclaimer-box p { margin: 0; color: #92400e; font-size: .9rem; }

/* ─── Contact / Demo forms ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: 1.5rem; font-weight: 800; color: var(--secondary); margin-bottom: 1rem; }
.contact-info p { color: var(--muted-foreground); font-size: .9rem; line-height: 1.7; margin-bottom: 1.75rem; }
.contact-detail { display: flex; align-items: center; gap: .6rem; color: var(--secondary); font-size: .9rem; font-weight: 500; margin-bottom: .75rem; }
.contact-detail svg { color: var(--primary); width: 18px; height: 18px; flex-shrink: 0; }
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--secondary); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--border);
  border-radius: .5rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--foreground);
  background: #fff;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,25,56,.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.success-msg {
  display: none;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: .625rem;
  padding: 1.25rem 1.5rem;
  color: #166534;
  font-weight: 600;
  margin-top: 1rem;
}
.error-msg {
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: .625rem;
  padding: 1rem 1.25rem;
  color: #991b1b;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ─── Blog ─── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: all .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.09); transform: translateY(-2px); }
.blog-card-img { height: 160px; background: var(--secondary); position: relative; overflow: hidden; }
.blog-card-img-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.blog-tag { font-size: .7rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.blog-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--secondary); margin-bottom: .75rem; line-height: 1.4; }
.blog-card p { color: var(--muted-foreground); font-size: .875rem; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: .775rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.blog-read-more { color: var(--primary); font-weight: 600; font-size: .875rem; transition: gap .2s; }
.blog-read-more:hover { text-decoration: underline; }

/* ─── Article ─── */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 4rem; align-items: start; }
.article-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--secondary); margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin: 1.75rem 0 .75rem; }
.article-body p { color: rgba(17,24,39,.75); line-height: 1.85; margin-bottom: 1.25rem; font-size: 1rem; }
.article-body ul { margin: 0 0 1.25rem 1.5rem; }
.article-body ul li { color: rgba(17,24,39,.75); line-height: 1.8; margin-bottom: .35rem; }
.article-sidebar { position: sticky; top: 5.5rem; }
.sidebar-cta-box {
  background: var(--secondary);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  color: #fff;
}
.sidebar-cta-box h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.sidebar-cta-box p { color: rgba(255,255,255,.65); font-size: .875rem; margin-bottom: 1.5rem; line-height: 1.6; }

/* ─── VeriFactu page ─── */
.verifactu-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.verifactu-step { background: #fff; border: 1px solid var(--border); border-radius: 1rem; padding: 1.75rem; text-align: center; }
.step-number { width: 40px; height: 40px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; margin: 0 auto 1rem; }
.verifactu-step h3 { font-weight: 700; color: var(--secondary); margin-bottom: .5rem; font-size: 1rem; }
.verifactu-step p { color: var(--muted-foreground); font-size: .875rem; line-height: 1.6; }

/* ─── Precios full page ─── */
.pricing-faq { background: #f8fafc; padding: 5rem 0; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .solution-grid { grid-template-columns: 1fr; gap: 3rem; }
  .feature-cards { grid-template-columns: 1fr; }
  .feature-landing-grid { grid-template-columns: 1fr; }
  .feature-landing-sidebar { position: static; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 7rem 0 3rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .stats-grid { grid-template-columns: 1fr; }
  .mockup-stats { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .verifactu-inner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .modules-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .feature-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .mockup-body { flex-direction: column; height: auto; }
  .mockup-sidebar { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); flex-direction: row; flex-wrap: wrap; padding: .75rem; gap: .35rem; }
  .sidebar-brand { margin-bottom: 0; padding-bottom: 0; }
  .sidebar-user { display: none; }
  .mockup-stats { grid-template-columns: 1fr 1fr; }
}
