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

:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f4f6f8;
  --bg-dark: #0a2e40;
  --accent-primary: #8ABEB7; /* Pale teal accent */
  --accent-hover: #76A9A2;
  --text-main: #374151;
  --text-heading: #111827;
  --text-muted: #6b7280;
  
  /* Typography */
  --font-body: 'Montserrat', sans-serif;

  /* Shadows & Borders */
  --card-border: 1px solid #e5e7eb;
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --header-shadow: 0 2px 4px rgba(0,0,0,0.05);
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
}

/* =========================================================================
   Reset & Base
   ========================================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* =========================================================================
   Typography & Utilities
   ========================================================================= */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.text-muted { color: var(--text-muted); }

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

/* =========================================================================
   Components
   ========================================================================= */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.btn-outline:hover {
  background-color: var(--accent-primary);
  color: #ffffff;
}

.btn-white {
  background-color: #ffffff;
  color: var(--text-heading);
}

.btn-white:hover {
  background-color: #f3f4f6;
}

/* Cards (Standard Theme) */
.card {
  background: #ffffff;
  border: var(--card-border);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
}

.dark-card {
  background-color: #0b2536; /* Exact slate color used in header */
  color: #ffffff;
  border: none;
  text-align: center;
  border-radius: 8px; /* Tighter radius to match screenshot */
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); /* Stronger depth */
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.dark-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.dark-card h3 {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 1.5rem;
  font-size: 1.35rem; /* Larger */
  margin-bottom: 0.5rem;
}

.dark-card p {
  color: #f3f4f6;
  margin: 0;
  font-size: 1.05rem; /* Larger */
  font-weight: 500;
}

.feature-icon-wrapper {
  margin-bottom: 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* =========================================================================
   Layout: Header & Nav
   ========================================================================= */
header {
  width: 100%;
  background: #0B2536; /* Dark slate header */
  padding: 1.25rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 45px; /* Slightly larger to match reference */
  width: auto;
}

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

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #ffffff; /* White links on dark background */
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* =========================================================================
   Layout: Opt-in Bar
   ========================================================================= */
.optin-bar {
  background-color: var(--accent-primary);
  padding: 0.75rem 0;
  color: #0B2536;
  font-weight: 700;
  font-size: 0.9rem;
}

.optin-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.optin-container form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.optin-input {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  outline: none;
  font-family: inherit;
  font-size: 0.85rem;
}

.btn-dark {
  background-color: #0B2536;
  color: #ffffff;
  border-radius: 4px;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background-color: #000000;
}

/* =========================================================================
   Layout: Hero Section
   ========================================================================= */
.hero {
  position: relative;
  min-height: 85vh; /* Reduced height to remove empty gaps on desktop/tablet */
  display: flex;
  align-items: flex-start;
  padding-top: 5rem; /* Push text down gracefully on desktop */
  background-color: #44CEFF; /* Matches sky */
  background-image: linear-gradient(to bottom, #44CEFF 0%, rgba(68,206,255,0) 25%), url('../images/hero_bg.webp');
  background-size: 100% 30%, 100% auto; /* 100% width keeps the whole desk and whale visible on large screens */
  background-position: top center, center bottom;
  background-repeat: no-repeat, no-repeat;
}

.hero::before {
  /* Removed dark overlay so original sky color pops perfectly */
  content: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h2 {
  font-size: 1.5rem;
  color: var(--text-main);
  font-weight: 400;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
}

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

/* =========================================================================
   Sections: Features / How it works
   ========================================================================= */
section {
  padding: 5rem 0;
}

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

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

.section-header h2 {
  font-size: 2.25rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

/* =========================================================================
   Sections: Portfolio
   ========================================================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Force 4-across horizontal row */
  gap: 1.5rem;
}

.portfolio-item {
  display: block;
}

.portfolio-item img {
  width: 100%;
  transition: transform var(--transition-fast);
  /* Stripped borders/shadows to let natural PNG transparency render cleanly */
}

.portfolio-item:hover img {
  transform: translateY(-5px);
}

/* =========================================================================
   Sections: Pricing
   ========================================================================= */
.bg-blue {
  background-color: #51A4EB; /* Bright blue background */
  color: #ffffff;
}

.bg-blue .section-header h2,
.bg-blue .section-header p {
  color: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card-refined {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.pricing-header {
  padding: 2rem 1.5rem;
  text-align: center;
  color: #ffffff;
}

.pricing-header.starter { background: #000000; }
.pricing-header.pro { background: #0b2536; }
.pricing-header.premium { background: var(--accent-primary); }

.pricing-header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 800;
}

.pricing-header p {
  margin: 0.25rem 0 0 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  background: #3ac0ff;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 30px;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  letter-spacing: 1px;
}

.pricing-body {
  padding: 2.5rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
}

.price-block {
  text-align: center;
  color: #0b2536; /* Navy blue */
  margin-bottom: 2rem;
}

.price-block .currency {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: top;
  line-height: 1;
}

.price-block .amount {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}

.price-block .period {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

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

.pricing-features-list li {
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.75rem;
}

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

.pricing-features-list .check {
  color: var(--accent-primary);
}

.pricing-features-list .unavailable {
  color: #6b7280;
}

.pricing-features-list .minus {
  color: #ef4444; /* red */
}

.pricing-body .btn {
  width: 100%;
  border-radius: 4px;
  padding: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.pricing-terms {
  margin-top: 1.5rem;
  font-size: 0.65rem;
  color: #6b7280;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-terms svg {
  color: #fbbf24; /* yellow padlock */
}

/* =========================================================================
   Footer
   ========================================================================= */
footer {
  background: var(--bg-dark);
  color: #d1d5db;
  padding: 4rem 0 2rem;
}

footer h4 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  font-size: 0.875rem;
}

/* Fix mobile nav jumping button z-index */
.mobile-menu-btn {
  z-index: 1002;
  position: relative;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  .hero {
<<<<<<< Updated upstream
    min-height: 75vh;
    border-top: 10vh solid #44cdff;
    padding-top: 0;
    background-size: 100% auto;
    background-position: bottom center;
    background-color: #44cdff;
=======
    min-height: 85vh;
    padding-top: 15vh;
    background-size: 100% 30%, 250% auto; /* Scale up whale to look proportional */
    background-position: top center, center bottom;
>>>>>>> Stashed changes
  }
  
  .hero-content {
    padding-bottom: 0;
  }
  
  .hero h1 {
    font-size: 2.1rem;
    margin-bottom: 0.25rem;
  }
  
  .hero h2 {
    font-size: 1.05rem;
    padding: 0 1rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-cta {
    flex-direction: column;
    padding: 0 1.5rem;
    margin-top: 1.5rem;
  }
  
  .hero-cta .btn {
    width: 100%;
  }

  .optin-container {
    flex-direction: column;
    text-align: center;
    padding: 0 1rem;
  }

  .optin-container form {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  
  .optin-input, .btn-dark {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .header-cta {
    display: none; /* Hide header btn on small screens if too cramped */
  }

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    transition: right var(--transition-fast);
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    z-index: 1001;
  }

  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    color: var(--text-heading);
    font-size: 1.25rem;
  }

  /* When menu is active, ensure the button is dark so it's visible on white bkg */
  .mobile-menu-btn.active {
    color: var(--text-heading);
    z-index: 1002;
    position: relative;
  }

  .pricing-grid, .features-grid, .footer-grid {
    gap: 1.5rem;
  }

  .footer-grid {
    text-align: center;
  }
  
  .footer-links li {
    padding: 0.5rem 0;
  }
}

@media (max-width: 950px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr); /* Fall back to 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr; /* Stack vertically on small phones */
  }
}
/* Accessibility Widget Base Variables */
:root {
  --a11y-primary: #1d4ed8;
  --a11y-bg: #ffffff;
  --a11y-text: #1f2937;
  --a11y-border: #e5e7eb;
  --a11y-hover: #f3f4f6;
  --a11y-zindex: 999999;
}

/* Floating Button */
#a11y-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--a11y-primary);
  color: #fff;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: var(--a11y-zindex);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, background 0.3s ease;
  outline: none;
}
#a11y-toggle-btn:hover, #a11y-toggle-btn:focus-visible {
  transform: scale(1.1);
  background-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.3);
}

/* Panel Structure */
#a11y-panel {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  max-height: 80vh;
  background: var(--a11y-bg);
  color: var(--a11y-text);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: var(--a11y-zindex);
  overflow-y: auto;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
}

#a11y-panel.a11y-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

#a11y-panel-header {
  padding: 16px;
  border-bottom: 1px solid var(--a11y-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--a11y-bg);
  z-index: 2;
}

#a11y-panel-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

#a11y-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--a11y-text);
  padding: 4px;
}

#a11y-panel-content {
  padding: 16px;
}

.a11y-section-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 700;
  margin: 16px 0 8px 0;
  letter-spacing: 0.5px;
}
.a11y-section-title:first-child {
  margin-top: 0;
}

.a11y-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.a11y-btn {
  background: #f9fafb;
  border: 1px solid var(--a11y-border);
  border-radius: 8px;
  padding: 10px;
  font-size: 0.85rem;
  color: var(--a11y-text);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.a11y-btn svg {
  width: 20px;
  height: 20px;
}

.a11y-btn:hover {
  background: var(--a11y-hover);
}

.a11y-btn.a11y-active {
  background: var(--a11y-primary);
  color: #fff;
  border-color: var(--a11y-primary);
}
.a11y-btn.a11y-active svg {
    color: #fff;
}

#a11y-reset-btn {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  background: #ef4444;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

/* Modifiers */

/* Dyslexia Font */
html.a11y-dyslexia * {
  font-family: 'OpenDyslexic', 'Comic Sans MS', sans-serif !important;
}

/* High Contrast Mode */
html.a11y-high-contrast {
  filter: contrast(150%) saturate(150%);
}

/* Dark Mode Overrides */
html.a11y-dark-mode {
  filter: invert(1) hue-rotate(180deg);
}
html.a11y-dark-mode img, 
html.a11y-dark-mode video,
html.a11y-dark-mode svg,
html.a11y-dark-mode iframe {
  filter: invert(1) hue-rotate(180deg);
}

/* Light Mode (wash out dark backgrounds) */
html.a11y-light-mode {
  background-color: #ffffff !important;
  color: #000000 !important;
}
html.a11y-light-mode * {
  background-color: #ffffff !important;
  color: #000000 !important;
  border-color: #cccccc !important;
}

/* Grayscale */
html.a11y-grayscale {
  filter: grayscale(100%);
}

/* Invert */
html.a11y-invert {
  filter: invert(100%);
}
html.a11y-invert img,
html.a11y-invert video,
html.a11y-invert iframe {
  filter: invert(100%);
}

/* Highlight Links */
html.a11y-highlight-links a, html.a11y-highlight-links button {
  background-color: #ffeb3b !important;
  color: #000000 !important;
  text-decoration: underline !important;
  border: 2px solid #000000 !important;
}

/* Highlight Headings */
html.a11y-highlight-headings h1,
html.a11y-highlight-headings h2,
html.a11y-highlight-headings h3,
html.a11y-highlight-headings h4,
html.a11y-highlight-headings h5,
html.a11y-highlight-headings h6 {
  border: 2px dashed #d97706 !important;
  background-color: #fef3c7 !important;
  color: #000000 !important;
}

/* Pause Animations */
html.a11y-pause-animations * {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

/* Bigger Cursor */
html.a11y-big-cursor * {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="black" stroke="white" stroke-width="2" d="M4 2v20l6-6h10z"/></svg>') 0 0, auto !important;
}

/* Text Scaling */
html.a11y-text-1 { font-size: 105% !important; }
html.a11y-text-2 { font-size: 110% !important; }
html.a11y-text-3 { font-size: 115% !important; }
html.a11y-text-4 { font-size: 120% !important; }

/* Line Height */
html.a11y-line-height-1 * { line-height: 1.7 !important; }
html.a11y-line-height-2 * { line-height: 1.9 !important; }
html.a11y-line-height-3 * { line-height: 2.1 !important; }

/* Letter Spacing */
html.a11y-letter-spacing-1 * { letter-spacing: 0.05em !important; }
html.a11y-letter-spacing-2 * { letter-spacing: 0.1em !important; }

<<<<<<< Updated upstream
/* =========================================================================
   CRM Dashboard
   ========================================================================= */
.crm-layout {
  display: flex;
  min-height: 100vh;
  background-color: var(--bg-secondary);
}

.crm-sidebar {
  width: 280px;
  background-color: #061e31;
  color: #ffffff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.crm-sidebar h2 {
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}

.crm-nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.crm-nav a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #9ca3af;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.crm-nav a:hover, .crm-nav a.active {
  background-color: rgba(255,255,255,0.1);
  color: #ffffff;
}

.crm-main {
  flex: 1;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
}

.crm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.crm-header h1 {
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--text-heading);
  margin: 0;
}

.crm-table-container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  border: var(--card-border);
  overflow-x: auto;
}

.crm-table {
  width: 100%;
  border-collapse: collapse;
}

.crm-table th, .crm-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.crm-table th {
  background-color: #f9fafb;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.crm-table td {
  font-weight: 500;
  color: var(--text-heading);
  font-size: 0.95rem;
}

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

.crm-table tr:hover td {
  background-color: #f9fafb;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-badge.new {
  background-color: #dbeafe;
  color: #1e40af;
}

.status-badge.contacted {
  background-color: #fef3c7;
  color: #b45309;
}

.status-badge.closed {
  background-color: #d1fae5;
  color: #065f46;
=======
/* New Pricing Grid Styles */
.new-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.new-pricing-features li {
  font-size: 0.85rem;
  font-weight: 700;
  color: #374151;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
}

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

.new-pricing-features li.p-disabled {
  color: #4b5563;
}

.p-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #8ABEB7;
  color: #8ABEB7;
  font-size: 0.65rem;
  margin-right: 12px;
  flex-shrink: 0;
}

.p-minus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fca5a5;
  color: white;
  font-size: 0.8rem;
  margin-right: 12px;
  flex-shrink: 0;
  line-height: 1;
}

.pricing-ribbon {
  position: absolute;
  top: 15px;
  right: -35px;
  background-color: #44CEFF;
  color: white;
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  letter-spacing: 1px;
>>>>>>> Stashed changes
}
