/* ================================================================
   QuoteERP — Main Stylesheet
   Color Palette: Deep Navy-Purple (#0D0818, #1E0F3C, #2D1E5A)
   Accent: Violet (#7C3AED), Cyan (#06B6D4), White
   Font: Outfit (headings) + Plus Jakarta Sans (body)
================================================================ */

:root {
  /* Core Palette from image */
  --navy: #0D0818;
  --navy2: #130D24;
  --purple-dk: #1E0F3C;
  --purple-md: #2D1E5A;
  --purple-lt: #3C2D78;
  --purple-mid: #4B3C87;
  --violet: #7C3AED;
  --violet-lt: #9F67F5;
  --violet-dim: rgba(124, 58, 237, 0.15);
  --cyan: #06B6D4;
  --cyan-dim: rgba(6, 182, 212, 0.12);
  --white: #FFFFFF;
  --off-white: #F0F4FF;
  --text-light: #E2E8F8;
  --text-mid: #A8B4D0;
  --text-dim: #6B7A99;
  --green: #10B981;
  --amber: #F59E0B;
  --red: #EF4444;

  /* Surface Colors */
  --surface: rgba(255, 255, 255, 0.05);
  --surface2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.14);

  /* Light mode surfaces (for cards on white bg) */
  --card-bg: #FFFFFF;
  --card-border: #E8ECF8;
  --page-bg: #F5F7FF;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #0D0818 0%, #1E0F3C 40%, #2D1E5A 70%, #1a1040 100%);
  --grad-accent: linear-gradient(135deg, #7C3AED, #06B6D4);
  --grad-card: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.05));
  --grad-btn: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);

  /* Misc */
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(13, 8, 24, 0.4);
  --shadow-card: 0 2px 20px rgba(13, 8, 24, 0.08);
  --shadow-lg: 0 12px 48px rgba(13, 8, 24, 0.5);
  --nav-h: 70px;
  --topbar-h: 36px;
  --max-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1E293B;
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


.btn-white,
.btn-outline,
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 48px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
}

.btn-white {
  background: white;
  color: #0F172A;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: #F1F5F9;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid #CBD5E1;
  background: transparent;
  color: #1E293B;
}

.btn-outline:hover {
  border-color: #2563EB;
  color: #2563EB;
}

.btn-primary {
  background: #2563EB;
  color: white;
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-mid);
}

.top-bar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar-right a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-mid);
  font-size: 12px;
}

.top-bar-right a:hover {
  color: var(--cyan);
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  height: var(--nav-h);
  background: var(--purple-dk);
  z-index: 1000;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar.scrolled {
  background: rgba(30, 15, 60, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(13, 8, 24, 0.6);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ── LOGO ── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--grad-accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-name em {
  font-style: normal;
  color: var(--cyan);
}

.logo-tagline {
  font-size: 10px;
  color: var(--text-mid);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.05);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}

.btn-demo-nav {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  background: var(--grad-btn);
  color: white;
  padding: 9px 20px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
}

.btn-demo-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  background: var(--navy2);
  border-top: 1px solid var(--border);
  padding: 1rem 28px 1.5rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.mobile-menu a {
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 500;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-btn);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
  text-decoration: none;
  margin-top: 10px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
}

.btn-primary.large {
  font-size: 16px;
  padding: 16px 36px;
}

.btn-primary.full-w {
  width: 100%;
  justify-content: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

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

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--purple-dk);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 10px;
  transition: all 0.2s;
  text-decoration: none;
}

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

/* ── SECTION TAGS / CHIPS ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--violet-dim);
  color: var(--violet-lt);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  margin-bottom: 1.2rem;
}

.chip.cyan-chip {
  background: var(--cyan-dim);
  color: var(--cyan);
  border-color: rgba(6, 182, 212, 0.2);
}

.chip.white-chip {
  background: rgba(255, 255, 255, 0.1);
  color: rgb(114, 68, 235);
  border-color: rgba(255, 255, 255, 0.15);
  font-weight: 900;
  font-size: 25px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
  color: #0F172A;
}

.section-title.light {
  color: var(--white);
}

.section-sub {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
  max-width: 580px;
}

.section-sub.light {
  color: var(--text-mid);
}

.highlight {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO ── */
.hero {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(124, 58, 237, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

.badge-text {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.h-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.h-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
}

.h-stat-label {
  font-size: 12px;
  color: var(--text-dim);
}

/* Dashboard Mockup */
.hero-visual {
  position: relative;
}

.dash-mockup {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(13, 8, 24, 0.7), 0 0 0 1px rgba(124, 58, 237, 0.15);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.dm-topbar {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dm-dot:nth-child(1) {
  background: #FF5F57
}

.dm-dot:nth-child(2) {
  background: #FFBD2E
}

.dm-dot:nth-child(3) {
  background: #28CA41
}

.dm-url {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 3px 14px;
}

.dm-body {
  display: flex;
  height: 320px;
}

.dm-sidebar {
  width: 130px;
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 0;
  flex-shrink: 0;
}

.dm-nav-item {
  padding: 9px 16px;
  font-size: 11px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.15s;
}

.dm-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-mid);
}

.dm-nav-item.active {
  background: rgba(124, 58, 237, 0.2);
  color: var(--violet-lt);
  border-right: 2px solid var(--violet);
}

.dm-content {
  flex: 1;
  padding: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dm-cards {
  display: flex;
  gap: 8px;
}

.dm-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
}

.dm-card-label {
  font-size: 9px;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.dm-card-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: white;
}

.dm-card-sub {
  font-size: 9px;
  margin-top: 2px;
}

.dm-card-sub.up {
  color: var(--green);
}

.dm-chart-wrap {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px;
}

.dm-chart-title {
  font-size: 10px;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.dm-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
}

.dm-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(124, 58, 237, 0.3);
  transition: height 0.4s;
}

.dm-bar.active {
  background: linear-gradient(to top, #7C3AED, #06B6D4);
}

.dm-orders {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dm-order-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--text-mid);
}

.dm-order-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}

.trust-item svg {
  color: var(--violet-lt);
  flex-shrink: 0;
}

.trust-div {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.08);
}

/* ── SECTIONS ── */
.section {
  padding: 90px 0;
}

.section-white {
  background: #FFFFFF;
}

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

.section-dark {
  background: var(--purple-dk);
}

.section-navy {
  background: var(--navy);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-sub {
  margin: 0 auto;
}

/* ── PROBLEMS GRID ── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.prob-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.prob-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.prob-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 8, 24, 0.12);
  border-color: rgba(124, 58, 237, 0.2);
}

.prob-card:hover::before {
  transform: scaleX(1);
}

.prob-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.prob-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #0F172A;
}

.prob-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.65;
}

/* ── FLOW STEPS ── */
.flow-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.flow-step {
  flex: 1;
  background: white;
  border: 1px solid var(--card-border);
  padding: 2rem 1.5rem;
  position: relative;
  text-align: center;
  transition: all 0.3s;
}

.flow-step:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.flow-step:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--violet);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  z-index: 2;
}

.flow-step:hover {
  background: var(--grad-card);
  border-color: rgba(124, 58, 237, 0.2);
}

.flow-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(124, 58, 237, 0.15);
  margin-bottom: 0.5rem;
}

.flow-step h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: #0F172A;
}

.flow-step p {
  font-size: 12px;
  color: #64748B;
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(13, 8, 24, 0.12);
  border-color: rgba(124, 58, 237, 0.25);
}

.feat-icon {
  width: 52px;
  height: 52px;
  background: var(--grad-card);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  color: var(--violet);
}

.feat-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: #0F172A;
}

.feat-card p {
  font-size: 14px;
  color: #64748B;
  flex: 1;
  line-height: 1.65;
}

.feat-link {
  font-size: 13px;
  color: var(--violet);
  font-weight: 600;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.feat-link:hover {
  color: var(--violet-lt);
}

/* ── FEATURE DETAIL (features page) ── */
.feature-section {
  padding: 80px 0;
}

.feature-section:nth-child(odd) {
  background: white;
}

.feature-section:nth-child(even) {
  background: var(--page-bg);
}

.feat-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feat-detail.rev {
  direction: rtl;
}

.feat-detail.rev>* {
  direction: ltr;
}

.feat-tag {
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.feat-detail-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  color: #0F172A;
}

.feat-detail-text p {
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.feat-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feat-checklist li {
  font-size: 14px;
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
}

.feat-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.feat-visual-box {
  border-radius: 18px;
  padding: 2.5rem;
  border: 1px solid var(--card-border);
}

.feat-visual-box.v1 {
  background: linear-gradient(135deg, #F0F4FF, #E8EDF8);
}

.feat-visual-box.v2 {
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
}

.feat-visual-box.v3 {
  background: linear-gradient(135deg, #FEF9EC, #FEF3C7);
}

.feat-visual-box.v4 {
  background: linear-gradient(135deg, #FDF4FF, #FAE8FF);
}

.feat-visual-box.v5 {
  background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
}

.feat-visual-box.v6 {
  background: linear-gradient(135deg, #FFF1F2, #FFE4E6);
}

/* Mockup Widget Shared */
.mock-widget {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mock-header {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #0F172A;
  margin-bottom: 12px;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #475569;
  padding: 5px 0;
  border-bottom: 1px solid #F1F5F9;
}

.mock-row:last-child {
  border-bottom: none;
}

.mock-val {
  font-weight: 600;
  color: #0F172A;
}

.mock-val.green {
  color: var(--green);
}

.mock-val.violet {
  color: var(--violet);
}

.mock-val.amber {
  color: var(--amber);
}

.mock-val.red {
  color: var(--red);
}

.mock-val.cyan {
  color: var(--cyan);
}

.mock-divider {
  height: 1px;
  background: #E2E8F0;
  margin: 8px 0;
}

.mock-btn {
  background: var(--grad-btn);
  color: white;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
}

.mock-btn-outline {
  background: transparent;
  border: 1px solid #CBD5E1;
  color: #475569;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  margin-top: 6px;
  cursor: pointer;
}

.inv-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #475569;
  padding: 4px 0;
}

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

.inv-dot.g {
  background: var(--green);
}

.inv-dot.o {
  background: var(--amber);
}

.inv-dot.r {
  background: var(--red);
}

.inv-stock {
  margin-left: auto;
  font-weight: 600;
}

.inv-stock.warn {
  color: var(--amber);
}

.inv-stock.danger {
  color: var(--red);
}

.prod-stage {
  margin-bottom: 10px;
}

.ps-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 4px;
}

.ps-top span {
  color: #475569;
}

.ps-bar {
  height: 6px;
  background: #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
}

.ps-fill {
  height: 100%;
  background: var(--grad-accent);
  border-radius: 4px;
}

.ps-done {
  color: var(--green) !important;
  font-weight: 700;
}

.ps-active {
  color: var(--violet) !important;
  font-weight: 700;
}

.pricing-rule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #475569;
  padding: 4px 0;
}

.rule-tag {
  background: #F1F5F9;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
}

.margin-alert-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 11px;
  color: #92400E;
  margin-top: 8px;
}

.deliver-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #475569;
  border-bottom: 1px solid #F1F5F9;
  padding: 6px 0;
}

.deliver-date {
  width: 40px;
  font-size: 10px;
  color: #94A3B8;
  flex-shrink: 0;
}

.deliver-info {
  flex: 1;
  line-height: 1.3;
}

.deliver-info strong {
  font-size: 12px;
  color: #0F172A;
}

.d-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}

.d-badge.done {
  background: #D1FAE5;
  color: #065F46;
}

.d-badge.sched {
  background: #EDE9FE;
  color: #5B21B6;
}

.dealer-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #F1F5F9;
}

.dealer-row:last-of-type {
  border-bottom: none;
}

.d-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-btn);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.d-info {
  flex: 1;
  font-size: 11px;
  line-height: 1.3;
  color: #475569;
}

.d-info strong {
  color: #0F172A;
  font-size: 12px;
}

.d-status {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.d-status.on {
  background: #D1FAE5;
  color: #065F46;
}

.d-status.low {
  background: #FEE2E2;
  color: #991B1B;
}

/* ── COMPARISON TABLE ── */
.comp-wrap {
  overflow-x: auto;
  margin-top: 2.5rem;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comp-table th,
.comp-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #F1F5F9;
  text-align: left;
}

.comp-table th {
  background: var(--purple-dk);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.comp-table tbody tr:hover {
  background: #F8F9FF;
}

.comp-table .cat-row td {
  background: #F1F5F9;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748B;
  padding: 8px 18px;
}

.comp-table .good {
  color: var(--green);
  font-weight: 700;
}

.comp-table .bad {
  color: #DC2626;
}

.comp-table .hl-col {
  background: rgba(124, 58, 237, 0.04);
}

/* ── ROI CARD ── */
.roi-band {
  background: var(--grad-hero);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.roi-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.roi-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: white;
  margin-bottom: 1rem;
}

.roi-text p {
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.roi-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.roi-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.roi-emoji {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.roi-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cyan);
}

.roi-desc {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ── TESTIMONIAL ── */
.testimonial-band {
  background: white;
  padding: 80px 0;
}

.testi-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--grad-card);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 20px;
  padding: 3rem;
}

.testi-quote {
  font-size: 4rem;
  color: var(--violet);
  opacity: 0.3;
  line-height: 0.7;
  font-family: Georgia, serif;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #1E293B;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testi-author {
  font-size: 14px;
  color: #64748B;
}

.testi-author strong {
  color: var(--violet);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--grad-hero);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: 1rem;
}

.cta-inner p {
  color: var(--text-mid);
  max-width: 480px;
  margin: 30px auto 2.5rem;
  font-size: 16px;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 12px;
  color: var(--text-dim);
}

/* ── PRICING ── */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}

.toggle-label {
  font-size: 14px;
  color: #64748B;
  cursor: pointer;
}

.toggle-label.on {
  color: var(--violet);
  font-weight: 600;
}

.toggle-track {
  width: 46px;
  height: 26px;
  background: #E2E8F0;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.toggle-track.active {
  background: var(--violet);
}

.toggle-thumb {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.toggle-track.active .toggle-thumb {
  transform: translateX(20px);
}

.save-badge {
  background: #D1FAE5;
  color: #065F46;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 100px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 3rem;
}

.price-card {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(13, 8, 24, 0.12);
}

.price-card.featured {
  border-color: var(--violet);
  background: linear-gradient(135deg, #FAF5FF, #F5F0FF);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}

.pop-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-btn);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #0F172A;
}

.plan-users {
  font-size: 12px;
  color: #64748B;
  margin-top: 3px;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  margin: 1.2rem 0 0.5rem;
}

.price-cur {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0F172A;
  margin-top: 8px;
}

.price-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #0F172A;
}

.price-per {
  font-size: 14px;
  color: #64748B;
  align-self: flex-end;
  margin-bottom: 5px;
}

.plan-desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.65;
}

.plan-divider {
  height: 1px;
  background: #E2E8F0;
  margin: 1.5rem 0;
}

.plan-feats {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.plan-feats li {
  font-size: 13px;
  padding-left: 1.5rem;
  position: relative;
}

.plan-feats li::before {
  position: absolute;
  left: 0;
}

.plan-feats li.inc {
  color: #374151;
}

.plan-feats li.inc::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
}

.plan-feats li.exc {
  color: #9CA3AF;
}

.plan-feats li.exc::before {
  content: '—';
  color: #D1D5DB;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: #64748B;
  margin-top: 2rem;
}

/* ── FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.faq-card {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-q {
  padding: 1.2rem 1.5rem;
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: background 0.2s;
}

.faq-q:hover {
  background: #F8F9FF;
}

.faq-arrow {
  color: var(--violet);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-card.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 1.5rem;
}

.faq-card.open .faq-a {
  max-height: 200px;
  padding: 0 1.5rem 1.2rem;
}

/* ── ABOUT ── */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #0F172A;
  margin-bottom: 1.2rem;
}

.story-text p {
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-card {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s;
}

.about-card:hover {
  transform: translateX(5px);
  border-color: rgba(124, 58, 237, 0.25);
}

.about-card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.about-card h3 {
  font-size: 0.95rem;
  color: #0F172A;
  margin-bottom: 0.3rem;
}

.about-card p {
  font-size: 13px;
  color: #64748B;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.exp-card {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.exp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.2);
}

.exp-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.exp-card h3 {
  font-size: 1rem;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.exp-card p {
  font-size: 13px;
  color: #64748B;
}

.ea-box {
  background: var(--grad-hero);
  border-radius: 20px;
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ea-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
}

.ea-box>* {
  position: relative;
  z-index: 1;
}

.ea-badge {
  display: inline-block;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  color: var(--cyan);
  padding: 5px 18px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.ea-box h2 {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.ea-box p {
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.ea-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 440px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.ea-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-light);
}

.ea-check {
  color: var(--cyan);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.val-card {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.val-card h3 {
  font-size: 0.95rem;
  color: var(--violet);
  margin-bottom: 0.5rem;
}

.val-card p {
  font-size: 13px;
  color: #64748B;
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  padding: 80px 0;
}

.contact-info h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #0F172A;
  margin-bottom: 1.2rem;
}

.contact-info>p {
  color: #475569;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.cs {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.cs-num {
  width: 38px;
  height: 38px;
  background: var(--grad-btn);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cs h3 {
  font-size: 15px;
  color: #0F172A;
  margin-bottom: 0.3rem;
}

.cs p {
  font-size: 13px;
  color: #64748B;
}

.contact-details h3 {
  font-size: 1rem;
  color: #0F172A;
  margin-bottom: 1rem;
}

.cd-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8rem;
}

.cd-icon {
  width: 34px;
  height: 34px;
  background: var(--page-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--violet);
  flex-shrink: 0;
}

.cd-row a,
.cd-row span {
  font-size: 14px;
  color: #475569;
}

.cd-row a:hover {
  color: var(--violet);
}

.contact-form-wrap {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(13, 8, 24, 0.08);
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  color: #0F172A;
  margin-bottom: 0.4rem;
}

.contact-form-wrap>p {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 2rem;
}

.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.form-field label span {
  font-weight: 400;
  color: #9CA3AF;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1E293B;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #94A3B8;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
  background: white;
}

.form-field input.err,
.form-field select.err {
  border-color: var(--red);
}

.field-error {
  font-size: 11px;
  color: var(--red);
  min-height: 14px;
}

.form-submit-note {
  font-size: 12px;
  color: #94A3B8;
  text-align: center;
  margin-top: 0.8rem;
}

.form-success-box {
  text-align: center;
  padding: 2rem 1rem;
}

.success-circle {
  width: 68px;
  height: 68px;
  background: #D1FAE5;
  border: 2px solid #A7F3D0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.form-success-box h3 {
  font-size: 1.4rem;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.form-success-box p {
  font-size: 14px;
  color: #64748B;
}

/* ── REASSURANCE ── */
.reassurance-bar {
  background: var(--purple-dk);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
}

.reas-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}

.reas-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
}

/* ── ONBOARDING TIMELINE ── */
.timeline {
  margin-top: 3rem;
}

.tl-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--card-border);
}

.tl-item:last-child {
  border-bottom: none;
}

.tl-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  text-align: center;
}

.tl-body h3 {
  font-size: 1rem;
  color: #0F172A;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tl-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  background: #FEF3C7;
  color: #92400E;
}

.tl-body p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--grad-hero);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #1e0f3c;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 1.2rem auto 0;
  line-height: 1.75;
}

/* ── LOGIN PAGE ── */
.login-page {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  flex-direction: column;
}

.login-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.login-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 40%, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
}

.login-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 80px rgba(13, 8, 24, 0.5);
  position: relative;
  z-index: 1;
}

.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.login-card h2 {
  font-size: 1.5rem;
  color: #0F172A;
  text-align: center;
  margin-bottom: 0.3rem;
}

.login-card>p {
  font-size: 14px;
  color: #64748B;
  text-align: center;
  margin-bottom: 2rem;
}

.login-alert {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #991B1B;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-back {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #64748B;
  margin-top: 1.5rem;
}

.login-back a {
  color: var(--violet);
  font-weight: 600;
}

.login-back a:hover {
  text-decoration: underline;
}

.login-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 12px;
  color: var(--text-dim);
}

/* ── DASHBOARD (post-login) ── */
.dash-layout {
  display: flex;
  min-height: 100vh;
}

.dash-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--purple-dk);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}

.dash-sidebar-logo {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dash-nav {
  flex: 1;
  padding: 1.5rem 0;
  overflow-y: auto;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.15s;
  font-weight: 500;
  text-decoration: none;
}

.dash-nav-item svg {
  flex-shrink: 0;
}

.dash-nav-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.dash-nav-item.active {
  background: rgba(124, 58, 237, 0.2);
  color: var(--violet-lt);
  border-right: 3px solid var(--violet);
}

.dash-nav-group {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 1rem 20px 0.3rem;
}

.dash-sidebar-footer {
  padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.dash-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-user-av {
  width: 34px;
  height: 34px;
  background: var(--grad-accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.dash-user-info {
  flex: 1;
}

.dash-user-name {
  font-size: 13px;
  font-weight: 600;
  color: white;
}

.dash-user-role {
  font-size: 11px;
  color: var(--text-dim);
}

.dash-logout {
  font-size: 12px;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}

.dash-logout:hover {
  color: var(--red);
}

.dash-main {
  margin-left: 240px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dash-topbar {
  height: 60px;
  background: white;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 50;
  gap: 1rem;
}

.dash-page-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0F172A;
}

.dash-topbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dash-notif {
  width: 36px;
  height: 36px;
  background: var(--page-bg);
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #475569;
}

.dash-content {
  flex: 1;
  padding: 2rem;
  background: var(--page-bg);
}

.dash-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.dash-stat-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.4rem;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.ds-label {
  font-size: 12px;
  color: #64748B;
  margin-bottom: 8px;
}

.ds-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #0F172A;
}

.ds-sub {
  font-size: 12px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.ds-sub.down {
  color: var(--red);
}

.dash-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.dash-panel {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.5rem;
}

.dash-panel-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #0F172A;
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-link {
  font-size: 12px;
  color: var(--violet);
  font-weight: 600;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.orders-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94A3B8;
  font-weight: 700;
  padding: 8px 12px;
  border-bottom: 1px solid #F1F5F9;
  text-align: left;
}

.orders-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #F8FAFC;
  color: #374151;
}

.orders-table tr:last-child td {
  border-bottom: none;
}

.orders-table tr:hover td {
  background: #F8F9FF;
}

.status-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
}

.status-badge.delivered {
  background: #D1FAE5;
  color: #065F46;
}

.status-badge.production {
  background: #EDE9FE;
  color: #5B21B6;
}

.status-badge.quoted {
  background: #FEF3C7;
  color: #92400E;
}

.status-badge.pending {
  background: #F1F5F9;
  color: #475569;
}

.chart-bars-v {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
}

.chart-bar-v {
  flex: 1;
  background: linear-gradient(to top, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.6));
  border-radius: 4px 4px 0 0;
  min-height: 8px;
  transition: all 0.4s;
  cursor: pointer;
  position: relative;
}

.chart-bar-v:hover {
  background: var(--grad-btn);
}

.chart-bar-v.active {
  background: var(--grad-btn);
}

.chart-labels {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.chart-label {
  flex: 1;
  font-size: 10px;
  color: #94A3B8;
  text-align: center;
}

/* ── SCROLL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
}

.footer-top {
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 270px;
  margin-top: 0.8rem;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--text-dim);
  transition: all 0.2s;
}

.footer-socials a:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: white;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-light);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0.7rem;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--violet-lt);
}

.footer-contact-list a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom-inner p {
  font-size: 12px;
  color: var(--text-dim);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .top-bar-inner {
    font-size: 11px;
  }

  .top-bar-right {
    display: none;
  }

  .hero {
    padding: 60px 0 70px;
    min-height: unset;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .problems-grid,
  .features-grid,
  .exp-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    padding: 50px 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .feat-detail {
    grid-template-columns: 1fr;
  }

  .feat-detail.rev {
    direction: ltr;
  }

  .roi-grid {
    grid-template-columns: 1fr;
  }

  .roi-items {
    grid-template-columns: 1fr;
  }

  .flow-row {
    flex-direction: column;
  }

  .flow-step:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .flow-step:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .flow-step:not(:last-child)::after {
    content: '↓';
    right: auto;
    left: 50%;
    top: auto;
    bottom: -14px;
    transform: translateX(-50%);
  }

  .dash-layout {
    flex-direction: column;
  }

  .dash-sidebar {
    display: none;
  }

  .dash-main {
    margin-left: 0;
  }

  .dash-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  .dash-stat-grid {
    grid-template-columns: 1fr;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.form-group {
  margin-bottom: 1rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.8rem;
  border-radius: 16px;
  border: 1px solid #CBD5E1;
  font-family: 'Inter', sans-serif;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.price-card {
  background: white;
  border-radius: 32px;
  padding: 2rem;
  flex: 1 1 280px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid #EFF3F8;
  transition: all 0.2s;
}

.price-card.popular {
  border-top: 4px solid #2563EB;
  position: relative;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Outfit';
  margin: 1rem 0;
}

.login-card {
  max-width: 480px;
  margin: 3rem auto;
  background: white;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.15);
}

/* Hero */
.page-hero {
  text-align: center;
  padding: 4rem 0 3rem 0;
  background: linear-gradient(135deg, #F8FAFE 0%, #EFF6FF 100%);
}

.page-hero h1 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  max-width: 600px;
  margin: 1rem auto 0;
  color: #334155;
  font-size: 1.125rem;
}


/* Features styling (used across pages) */
.feat-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.feat-detail.rev {
  direction: rtl;
}

.feat-detail.rev .feat-detail-text {
  direction: ltr;
}

.feat-tag {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.feat-checklist {
  list-style: none;
  margin-top: 1.5rem;
}

.feat-checklist li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.6rem;
}

.feat-checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: bold;
}

.feat-visual-box {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border: 1px solid #EFF3F8;
}

.mock-widget {
  background: #F9FAFE;
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid #EAEEF4;
}

.mock-header {
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 1px solid #E2E8F0;
  padding-bottom: 0.5rem;
  font-size: 0.9rem;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.mock-val.green {
  color: #059669;
  font-weight: 700;
}

.mock-val.violet {
  color: #6D28D9;
  font-weight: 700;
}

.mock-divider {
  height: 1px;
  background: #E9EEF4;
  margin: 1rem 0;
}

.mock-btn,
.mock-btn-outline {
  background: #2563EB;
  color: white;
  text-align: center;
  padding: 8px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0.75rem 0 0.5rem;
  cursor: default;
}

.mock-btn-outline {
  background: transparent;
  border: 1px solid #CBD5E1;
  color: #1F2937;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tl-item {
  background: white;
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid #EEF2F6;
}

.tl-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tl-badge {
  background: #FEF3C7;
  color: #B45309;
  font-size: 0.7rem;
  margin-left: 0.5rem;
  padding: 0.1rem 0.5rem;
  border-radius: 40px;
}

.cta-band {
  background: #0F172A;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.cta-band .btn-white {
  background: white;
  color: #0F172A;
  margin: 0.5rem;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 10px;
    background: #e4e1fd;
    margin-top: 10px;
  }

  .feat-visual-box {
    margin-bottom: 30px;
  }

  .contact-grid {
    display: block;
  }

  .feat-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feat-detail.rev {
    direction: ltr;
  }

  h1 {
    font-size: 2.2rem;
  }

  .nav-links {
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .nav-container {
    flex-direction: column;
    padding: 2%;
  }

  .logo {
    display: block;
    align-items: center;
    text-decoration: none;
    position: absolute;
  }
}

/* Common Components */
.chip {
  display: inline-block;
  background: #E2E8F0;
  padding: 0.25rem 1rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.white-chip {
  background: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  color: #4F46E5;
}

.section {
  padding: 4rem 0;
}

.section-light {
  background: #FFFFFF;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.section-sub {
  color: #475569;
  font-size: 1.125rem;
}

.contact-form {
  padding: 30px;
  background: #e4e1fd;
  margin-top: 10px;
}

* ── FAQ ─────────────────────────────────────────────────────────────────── */ .faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  background: #fff;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1E293B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-q:hover {
  color: var(--violet);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  padding: 0 1.25rem 1rem;
  color: #475569;
  line-height: 1.75;
  font-size: 0.9rem;
}

/* ── TIMELINE (about page) ───────────────────────────────────────────────── */

.tl-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tl-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--violet-dim);
  border: 2px solid rgba(124, 58, 237, 0.2);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.tl-body h3 {
  font-size: 1.05rem;
  color: #0F172A;
  margin-bottom: 0.35rem;
}

.tl-body p {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── TEAM ────────────────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1rem;
}

.team-card h3 {
  font-size: 1rem;
  color: #0F172A;
}

.team-role {
  font-size: 0.82rem;
  color: var(--violet);
  font-weight: 600;
  margin: 0.25rem 0 0.75rem;
  display: block;
}

.team-bio {
  font-size: 0.83rem;
  color: #64748B;
  line-height: 1.6;
}

.team-linkedin {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--violet);
}

/* ================================
   LOGO
================================ */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
  transition: all .3s ease;
}

/* Navbar uses dark logo */
.navbar .logo-dark {
  display: block;
}

.navbar .logo-light {
  display: none;
}

/* Footer uses light logo */
.footer .logo-dark {
  display: none;
}

.footer .logo-light {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-img {
    height: 50px;
  }
}