/* ================================================================
   Booster AI — Kancelaria restrukturyzacyjna | Landing Page CSS
   Motyw: jasny (light), wzorowany na screenshocie z Lovable
   ================================================================ */

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

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white:       #ffffff;
  --bg:          #f7f8fc;
  --bg-alt:      #f0f2f8;
  --border:      #e4e7f0;
  --border-mid:  #d0d5e8;

  --navy:        #12194a;
  --navy-light:  #1e2d6b;
  --blue:        #3b5bdb;
  --blue-light:  #4c6ef5;
  --blue-pale:   #eef1fd;
  --blue-mid:    #dde3fc;

  --text:        #1a1f36;
  --text-mid:    #3d4466;
  --text-muted:  #6b7394;

  --green:       #12b76a;
  --green-pale:  #ecfdf3;
  --orange:      #f79009;
  --orange-pale: #fffaeb;
  --red-pale:    #fef3f2;
  --red:         #f04438;

  --radius:      16px;
  --radius-sm:   10px;
  --radius-xs:   6px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 40px rgba(59,91,219,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
}

.nav-logo-sygnet {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-wordmark {
  height: 32px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.18s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  border-radius: var(--radius-xs);
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(59,91,219,0.25);
}

.nav-cta:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59,91,219,0.35);
  color: #fff !important;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  padding-top: 100px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -160px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(59,91,219,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(ellipse at center, rgba(16,185,105,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  border: 1px solid var(--blue-mid);
  color: var(--blue);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero-title-accent {
  color: var(--blue);
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-form-row {
  display: flex;
  gap: 12px;
}

.hero-input {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xs);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  font-family: inherit;
}

.hero-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,91,219,0.12);
}

.hero-input::placeholder {
  color: var(--text-muted);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-xs);
  padding: 13px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 10px rgba(59,91,219,0.3);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(59,91,219,0.4);
}

.btn-arrow {
  font-size: 1rem;
}

.hero-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.hero-consent label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-consent a {
  color: var(--blue);
  text-decoration: underline;
}
.hero-form-msg {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.4em;
}
.hero-form-msg.success {
  color: #22c55e;
}
.hero-form-msg.error {
  color: #ef4444;
}
.btn-primary.loading {
  opacity: 0.7;
  pointer-events: none;
}
.btn-primary.loading .btn-arrow {
  display: inline-block;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Hero image */
.hero-visual {
  position: relative;
}

.hero-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--bg-alt);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Hero Dashboard Mockup ---- */
.hero-dashboard {
  width: 100%;
  min-height: 480px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', system-ui, sans-serif;
  box-shadow: var(--shadow-lg);
}

/* Top bar */
.hd-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.hd-topbar-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.hd-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hd-topbar-title {
  flex: 1;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  text-align: center;
}

.hd-topbar-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.hd-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* Metric cards */
.hd-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}

.hd-metric {
  background: var(--white);
  padding: 22px 18px;
}

.hd-metric-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.hd-metric-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.hd-metric-delta {
  font-size: 0.72rem;
  font-weight: 600;
}

.hd-up { color: var(--green); }

/* Pipeline */
.hd-pipeline {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg);
}

.hd-pipe-header {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hd-pipe-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  transition: border-color 0.15s;
}

.hd-pipe-row:hover {
  border-color: var(--blue-mid);
}

.hd-pipe-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hd-pipe-name {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.hd-pipe-stage {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

.hd-pipe-bar {
  width: 64px;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.hd-pipe-fill {
  height: 100%;
  border-radius: 3px;
}

/* Notification */
.hd-notif {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--blue-pale);
  border-top: 1px solid var(--blue-mid);
}

.hd-notif-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.hd-notif-text {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.hd-notif-text strong {
  color: var(--navy);
  font-weight: 600;
}

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

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 32px 0;
}

.stat-item {
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.stat-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--blue-mid);
}

.stat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-bar-line {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 6px;
}

.stat-bar-fill {
  height: 100%;
  border-radius: 2px;
  animation: growBar 1s ease both;
}

@keyframes growBar {
  from { width: 0% !important; }
}

/* ================================================================
   TRUST LOGOS
   ================================================================ */
.trust {
  padding: 56px 48px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.trust-logo {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--border-mid);
  letter-spacing: -0.3px;
}

/* ================================================================
   SHARED SECTION STYLES
   ================================================================ */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}

.section-alt {
  background: var(--bg);
}

.section-alt .section {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  color: var(--blue);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

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

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.area-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.area-card-top {
  width: 100%;
  height: 4px;
  border-radius: 4px 4px 0 0;
  position: absolute;
  top: 0; left: 0;
}

.area-card-top.c1 { background: linear-gradient(90deg, #3b5bdb, #7c3aed); }
.area-card-top.c2 { background: linear-gradient(90deg, #0ea5e9, #3b5bdb); }
.area-card-top.c3 { background: linear-gradient(90deg, #12b76a, #0ea5e9); }
.area-card-top.c4 { background: linear-gradient(90deg, #f79009, #12b76a); }
.area-card-top.c5 { background: linear-gradient(90deg, #ef4444, #f79009); }

.area-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 16px;
  margin-top: 4px;
}

.area-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.area-icon.bg1 { background: #eef1fd; }
.area-icon.bg2 { background: #e0f2fe; }
.area-icon.bg3 { background: #ecfdf5; }
.area-icon.bg4 { background: #fffaeb; }
.area-icon.bg5 { background: #fff1f2; }

.area-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.area-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.area-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--bg-alt);
  color: var(--text-mid);
  border: 1px solid var(--border);
}

/* ================================================================
   MODULES — INTERACTIVE TABS
   ================================================================ */
.modules-section {
  background: var(--bg);
  padding: 96px 0 0;
}

.modules-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 56px;
}

.modules-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 96px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}

/* ---- Left nav ---- */
.modules-nav {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mod-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  position: relative;
  overflow: hidden;
}

.mod-tab:hover {
  border-color: var(--blue-mid);
  background: var(--white);
}

.mod-tab.active {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.mod-tab-color {
  width: 4px;
  height: 36px;
  border-radius: 2px;
  flex-shrink: 0;
  transition: height 0.18s;
}

.mod-tab.active .mod-tab-color {
  height: 44px;
}

.mod-tab-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s;
}

.mod-tab.active .mod-tab-icon {
  background: var(--blue-pale);
}

.mod-tab-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mod-tab-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mod-tab-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mod-tab-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

/* Progress bar */
.modules-progress {
  margin-top: 16px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.modules-progress-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.modules-progress-bar {
  height: 6px;
  background: var(--bg-alt);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.modules-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #7c3aed);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.modules-progress-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
}

/* ---- Right panel ---- */
.modules-panel-wrap {
  position: relative;
  min-height: 480px;
}

.mod-panel {
  display: none;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  animation: panelIn 0.28s ease both;
}

.mod-panel.active {
  display: flex;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Panel head */
.mod-panel-head {
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--accent-pale, #eef1fd) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.mod-panel-head::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--accent-pale, #eef1fd);
  opacity: 0.6;
}

.mod-panel-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent, #3b5bdb);
  margin-bottom: 8px;
}

.mod-panel-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.mod-panel-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

/* Feature list */
.mod-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 16px;
  flex: 1;
  background: var(--bg);
}

.mod-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  border-radius: var(--radius-xs);
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
  transition: background 0.15s;
}

.mod-features li:hover {
  background: var(--blue-pale);
}

.mod-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233b5bdb' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'/%3E%3Cpath d='m9 11 3 3L22 4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Panel footer */
.mod-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.mod-training-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 6px 14px;
  border-radius: 100px;
}

.mod-count-badge {
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 100px;
}

/* Responsive */
@media (max-width: 900px) {
  .modules-layout {
    grid-template-columns: 1fr;
    padding: 0 24px 64px;
  }
  .modules-header { padding: 0 24px 40px; }
  .modules-nav { position: static; flex-direction: row; flex-wrap: wrap; }
  .mod-tab { flex: 1 1 140px; }
  .mod-tab-sub { display: none; }
  .modules-progress { display: none; }
  .mod-features { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .mod-tab { flex: 1 1 100%; }
  .mod-panel-head { padding: 20px; }
  .mod-panel-title { font-size: 1.15rem; }
}

/* ================================================================
   PROCESS / TIMELINE SPLIT
   ================================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.timeline {
  position: relative;
  padding-left: 28px;
  margin-top: 8px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--border));
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -25px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}

.timeline-item h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.timeline-item p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CRM mock panel */
.crm-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.crm-panel-header {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.crm-panel-header span {
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 700;
}

.crm-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crm-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--bg);
  transition: border-color 0.15s;
}

.crm-row:hover {
  border-color: var(--blue-mid);
}

.crm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.crm-name {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  flex: 1;
}

.crm-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.badge-new    { background: var(--blue-pale);   color: var(--blue); }
.badge-proc   { background: #e0f2fe;             color: #0369a1; }
.badge-done   { background: var(--green-pale);   color: var(--green); }
.badge-wait   { background: var(--orange-pale);  color: var(--orange); }
.badge-closed { background: #f3f4f6;             color: #6b7280; }
.badge-inv    { background: var(--blue-pale);    color: var(--blue); }

.crm-notify {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--blue-pale);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-xs);
}

.crm-notify-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.crm-notify-text {
  font-size: 0.78rem;
  color: var(--text-mid);
}

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

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.benefit-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================================================
   TESTIMONIAL
   ================================================================ */
.testimonial-section {
  background: var(--bg);
}

.testimonial-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 96px 48px;
  text-align: center;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: 24px; left: 36px;
  font-size: 5rem;
  line-height: 1;
  color: var(--blue-mid);
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  text-align: left;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: left;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 96px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section .section-tag {
  color: rgba(255,255,255,0.7);
}

.cta-section .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.cta-section .section-title em {
  color: #a5b4fc;
}

.cta-section p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue);
  border: none;
  border-radius: var(--radius-xs);
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-xs);
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.18s, background 0.18s;
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.cta-checks {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-check {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.72);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-check::before {
  content: '\2713';
  color: #86efac;
  font-weight: 700;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--navy);
  padding: 40px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.footer-logo-sygnet {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.footer-logo-wordmark {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

footer p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.18s;
}

footer a:hover {
  color: #fff;
}

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

.fade-up   { animation: fadeUp 0.6s ease both; }
.delay-1   { animation-delay: 0.08s; }
.delay-2   { animation-delay: 0.18s; }
.delay-3   { animation-delay: 0.28s; }
.delay-4   { animation-delay: 0.38s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .areas-grid    { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 64px;
    gap: 40px;
  }

  .hero-title { font-size: 2.4rem; }

  .stats-bar { padding: 0 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .split-section { grid-template-columns: 1fr; gap: 40px; }

  .section { padding: 64px 24px; }
  .trust   { padding: 40px 24px; }

  .testimonial-inner { padding: 64px 24px; }
  .testimonial-card  { padding: 32px 24px; }

  .cta-section { padding: 72px 24px; }
}

@media (max-width: 600px) {
  .areas-grid    { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }

  .hero-form-row { flex-direction: column; }

  .stats-inner { grid-template-columns: 1fr 1fr; }

  footer { padding: 28px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ================================================================
   BENEFIT CARDS — color variants
   ================================================================ */

/* Shared: left accent border + icon color */
.benefit-card { border-left: 4px solid transparent; }

.benefit-card.bc-blue  { border-left-color: #3b5bdb; }
.benefit-card.bc-green { border-left-color: #10b981; }
.benefit-card.bc-amber { border-left-color: #f59e0b; }
.benefit-card.bc-violet{ border-left-color: #8b5cf6; }
.benefit-card.bc-rose  { border-left-color: #f43f5e; }
.benefit-card.bc-sky   { border-left-color: #0ea5e9; }

.benefit-card.bc-blue  .benefit-icon { background: #eef1fd; color: #3b5bdb; }
.benefit-card.bc-green .benefit-icon { background: #ecfdf5; color: #10b981; }
.benefit-card.bc-amber .benefit-icon { background: #fffaeb; color: #f59e0b; }
.benefit-card.bc-violet .benefit-icon{ background: #f5f3ff; color: #8b5cf6; }
.benefit-card.bc-rose  .benefit-icon { background: #fff1f2; color: #f43f5e; }
.benefit-card.bc-sky   .benefit-icon { background: #f0f9ff; color: #0ea5e9; }

.benefit-card.bc-blue:hover  { border-left-color: #3b5bdb; box-shadow: 0 12px 32px rgba(59,91,219,0.12); }
.benefit-card.bc-green:hover { border-left-color: #10b981; box-shadow: 0 12px 32px rgba(16,185,105,0.12); }
.benefit-card.bc-amber:hover { border-left-color: #f59e0b; box-shadow: 0 12px 32px rgba(245,158,11,0.12); }
.benefit-card.bc-violet:hover{ border-left-color: #8b5cf6; box-shadow: 0 12px 32px rgba(139,92,246,0.12); }
.benefit-card.bc-rose:hover  { border-left-color: #f43f5e; box-shadow: 0 12px 32px rgba(244,63,94,0.12); }
.benefit-card.bc-sky:hover   { border-left-color: #0ea5e9; box-shadow: 0 12px 32px rgba(14,165,233,0.12); }

/* h3 accent on hover */
.benefit-card.bc-blue:hover  h3 { color: #3b5bdb; }
.benefit-card.bc-green:hover h3 { color: #10b981; }
.benefit-card.bc-amber:hover h3 { color: #b45309; }
.benefit-card.bc-violet:hover h3{ color: #8b5cf6; }
.benefit-card.bc-rose:hover  h3 { color: #f43f5e; }
.benefit-card.bc-sky:hover   h3 { color: #0ea5e9; }

/* ================================================================
   SECTIONS — colored gradient backgrounds
   ================================================================ */

/* Stats bar — subtle blue tint */
.stats-bar {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  border-top: 1px solid var(--blue-mid);
  border-bottom: 1px solid var(--blue-mid);
}

/* Modules section — subtle warm */
.modules-section {
  position: relative;
  overflow: hidden;
}
.modules-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at top right, rgba(139,92,246,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Benefits section — cool blue-green tint */
.section-alt {
  background: linear-gradient(160deg, #f7f9ff 0%, #f0faf6 100%);
  position: relative;
  overflow: hidden;
}
.section-alt::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(ellipse, rgba(16,185,105,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Timeline section — warm tint */
.split-section-wrap {
  background: linear-gradient(160deg, #ffffff 40%, #fafbff 100%);
  position: relative;
}
.split-section-wrap::before {
  content: '';
  position: absolute;
  top: 40px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(59,91,219,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* CTA — richer gradient */
.cta-section {
  background: linear-gradient(135deg, #12194a 0%, #1e3a8a 40%, #3b5bdb 80%, #4f46e5 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.25) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(16,185,105,0.15) 0%, transparent 65%);
  border-radius: 50%;
}

/* Timeline dots — colored by step */
.timeline-item:nth-child(1) .timeline-dot { background: #3b5bdb; box-shadow: 0 0 0 2px #3b5bdb; }
.timeline-item:nth-child(2) .timeline-dot { background: #0ea5e9; box-shadow: 0 0 0 2px #0ea5e9; }
.timeline-item:nth-child(3) .timeline-dot { background: #10b981; box-shadow: 0 0 0 2px #10b981; }
.timeline-item:nth-child(4) .timeline-dot { background: #f59e0b; box-shadow: 0 0 0 2px #f59e0b; }
.timeline-item:nth-child(5) .timeline-dot { background: #8b5cf6; box-shadow: 0 0 0 2px #8b5cf6; }

/* Timeline vertical line — colored gradient */
.timeline::before {
  background: linear-gradient(to bottom, #3b5bdb, #0ea5e9, #10b981, #f59e0b, #8b5cf6);
  opacity: 0.5;
}

/* Section tag — left colored rule */
.section-tag {
  position: relative;
  padding-left: 12px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 1px;
  width: 3px; height: 100%;
  background: var(--blue);
  border-radius: 2px;
}
.section-tag::after { display: none; }

/* Nav CTA — gradient */
.nav-cta {
  background: linear-gradient(135deg, #3b5bdb, #4f46e5);
}
.nav-cta:hover {
  background: linear-gradient(135deg, #4c6ef5, #6366f1);
}

/* ================================================================
   SCROLL REVEAL — will-animate states
   ================================================================ */

/* Initial hidden states */
.will-animate[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.will-animate[data-animate="fade-left"] {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.will-animate[data-animate="fade-right"] {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.will-animate[data-animate="fade-in"] {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.will-animate[data-animate="scale-up"] {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* Visible state */
.will-animate.is-visible {
  opacity: 1;
  transform: none;
}

/* ================================================================
   NAVBAR — scrolled state
   ================================================================ */
.nav-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom-color: var(--border-mid);
}

/* ================================================================
   FLOATING ANIMATION — hero dashboard
   ================================================================ */
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ================================================================
   HERO ELEMENTS — staggered entrance
   ================================================================ */
.hero-badge  { animation: fadeUp 0.6s ease 0.1s both; }
.hero-title  { animation: fadeUp 0.7s ease 0.2s both; }
.hero-desc   { animation: fadeUp 0.6s ease 0.35s both; }
.hero-form   { animation: fadeUp 0.6s ease 0.48s both; }
.hero-visual { animation: fadeUp 0.8s ease 0.25s both; }

/* ================================================================
   BENEFIT CARDS — hover lift with glow
   ================================================================ */
.benefit-card {
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.benefit-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 32px rgba(59,91,219,0.12);
}

/* ================================================================
   AREA CARDS — hover lift
   ================================================================ */
.area-card {
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(59,91,219,0.1);
}

/* ================================================================
   MOD TABS — slide-in indicator
   ================================================================ */
.mod-tab {
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.2s;
}
.mod-tab:hover {
  transform: translateX(4px);
}
.mod-tab.active {
  transform: translateX(6px);
}

/* ================================================================
   CTA BUTTON — pulse ring on hover
   ================================================================ */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover::after {
  opacity: 1;
}

.btn-white {
  position: relative;
  overflow: hidden;
}
.btn-white::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(59,91,219,0.06);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-white:hover::after {
  opacity: 1;
}

/* ================================================================
   STAT ITEMS — counter glow on appear
   ================================================================ */
.stat-item.is-visible .stat-num {
  animation: numPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes numPop {
  from { transform: scale(0.75); }
  to   { transform: scale(1); }
}

/* ================================================================
   PIPELINE ROWS — subtle pulse on load (handled via JS)
   ================================================================ */
.hd-pipe-row {
  transition: border-color 0.15s, transform 0.15s, background 0.15s, opacity 0.4s, box-shadow 0.2s;
}
.hd-pipe-row:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-sm);
}

/* ================================================================
   SECTION DIVIDER — animated gradient line
   ================================================================ */
.section-tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
  margin-top: 8px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease 0.2s;
}
.is-visible .section-tag::after,
.section-tag.is-visible::after {
  transform: scaleX(1);
}

/* ================================================================
   REDUCED MOTION — respect user preference
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  .will-animate,
  .hero-badge, .hero-title, .hero-desc, .hero-form, .hero-visual,
  .benefit-card, .area-card, .mod-tab,
  .hd-pipe-row, .btn-primary, .btn-white {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ================================================================
   HIGHLIGHT — hero form row pulse
   ================================================================ */
@keyframes highlightPulse {
  0%   { box-shadow: 0 0 0 0 rgba(59,91,219,0.5); }
  40%  { box-shadow: 0 0 0 12px rgba(59,91,219,0.15); }
  100% { box-shadow: 0 0 0 0 rgba(59,91,219,0); }
}

.hero-form-row.highlight {
  animation: highlightPulse 0.7s ease 3;
  border-radius: var(--radius-xs);
}
