/* ── Reset & Base ────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { overflow-x: hidden; }
    body {
      /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */
      font-family: 'Playfair Display', Georgia, serif;
      color: #113533;
      background: #fff;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    ul, ol { list-style: none; }

	:root {
      --dark-slate:   #1e1b4b;
      --teal:         #1e5a6e;
      --gold:         #b19a5c;
      --white:        #ffffff;
      --light-gray:   #f9fafb;
      --mid-gray:     #4b5563;
      --near-black:   #0d0b1e;
      --very-dark-slate: #13112e;
      --text-light:   #d1d5db;
    }

    /* ── Utilities ───────────────────────────────────── */
    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 96px 0; }
    .section-alt { background: #f8f7ff; }
    .section-title { font-size: 2.5rem; font-weight: 800; text-align: center; margin-bottom: 16px; letter-spacing: -0.02em; }
    .section-subtitle { font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 16px; letter-spacing: -0.02em; }
    .section-sub { text-align: center; max-width: 640px; margin: 0 auto 56px; color: #4b5563; font-size: 1.125rem; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 14px 32px; border-radius: 10px; font-weight: 600; font-size: 1rem;
      transition: all 0.2s ease; cursor: pointer; border: none;
    }
    .btn-primary { background: #1e5a6e; color: #fff; }
    .btn-primary:hover { background: #1c89ad; transform: translateY(-1px); box-shadow: 0 4px 14px rgb(70 163 229 / 40%); }
    .btn-outline { border: 2px solid #1e5a6e; color: #1e5a6e; background: transparent; }
    .btn-outline:hover { background: #1e5a6e; color: #fff; }
    .btn-white { background: #fff; color: #1e5a6e; }
    .btn-white:hover { background: #d3dce3; transform: translateY(-1px); }
    /* .badge { display: inline-block; padding: 6px 16px; border-radius: 100px; font-size: 0.8125rem; font-weight: 600; background: rgba(79,70,229,0.1); color: #1e5a6e; margin-bottom: 16px; } */

    /* ── Animations ──────────────────────────────────── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    .fade-up { animation: fadeUp 0.6s ease forwards; }
    .fade-up-d1 { animation-delay: 0.1s; opacity: 0; }
    .fade-up-d2 { animation-delay: 0.2s; opacity: 0; }
    .fade-up-d3 { animation-delay: 0.3s; opacity: 0; }

    /* ── Header / Nav ───────────────────────────────── */
    header {
      position: sticky; top: 0; z-index: 100; width: 100%;
      background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    nav {
      display: flex; align-items: center; gap: 8px;
      max-width: 1140px; margin: 0 auto; padding: 0 24px; height: 64px;
    }
    nav > img { flex-shrink: 0; }
    .nav-logo { font-family: 'Inter', system-ui, sans-serif; font-size: 24px; font-weight: 800; letter-spacing: -1px; color: #1e5a6e; margin-right: auto; display: flex; align-items: center; gap: 8px; }
    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a { font-size: 0.9375rem; font-weight: 500; color: #4b5563; transition: color 0.15s; }
    .nav-links a:hover { color: #1e5a6e; }
    .nav-cta { display: flex; align-items: center; gap: 16px; margin-left: 24px; }
    .nav-cta .signin { font-size: 0.9375rem; font-weight: 500; color: #4b5563; }
    .nav-cta .signin:hover { color: #1e5a6e; }
    .nav-cta .btn { padding: 10px 24px; font-size: 0.9375rem; white-space: nowrap; }
    .nav-toggle {
      display: none; cursor: pointer;
      padding: 8px; margin-left: 16px;
      flex-direction: column; justify-content: center; gap: 5px;
    }
    .nav-toggle span {
      display: block; width: 22px; height: 2px;
      background: #1e1b4b; border-radius: 2px;
    }
    /* ── Hero ────────────────────────────────────────── */
    .hero {
      background: linear-gradient(135deg, #1e5a6e 0%, #3595a5 40%, #1e5a6e 100%);
      /* background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #1e5a6e 100%); */
	  /* background: linear-gradient(135deg, #b19a5c 0%, #d3c495 40%, #b19a5c 100%); */
      color: #fff;
      padding: 120px 0 100px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
	  /* background: radial-gradient(circle at 20% 80%, rgba(241, 198, 99, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(246, 197, 92, 0.2) 0%, transparent 50%); */
      /* background: radial-gradient(circle at 20% 80%, rgba(99,102,241,0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(139,92,246,0.2) 0%, transparent 50%); */
    }
    .hero .container { position: relative; z-index: 1; }
    .hero h1 { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; max-width: 780px; margin: 0 auto 24px; }
    .hero p { font-size: 1.25rem; color: rgba(0, 0, 0,0.8); max-width: 640px; margin: 0 auto 40px; line-height: 1.6; }
    .hero-actions { display: flex;  gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
    .hero small { font-size: 0.875rem; color: rgba(255,255,255,0.6); display: block; }
    .hero small strong { color: rgba(255,255,255,0.9); }


	/* =============================================
       PROBLEM SECTION
    ============================================= */
    .problem {
      background: var(--white);
      padding: 120px 0;
    }

    .section-heading {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      color: var(--dark-slate);
      margin-bottom: 64px;
      max-width: 680px;
      line-height: 1.2;
    }

    .pain-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .pain-card {
      border-left: 4px solid var(--gold);
      padding: 36px 28px;
      background: var(--light-gray);
      border-radius: 0 8px 8px 0;
    }

    .pain-card .label-mono {
      display: block;
      margin-bottom: 18px;
    }

    .pain-card p {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 1rem;
      color: var(--mid-gray);
      line-height: 1.85;
    }

    .pain-card-link {
      display: block;
      text-decoration: none;
      color: inherit;
      transition: box-shadow 0.18s ease, transform 0.18s ease;
    }
    .pain-card-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.09);
      text-decoration: none;
      color: inherit;
    }

    .see-all-link {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--teal);
      text-decoration: none;
      border-bottom: 1px solid var(--gold);
      padding-bottom: 2px;
      transition: color 0.15s;
    }
    .see-all-link:hover { color: var(--gold); }

    @media (max-width: 768px) {
      .pain-cards {
        grid-template-columns: 1fr;
      }
      .problem {
        padding: 72px 0;
      }
    }
    
	/* =============================================
       WHO IT'S FOR
    ============================================= */
    .who-its-for {
      background: var(--light-gray);
      padding: 120px 0;
    }

    .use-case-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .use-case-card {
      background: var(--white);
      border-radius: 10px;
      padding: 40px 36px;
      border: 1px solid #e5e7eb;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    
    .use-case-card a {
    	text-decoration: underline !important;
    }

    .use-case-card:hover {
      border-color: rgba(177,154,92,0.4);
      box-shadow: 0 4px 20px rgba(30,27,75,0.07);
    }

    .use-case-icon {
      font-size: 1.75rem;
      margin-bottom: 14px;
      line-height: 1;
    }

    .use-case-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--dark-slate);
      margin-bottom: 12px;
    }

    .use-case-desc {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 1rem;
      color: var(--mid-gray);
      line-height: 1.8;
    }

    @media (max-width: 768px) {
      .use-case-grid {
        grid-template-columns: 1fr;
      }
      .who-its-for {
        padding: 72px 0;
      }
    }
    /* ── Problem ─────────────────────────────────────── */
    .after-grid, .problem-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; max-width: 720px; margin: 0 auto 48px; }
    .after-card, .problem-card {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 24px; border-radius: 12px; background: #fff;
      border: 1px solid #e5e7eb; transition: border-color 0.2s;
    }
    .after-card:hover, .problem-card:hover { border-color: #c7d2fe; }
    .after-icon, .problem-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: #d3dce3; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
    .after-card p, .problem-card p { font-size: 0.9375rem; color: #4b5563; }
	.list-group-item p { display: inline-block}
    .after-answer, .problem-answer { text-align: center; max-width: 670px; margin: 0 auto; font-size: 1.125rem; color: #374151; }
    .after-answer strong, .problem-answer strong { color: #1e5a6e; }

    /* ── Solution ────────────────────────────────────── */
    .solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .solution-card {
      padding: 40px 32px; border-radius: 16px; background: #fff;
      border: 1px solid #e5e7eb; transition: all 0.25s;
    }
    .solution-card:hover { border-color: #c7d2fe; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(79,70,229,0.08); }
    .solution-icon { width: 48px; height: 48px; border-radius: 12px; background: #d3dce3; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
	.solution-image { height: 240px; border-radius: 12px; background: #d3dce3; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
    .solution-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 12px; }
    .solution-card p { color: #6b7280; font-size: 0.9375rem; }

    /* ── Steps ───────────────────────────────────────── */
    .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
    .steps-grid::before {
      content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px;
      background: linear-gradient(90deg, #c7d2fe, #1e5a6e, #c7d2fe);
    }
    .step-card { text-align: center; position: relative; z-index: 1; }
    .step-num {
      width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
      background: linear-gradient(135deg, #b19a5c, #d3c495);
      color: #fff; font-size: 1.5rem; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(79,70,229,0.3);
    }
    .step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .step-card p { font-size: 0.875rem; color: #6b7280; }

    /* ── Repeat Arrow (Step 3 → 4) ───────────────── */
    .steps-repeat-arrow {
      position: absolute;
      top: -50px;
      left: 64%;
      right: 12.5%;
      height: 60px;
      pointer-events: none;
    }
    .steps-repeat-arrow svg { width: 100%; height: 100%; overflow: visible; }

    /* ── Features ────────────────────────────────────── */
    .features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
    .feature-card {
      padding: 32px; border-radius: 14px; background: #fff;
      border: 1px solid #e5e7eb; transition: all 0.25s;
	  max-width: 340px;
	  padding: 16px;
	  margin: 16px;
    }
    .feature-card:hover { border-color: #c7d2fe; box-shadow: 0 8px 24px rgba(79,70,229,0.06); }
    .feature-icon { width: 44px; height: 44px; border-radius: 10px; background: #d3dce3; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 16px; }
    .feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; text-align: center; }
    .feature-card p { font-size: 0.875rem; color: #6b7280; line-height: 1.6; }

    /* ── Audience ────────────────────────────────────── */
    .audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 880px; margin: 0 auto; }
    .audience-col h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 20px; }
    .audience-col.for h3 { color: #059669; }
    .audience-col.not-for h3 { color: #9ca3af; }
    .audience-col li { padding: 12px 0; border-bottom: 1px solid #f3f4f6; font-size: 0.9375rem; color: #4b5563; display: flex; align-items: center; gap: 12px; }
    .audience-col.for li::before { content: '✓'; color: #059669; font-weight: 700; }
    .audience-col.not-for li::before { content: ' -'; color: #9ca3af; font-weight: 700; }

    /* ── Pricing ─────────────────────────────────────── */
    .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
    .pricing-card {
      padding: 40px 32px; border-radius: 16px; background: #fff;
      border: 2px solid #e5e7eb; text-align: center; position: relative; transition: all 0.25s;
    }
    .pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(79,70,229,0.1); }
    .pricing-card.featured { border-color: #1e5a6e; }
    .pricing-card.featured::before {
      content: 'Start Here'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: #1e5a6e; color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.05em; padding: 4px 20px; border-radius: 100px;
    }
    .pricing-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
    .pricing-price { font-size: 2.5rem; font-weight: 800; margin: 16px 0 4px; letter-spacing: -0.02em; }
    .pricing-price span { font-size: 1rem; font-weight: 500; color: #9ca3af; }
    .pricing-users { color: #6b7280; font-size: 0.9375rem; margin-bottom: 28px; }
    .pricing-note { text-align: center; margin-top: 24px; color: #9ca3af; font-size: 0.875rem; }

    /* ── FAQ ──────────────────────────────────────────── */
    .faq-list { max-width: 720px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid #e5e7eb; padding: 4px 0; }
    .faq-item summary { font-size: 1.0625rem; font-weight: 600; padding: 16px 0; cursor: pointer; color: #113533; }
    .faq-item p { padding: 0 0 20px; color: #6b7280; font-size: 0.9375rem; max-width: 600px; line-height: 1.7; }
    @keyframes faq-open  { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
    @keyframes faq-close { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(-6px); } }
    .faq-item[open] p { animation: faq-open .22s ease forwards; }
    .faq-item.closing p { animation: faq-close .2s ease forwards; }

    /* ── CTA Banner ──────────────────────────────────── */
    .cta-banner {
      background: linear-gradient(135deg, #1b434b 0%, #2e7081 40%, #1e626e 100%);
      color: #fff; text-align: center; padding: 80px 0; position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: ''; position: absolute; inset: 0;
	  background: radial-gradient(circle at 30% 50%, rgb(99 241 189 / 30%) 0%, transparent 50%);
    }
    .cta-banner .container { position: relative; z-index: 1; }
    .cta-banner h2 { font-size: 2.25rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
    .cta-banner p { color: rgba(255,255,255,0.7); font-size: 1.125rem; margin-bottom: 32px; }

    /* ── Footer ──────────────────────────────────────── */
    footer {
      padding: 48px 0; border-top: 1px solid #e5e7eb; background: #fafafa;
    }
    .footer-inner {
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    }
    .footer-logo { font-size: 1.125rem; font-weight: 800; color: #1e5a6e; }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 0.875rem; color: #6b7280; transition: color 0.15s; }
    .footer-links a:hover { color: #1e5a6e; }
    .footer-copy { font-size: 0.8125rem; color: #9ca3af; }

	.testimonial-card { max-width: 400px; transition: all 0.25s; }
	.testimonial-card:hover { border-color: #c7d2fe; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(79,70,229,0.08); }

	.testimonial-text { font-size: 0.9375rem; color: #4b5563; font-style: italic; margin-bottom: 16px;  margin-top: 16px; }

	.cov-icon {
	  width: 64px; height: 64px;
	  
	  opacity: 0.92;
	}
	.cov-icon path { fill: #fff; }
	
	.cov-logo {
	  font-size: 56px; font-weight: 900; letter-spacing: -2px; color: #fff;
	  margin-bottom: 8px;
	}
    /* ── Responsive ──────────────────────────────────── */
    @media (max-width: 1024px) {
      .solution-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .steps-grid::before { display: none; }
      .steps-repeat-arrow { display: none; }
    }
    /* ── Learn More grid ─────────────────────────────── */
    .learn-more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 960px; }
    @media (max-width: 1024px) { .learn-more-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px)  { .learn-more-grid { grid-template-columns: 1fr; } }

    @media (max-width: 768px) {
      .hero h1 { font-size: 2.5rem; }
      .hero { padding: 80px 0 64px; text-align: center;}
      .section { padding: 64px 0; }
      .section-title { font-size: 1.625rem; }
      .nav-links, .nav-cta { display: none; }
      .nav-links.open, .nav-cta.open {
        display: flex; flex-direction: column; position: absolute;
        top: 64px; left: 0; right: 0; background: #fff; padding: 24px;
        border-bottom: 1px solid #e5e7eb; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      }
      .nav-cta.open { top: auto; padding-top: 0; box-shadow: none; border-bottom: none; }
      .nav-toggle { display: flex; }
      .problem-grid { grid-template-columns: 1fr; }
      .solution-grid, .features-grid, .pricing-grid, .steps-grid { grid-template-columns: 1fr; }
      .audience-grid { grid-template-columns: 1fr; gap: 32px; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; max-width: 300px; }
      .footer-inner { flex-direction: column; text-align: center; }
    }
    
    /* Hero visual */
    .hero-visual p {
    	margin: 0 auto 0px !important;
    	text-align: left !important;
    }
    .hero-visual {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 0;
    }

    .flow-pipeline {
      width: 100% !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 0;
    }

    .flow-node {
      width: 100%;
      max-width: 320px;
      background: rgba(255,255,255, .7);
      border: 1px solid rgb(255 255 255 / 25%);
      border-radius: 10px !important;
      padding: 16px 16px !important;
      position: relative !important;
    }

    .flow-node-label {
      font-family: 'DM Mono', monospace !important;
      font-size: 0.68rem !important;
      letter-spacing: 0.07em !important;
      text-transform: uppercase !important;
      color: #000;
      margin-bottom: 6px;
    }

    .flow-node-title {
      font-family: 'Playfair Display', Georgia, serif !important;
      font-weight: 700 !important;
      font-size: 0.9rem !important;
      color:  #000;
    }

    .flow-node-desc {
      font-family: 'Inter', system-ui, sans-serif !important;
      font-size: 0.8rem !important;
      color: rgba(0, 0, 0,0.55) !important;
      margin-top: 4px !important;
    }

    .btn-demo-inline {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 10px;
      padding: 6px 14px;
      border: 1.5px solid #E97232;
      border-radius: 20px;
      background: #FFF;
      color: #E97232;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      font-family: 'Inter', system-ui, sans-serif;
      line-height: 1;
    }
    .btn-demo-inline:hover {
      background: #E97232;
      color: #fff;
    }
    .btn-demo-icon {
      font-size: 10px;
    }

    .flow-node.active {
      border-color: rgba(255,255,255,1);
      background: rgba(255,255,255,1);
    }

    .flow-node.active .flow-node-title {
      color: #000;
    }

    .flow-connector {
      width: 2px;
      height: 28px;
      background: linear-gradient(to bottom, rgb(255 255 255 / 50%), rgb(191 191 191 / 50%));
      margin: 0 auto;
    }

    .flow-connector-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #aaa;
      margin: 0 auto;
      position: relative;
      top: -4px;
    }

    /* Wraps the pipeline + vendor board side by side */
    .flow-visual-row {
      display: block;
      position: relative;
    }

    /* Active node needs relative positioning so the board can anchor to it */
    .flow-node.active {
      position: relative;
    }

    /* Arrow + board sit absolutely off the right edge of the active node */
    .flow-side-connector {
      position: absolute;
      top: 50%;
      left: 100%;
      display: flex;
      align-items: center;
      transform: translateY(-1px);
    }
    .flow-side-connector-line {
      width: 24px;
      height: 2px;
      background: rgba(255,255,255,0.5);
    }
    .flow-side-connector-arrow {
      width: 0;
      height: 0;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 7px solid rgba(255,255,255,0.5);
      position: relative;
	  left: 100%;
	  top: -6px;
    }

    /* Vendor board anchored to right of active node */
    .vendor-board-preview {
      position: absolute;
      top: 50%;
      left: calc(100% + 38px);
      transform: translateY(-50%);
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 10px;
      padding: 12px 14px;
      width: 168px;
    }
    .vendor-board-preview-header {
      font-family: 'DM Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(255,255,255,1);
      margin-bottom: 5px;
    }
    .vendor-board-preview-title {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .vendor-board-col-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.56rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .vendor-board-col-label.col-progress { color: #60a5fa; }
    .vendor-board-col-label.col-done     { color: #34d399; }
    .vendor-board-task {
      background: rgba(255,255,255,0.13);
      border-radius: 5px;
      padding: 5px 8px;
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.9);
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .vendor-board-task.done {
      background: rgba(52,211,153,0.12);
      color: rgba(255,255,255,0.5);
      text-decoration: line-through;
    }
    .vendor-board-task-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .dot-progress { background: #60a5fa; }
    .dot-done     { background: #34d399; }
    .vendor-board-footer {
      margin-top: 10px;
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 0.62rem;
      color: rgba(255,255,255,0.35);
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 6px;
    }

    .vendor-board-desktop-only {
      display: block;
    }

    @media (max-width: 1199px) {
      .vendor-board-desktop-only {
        display: none !important;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 64px 0 56px;
      }
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .hero-visual {
        order: -1;
      }
    }

    .testimonial-role {
      font-size: 0.8125rem;
      color: #9ca3af;
      text-transform: uppercase;
      margin-top: 8px;
    }

    #demoPlayerHost {
      border: 4px solid #ffffff;
      border-radius: 12px;
    }
