/* =========================
   DESIGN SYSTEM – GLOBAL
   ========================= */

:root {
  --color-primary: #114a7a;
  --color-primary-dark: #0b3658;
  --color-accent: #f39c12;
  --color-bg-light: #f5f7fa;
  --color-bg-soft: #f9fafc;
  --color-text: #333333;
  --color-muted: #777777;
  --max-width: 1120px;
  --radius-card: 10px;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  background: #ffffff;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================
   HEADER & NAV
   ========================= */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e4e8ee;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 40px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 500;
}
.nav-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-cta {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--color-primary);
  color: #ffffff;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease,
    box-shadow 0.18s ease;
  box-shadow: 0 6px 16px rgba(17, 74, 122, 0.25);
}
.nav-cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  text-decoration: none;
}

/* MOBILE NAV TOGGLE */

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #d0d6df;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #ffffff;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--color-primary-dark);
  display: block;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--color-primary-dark);
}
.nav-toggle span::before {
  top: -5px;
}
.nav-toggle span::after {
  top: 5px;
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, transform 0.12s ease,
    box-shadow 0.18s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(243, 156, 18, 0.35);
}
.btn-primary:hover {
  background: #d98300;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  box-shadow: none;
}
.btn-ghost:hover {
  background: rgba(17, 74, 122, 0.06);
  text-decoration: none;
}

/* =========================
   HERO – HOME & GENERIC
   ========================= */

.hero {
  position: relative;
  background: url('/images/car-rental-software-hero.jpg') center center /
    cover no-repeat;
  color: #ffffff;
  padding: 80px 0 72px;
  margin-bottom: 40px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 96, 210, 0.28), transparent 55%),
    linear-gradient(135deg, #003985 0%, #002c63 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 10px;
}
.hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 700;
}
.hero-lead {
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 18px;
  opacity: 0.96;
}
.hero-bullets {
  list-style: none;
  margin-bottom: 22px;
}
.hero-bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 0.96rem;
}
.hero-bullets li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  font-size: 1.2rem;
  color: var(--color-accent);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.hero-subtext {
  font-size: 0.88rem;
  opacity: 0.9;
}

/* HERO SIDE CARD (used on home + some pages) */

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  padding: 22px 22px 18px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}
.hero-card h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--color-primary-dark);
}
.hero-card p {
  font-size: 0.94rem;
  margin-bottom: 10px;
}

/* attractive bullet style inside hero card */
.hero-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 8px;
  font-size: 0.92rem;
}
.hero-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
}
.hero-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003985, #0a5ab7);
  box-shadow: 0 0 0 3px rgba(17, 74, 122, 0.08);
}

.pill-list {
  margin: 6px 0 6px;
}
.pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: #eef2f7;
  font-size: 0.82rem;
  color: var(--color-primary-dark);
  margin: 2px;
}

/* =========================
   FEATURE / PRODUCT HERO
   (used for features, simple pricing, etc.)
   ========================= */

.feature-hero {
  background: linear-gradient(135deg, #003985 0%, #001e4e 100%);
  color: #ffffff;
  padding: 56px 0 52px;
}
.feature-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}
.feature-hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 8px;
}
.feature-hero-title {
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 10px;
  font-weight: 700;
}
.feature-hero-lead {
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 14px;
}
.feature-hero-meta {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 6px;
}

.hero-taglist {
  margin-top: 6px;
}
.tag {
  display: inline-block;
  padding: 3px 9px;
  margin: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* =========================
   GENERIC SECTIONS
   ========================= */

.section {
  padding: 28px 0 34px;
}
.section--soft {
  background: var(--color-bg-soft);
}
.section-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--color-primary-dark);
}
.section-subtitle {
  font-size: 0.98rem;
  color: var(--color-muted);
  margin-bottom: 16px;
}
.section-anchor {
  scroll-margin-top: 80px;
}

/* GRID HELPERS */

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.section-grid-2-1 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
}
.section-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* FEATURE CARD GRID (used on features, etc.) */

.feature-category-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 14px 14px 12px;
  position: relative;
}
.feature-card::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #003985, #0a5ab7);
  box-shadow: 0 0 0 3px rgba(17, 74, 122, 0.12);
}
.feature-card h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
  color: var(--color-primary-dark);
}
.feature-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

.feature-list,
.feature-list-small {
  list-style: none;
  padding-left: 0;
  font-size: 0.94rem;
  margin-top: 8px;
}
.feature-list li,
.feature-list-small li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}
.feature-list li::before,
.feature-list-small li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
}

/* Badges / pills */

.badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.8rem;
  border-radius: 999px;
  background: #eef2f7;
  color: var(--color-primary-dark);
  margin-right: 6px;
  margin-bottom: 4px;
}

/* Misc */

.center {
  text-align: center;
}
.muted {
  color: var(--color-muted);
}
.note,
.pill-note {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 4px;
}

.testimonial {
  font-style: italic;
  font-size: 0.94rem;
  border-left: 3px solid #dde3ee;
  padding-left: 10px;
  margin-bottom: 10px;
  color: var(--color-text);
}

.faq dt {
  font-weight: 600;
  margin-top: 8px;
  color: var(--color-primary-dark);
}
.faq dd {
  margin-left: 0;
  margin-bottom: 6px;
  font-size: 0.94rem;
}

/* =========================
   TABLE OF CONTENTS STRIP
   (features page)
   ========================= */

.toc-strip {
  background: var(--color-bg-light);
  padding: 14px 0;
  font-size: 0.92rem;
}
.toc-strip h2 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--color-primary-dark);
}
.toc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.toc-links a {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #d3d9e4;
  background: #ffffff;
  font-size: 0.85rem;
  color: var(--color-primary-dark);
}

/* =========================
   FOOTER
   ========================= */

footer {
  background: #f5f5f5;
  padding: 18px 0;
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 960px) {
  .hero-inner,
  .feature-hero-inner,
  .section-grid,
  .section-grid-2-1,
  .section-grid-3 {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 72px;
  }
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    padding: 12px 16px 16px;
    border-bottom: 1px solid #e4e8ee;
    display: none;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-toggle {
    display: inline-flex;
  }

  .hero-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 64px 0 56px;
  }
  .hero-title,
  .feature-hero-title {
    font-size: 1.9rem;
  }
  .hero-ctas,
  .feature-hero .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}
header.header-scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
/* ======================================
   PRICING PLANS (pricing.html)
   ====================================== */
 <>
        /* Scoped styles for pricing page */
        .crs-pricing-page {
            font-family: Arial, sans-serif;
            color: #222;
            padding: 40px 20px 60px;
        }

        .crs-container {
            max-width: 1120px;
            margin: 0 auto;
        }

        .crs-page-eyebrow {
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-size: 0.8rem;
            font-weight: 600;
            color: #0077cc;
            margin-bottom: 0.4rem;
        }

        .crs-page-title {
            font-size: 2.1rem;
            margin: 0 0 0.5rem;
        }

        .crs-page-subtitle {
            font-size: 1rem;
            max-width: 720px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 1.2rem;
        }

        .crs-hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            margin-bottom: 2rem;
            font-size: 0.95rem;
            color: #444;
        }

        .crs-hero-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .crs-hero-meta strong {
            font-weight: 600;
        }

        .crs-hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 2.8rem;
        }

        .crs-btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 4px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid transparent;
            cursor: pointer;
            white-space: nowrap;
        }

        .crs-btn-primary {
            background: #0077cc;
            color: #fff;
            border-color: #0077cc;
        }

        .crs-btn-primary:hover {
            background: #005fa3;
            border-color: #005fa3;
        }

        .crs-btn-outline {
            background: #fff;
            color: #0077cc;
            border-color: #c7d8e8;
        }

        .crs-btn-outline:hover {
            border-color: #0077cc;
        }

        /* Pricing grid */
        .crs-pricing-section {
            margin-bottom: 3.5rem;
        }

        .crs-section-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .crs-section-subtitle {
            font-size: 0.98rem;
            margin-bottom: 1.8rem;
            color: #555;
            max-width: 720px;
        }

        .crs-pricing-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .crs-pricing-card {
            flex: 1 1 260px;
            background: #fff;
            border-radius: 8px;
            border: 1px solid #e1e4ea;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
            padding: 20px 20px 22px;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .crs-pricing-card--popular {
            border: 2px solid #0077cc;
            box-shadow: 0 6px 24px rgba(0, 86, 179, 0.12);
        }

        .crs-popular-badge {
            position: absolute;
            top: 14px;
            right: 16px;
            background: #0077cc;
            color: #fff;
            font-size: 0.75rem;
            padding: 4px 8px;
            border-radius: 999px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .crs-plan-label {
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.12em;
            font-weight: 600;
            color: #888;
            margin-bottom: 4px;
        }

        .crs-plan-name {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .crs-plan-tagline {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 10px;
        }

        .crs-plan-price {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .crs-plan-price span {
            font-size: 0.9rem;
            font-weight: 500;
            color: #555;
        }

        .crs-plan-note {
            font-size: 0.8rem;
            color: #777;
            margin-bottom: 16px;
        }

        .crs-plan-divider {
            border-top: 1px solid #eceff4;
            margin: 10px 0 14px;
        }

        .crs-feature-list {
            list-style: none;
            padding-left: 0;
            margin: 0 0 16px;
            font-size: 0.9rem;
            color: #333;
        }

        .crs-feature-list li {
            margin-bottom: 6px;
            position: relative;
            padding-left: 18px;
        }

        .crs-feature-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
            color: #0077cc;
        }

        .crs-card-footer {
            margin-top: auto;
            padding-top: 10px;
        }

        .crs-card-footer small {
            display: block;
            margin-top: 8px;
            font-size: 0.78rem;
            color: #777;
        }

        /* All plans include */
        .crs-all-include {
            margin-bottom: 3rem;
        }

        .crs-all-include-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }

        .crs-pill {
            font-size: 0.85rem;
            border-radius: 999px;
            border: 1px solid #d6dde8;
            padding: 6px 12px;
            background: #f7f9fc;
            color: #333;
        }

        /* Comparison table */
        .crs-compare-section {
            margin-bottom: 3.5rem;
        }

        .crs-compare-table-wrapper {
            overflow-x: auto;
            border-radius: 6px;
            border: 1px solid #e1e4ea;
            background: #fff;
        }

        table.crs-compare-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.85rem;
        }

        table.crs-compare-table th,
        table.crs-compare-table td {
            padding: 10px 12px;
            border-bottom: 1px solid #f0f2f7;
            text-align: left;
        }

        table.crs-compare-table th {
            background: #f7f9fc;
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        table.crs-compare-table tr:last-child td {
            border-bottom: none;
        }

        table.crs-compare-table td.crs-check {
            text-align: center;
            font-size: 1rem;
        }

        /* FAQ */
        .crs-faq-section {
            margin-bottom: 3rem;
        }

        .crs-faq-item {
            margin-bottom: 14px;
        }

        .crs-faq-question {
            font-weight: 600;
            font-size: 0.98rem;
        }

        .crs-faq-answer {
            font-size: 0.9rem;
            color: #444;
            margin-top: 4px;
        }

        /* Bottom CTA */
        .crs-bottom-cta {
            border-radius: 8px;
            background: #f3f7fc;
            border: 1px solid #d1ddf0;
            padding: 20px 18px;
        }

        .crs-bottom-cta h3 {
            margin-top: 0;
            margin-bottom: 6px;
            font-size: 1.2rem;
        }

        .crs-bottom-cta p {
            margin: 0 0 12px;
            font-size: 0.95rem;
            color: #444;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .crs-pricing-page {
                padding: 24px 16px 40px;
            }

            .crs-hero-cta {
                flex-direction: column;
                align-items: flex-start;
            }

            .crs-pricing-card {
                flex: 1 1 100%;
            }

            table.crs-compare-table th,
            table.crs-compare-table td {
                padding: 8px 10px;
            }
        }
    

