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

:root {
  --background: hsl(220, 20%, 97%);
  --foreground: hsl(220, 30%, 10%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 30%, 10%);
  --primary: hsl(220, 60%, 15%);
  --primary-foreground: hsl(40, 100%, 97%);
  --secondary: hsl(220, 15%, 92%);
  --muted: hsl(220, 15%, 94%);
  --muted-foreground: hsl(220, 10%, 45%);
  --accent: hsl(230, 70%, 55%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(220, 15%, 88%);
  --gradient-amber: linear-gradient(to right, hsl(220, 60%, 15%), hsl(280, 67%, 55%));
  --gradient-dark: linear-gradient(180deg, hsl(220, 60%, 8%), hsl(220, 40%, 14%));
  --hero-gradient: linear-gradient(135deg, hsl(220, 60%, 8%) 0%, hsl(220, 40%, 18%) 50%, hsl(220, 30%, 25%) 100%);
  --shadow-card: 0 4px 24px -4px hsl(220, 30%, 10%, 0.08);
  --shadow-elevated: 0 12px 40px -8px hsl(220, 30%, 10%, 0.15);
}

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  line-height: 1.2;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 768px;
}

.text-gradient {
  background: var(--gradient-amber);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--card);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border-bottom: 1px solid hsl(220, 15%, 88%, 0.5);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--foreground);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-login {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
}

.nav-login:hover {
  color: var(--accent);
}

.user-menu-wrapper {
  position: relative;
}

.user-menu-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.user-menu-trigger:hover {
  border-color: var(--accent);
  background-color: var(--muted);
}

.user-menu-trigger svg {
  transition: transform 0.2s;
}

.user-menu-wrapper.active .user-menu-trigger svg {
  transform: rotate(180deg);
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 200px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-elevated);
  padding: 0.5rem;
  display: none;
  z-index: 100;
}

.user-menu-wrapper.active .user-dropdown {
  display: block;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: all 0.2s;
}

.user-dropdown-item:hover {
  background-color: var(--muted);
  color: var(--accent);
}

.user-dropdown-item svg {
  flex-shrink: 0;
}

.mobile-user-info {
  padding: 0.75rem 1rem;
  background-color: var(--muted);
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.mobile-user-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-elevated);
}

.btn-accent:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 1px solid hsl(40, 100%, 97%, 0.2);
  color: var(--primary-foreground);
}

.btn-outline:hover {
  background-color: hsl(40, 100%, 97%, 0.1);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
  text-align: center;
}

.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.mobile-menu-toggle {
  display: flex;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle .close-icon {
  display: none;
}

.mobile-menu-toggle.active .menu-icon {
  display: none;
}

.mobile-menu-toggle.active .close-icon {
  display: block;
}

.mobile-menu {
  display: none;
  background-color: var(--card);
  padding: 1.5rem 1rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-link {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.mobile-nav-link:hover {
  color: var(--foreground);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1920');
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
  opacity: 0.85;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, hsl(220, 60%, 15%, 0.9) 0%, transparent 40%, transparent 100%);
}

.hero-content {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-text {
  max-width: 48rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid hsl(230, 70%, 55%, 0.3);
  background-color: hsl(230, 70%, 55%, 0.1);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(230, 60%, 65%);
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(40, 100%, 97%, 0.7);
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 32rem;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 1.875rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(40, 100%, 97%, 0.5);
  margin-top: 0.25rem;
}

.fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.fade-up-delay-1 {
  animation: fadeUp 0.6s ease-out 0.1s forwards;
  opacity: 0;
}

.fade-up-delay-2 {
  animation: fadeUp 0.6s ease-out 0.2s forwards;
  opacity: 0;
}

.fade-up-delay-3 {
  animation: fadeUp 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

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

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.section-tag {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.section-tag-light {
  color: hsl(230, 60%, 65%);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

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

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.section-description-light {
  color: hsl(40, 100%, 97%, 0.6);
}

.features {
  padding: 6rem 0;
  background-color: var(--background);
}

@media (min-width: 1024px) {
  .features {
    padding: 8rem 0;
  }
}

.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  border-radius: 12px;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
  overflow: hidden;
}

.feature-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: hsl(230, 70%, 55%, 0.1);
  color: var(--accent);
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.3s;
}

.feature-card:hover .feature-link {
  gap: 0.5rem;
}



/* ── Feature Spotlight — all stacked, scroll-reveal ──────────────────────── */

/* Each fspot is always visible, stacked vertically */
.fspot-wrap {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.fspot {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(145deg, hsl(230,60%,97.5%), hsl(230,35%,94%));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  /* scroll reveal — start hidden */
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .55s ease, transform .55s ease;
}
.fspot.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fsh-row-in {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Alternate: even items flip text/mock columns */
.fspot:nth-child(even) .fspot-left { order: 2; }
.fspot:nth-child(even) .fspot-right { order: 1; }

@media (max-width: 860px) {
  .fspot { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 2rem; }
  .fspot:nth-child(even) .fspot-left { order: 0; }
  .fspot:nth-child(even) .fspot-right { order: 0; }
}

/* Left: text */
.fspot-left {}

.fspot-meta {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.125rem;
}
.fspot-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px hsla(230,70%,55%,.3);
}
.fspot-num {
  font-size: 3.5rem; font-weight: 800;
  color: var(--border);
  line-height: 1; letter-spacing: -.04em;
  user-select: none;
}
.fspot-name {
  font-size: 1.625rem; font-weight: 700;
  color: var(--card-foreground);
  margin: 0 0 .75rem; line-height: 1.2;
}
.fspot-lead {
  font-size: 1rem; color: var(--muted-foreground);
  line-height: 1.65; margin: 0 0 1.125rem;
}
.fspot-points {
  list-style: none; margin: 0 0 1.25rem; padding: 0;
  display: flex; flex-direction: column; gap: .55rem;
}
.fspot-points li {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .9375rem; color: var(--card-foreground); line-height: 1.45;
}
.fspot-points li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  margin-top: .1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: .9;
}
.fspot-link {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .9375rem; font-weight: 600; color: var(--accent);
  text-decoration: none; padding: .5rem 1rem;
  border: 1.5px solid var(--accent); border-radius: 8px;
  transition: background .2s, color .2s;
}
.fspot-link:hover { background: var(--accent); color: #fff; }

/* Right: mock */
.fspot-right { display: flex; align-items: center; justify-content: center; }

/* ── Mock UI (browser-chrome card) ──────────────────────────────────────── */
.mck {
  width: 100%; max-width: 420px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(80,90,160,.13), 0 1.5px 6px rgba(80,90,160,.08);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.mck-wide { max-width: 460px; }

/* Title bar */
.mck-bar {
  display: flex; align-items: center; gap: .625rem;
  padding: .6rem 1rem;
  background: #f5f6fb;
  border-bottom: 1px solid #eaecf5;
}
.mck-dots { display: flex; gap: .3rem; }
.mck-dots i {
  display: block; width: 10px; height: 10px; border-radius: 50%;
  background: #dee0ea;
}
.mck-dots i:first-child { background: #ff6059; }
.mck-dots i:nth-child(2) { background: #febc2e; }
.mck-dots i:nth-child(3) { background: #28c840; }
.mck-title { font-size: .78rem; font-weight: 600; color: #4a5173; flex: 1; }
.mck-pill {
  font-size: .65rem; font-weight: 700; padding: .18rem .55rem;
  border-radius: 20px; letter-spacing: .03em; text-transform: uppercase;
}
.mck-pill-blue  { background: #e8eeff; color: #3c5bfa; }
.mck-pill-green { background: #e6f9ee; color: #1a8a4c; }
.mck-pill-amber { background: #fff8e1; color: #b45309; }

/* Body */
.mck-body { padding: 1rem; display: flex; flex-direction: column; gap: .45rem; }
.mck-body-flush { padding: .75rem 0 .5rem; }

/* Field rows (key → value) */
.mck-field {
  display: flex; align-items: baseline; gap: .5rem;
  font-size: .8rem; padding: .25rem 0;
}
.mck-lbl { color: #8b95b0; min-width: 58px; font-size: .74rem; }
.mck-val { color: #1e2035; font-weight: 500; display: flex; align-items: center; gap: .35rem; }
.mck-date {
  background: #eef0fb; border-radius: 5px;
  padding: .1rem .4rem; font-size: .74rem; color: #3c4fa8;
}
.mck-days { font-size: .7rem; color: #8b95b0; font-style: normal; }

/* Separator */
.mck-sep { height: 1px; background: #eaecf5; margin: .25rem 0; }

/* Line items */
.mck-lineitem {
  display: flex; justify-content: space-between;
  font-size: .78rem; color: #4a5173;
}
.mck-vat { color: #8b95b0; font-size: .73rem; }
.mck-total {
  display: flex; justify-content: space-between;
  font-size: .85rem; font-weight: 700; color: #1e2035;
  border-top: 1px solid #eaecf5;
  padding-top: .35rem; margin-top: .1rem;
}

/* Bottom action row */
.mck-actions { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-top: .25rem; }
.mck-status-badge {
  display: flex; align-items: center; gap: .35rem;
  font-size: .73rem; font-weight: 600; color: #1a8a4c;
}
.mck-pulse {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #1a8a4c;
  animation: mck-pulse 1.5s ease-in-out infinite;
}
@keyframes mck-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: .5; }
}
.mck-btn {
  background: var(--accent); color: #fff;
  border: none; border-radius: 7px;
  font-size: .75rem; font-weight: 600;
  padding: .38rem .85rem; cursor: pointer;
  transition: background .2s;
}
.mck-btn:hover { background: hsl(230,70%,48%); }

/* Fleet table */
.mck-table-head {
  display: grid; grid-template-columns: 2fr 1fr 1.1fr 1fr;
  font-size: .68rem; font-weight: 700; color: #8b95b0;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 0 1rem .35rem; border-bottom: 1px solid #eaecf5;
}
.mck-table-row {
  display: grid; grid-template-columns: 2fr 1fr 1.1fr 1fr;
  align-items: center; padding: .38rem 1rem;
  font-size: .78rem; color: #1e2035;
  border-bottom: 1px solid #f4f5fb;
  opacity: 0; transform: translateX(-8px);
  animation: fsh-row-in .35s ease forwards;
}
.mck-table-row.mck-r1 { animation-delay: .05s; }
.mck-table-row.mck-r2 { animation-delay: .13s; }
.mck-table-row.mck-r3 { animation-delay: .21s; }
.mck-table-row.mck-r4 { animation-delay: .29s; }
.mck-veh { font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mck-km  { color: #8b95b0; font-size: .73rem; }
.mck-badge {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .68rem; font-weight: 600; padding: .15rem .45rem; border-radius: 20px;
}
.mck-avail  { background: #e6f9ee; color: #1a8a4c; }
.mck-rented { background: #fff3e0; color: #b45309; }
.mck-svc    { background: #f3e8ff; color: #7c3aed; }
.mck-dot    { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.mck-fleet-foot {
  display: flex; justify-content: space-between;
  padding: .4rem 1rem 0; font-size: .72rem; color: #8b95b0;
}
.mck-stat { }

/* Calendar grid */
.mck-cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: .5rem 1rem .35rem; font-size: .82rem; font-weight: 700; color: #1e2035;
}
.mck-cal-nav button {
  background: none; border: none; cursor: pointer; color: #8b95b0; font-size: .9rem; padding: .1rem .35rem;
}
.mck-cal-grid {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: 2px; padding: 0 .75rem .75rem;
}
.mck-cal-grid span {
  text-align: center; font-size: .7rem; padding: .28rem .1rem; border-radius: 5px; color: #4a5173;
}
.mck-cal-grid .mck-ch { font-weight: 700; color: #8b95b0; font-size: .64rem; }
.mck-cal-grid .mck-today { background: var(--accent); color: #fff; font-weight: 700; }
.mck-cal-grid .mck-booked { background: #fde8e8; color: #b91c1c; }
.mck-cal-grid .mck-avail-day { background: #e6f9ee; color: #1a8a4c; }
.mck-cal-grid .mck-blocked { background: #f4f5fb; color: #c4c8db; }
.mck-cal-legend {
  display: flex; gap: .75rem; padding: .35rem 1rem .6rem;
  font-size: .67rem; color: #8b95b0;
}
.mck-cal-legend span { display: flex; align-items: center; gap: .25rem; }
.mck-cal-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 3px; }
.mck-leg-booked { background: #fde8e8; }
.mck-leg-avail  { background: #e6f9ee; }
.mck-leg-blocked{ background: #f4f5fb; border: 1px solid #dee0ea; }

/* Pricing rules */
.mck-pricing-section { padding: 0 0 .35rem; }
.mck-pricing-title { font-size: .7rem; font-weight: 700; color: #8b95b0; text-transform: uppercase; letter-spacing: .06em; padding: 0 0 .35rem; }
.mck-rule-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: #1e2035;
  padding: .3rem 0; border-bottom: 1px solid #f4f5fb;
}
.mck-rule-label { color: #4a5173; }
.mck-rule-val { font-weight: 600; }
.mck-rule-badge { font-size: .67rem; font-weight: 600; padding: .12rem .4rem; border-radius: 20px; }
.mck-rule-green { background: #e6f9ee; color: #1a8a4c; }
.mck-rule-blue  { background: #e8eeff; color: #3c5bfa; }
.mck-rule-amber { background: #fff8e1; color: #b45309; }
.mck-rate-row   { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; padding: .2rem 0; }
.mck-rate-lbl   { color: #8b95b0; font-size: .74rem; }
.mck-rate-val   { font-weight: 700; color: #1e2035; }

/* Invoice */
.mck-inv-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .5rem; }
.mck-inv-brand  { font-size: .95rem; font-weight: 800; color: #1e2035; letter-spacing: -.02em; }
.mck-inv-meta   { font-size: .67rem; color: #8b95b0; margin-top: .15rem; }
.mck-inv-num    { font-size: .75rem; font-weight: 700; color: #3c5bfa; text-align: right; }
.mck-inv-num span { display: block; font-size: .67rem; color: #8b95b0; font-weight: 400; }
.mck-inv-party  { background: #f6f8fc; border-radius: 8px; padding: .4rem .6rem; font-size: .74rem; color: #4a5173; margin-bottom: .5rem; }
.mck-inv-party strong { color: #1e2035; }
.mck-inv-line   { display: flex; justify-content: space-between; font-size: .76rem; color: #4a5173; padding: .22rem 0; border-bottom: 1px solid #f4f5fb; }
.mck-inv-total  { display: flex; justify-content: space-between; font-size: .88rem; font-weight: 800; color: #1e2035; padding-top: .4rem; margin-top: .15rem; }
.mck-inv-footer { display: flex; align-items: center; justify-content: space-between; margin-top: .4rem; }
.mck-inv-paid   { font-size: .72rem; font-weight: 700; color: #1a8a4c; background: #e6f9ee; border-radius: 20px; padding: .18rem .55rem; }
.mck-inv-qr     { width: 28px; height: 28px; background: repeating-conic-gradient(#1e2035 0% 25%, #fff 0% 50%) 0 0 / 5px 5px; border-radius: 4px; }

/* Agreement / contract */
.mck-agr-parties { font-size: .75rem; color: #4a5173; margin-bottom: .35rem; }
.mck-agr-parties strong { color: #1e2035; }
.mck-agr-clause { font-size: .7rem; color: #4a5173; line-height: 1.55; margin-bottom: .35rem; }
.mck-agr-clause span { font-weight: 600; color: #1e2035; }
.mck-agr-sig    { display: flex; align-items: flex-end; justify-content: space-between; border-top: 1px solid #eaecf5; padding-top: .45rem; margin-top: .25rem; }
.mck-sig-block  { display: flex; flex-direction: column; align-items: center; gap: .15rem; }
.mck-sig-line   { width: 80px; height: 1px; background: #c4c8db; }
.mck-sig-name   { font-size: .65rem; color: #8b95b0; }
.mck-sig-svg    { display: block; }

/* Multi-location */
.mck-loc-list { display: flex; flex-direction: column; gap: .25rem; }
.mck-loc-row  {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: #1e2035; padding: .3rem .6rem;
  border: 1px solid #eaecf5; border-radius: 8px; background: #f9fafb;
}
.mck-loc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mck-loc-name { flex: 1; font-weight: 500; }
.mck-loc-count { font-size: .7rem; color: #8b95b0; }
.mck-loc-status { font-size: .67rem; font-weight: 600; }
.mck-loc-on  { color: #1a8a4c; }
.mck-loc-off { color: #b45309; }

/* Role / permission matrix */
.mck-role-head {
  display: grid; grid-template-columns: 1.4fr repeat(4,1fr);
  font-size: .63rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #8b95b0;
  padding: 0 1rem .3rem; border-bottom: 1px solid #eaecf5;
}
.mck-role-row {
  display: grid; grid-template-columns: 1.4fr repeat(4,1fr);
  align-items: center; padding: .35rem 1rem;
  font-size: .75rem; color: #1e2035; border-bottom: 1px solid #f4f5fb;
}
.mck-role-name { font-weight: 600; }
.mck-chk-y { color: #1a8a4c; font-weight: 700; text-align: center; }
.mck-chk-n { color: #d1d5de; text-align: center; }

/* Maintenance schedule */
.mck-maint-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .38rem 0; border-bottom: 1px solid #f4f5fb;
  font-size: .78rem; color: #1e2035;
}
.mck-maint-veh  { font-weight: 500; }
.mck-maint-due  { font-size: .7rem; color: #8b95b0; margin-top: .08rem; }
.mck-maint-type { font-size: .72rem; color: #4a5173; }
.mck-maint-badge { font-size: .67rem; font-weight: 600; padding: .12rem .4rem; border-radius: 20px; }
.mck-due-soon   { background: #fff8e1; color: #b45309; }
.mck-due-ok     { background: #e6f9ee; color: #1a8a4c; }
.mck-due-over   { background: #fde8e8; color: #b91c1c; }

/* ── Extra mock UI components ────────────────────────────────────────────── */

/* Customer Portal */
.mck-portal-welcome { font-size: .85rem; color: #4a5173; margin-bottom: .625rem; display: flex; align-items: center; justify-content: space-between; }
.mck-portal-cars { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .5rem; }
.mck-portal-car { display: flex; align-items: center; gap: .5rem; padding: .4rem .5rem; border: 1px solid #eef0f8; border-radius: 8px; background: #f9fafb; }
.mck-portal-car.mck-r1, .mck-portal-car.mck-r2 { opacity: 0; transform: translateX(-6px); }
.fspot.revealed .mck-portal-car { animation: fsh-row-in .38s ease forwards; }
.fspot.revealed .mck-portal-car.mck-r1 { animation-delay: 0s; }
.fspot.revealed .mck-portal-car.mck-r2 { animation-delay: .1s; }
.mck-car-emoji { font-size: 1.2rem; flex-shrink: 0; }
.mck-car-info { flex: 1; display: flex; flex-direction: column; }
.mck-car-info strong { font-size: .8rem; color: #1e2035; }
.mck-car-info small { font-size: .68rem; color: #8b95b0; }
.mck-portal-actions { display: flex; align-items: center; gap: .4rem; }

/* Branding / Tenant */
.mck-branding-preview { display: flex; align-items: center; justify-content: space-between; background: #f6f8fc; border-radius: 8px; padding: .5rem .75rem; margin-bottom: .625rem; }
.mck-brand-logo { font-size: .9rem; font-weight: 700; color: #1e2035; }
.mck-color-dot { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: .25rem; vertical-align: middle; }
.mck-tenant-list { display: flex; flex-direction: column; gap: .25rem; }
.mck-tenant-row { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: #4a5173; padding: .25rem 0; border-bottom: 1px solid #f0f2fa; }

/* Analytics / Charts */
.mck-stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-bottom: .75rem; }
.mck-stat-card { background: #f6f8fc; border-radius: 8px; padding: .5rem .625rem; text-align: center; }
.mck-stat-num-lg { display: block; font-size: 1rem; font-weight: 700; color: #1e2035; }
.mck-stat-lbl { display: block; font-size: .62rem; color: #8b95b0; margin-top: .1rem; }
.mck-stat-change { display: block; font-size: .65rem; font-weight: 600; margin-top: .15rem; }
.mck-stat-up { color: #1a8a4c; }
.mck-stat-dn { color: #cc3030; }
.mck-chart-area { background: #f6f8fc; border-radius: 8px; padding: .75rem .625rem .35rem; margin-bottom: .625rem; }
.mck-bar-wrap { display: flex; align-items: flex-end; gap: .375rem; height: 70px; }
.mck-bar-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .25rem; height: 100%; justify-content: flex-end; }
.mck-bar-fill { width: 100%; background: hsla(230,70%,55%,.25); border-radius: 3px 3px 0 0; transition: height .4s ease; }
.mck-bar-hi { background: var(--accent); }
.mck-bar-item span { font-size: .6rem; color: #8b95b0; }

/* ── More Features card grid ─────────────────────────────────────────────── */
.mfeat-section {
  margin-top: 1rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border);
}
.mfeat-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.mfeat-title {
  font-size: 1.625rem; font-weight: 700;
  color: var(--card-foreground); margin: 0 0 .5rem;
}
.mfeat-sub {
  font-size: 1rem; color: var(--muted-foreground); margin: 0;
}
.mfeat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}
@media (max-width: 860px) {
  .mfeat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .mfeat-grid { grid-template-columns: 1fr; }
}
.mfeat-card {
  display: flex;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: box-shadow .25s ease, transform .25s ease, opacity .5s ease, translate .5s ease;
  opacity: 0;
  translate: 0 20px;
}
.mfeat-card.revealed {
  opacity: 1;
  translate: 0 0;
}
.mfeat-card:hover {
  box-shadow: 0 8px 28px hsla(230,60%,50%,.12);
  transform: translateY(-3px);
}
.mfeat-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: hsla(230,70%,55%,.1);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.mfeat-body { display: flex; flex-direction: column; gap: .35rem; }
.mfeat-name {
  font-size: 1rem; font-weight: 700;
  color: var(--card-foreground); margin: 0;
}
.mfeat-desc {
  font-size: .875rem; color: var(--muted-foreground);
  line-height: 1.55; margin: 0;
}
.mfeat-link {
  font-size: .8125rem; font-weight: 600;
  color: var(--accent); text-decoration: none;
  margin-top: .25rem;
  transition: opacity .2s;
}
.mfeat-link:hover { opacity: .75; }


.services {
  padding: 6rem 0;
  background-color: hsl(220, 15%, 94%, 0.5);
}

@media (min-width: 1024px) {
  .services {
    padding: 8rem 0;
  }
}

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

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.service-card:hover {
  box-shadow: var(--shadow-elevated);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.service-icon-accent {
  background-color: hsl(230, 70%, 55%, 0.1);
  color: var(--accent);
}

.service-icon-primary {
  background-color: hsl(220, 60%, 15%, 0.1);
  color: var(--primary);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.25rem;
}

.service-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--card-foreground);
}

.bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}

.comparison {
  padding: 6rem 0;
  background-color: var(--background);
}

@media (min-width: 1024px) {
  .comparison {
    padding: 8rem 0;
  }
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
}

.comparison-table thead {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.comparison-table th {
  padding: 1rem;
  font-weight: 600;
  text-align: center;
}

.table-header-feature {
  text-align: left;
  min-width: 220px;
}

.table-header-highlight {
  background: var(--gradient-amber);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  min-width: 120px;
}

.comparison-table tbody tr {
  border-top: 1px solid var(--border);
}

.comparison-table tbody tr:nth-child(even) {
  background-color: var(--card);
}

.comparison-table tbody tr:nth-child(odd) {
  background-color: hsl(220, 15%, 94%, 0.3);
}

.comparison-table td {
  padding: 1rem;
}

.feature-name {
  font-weight: 500;
  color: var(--card-foreground);
}

.status-cell {
  text-align: center;
}

.icon-check {
  color: var(--accent);
  margin: 0 auto;
  display: block;
}

.icon-x {
  color: hsl(0, 84%, 60%, 0.6);
  margin: 0 auto;
  display: block;
}

.icon-minus {
  color: var(--muted-foreground);
  margin: 0 auto;
  display: block;
}

.how-it-works {
  padding: 6rem 0;
  background: var(--gradient-dark);
}

@media (min-width: 1024px) {
  .how-it-works {
    padding: 8rem 0;
  }
}

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

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid hsl(40, 100%, 97%, 0.1);
  background-color: hsl(40, 100%, 97%, 0.05);
  padding: 2rem;
  transition: background-color 0.3s;
  height: 100%;
}

.step-card:hover {
  background-color: hsl(40, 100%, 97%, 0.1);
}

.step-connector {
  display: none;
}

@media (min-width: 1024px) {
  .step-card:not(:last-child) .step-connector {
    display: block;
    position: absolute;
    top: 40px;
    left: calc(100% - 16px);
    width: calc(100% - 48px);
    height: 1px;
    border-top: 1px dashed hsl(40, 100%, 97%, 0.2);
  }
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--accent);
  color: var(--accent-foreground);
  margin-bottom: 1.25rem;
}

.step-header {
  margin-bottom: 0.75rem;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.875rem;
  color: hsl(40, 100%, 97%, 0.6);
  line-height: 1.6;
}

.user-roles {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(220, 30%, 96%) 0%, hsl(230, 25%, 92%) 40%, hsl(240, 20%, 94%) 70%, hsl(220, 30%, 96%) 100%);
}

@media (min-width: 1024px) {
  .user-roles {
    padding: 8rem 0;
  }
}

.user-roles-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.gradient-orb-1 {
  left: 50%;
  top: 0;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background-color: hsl(220, 60%, 15%, 0.1);
}

.gradient-orb-2 {
  right: 0;
  top: 33.333%;
  width: 400px;
  height: 400px;
  background-color: hsl(230, 70%, 55%, 0.1);
}

.gradient-orb-3 {
  left: 40px;
  bottom: 25%;
  width: 300px;
  height: 300px;
  background-color: hsl(220, 60%, 15%, 0.05);
}

.dot-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsl(220, 15%, 88%, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, hsl(220, 15%, 88%, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 40%, transparent 100%);
}

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

.roles-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .roles-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.role-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid hsl(220, 15%, 88%, 0.6);
  background-color: hsl(0, 0%, 100%, 0.8);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  box-shadow: 0 8px 32px -8px hsl(220, 30%, 10%, 0.1);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.role-card:hover {
  box-shadow: 0 16px 48px -12px hsl(220, 30%, 10%, 0.18);
  transform: translateY(-4px);
}

.role-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: hsl(230, 70%, 55%, 0.1);
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}

.role-card:hover .role-icon {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.role-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.role-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.role-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
  margin-bottom: 1.5rem;
}

.role-features li {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.role-features svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.role-badge {
  padding-top: 1rem;
  border-top: 1px solid hsl(220, 15%, 88%, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.about {
  padding: 7rem 0;
  background: hsl(228, 28%, 12%);
  position: relative;
  overflow: hidden;
}

/* Left purple glow blob */
.about::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(250,70%,55%,.35) 0%, transparent 70%);
  pointer-events: none;
}

/* Bottom-right purple glow blob */
.about::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(270,65%,50%,.28) 0%, transparent 70%);
  pointer-events: none;
}

/* Top-right dot grid box */
.about-grid-deco {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 320px;
  height: 240px;
  background-image: radial-gradient(circle, hsla(220,20%,100%,.18) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom left, black 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom left, black 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

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

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* Left — content */
.about-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: hsla(230,70%,60%,.12);
  border: 1px solid hsla(230,70%,60%,.25);
  border-radius: 20px;
  padding: .3rem .9rem;
  margin-bottom: 1.5rem;
}

.about-heading {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 1.5rem;
}

@media (max-width: 900px) {
  .about-heading { font-size: 2rem; }
}

.about-heading-accent {
  color: hsl(230, 70%, 65%);
}

.about-text-large {
  font-size: 1rem;
  color: hsl(220, 20%, 70%);
  line-height: 1.7;
  margin-bottom: 1.125rem;
}

.about-text {
  font-size: .9375rem;
  color: hsl(220, 15%, 58%);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(220,20%,100%,.08);
}

@media (max-width: 480px) {
  .about-stats { gap: 1.5rem; }
}

.about-stat-num {
  display: block;
  font-size: 1.875rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: .35rem;
}

.about-stat-lbl {
  display: block;
  font-size: .78rem;
  color: hsl(220, 15%, 55%);
  line-height: 1.3;
}

/* Right — cards column */
.about .about-cards {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.about .about-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #1e2236 !important;
  border: 1px solid #2d3150 !important;
  border-radius: 16px !important;
  padding: 1.375rem 1.375rem 1.5rem !important;
  box-shadow: none !important;
  transition: background .2s, border-color .2s;
}

.about .about-card:hover {
  background: #232844 !important;
  border-color: #3d4580 !important;
}

/* Our Advantage — purple-tinted */
.about .about-card-accent {
  background: #1a1f52 !important;
  border-color: #2d3480 !important;
}

.about .about-card-accent:hover {
  background: #1e2460 !important;
}

.about-card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, hsl(245,70%,55%), hsl(260,65%,65%));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px hsla(250,70%,50%,.35);
}

.about-card-icon-green {
  background: linear-gradient(135deg, hsl(150,60%,38%), hsl(160,55%,48%));
  box-shadow: 0 4px 12px hsla(150,60%,38%,.35);
}

.about-card-body { flex: 1; }

.about .about-card-title {
  font-size: .9375rem;
  font-weight: 700;
  color: #fff !important;
  margin: 0 0 .4rem;
}

.about .about-card-desc {
  font-size: .8125rem;
  color: hsl(220, 15%, 58%) !important;
  line-height: 1.6;
  margin: 0;
}

.faq {
  padding: 6rem 0;
  background-color: hsl(220, 15%, 94%, 0.3);
}

@media (min-width: 1024px) {
  .faq {
    padding: 8rem 0;
  }
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  border-radius: 12px;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 0 1.5rem;
  box-shadow: var(--shadow-card);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--card-foreground);
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.accordion-trigger:hover {
  color: var(--accent);
}

.accordion-icon {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
  padding-bottom: 1rem;
}

.cta {
  padding: 6rem 0;
  background-color: var(--background);
}

@media (min-width: 1024px) {
  .cta {
    padding: 8rem 0;
  }
}

.cta-box {
  position: relative;
  border-radius: 24px;
  background: var(--hero-gradient);
  padding: 3rem;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta-box {
    padding: 5rem;
  }
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, hsl(38, 95%, 55%, 0.08), transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-text {
  font-size: 1.125rem;
  color: hsl(40, 100%, 97%, 0.6);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

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

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.footer {
  background-color: var(--primary);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-text {
  color: var(--primary-foreground);
}

.footer-desc {
  font-size: 0.875rem;
  color: hsl(40, 100%, 97%, 0.5);
  line-height: 1.6;
}

.footer-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: hsl(40, 100%, 97%, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(40, 100%, 97%, 0.1);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: hsl(40, 100%, 97%, 0.4);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  font-size: 0.875rem;
  color: hsl(40, 100%, 97%, 0.4);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--accent);
}

html {
  scroll-behavior: smooth;
}

/* Hero2 Styles for home2.html */
.hero2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
  background-color: var(--card);
}

.hero2-dots {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: radial-gradient(circle at 1px 1px, var(--foreground) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero2-bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.hero2-bubble-1 {
  top: 40px;
  right: 8%;
  width: 400px;
  height: 400px;
  background-color: var(--accent);
  opacity: 0.08;
}

.hero2-bubble-2 {
  bottom: 64px;
  left: 3%;
  width: 300px;
  height: 300px;
  background-color: hsl(280, 67%, 55%);
  opacity: 0.06;
  animation: float 10s ease-in-out 3s infinite;
}

.hero2-bubble-3 {
  top: 40%;
  left: 45%;
  width: 200px;
  height: 200px;
  background-color: var(--accent);
  opacity: 0.05;
  animation: float 12s ease-in-out 1s infinite;
}

.hero2-bubble-4 {
  top: 15%;
  left: 20%;
  width: 120px;
  height: 120px;
  background-color: hsl(200, 80%, 60%);
  opacity: 0.07;
  animation: float 7s ease-in-out 2s infinite;
}

.hero2-bubble-5 {
  bottom: 30%;
  right: 15%;
  width: 160px;
  height: 160px;
  background-color: hsl(260, 60%, 65%);
  opacity: 0.06;
  animation: float 9s ease-in-out 4s infinite;
}

.hero2-deco {
  position: absolute;
  border-radius: 50%;
  animation: float 5s ease-in-out infinite;
}

.hero2-deco-1 {
  top: 128px;
  left: 12%;
  width: 12px;
  height: 12px;
  background-color: hsl(230, 70%, 55%, 0.2);
}

.hero2-deco-2 {
  top: 60%;
  right: 5%;
  width: 8px;
  height: 8px;
  background-color: hsl(230, 70%, 55%, 0.3);
  animation: float 4s ease-in-out 1s infinite;
}

.hero2-deco-3 {
  bottom: 128px;
  left: 30%;
  width: 16px;
  height: 16px;
  background-color: hsl(230, 70%, 55%, 0.15);
  animation: float 6s ease-in-out 2s infinite;
}

.hero2-deco-4 {
  top: 25%;
  right: 25%;
  width: 10px;
  height: 10px;
  background-color: hsl(230, 70%, 55%, 0.2);
  animation: float 7s ease-in-out 3s infinite;
}

.hero2-deco-5 {
  bottom: 20%;
  right: 35%;
  width: 12px;
  height: 12px;
  border: 1px solid hsl(230, 70%, 55%, 0.2);
  background: transparent;
  animation: float 8s ease-in-out 1.5s infinite;
}

.hero2-deco-6 {
  top: 50%;
  left: 8%;
  width: 8px;
  height: 8px;
  border: 1px solid hsl(230, 70%, 55%, 0.25);
  background: transparent;
  animation: float 5s ease-in-out 2.5s infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero2-content {
  position: relative;
  padding: 4rem 0;
}

.hero2-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}

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

.hero2-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero2-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero2-title {
    font-size: 3.75rem;
  }
}

.hero2-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero2-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1.5rem;
  margin-bottom: 2.5rem;
}

.checklist-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.checklist-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero2-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero2-buttons {
    flex-direction: row;
  }
}

.hero2-btn-primary {
  transition: all 0.3s;
}

.hero2-btn-primary:hover {
  box-shadow: 0 16px 48px -12px hsl(230, 70%, 55%, 0.4);
  transform: translateY(-2px);
}

.hero2-btn-primary svg {
  transition: transform 0.3s;
}

.hero2-btn-primary:hover svg {
  transform: translateX(4px);
}

.hero2-btn-secondary {
  border: 1px solid var(--border);
  color: var(--foreground);
  background-color: transparent;
  transition: all 0.3s;
}

.hero2-btn-secondary:hover {
  background-color: var(--muted);
  transform: translateY(-2px);
}

.hero2-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero2-stat {
  display: flex;
  flex-direction: column;
}

.hero2-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.hero2-stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.hero2-visual {
  position: relative;
}

.hero2-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero2-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--muted-foreground);
  cursor: pointer;
}

.hero2-tab:hover {
  background-color: var(--muted);
}

.hero2-tab.active {
  background-color: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-elevated);
  border-color: var(--accent);
}

.hero2-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  transition: box-shadow 0.5s;
}

.hero2-image-wrapper:hover {
  box-shadow: 0 20px 60px -10px hsl(220, 30%, 10%, 0.2);
}

.hero2-image {
  width: 100%;
  height: auto;
  display: none;
  transition: all 0.5s;
  opacity: 0;
  transform: scale(0.98);
}

.hero2-image.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.hero2-float-card {
  position: absolute;
  border-radius: 12px;
  background-color: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elevated);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 6s ease-in-out infinite;
  z-index: 10;
}

.hero2-float-card-1 {
  left: -16px;
  top: 33.333%;
}

.hero2-float-card-2 {
  right: -8px;
  bottom: 48px;
  animation: float 6s ease-in-out 2s infinite;
}

.float-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: hsl(230, 70%, 55%, 0.1);
  color: var(--accent);
  flex-shrink: 0;
}

.float-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.float-card-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.float-card-accent {
  color: var(--accent);
  font-weight: 500;
}

@media (max-width: 1023px) {
  .hero2-float-card {
    display: none;
  }
}

/* ===============================================
   PRICING PAGE STYLES
   =============================================== */

.pricing-page {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.pricing-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.pricing-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.pricing-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* Billing Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.toggle-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.toggle-label.active {
  color: var(--foreground);
}

.toggle-button {
  position: relative;
  height: 1.75rem;
  width: 3rem;
  border-radius: 9999px;
  background-color: var(--border);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.toggle-button.active {
  background-color: var(--accent);
}

.toggle-slider {
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 50%;
  background-color: var(--card);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.toggle-button.active .toggle-slider {
  transform: translateX(1.25rem);
}

.toggle-save {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pricing Card */
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.pricing-card:hover {
  box-shadow: var(--shadow-elevated);
}

.pricing-card-popular {
  border-color: var(--accent);
  background-color: var(--card);
  box-shadow: var(--shadow-elevated);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background-color: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.pricing-card-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.pricing-card-price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.price-period {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
}

.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.pricing-card-features svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Auth Page Styles */
.auth-page {
  min-height: 100vh;
  background-color: var(--background);
}

.auth-container {
  padding-top: 7rem;
  padding-bottom: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.auth-box {
  max-width: 28rem;
  margin: 0 auto;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-icon {
  display: inline-flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background-color: var(--accent);
  margin-bottom: 1rem;
}

.auth-icon svg {
  height: 1.75rem;
  width: 1.75rem;
  color: var(--accent-foreground);
}

.auth-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  color: var(--muted-foreground);
}

.auth-card {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background-color: rgba(var(--card-rgb), 0.8);
  backdrop-filter: blur(12px);
  padding: 2rem;
  box-shadow: var(--shadow-elevated);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: rgba(var(--muted-rgb), 0.5);
  font-size: 0.875rem;
  color: var(--foreground);
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}

.password-toggle:hover {
  color: var(--foreground);
}

.forgot-password {
  font-size: 0.75rem;
  color: var(--accent);
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

.auth-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.auth-footer a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}


/* ===============================================
   REGISTRATION STEP CIRCLES
   =============================================== */

.step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: var(--muted);
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
}

.step-circle.active {
  background-color: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 0 0 4px hsl(230, 70%, 55%, 0.1);
}

.step-circle.completed {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.step-circle svg {
  width: 1rem;
  height: 1rem;
}


/* ===============================================
   CUSTOM PLAN BUILDER
   =============================================== */

.base-plan-btn {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.base-plan-btn:hover {
  border-color: hsl(var(--accent) / 0.4);
}

.base-plan-btn.active {
  border-color: var(--accent);
  background: hsl(var(--accent) / 0.05);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.addon-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.addon-card:hover {
  border-color: hsl(var(--accent) / 0.4);
}

.addon-card.active {
  border-color: var(--accent);
  background: hsl(var(--accent) / 0.05);
}

.addon-qty-btn {
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.addon-qty-btn:hover {
  background: hsl(var(--accent) / 0.1);
}

.addon-remove:hover {
  color: var(--destructive) !important;
}


/* ===============================================
   PAGE COMPONENTS (Compare, About, FAQ)
   =============================================== */

/* Page Hero */
.page-hero {
  padding: 6rem 0 4rem;
  background: var(--gradient-dark);
  color: white;
  text-align: center;
}

.page-hero-content {
  max-width: 48rem;
  margin: 0 auto;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.page-hero-description {
  font-size: 1.25rem;
  color: hsl(0, 0%, 80%);
  line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
  padding: 4rem 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.comparison-table thead {
  background: var(--muted);
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.table-header-feature {
  text-align: left;
  width: 35%;
}

.table-header-highlight {
  background: var(--accent);
  color: var(--accent-foreground);
  position: relative;
}

.feature-name {
  text-align: left;
  font-weight: 500;
}

.status-cell {
  vertical-align: middle;
}

.icon-check {
  color: hsl(142, 76%, 36%);
  display: inline-block;
}

.icon-x {
  color: hsl(0, 84%, 60%);
  display: inline-block;
}

.icon-minus {
  color: var(--muted-foreground);
  display: inline-block;
}

.price-text {
  font-weight: 600;
  color: var(--foreground);
}

.comparison-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--muted);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.comparison-cta-content {
  flex: 1;
  min-width: 300px;
}

.comparison-cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.comparison-cta-description {
  color: var(--muted-foreground);
}

.comparison-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* About Page */
.about-story {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-text {
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

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

.about-values {
  padding: 4rem 0;
  background: var(--muted);
}

/* old about-cards removed — replaced by .about section styles above */

.about-features {
  padding: 4rem 0;
}

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

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--muted);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.about-cta {
  padding: 4rem 0;
}

.cta-box {
  padding: 3rem;
  background: var(--gradient-dark);
  color: white;
  border-radius: 1.5rem;
  text-align: center;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: hsl(0, 0%, 80%);
}

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

/* FAQ Page */
.faq-section {
  padding: 4rem 0;
}

.faq-categories {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-category-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 2rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.faq-category-btn:hover {
  border-color: var(--accent);
  background: hsl(var(--accent) / 0.05);
}

.faq-category-btn.active {
  background: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
}

.faq-cta {
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--muted);
  border-radius: 1rem;
  text-align: center;
}

.faq-cta-content {
  margin-bottom: 2rem;
}

.faq-cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.faq-cta-description {
  color: var(--muted-foreground);
}

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

/* Container Narrow */
.container-narrow {
  max-width: 56rem;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 0 3rem;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .page-hero-description {
    font-size: 1rem;
  }

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

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

  .comparison-cta {
    flex-direction: column;
    text-align: center;
  }

  .comparison-cta-actions {
    justify-content: center;
  }

  .cta-box {
    padding: 2rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .comparison-cta-title {
    font-size: 1.25rem;
  }

  .faq-cta {
    padding: 2rem;
  }
}

/* Features Page FAQ */
.features-faq {
  padding: 5rem 0;
  background: var(--muted, #f8fafc);
  border-top: 1px solid var(--border, #e2e8f0);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.faq-item:hover {
  border-color: #c7d2fe;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.06);
}

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

.faq-question:hover {
  background: #f8fafc;
}

.faq-question[aria-expanded="true"] {
  background: #f8fafc;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  transition: transform 0.25s, background 0.2s, color 0.2s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: #eef2ff;
  color: #6366f1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.925rem;
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .features-faq {
    padding: 3.5rem 0;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 1rem 1.25rem;
  }

  .faq-answer.open {
    padding: 0 1.25rem 1rem;
  }
}
