.challenge-card {
 background: var(--white);
 border: 1px solid var(--border-gray);
 border-radius: 12px;
 padding: 1rem;
 margin-bottom: 0.75rem;
 transition: all 0.3s ease;
 }
 .challenge-card:hover {
 box-shadow: var(--shadow-lg);
 transform: translateY(-4px);
 }
 .challenge-header {
 display: flex;
 align-items: center;
 gap: 1rem;
 margin-bottom: 1rem;
 }
 .challenge-icon {
 width: 56px;
 height: 56px;
 background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
 border-radius: 12px;
 display: flex;
 align-items: center;
 justify-content: center;
 }
 .challenge-icon i {
 font-size: 1.5rem;
 color: var(--primary-blue);
 }
 .challenge-header h3 {
 color: var(--primary-navy);
 margin: 0;
 }
 .challenge-header h3 span {
 display: block;
 font-size: 0.875rem;
 color: var(--text-light);
 font-weight: 500;
 margin-top: 4px;
 }
 
 .solution-box {
 background: linear-gradient(135deg, #e8f5e9 0%, var(--white) 100%);
 border-left: 4px solid var(--success-green);
 padding: 1.25rem;
 border-radius: 0 8px 8px 0;
 margin-top: 1rem;
 }
 .solution-box h4 {
 color: var(--success-green);
 font-size: 0.875rem;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 margin-bottom: 0.75rem;
 display: flex;
 align-items: center;
 gap: 8px;}
 .solution-box ul {
 list-style: none;
 padding: 0;
 margin: 0;
 }
 .solution-box ul li {
 padding: 0.4rem 0;
 color: var(--text-medium);
 font-size: 0.9375rem;
 display: flex;
 align-items: flex-start;
 gap: 8px;
 }
 .solution-box ul li i {
 color: var(--success-green);
 margin-top: 4px;
 font-size: 0.875rem;
 }
 
 .intake-type-card {
 background: var(--white);
 border: 1px solid var(--border-gray);
 border-radius: 12px;
 overflow: hidden;
 transition: all 0.3s ease;
 }
 .intake-type-card:hover {
 box-shadow: var(--shadow-lg);
 transform: translateY(-4px);
 }
 .intake-type-header {
 background: var(--light-gray);
 color: var(--primary-navy);
 padding: 1rem;
 border-bottom: 1px solid var(--border-gray);
 }
 .intake-type-header i {
 font-size: 2rem;
 margin-bottom: 0.75rem;
 display: block;
 color: var(--primary-blue);
 }
 .intake-type-header h3 {
 color: var(--primary-navy);
 margin: 0;
 font-size: 1.25rem;
 }
 .intake-type-body {
 padding: 1rem;
 }
 .intake-type-body ul {
 list-style: none;
 padding: 0;
 margin: 0;
 }
 .intake-type-body ul li {
 padding: 0.5rem 0;
 border-bottom: 1px solid var(--border-gray);
 color: var(--text-medium);
 font-size: 0.9375rem;
 display: flex;
 align-items: center;
 gap: 10px;
 }
 .intake-type-body ul li:last-child {
 border-bottom: none;
 }
 .intake-type-body ul li i {
 color: var(--primary-blue);
 font-size: 0.875rem;
 }
 
 .spec-table {
 width: 100%;
 border-collapse: collapse;
 margin-top: 1rem;
 }
 .spec-table th,
 .spec-table td {
 padding: 1rem;
 text-align: left;
 border-bottom: 1px solid var(--border-gray);
 }
 .spec-table th {
 background: var(--light-gray);
 color: var(--primary-navy);
 font-weight: 600;
 }
 .spec-table tr:hover {
 background: var(--light-gray);
 }
 
 .process-step-sea {
 text-align: center;
 padding: 1rem;
 }
 .process-step-sea .step-number {
 width: 48px;
 height: 48px;
 background: var(--primary-blue);
 color: var(--white);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.25rem;
 font-weight: 700;
 margin: 0 auto 1rem;
 }
 .process-step-sea h4 {
 color: var(--primary-navy);
 margin-bottom: 0.5rem;
 }
 .process-step-sea p {
 color: var(--text-medium);
 font-size: 0.9375rem;
 }
 
 .benefit-highlight {
 background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
 border-left: 4px solid var(--primary-blue);
 padding: 1.25rem;
 border-radius: 0 8px 8px 0;
 margin-bottom: 1rem;
 }
 .benefit-highlight h4 {
 color: var(--primary-navy);
 margin-bottom: 0.5rem;
 display: flex;
 align-items: center;
 gap: 10px;}
 .benefit-highlight h4 i {
 color: var(--primary-blue);
 }
 .benefit-highlight p {
 color: var(--text-medium);
 font-size: 0.9375rem;
 margin: 0;
 }
 .hero-features {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 14px;
 margin-top: 2.5rem;
 }
 .hero-feature-item {
 background: rgba(255,255,255,0.1);
 border-radius: 12px;
 padding: 14px;
 text-align: center;
 transition: all 0.3s ease;
 }
 .hero-feature-item:hover {
 background: rgba(255,255,255,0.15);
 transform: translateY(-4px);
 }
 .hero-feature-item i {
 font-size: 2rem;
 color: var(--accent-gold);
 margin-bottom: 12px;
 }
 .hero-feature-item h4 {
 color: var(--white);
 font-size: 1rem;
 margin-bottom: 4px;
 }
 .hero-feature-item p {
 color: rgba(255,255,255,0.7);
 font-size: 0.875rem;
 margin: 0;
 }
 @media (max-width: 992px) {
 .hero-features { grid-template-columns: repeat(2, 1fr); }
 }
 @media (max-width: 768px) {
 .hero-features { grid-template-columns: 1fr; gap: 16px; }
 .hero-feature-item { padding: 14px; }
 }
 h4 span { flex: 1; text-align: center; }
.hero-features a.hero-feature-item { transition: all 0.3s ease; }
.hero-features a.hero-feature-item:hover { transform: translateY(-4px); background: rgba(255,255,255,0.15); }
.hero-features a.hero-feature-item:hover h4 { color: #8a6d1c; }

/* Override: force white cards, no blue backgrounds */
.cards-grid .card,
.cards-grid .card.flex-col {
  background: var(--white) !important;
  border-top: none !important;
}
/* Aggressive override for card-icon blue bubble from main.css */
.cards-grid .card .card-icon,
.cards-grid .card > div.card-icon:first-child,
.cards-grid .card > div:first-child.card-icon:not(.btn):not(p),
.card > div.card-icon:first-child:not(.btn):not(p) {
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--primary-blue) !important;
  width: auto !important;
  height: auto !important;
  min-width: auto !important;
  min-height: auto !important;
  border-radius: 0 !important;
  margin-bottom: 1rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  line-height: 1 !important;
  font-size: 2rem !important;
  overflow: visible !important;
}

