* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 16px;
}
: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.85rem;
    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);
  }
}
.organic-flow-container {
  max-width: 800px;
  margin: 80px auto;
  display: flex;
  flex-direction: column;
}
.organic-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
}
.organic-row.row-1 {
  margin-bottom: 30px;
}
.organic-row.row-2 {
  margin-bottom: 5px;
}
.organic-row.row-3 {
  display: grid;
  grid-template-areas: "path result" "button result";
  grid-template-columns: 1fr 0.5fr;
  max-width: 750px;
  width: 100%;
  margin: auto;
  column-gap: 15px;
  row-gap: 10px;
}
.results-path {
  grid-area: path;
  font-size: 0.8rem;
  font-weight: 700;
  display: grid;
  width: 100%;
  gap: 5px;
  grid-template-columns: 1fr 4fr;
}
.results-path .fail {
  display: flex;
  white-space: nowrap;
  align-items: center;
}
.results-path .success {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.spacer {
  width: 150px;
  position: relative;
}
.result-wrapper {
  grid-area: result;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  padding-top: 15px;
}
.path-connector {
  position: absolute;
  top: -35px;
}
.path-connector.pivot-down {
  left: -10%;
}
.path-connector.final-drop {
  right: 15px;
}
.arrow-success-container {
  position: relative;
  width: 20px;
  text-align: center;
}
.arrow-success-container .arrow-line {
  width: 2px;
  height: 24px;
  display: inline-block;
}
.arrow-success-container svg {
  transform: rotate(90deg) translateY(-50%);
  position: absolute;
  bottom: -5px;
  right: 50%;
}
.long-arrow-container {
  display: flex;
  align-items: center;
  width: 100%;
  /* Follows parent width */
  height: inherit;
  color: #cbd5e1;
  /* Soft Slate Gray */
  padding-left: 10px;
  position: relative;
  top: 5px;
}
.long-arrow-container:before {
  width: 2px;
  position: absolute;
  height: 100%;
  background: #cbd5e1;
  left: 10px;
  top: -50%;
  content: '';
}
.arrow-line {
  flex-grow: 1;
  /* This makes the line stretch */
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  position: relative;
}
.arrow-head {
  margin-left: -5px;
  /* Slight overlap for a seamless connection */
  display: flex;
  align-items: center;
}
.final-goal {
  grid-area: button;
}
.success {
  color: #10b981;
}
.fail {
  color: #94a3b8;
}
.node-grey {
  grid-area: result;
  /* justify-self: stretch; */
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
/* Pebble Card 核心造型 (Mockup 2 特徵) */
.pebble-node {
  background: #ffffff;
  padding: 18px 28px;
  border-radius: 40px 15px 40px 40px;
  /* 不對稱圓角 */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  font-weight: 700;
  color: #475569;
  min-width: 150px;
  text-align: center;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}
/* 高亮與彩色狀態 */
.pebble-node.active {
  background: #eff6ff;
  border-color: #3b82f6;
  color: #2563eb;
}
.highlight-purple {
  background: #f5f3ff;
  border-color: #8b5cf6;
  color: #6d28d9;
  position: relative;
}
.node-grey {
  background: #f8fafc;
  color: #94a3b8;
  border: 1px dashed #cbd5e1;
}
.final-goal {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  color: #fff;
  width: 100%;
  max-width: 600px;
  padding: 25px;
  font-size: 1.4rem;
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(225, 29, 72, 0.2);
}
/* 箭頭與分支標籤 */
.organic-arrow {
  color: #cbd5e1;
  font-weight: 900;
  font-size: 1.2rem;
}
.branch-path {
  position: absolute;
  top: 65px;
  font-size: 0.8rem;
  white-space: nowrap;
}
.branch-path.pass {
  left: 20px;
  color: #10b981;
  font-weight: 800;
}
.branch-path.fail {
  right: 15px;
  color: #94a3b8;
}
@media (max-width: 768px) {
  .pebble-node.final-goal,
  .node-grey {
    font-size: 1rem;
    padding: 18px 28px;
  }
  .result-wrapper {
    padding-top: 0;
  }
  .long-arrow-container {
    display: none;
  }
  .results-path {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .results-path .success,
  .results-path .fail {
    gap: 5px;
  }
  .arrow-success-container {
    transform: rotate(30deg);
  }
  .arrow-success-container.fail-arrow {
    transform: rotate(-30deg);
  }
  .organic-row {
    flex-direction: column;
    gap: 5px;
  }
  .organic-row.row-2 {
    flex-direction: column-reverse;
  }
  .organic-row.row-2 .organic-arrow {
    transform: rotate(270deg);
  }
  .organic-row.row-2:before {
    content: '';
    position: absolute;
    right: 20%;
    width: 45px;
    color: #94a3b8;
    background: #94a3b8;
    height: 1px;
    top: -15px;
  }
  .organic-row.row-2:after {
    content: '↓';
    position: absolute;
    width: 1px;
    height: 100%;
    line-height: 1;
    background: #94a3b8;
    top: -15px;
    left: auto;
    right: 20%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #94a3b8;
    padding: 0;
    margin: 0;
  }
  .organic-row.row-3 {
    grid-template-areas: "path path" "button result";
    padding: 0 15px;
  }
  .organic-arrow {
    transform: rotate(90deg);
  }
  .spacer {
    display: none;
  }
}
.category-section {
  margin-bottom: 50px;
}
.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: 15px;
}
.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-bottom: 20px;
  font-size: 0.85rem;
  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;
  }
}
a {
  color: #2563eb;
  text-decoration: none;
}
.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);
}
.btn-cta {
  background: #6366f1;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 76px;
  /* height: 60px; */
  border-radius: 30px;
  color: white;
  font-weight: 700;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  /* display: inline; */
  overflow: hidden;
}
.btn-cta:hover {
  background-color: #4caf50;
  transform: scale(1.1);
}
.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  transition: none;
  animation: sheen-sweep 4s infinite;
}
@keyframes sheen-sweep {
  0% {
    left: -60%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
  /* Pause at the end before restarting */
}
/* 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-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 {
  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;
}
.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;
}
.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;
}
.dot {
  width: 4px;
  height: 4px;
  background: #ccc;
  border-radius: 50%;
}
.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: #f4f5ff;
}
.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;
}
.resource-grid.grid-2 {
  margin-top: 30px;
  grid-template-columns: repeat(2, 1fr);
}
/* 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 {
  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;
}
.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,
  .resource-grid.grid-2 {
    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;
}
/* 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 {
  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);
}
.quota-item {
  text-align: center;
}
/* Priority List */
.p-group h4 {
  color: var(--text-main);
  margin-bottom: 10px;
}
.p-group p {
  color: #64748b;
  margin-bottom: 20px;
}
.p-list {
  list-style: none;
  padding-left: 0;
}
.p-list li {
  padding: 8px 0;
  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;
}
/* 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;
}
.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: 50px 0;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
}
.cta-content {
  flex: 1;
  z-index: 2;
  min-width: 55%;
}
.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;
  line-height: 1.6;
}
.organic-btn-group {
  display: flex;
  gap: 15px;
  font-size: 1.5rem;
}
.btn-pill-primary {
  background: #6366f1;
  color: #fff;
  padding: 16px 48px;
  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 48px;
  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(65% - 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-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;
}
.soft-section-bg {
  padding: 120px 0;
  background: white;
}
/* 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 {
  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 {
  display: none;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem !important;
  }
  h2.sub-headline {
    font-size: 1rem !important;
  }
  .category-section h2 {
    font-size: 1.25rem !important;
    top: 75px;
  }
  .main-nav {
    position: sticky;
  }
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
  .section-header,
  .soft-header-center {
    margin-bottom: 30px;
  }
  .container {
    width: 92.5%;
  }
  .timeline-wrapper {
    flex-direction: column;
  }
  .node-connector {
    width: 2px;
    height: 30px;
    margin: 10px 0;
  }
  .cta-card-organic {
    padding: 40px 30px;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .resources-section,
  .eligibility-container {
    padding: 25px 0;
  }
  .soft-section-bg,
  .cta-section-soft {
    padding: 50px 0;
  }
  .organic-btn-group,
  .footer-text-content {
    flex-direction: column;
    text-align: center;
  }
  .btn-pill-outline {
    justify-content: center;
  }
  .main-headline {
    font-size: 2.5rem;
  }
  .impact-bar {
    flex-direction: column;
    gap: 30px;
  }
  .impact-divider {
    display: none;
  }
  .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;
  }
}
/* Mobile */
@media (max-width: 992px) {
  .soft-category-grid {
    grid-template-columns: 1fr;
  }
  .soft-card-type {
    padding: 40px 25px;
  }
  .step-date {
    margin-bottom: 0;
  }
  .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;
  }
}
@media (max-width: 1024px) {
  .r_b9iO.C1h50b.wixui-gallery__item {
    flex: 0 0 calc(33.333% - 15px);
    width: calc(33.333% - 15px);
  }
}
