/* ================================
   Prospect Partners - Main Styles
   Steel Blue Color Scheme
   ================================ */

/* CSS Variables - Design System */
:root {
  /* Colors - Deep & Rich palette with Steel Blue accent */
  --color-navy: #0f2744;           /* Deeper, more saturated navy */
  --color-navy-dark: #091a2e;      /* Near-black navy for depth */
  --color-navy-mid: #1a3a5c;       /* Mid-tone for gradients */
  --color-charcoal: #2c3e50;       /* Rich charcoal with blue undertone */
  --color-off-white: #f8fafc;
  --color-cream: #fefefe;
  --color-warm-white: #ffffff;
  --color-teal: #4682b4;           /* Steel blue - classic, clean */
  --color-teal-dark: #3a6d99;      /* Deeper steel */
  --color-teal-light: #e6eff5;     /* Soft steel tint */
  --color-accent: #5a9bd4;         /* Brighter for hover */
  --color-warm-grey: #64748b;
  --color-success-green: #10b981;
  --color-white: #ffffff;
  --color-light-grey: #e2e8f0;
  --color-dark-text: #0f172a;      /* Near-black for strong text */
  --color-mid-text: #475569;

  /* Shadows - deeper for more dimension */
  --shadow-sm: 0 1px 3px rgba(15, 39, 68, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(15, 39, 68, 0.12), 0 2px 4px -1px rgba(15, 39, 68, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(15, 39, 68, 0.15), 0 4px 6px -2px rgba(15, 39, 68, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(15, 39, 68, 0.18), 0 10px 10px -5px rgba(15, 39, 68, 0.08);

  /* Spacing - 8px base unit */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  --space-xxxl: 96px;

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Container */
  --container-max-width: 1200px;
  --container-padding: 24px;
}

/* ================================
   Reset & Base Styles
   ================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-dark-text);
  background-color: var(--color-cream);
}

@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }
}

/* ================================
   Typography
   ================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: var(--space-m);
  color: var(--color-navy);
}

h1 {
  font-size: 3rem;
  font-weight: 700;  /* Bolder for impact */
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

h6 {
  font-size: 1.125rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

p {
  margin-bottom: var(--space-m);
}

a {
  color: var(--color-teal-dark);
  text-decoration: none;
  transition: color 200ms ease;
}

a:hover {
  color: var(--color-teal);
}

/* ================================
   Layout
   ================================ */

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

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

section {
  padding: var(--space-xxxl) 0;
}

@media (max-width: 1024px) {
  section {
    padding: var(--space-xxl) 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--space-xl) 0;
  }
}

/* ================================
   Header & Navigation
   ================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: box-shadow 300ms ease, background-color 300ms ease;
  border-bottom: 1px solid rgba(15, 39, 68, 0.05);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-l);
  list-style: none;
}

.nav-menu a {
  color: var(--color-dark-text);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-teal);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-teal-dark));
  transition: width 300ms ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.phone-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  color: var(--color-white) !important;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 4px 12px rgba(70, 130, 180, 0.35);
}

.phone-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(70, 130, 180, 0.5);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-navy);
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-xl);
    transition: right 300ms ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    color: var(--color-white);
    font-size: 1.5rem;
  }

  .nav-menu a::after {
    background: var(--color-teal);
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .phone-button {
    font-size: 1.25rem;
    padding: var(--space-s) var(--space-l);
  }
}

/* Skip main content padding for fixed header */
main {
  padding-top: 80px;
}

/* ================================
   Buttons
   ================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 200ms ease;
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(70, 130, 180, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(70, 130, 180, 0.5);
}

.btn-primary:focus {
  outline: 3px solid var(--color-teal);
  outline-offset: 3px;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
  padding: 14px 30px;
}

.btn-secondary:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-secondary:focus {
  outline: 3px solid var(--color-navy);
  outline-offset: 3px;
}

/* Light variant for dark backgrounds */
.hero .btn-secondary {
  color: var(--color-white);
  border-color: var(--color-white);
  background-color: transparent;
}

.hero .btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
}

/* ================================
   Cards
   ================================ */

.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-radius: 12px;
  padding: var(--space-l);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 300ms ease, transform 300ms ease, border-color 300ms ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-teal-light);
}

.card-icon {
  width: 44px;
  height: 44px;
  color: var(--color-teal);
  margin-bottom: var(--space-m);
}

.card h3 {
  margin-bottom: var(--space-s);
}

.card p {
  color: var(--color-mid-text);
  font-size: 1rem;
  margin-bottom: 0;
}

/* ================================
   Grid Layouts
   ================================ */

.grid {
  display: grid;
  gap: var(--space-l);
}

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

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

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

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

/* ================================
   Hero Section
   ================================ */

.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-dark) 60%, #061018 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  padding: var(--space-xxl) var(--space-m);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(70, 130, 180, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(70, 130, 180, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(70, 130, 180, 0.06) 0%, transparent 70%);
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: var(--space-xl);
}

.hero h1 {
  color: var(--color-white);
  font-size: 4rem;
  margin-bottom: var(--space-m);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  gap: var(--space-m);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.25rem;
  }

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

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ================================
   Sections with Background Colors
   ================================ */

.section-grey {
  background: linear-gradient(180deg, #f1f5f9 0%, var(--color-cream) 100%);
}

.section-white {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 100%);
}

.section-navy {
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-white);
  position: relative;
}

.section-navy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(70, 130, 180, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.section-navy h2,
.section-navy h3 {
  color: var(--color-white);
}

.section-navy p {
  color: rgba(255, 255, 255, 0.9);
}

.section-teal {
  background: linear-gradient(160deg, var(--color-teal) 0%, var(--color-teal-dark) 50%, #2d5a7b 100%);
  color: var(--color-white);
  position: relative;
}

.section-teal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.section-teal h2,
.section-teal h3 {
  color: var(--color-white);
}

.section-teal p {
  color: var(--color-white);
}

/* ================================
   Text Utilities
   ================================ */

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

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

.section-intro {
  font-size: 1.25rem;
  color: var(--color-mid-text);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

/* ================================
   Footer
   ================================ */

footer {
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-off-white);
  padding: var(--space-xl) 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(70, 130, 180, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  list-style: none;
  justify-content: center;
}

.footer-links li:not(:last-child)::after {
  content: '|';
  margin-left: var(--space-s);
  color: var(--color-warm-grey);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 200ms ease;
}

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

.footer-phone {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer-phone:hover {
  color: var(--color-teal);
}

footer p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-warm-grey);
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: var(--space-s);
  }

  .footer-links li::after {
    display: none;
  }
}

/* ================================
   Forms
   ================================ */

.form-group {
  margin-bottom: var(--space-m);
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-charcoal);
}

label .required {
  color: var(--color-teal);
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-light-grey);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(70, 130, 180, 0.18), var(--shadow-sm);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: var(--space-xs);
  display: none;
}

.form-error.visible {
  display: block;
}

.success-message {
  background-color: #d1fae5;
  border: 2px solid #10b981;
  color: #065f46;
  padding: var(--space-m);
  border-radius: 8px;
  text-align: center;
}

.success-message h3 {
  color: #065f46;
  margin-bottom: var(--space-s);
}

.success-message p {
  margin: 0;
}

/* ================================
   Icon Utilities
   ================================ */

.icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.icon-lg {
  width: 44px;
  height: 44px;
}

/* ================================
   Accessibility
   ================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 2px;
}

/* ================================
   Responsive Utilities
   ================================ */

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }
}

/* ================================
   Loading State
   ================================ */

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.spinner {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================================
   Content Type Badges
   ================================ */

/* Tech Badge - for tech/tools content */
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-badge svg {
  width: 14px;
  height: 14px;
}

/* Advisory Badge - for commercial/advisory content */
.advisory-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.advisory-badge svg {
  width: 14px;
  height: 14px;
}

/* ================================
   Article Styles
   ================================ */

.article-meta {
  display: flex;
  gap: var(--space-m);
  color: var(--color-mid-text);
  font-size: 0.9rem;
  margin-bottom: var(--space-l);
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-m);
}

.article-content h3 {
  margin-top: var(--space-l);
  margin-bottom: var(--space-s);
}

.article-content ul,
.article-content ol {
  margin-bottom: var(--space-m);
  padding-left: var(--space-l);
}

.article-content li {
  margin-bottom: var(--space-xs);
}

.article-content blockquote {
  border-left: 4px solid var(--color-teal);
  padding-left: var(--space-m);
  margin: var(--space-l) 0;
  font-style: italic;
  color: var(--color-mid-text);
}

/* Key Takeaways Box */
.key-takeaways {
  background: linear-gradient(135deg, var(--color-teal-light) 0%, #f0f7fa 100%);
  border: 1px solid var(--color-teal);
  border-radius: 12px;
  padding: var(--space-l);
  margin: var(--space-xl) 0;
}

.key-takeaways h3 {
  color: var(--color-navy);
  margin-bottom: var(--space-m);
}

.key-takeaways ul {
  margin: 0;
  padding-left: var(--space-m);
}

.key-takeaways li {
  margin-bottom: var(--space-s);
  color: var(--color-dark-text);
}

/* Insight Cards Grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-l);
}

.insight-card {
  background: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-radius: 12px;
  padding: var(--space-l);
  transition: all 300ms ease;
}

.insight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-teal-light);
}

.insight-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-s);
}

.insight-card h3 a {
  color: var(--color-navy);
  text-decoration: none;
}

.insight-card h3 a:hover {
  color: var(--color-teal);
}

.insight-card p {
  color: var(--color-mid-text);
  font-size: 0.95rem;
  margin-bottom: var(--space-m);
}

.insight-card .read-more {
  color: var(--color-teal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.insight-card .read-more:hover {
  color: var(--color-teal-dark);
}

/* Coming Soon Card */
.insight-card.coming-soon {
  background: var(--color-off-white);
  border-style: dashed;
}

.insight-card.coming-soon h3 {
  color: var(--color-mid-text);
}

.coming-soon-badge {
  display: inline-block;
  background: var(--color-warm-grey);
  color: white;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-s);
}

/* Service Page Styles */
.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-l);
  margin: var(--space-xl) 0;
}

.feature-item {
  display: flex;
  gap: var(--space-m);
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-teal-light) 0%, #e0f0f5 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  color: var(--color-navy);
}

.feature-content p {
  color: var(--color-mid-text);
  font-size: 0.95rem;
  margin: 0;
}

/* Process Steps */
.process-steps {
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: var(--space-l);
  margin-bottom: var(--space-xl);
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(70, 130, 180, 0.35);
}

.step-content h3 {
  margin-bottom: var(--space-s);
}

.step-content p {
  color: var(--color-mid-text);
  margin: 0;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: var(--space-xxl) var(--space-l);
}

.cta-section h2 {
  margin-bottom: var(--space-m);
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto var(--space-l);
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-l);
  margin: var(--space-xl) 0;
}

.pricing-card {
  background: var(--color-white);
  border: 2px solid var(--color-light-grey);
  border-radius: 16px;
  padding: var(--space-xl);
  text-align: center;
  transition: all 300ms ease;
}

.pricing-card:hover {
  border-color: var(--color-teal);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--color-teal);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: var(--space-s);
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-m);
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-mid-text);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-l);
  text-align: left;
}

.pricing-card li {
  padding: var(--space-s) 0;
  border-bottom: 1px solid var(--color-light-grey);
  display: flex;
  align-items: center;
  gap: var(--space-s);
}

.pricing-card li:last-child {
  border-bottom: none;
}

.pricing-card li svg {
  color: var(--color-success-green);
  flex-shrink: 0;
}
