* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
:root {
  --bg: #fdfdfd;
  --accent: #4caf50;
  --card-bg: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --organic-bg: #fdfdfd;
  --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  --accent-green: #4caf50;
  --accent-blue: #2196f3;
  --accent-gold: #ffb300;
  --soft-blue: #eef2ff;
  --soft-green: #ecfdf5;
  --text-main: #334155;
  --accent-blue: #6366f1;
  --accent-green: #10b981;
}
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  /* The "Glass" effect */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
}
.nav-container .nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
.nav-container .nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-container .nav-menu a:hover {
  color: var(--primary-color);
}
.nav-container .nav-menu a.active {
  color: #2563eb;
}
@media (max-width: 1024px) {
  /* --- Sticky Glass Nav --- */
  /*.main-nav {
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 9999;
        display: flex;
        align-items: center;
    }
*/
  .nav-container {
    justify-content: flex-start;
    width: 100%;
    max-width: 3000px;
    margin: 0 auto;
    overflow-x: auto;
    /* Enable horizontal scroll */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
  }
  /* Hide scrollbar Chrome/Safari */
  .nav-container::-webkit-scrollbar {
    display: none;
  }
  .nav-menu {
    display: flex;
    list-style: none;
    padding: 0 20px;
    margin: 0;
    white-space: nowrap;
    /* Prevent items from wrapping */
    gap: 10px;
  }
  .nav-menu li a {
    text-decoration: none;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
  }
  /* --- Scrollspy Active State --- */
  .nav-menu li a.active {
    background: #2563eb;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  }
}
.category-section {
  margin-bottom: 50px;
  font-family: sans-serif;
}
.category-section h2 {
  position: sticky;
  top: 50px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  display: inline-block;
  padding-right: 10px;
  border-bottom-right-radius: 0.75rem;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5vw;
}
.case-item {
  border: 1px solid #ddd;
  padding: 0px;
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
}
.case-item img {
  width: 100%;
  aspect-ratio: 1.75/1;
  object-fit: cover;
  border-radius: 0px;
}
.case-item p {
  padding: 10px;
  padding-top: 0;
}
@media (max-width: 1240px) {
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.glass-footer {
  background-color: #f8fafc;
  font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
}
.footer-brand-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.f-logo {
  height: 50px;
  /* Slightly larger for visibility */
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.f-logo:hover {
  opacity: 1;
}
.logo-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4), transparent);
}
.footer-text-content {
  display: flex;
  align-items: center;
}
.footer-text-content > div {
  display: flex;
  align-items: center;
  padding: 10px;
}
.footer-text-content p {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.8;
}
.footer-text-content p strong {
  font-weight: 600;
}
.text-separator {
  margin: 0 15px;
  color: #eee;
}
.footer-bottom-line {
  margin-top: 20px;
  font-size: 0.75rem;
  opacity: 0.4;
  text-transform: uppercase;
}
/* Responsive Mobile View */
@media (max-width: 768px) {
  .footer-text-content p {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .text-separator {
    display: none;
    /* Hide the bar on mobile stacks */
  }
  .footer-logos {
    gap: 20px;
  }
  .f-logo {
    height: 40px;
  }
}
.w-60 {
  width: 60%;
}
.w-80 {
  width: 80%;
  margin: auto;
  display: block;
}
.text-center {
  text-align: center;
}
.status-section {
  padding: 150px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* MOCKUP 1: #ffffff | MOCKUP 2: #f8fafc | MOCKUP 3: #ffffff */
  background: #fafafa;
}
.status-glass-card {
  max-width: 600px;
  width: 100%;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  margin: auto;
  /* THEME LOGIC: */
  /* MOCKUP 1: border: 1px solid #000; border-radius: 0; */
  /* MOCKUP 2: border: none; border-radius: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); */
  /* MOCKUP 3: backdrop-filter: blur(20px); border: 1px solid rgba(0,0,0,0.05); border-radius: 32px; */
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 32px;
  backdrop-filter: blur(20px);
}
/* Status Icon with Pulse Animation */
.status-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3b82f6;
  /* Accent Color */
}
.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #3b82f6;
  border-radius: 50%;
  animation: status-pulse 2s infinite;
}
@keyframes status-pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.status-year {
  font-family: 'Inter', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}
.status-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}
.status-text {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
}
.status-footer-line {
  width: 40px;
  height: 4px;
  background: #3b82f6;
  margin: 40px auto 0;
  border-radius: 2px;
}
.QECzyz.muVmf0 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}
.MogyzS {
  text-align: center;
  color: #555;
}
.r_b9iO.C1h50b.wixui-gallery__item {
  flex: 0 0 calc(25% - 15px);
  width: calc(25% - 15px);
}
a.TbvjZ9 {
  text-decoration: none;
}
@media (max-width: 1024px) {
  .r_b9iO.C1h50b.wixui-gallery__item {
    flex: 0 0 calc(33.333% - 15px);
    width: calc(33.333% - 15px);
  }
}
@media (max-width: 768px) {
  .min-card {
    padding: 15px !important;
  }
  .minimal-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .r_b9iO.C1h50b.wixui-gallery__item {
    flex: 0 0 calc(50% - 15px);
    width: calc(50% - 15px);
  }
  .status-glass-card {
    width: auto;
  }
}
.section-padding {
  padding: 75px 0;
}
/* --- Mobile Menu --- */
img {
  max-width: 100%;
}
.container {
  width: 87.25vw;
  max-width: 2200px;
  margin: auto;
}
.cta-btn {
  background: var(--primary-color);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.editorial-hero {
  padding: 120px 0 80px;
  background-color: #fcfcfc;
  text-align: center;
}
/* Typography Hierarchy */
.sub-headline {
  font-size: 1rem;
  color: #2563eb;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  font-weight: 500;
}
.main-headline {
  font-size: 3.5rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 40px;
}
.description-body {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.2rem;
  line-height: 2;
  color: #555;
  font-weight: 300;
}
/* Impact Bar Styling */
.impact-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid #eee;
  margin-bottom: 40px;
}
.impact-item {
  flex: 1;
}
.impact-item .label {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.impact-item .value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
}
.impact-item .value small {
  font-size: 1rem;
  margin-left: 4px;
  color: #2563eb;
}
.impact-divider {
  width: 1px;
  height: 50px;
  background: #eee;
}
/* Bottom Tags */
.tags-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: #999;
  font-size: 0.9rem;
}
.dot {
  width: 4px;
  height: 4px;
  background: #ccc;
  border-radius: 50%;
}
/* Responsive adjustment */
@media (max-width: 768px) {
  .main-headline {
    font-size: 2.5rem;
  }
  .impact-bar {
    flex-direction: column;
    gap: 30px;
  }
  .impact-divider {
    display: none;
  }
}
.soft-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  text-align: center;
}
.soft-card .icon-box {
  width: 60px;
  height: 60px;
  background: #e8f5e9;
  /* Light Green */
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
}
.soft-card.promo {
  background: #fff9c4;
  border: none;
}
/* Highlight for the 50k service */
.resources-section {
  padding: 100px 0;
  background-color: var(--organic-bg);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.sub-title {
  color: var(--accent-green);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.main-title {
  font-size: 2.5rem;
  color: #333;
  margin: 10px 0;
}
.section-intro {
  color: #777;
  max-width: 600px;
  margin: 0 auto;
}
/* Grid Layout */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
/* Card Styling */
.resource-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 30px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}
.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
/* Icon Colors */
.green {
  background: #e8f5e9;
  color: #4caf50;
}
.blue {
  background: #e3f2fd;
  color: #2196f3;
}
.orange {
  background: #fff3e0;
  color: #ff9800;
}
.purple {
  background: #f3e5f5;
  color: #9c27b0;
}
.gold {
  background: #fffde7;
  color: #fbc02d;
}
.resource-card h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 15px;
}
.resource-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}
/* Highlighted Ad Service Card */
.highlight-card {
  background: linear-gradient(145deg, #ffffff 0%, #fffef0 100%);
  border: 2px solid #fff59d;
}
.highlight-card p span {
  font-weight: 800;
  color: #d32f2f;
  font-size: 1.1rem;
}
.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-gold);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: bold;
}
/* Mobile Adjustments */
@media (max-width: 992px) {
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .resource-grid {
    grid-template-columns: 1fr;
  }
}
.eligibility-container {
  padding: 100px 0;
  background-color: #fcfcfc;
}
.organic-header {
  text-align: center;
  margin-bottom: 60px;
}
.icon-blob {
  width: 64px;
  height: 64px;
  background: var(--accent-blue);
  border-radius: 20px 5px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}
.organic-header h2 {
  font-size: 2.2rem;
  color: var(--text-main);
  margin-bottom: 8px;
}
.organic-header p {
  color: #64748b;
  font-size: 1.1rem;
}
/* Layout Grid */
.eligibility-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
/* Common Card Styling */
.main-card,
.info-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
}
.card-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 25px;
}
.tag-blue {
  background: var(--soft-blue);
  color: var(--accent-blue);
}
.tag-green {
  background: var(--soft-green);
  color: var(--accent-green);
}
/* Basic Quals Content */
.qual-point {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.qual-point .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.qual-point.warn .dot {
  background: #f59e0b;
}
.qual-point p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}
/* Quota Stats */
.quota-card {
  background: var(--text-main);
  color: white;
  margin-bottom: 30px;
}
.quota-card h3 {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 20px;
  font-weight: 400;
}
.quota-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.q-num {
  font-size: 3rem;
  font-weight: 800;
  display: block;
}
.q-num.highlight {
  color: #fbbf24;
}
.q-label {
  font-size: 0.85rem;
  opacity: 0.7;
}
.quota-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}
/* Priority List */
.p-group h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 10px;
}
.p-group p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 20px;
}
.p-list {
  list-style: none;
  padding-left: 0;
}
.p-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #475569;
  border-bottom: 1px solid #f8fafc;
}
.p-list li:before {
  content: "✓";
  color: var(--accent-green);
  margin-right: 10px;
  font-weight: bold;
}
/* Responsive */
@media (max-width: 992px) {
  .eligibility-layout {
    grid-template-columns: 1fr;
  }
}
/* Container & Header */
.categories-section-soft {
  padding: 100px 0;
  background-color: #fcfcfc;
}
.soft-header-center {
  text-align: center;
  margin-bottom: 70px;
}
.pill-badge {
  background: #eef2ff;
  color: #6366f1;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.soft-header-center h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin: 20px 0 10px;
}
.soft-header-center p {
  color: #64748b;
  font-size: 1.1rem;
}
/* Grid & Cards */
.soft-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.soft-card-type {
  background: #ffffff;
  padding: 50px 35px;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}
.soft-card-type:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}
/* Icons */
.icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}
.blue-bg {
  background: #e0e7ff;
  color: #4338ca;
}
.purple-bg {
  background: #f5f3ff;
  color: #6d28d9;
}
.green-bg {
  background: #ecfdf5;
  color: #047857;
}
/* Content Styling */
.soft-card-type h3 {
  font-size: 1.4rem;
  color: #1e293b;
  margin-bottom: 15px;
}
.soft-card-type .main-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 30px;
  min-height: 80px;
}
/* Example Tags */
.example-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.tag {
  background: #f8fafc;
  color: #94a3b8;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}
/* Mobile Responsive */
@media (max-width: 992px) {
  .soft-category-grid {
    grid-template-columns: 1fr;
  }
  .soft-card-type {
    padding: 40px 25px;
  }
}
.cta-section-soft {
  padding: 100px 0;
  background-color: #f8fafc;
}
/* CTA Card */
.cta-card-organic {
  background: #ffffff;
  border-radius: 40px;
  padding: 60px;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.cta-content {
  flex: 1;
  z-index: 2;
}
.tag-pill-blue {
  background: #eef2ff;
  color: #6366f1;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
}
.cta-content h2 {
  font-size: 2.2rem;
  margin: 20px 0;
  color: #1e293b;
}
.cta-content p {
  color: #64748b;
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}
.organic-btn-group {
  display: flex;
  gap: 15px;
}
.btn-pill-primary {
  background: #6366f1;
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
}
.btn-pill-primary:hover {
  transform: scale(1.05);
  background: #4f46e5;
}
.btn-pill-outline {
  border: 2px solid #e2e8f0;
  color: #475569;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
}
/* Timeline Styling */
.workflow-organic {
  text-align: center;
}
.workflow-header h3 {
  font-size: 1.8rem;
  color: #1e293b;
  margin-bottom: 10px;
}
.workflow-header p {
  color: #94a3b8;
  margin-bottom: 50px;
}
.timeline-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.timeline-path-svg {
  width: calc(85% - 10px);
  height: 1px;
  background: #94a3b8;
  margin: auto;
  transform: translateY(10px);
}
.node-circle {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #6366f1;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
}
.node-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
}
.node-connector {
  width: 60px;
  height: 2px;
  background: #e2e8f0;
  margin-bottom: 35px;
}
/* Branching logic */
.success-card {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  padding: 30px;
  border-radius: 24px;
  display: inline-block;
  margin-top: 20px;
}
.badge-success {
  background: #10b981;
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}
.branch-fail {
  margin-top: 30px;
  color: #94a3b8;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .timeline-wrapper {
    flex-direction: column;
  }
  .node-connector {
    width: 2px;
    height: 30px;
    margin: 10px 0;
  }
  .cta-card-organic {
    padding: 40px 30px;
  }
}
.soft-section-bg {
  padding: 120px 0;
  background: #fdfdfd;
}
/* Benefit Cards */
.benefit-flex-wrap {
  display: flex;
  gap: 30px;
  margin-bottom: 120px;
}
.pebble-card {
  flex: 1;
  background: #fff;
  padding: 50px 40px;
  border-radius: 40px 10px 40px 40px;
  /* Asymmetric organic shape */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}
.pebble-card:hover {
  transform: translateY(-10px);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}
.pebble-card h3 {
  font-size: 1.4rem;
  color: #1e293b;
  margin-bottom: 15px;
}
.pebble-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
}
/* Color Accents */
.card-blue {
  border-top: 5px solid #6366f1;
}
.card-purple {
  border-top: 5px solid #a855f7;
}
.card-green {
  border-top: 5px solid #10b981;
}
/* Timeline Wave */
.organic-timeline {
  position: relative;
  padding: 0px 0 120px;
}
.timeline-steps-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.soft-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.step-dot {
  width: 20px;
  height: 20px;
  background: #e2e8f0;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  position: relative;
}
/* The Glow Animation */
@keyframes glow-pulse {
  0% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    /* Expand */
    opacity: 0;
    /* Fade out as it expands */
  }
}
.soft-step.highlight .step-dot {
  background: #6366f1;
  transform: scale(1.3);
  animation: glow-pulse 2s infinite ease-in-out;
}
.step-date {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 10px;
  font-weight: 700;
}
.step-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
}
/* Mobile */
@media (max-width: 992px) {
  .timeline-path-svg {
    display: none;
  }
  .benefit-flex-wrap {
    flex-direction: column;
  }
  .timeline-steps-wrap {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }
  .soft-step {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .step-dot {
    margin: 0;
  }
}
