:root {
    --green: #34a3e7;
    --green-light: #a2d5f5;
    --green-pale: #e0f3ff;
    --green-dark: #0174be;
    --amber: #F59E0B;
    --amber-light: #FEF3C7;
    --text: #111827;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --bg: #FAFAF9;
    --white: #FFFFFF;
    --card-shadow: 0 4px 24px rgba(0,0,0,0.07);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 68px;
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo-icon { width: 38px; height: 38px; background: var(--green); border-radius: 10px; display: grid; place-items: center; }
  .nav-logo-icon svg { width: 22px; height: 22px; }
  .nav-logo-text { font-size: 1.2rem; font-weight: 800; color: var(--green-dark); letter-spacing: -0.5px; }
  .nav-links { display: flex; align-items: center; gap: 32px; }
  .nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--green); }
  .nav-cta { background: var(--green); color: white; padding: 9px 22px; border-radius: 8px; font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: background .2s, transform .15s; }
  .nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
  .nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .nav-hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

  /* ─── HERO ─── */
  .hero { padding: 140px 5% 90px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--green-pale); color: var(--green-dark); padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 22px; border: 1px solid rgba(45,122,69,0.2); }
  .hero-badge span { width: 8px; height: 8px; background: var(--green); border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
  .hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1.15; color: var(--text); margin-bottom: 20px; }
  .hero h1 em { color: var(--green); font-style: normal; }
  .hero p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 36px; max-width: 480px; line-height: 1.75; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary { background: var(--green); color: white; padding: 13px 28px; border-radius: 9px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
  .btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,122,69,0.3); }
  .btn-secondary { background: white; color: var(--text); padding: 13px 28px; border-radius: 9px; font-weight: 600; font-size: 0.95rem; text-decoration: none; border: 1.5px solid var(--border); transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
  .btn-secondary:hover { border-color: var(--green); color: var(--green); }
  .hero-stats { display: flex; gap: 30px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
  .stat-num { font-size: 1.8rem; font-weight: 800; color: var(--green-dark); }
  .stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

  /* ─── HERO VISUAL ─── */
  .hero-visual { position: relative; }
  .dashboard-card { background: white; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); overflow: hidden; border: 1px solid var(--border); }
  .dash-topbar { background: var(--green-dark); padding: 14px 20px; display: flex; align-items: center; gap: 10px; }
  .dash-dots { display: flex; gap: 6px; }
  .dash-dots span { width: 11px; height: 11px; border-radius: 50%; }
  .dash-dots span:nth-child(1) { background: #FF5F57; }
  .dash-dots span:nth-child(2) { background: #FFBD2E; }
  .dash-dots span:nth-child(3) { background: #28CA41; }
  .dash-title { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-left: 6px; }
  .dash-body { padding: 20px; }
  .dash-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
  .metric-pill { background: var(--green-pale); border-radius: 10px; padding: 12px; text-align: center; }
  .metric-pill .val { font-size: 1.3rem; font-weight: 800; color: var(--green-dark); }
  .metric-pill .lbl { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; }
  .dash-chart-area { background: var(--bg); border-radius: 12px; padding: 14px; }
  .dash-chart-title { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
  .bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
  .bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .bar { width: 100%; border-radius: 5px 5px 0 0; transition: height .5s; }
  .bar-day { font-size: 0.6rem; color: var(--text-muted); }
  .recent-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.8rem; }
  .recent-row:last-child { border-bottom: none; }
  .recent-name { font-weight: 600; }
  .recent-cat { color: var(--text-muted); font-size: 0.72rem; }
  .tag { font-size: 0.68rem; font-weight: 600; padding: 3px 9px; border-radius: 20px; }
  .tag-red { background: #FEE2E2; color: #DC2626; }
  .tag-amber { background: var(--amber-light); color: #D97706; }
  .tag-green { background: var(--green-pale); color: var(--green-dark); }
  .hero-float { position: absolute; bottom: -20px; left: -28px; background: white; border-radius: 14px; padding: 12px 16px; box-shadow: var(--card-shadow); border: 1px solid var(--border); display: flex; align-items: center; gap: 10px; font-size: 0.82rem; animation: float 3s ease-in-out infinite; }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
  .hero-float .icon { font-size: 1.4rem; }
  .hero-float strong { font-weight: 700; color: var(--green-dark); }
  .hero-float span { color: var(--text-muted); }

  /* ─── LOGOS ─── */
  .logos-section { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 5%; text-align: center; }
  .logos-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
  .logos-strip { display: flex; justify-content: center; align-items: center; gap: 50px; flex-wrap: wrap; }
  .logo-pill { font-size: 0.95rem; font-weight: 700; color: #9CA3AF; letter-spacing: -0.3px; display: flex; align-items: center; gap: 7px; }
  .logo-pill span { font-size: 1.2rem; }

  /* ─── FEATURES ─── */
  .features { padding: 100px 5%; max-width: 1200px; margin: 0 auto; }
  .section-tag { display: inline-block; background: var(--green-pale); color: var(--green-dark); padding: 5px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
  .section-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--text); margin-bottom: 14px; line-height: 1.25; }
  .section-sub { color: var(--text-muted); font-size: 1rem; max-width: 520px; line-height: 1.7; }
  .features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 56px; }
  .feat-card { background: white; border-radius: 16px; padding: 28px; border: 1px solid var(--border); transition: all .25s; position: relative; overflow: hidden; }
  .feat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--green); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
  .feat-card:hover { box-shadow: var(--card-shadow); transform: translateY(-4px); border-color: transparent; }
  .feat-card:hover::before { transform: scaleX(1); }
  .feat-icon { width: 48px; height: 48px; background: var(--green-pale); border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; font-size: 1.4rem; }
  .feat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
  .feat-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

  /* ─── HOW IT WORKS ─── */
  .how-section { background: linear-gradient(135deg, var(--green-dark) 0%, #1a6b40 100%); padding: 100px 5%; color: white; text-align: center; }
  .how-section .section-tag { background: rgba(255,255,255,0.15); color: white; }
  .how-section .section-title { color: white; margin: 0 auto 14px; }
  .how-section .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto 64px; }
  .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; max-width: 1000px; margin: 0 auto; position: relative; }
  .step-card { position: relative; z-index: 1; }
  .step-num { width: 52px; height: 52px; background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; margin: 0 auto 20px; font-family: 'DM Serif Display', serif; }
  .step-icon { font-size: 1.6rem; margin-bottom: 10px; }
  .step-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
  .step-card p { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

  /* ─── INDUSTRIES ─── */
  .industries { padding: 100px 5%; max-width: 1200px; margin: 0 auto; }
  .industries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; margin-top: 52px; }
  .industry-chip { background: white; border: 1.5px solid var(--border); border-radius: 12px; padding: 20px 14px; text-align: center; transition: all .2s; cursor: default; }
  .industry-chip:hover { border-color: var(--green); background: var(--green-pale); }
  .industry-chip .emoji { font-size: 1.8rem; margin-bottom: 8px; }
  .industry-chip p { font-size: 0.8rem; font-weight: 600; color: var(--text); }

  /* ─── TESTIMONIALS ─── */
  .testimonials { background: var(--green-pale); padding: 100px 5%; }
  .test-inner { max-width: 1200px; margin: 0 auto; }
  .test-inner .section-title { text-align: left; }
  .test-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 52px; }
  .test-card { background: white; border-radius: 16px; padding: 28px; border: 1px solid rgba(45,122,69,0.1); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
  .stars { color: var(--amber); font-size: 1rem; margin-bottom: 14px; }
  .test-card blockquote { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
  .test-author { display: flex; align-items: center; gap: 12px; }
  .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
  .author-name { font-size: 0.875rem; font-weight: 700; }
  .author-role { font-size: 0.75rem; color: var(--text-muted); }

  /* ─── PRICING ─── */
  .pricing { padding: 100px 5%; max-width: 1100px; margin: 0 auto; text-align: center; }
  .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 56px; }
  .price-card { background: white; border-radius: 20px; padding: 36px 28px; border: 1.5px solid var(--border); text-align: left; position: relative; transition: all .25s; }
  .price-card:hover { box-shadow: var(--card-shadow); }
  .price-card.featured { border-color: var(--green); background: var(--green-dark); color: white; }
  .plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--amber); color: white; font-size: 0.72rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; }
  .plan-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px; }
  .price-card.featured .plan-name { color: rgba(255,255,255,0.6); }
  .price-amount { font-size: 2.2rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
  .price-card.featured .price-amount { color: white; }
  .price-period { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px; }
  .price-card.featured .price-period { color: rgba(255,255,255,0.5); }
  .price-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
  .price-features li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text); }
  .price-card.featured .price-features li { color: rgba(255,255,255,0.85); }
  .price-features li::before { content: '✓'; width: 20px; height: 20px; background: var(--green-pale); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
  .price-card.featured .price-features li::before { background: rgba(255,255,255,0.15); color: white; }
  .btn-plan { width: 100%; padding: 13px; border-radius: 9px; font-weight: 700; font-size: 0.9rem; cursor: pointer; border: none; transition: all .2s; }
  .btn-plan-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
  .btn-plan-outline:hover { border-color: var(--green); color: var(--green); }
  .btn-plan-filled { background: rgba(255,255,255,0.15); color: white; border: 1.5px solid rgba(255,255,255,0.3); }
  .btn-plan-filled:hover { background: rgba(255,255,255,0.25); }

  /* ─── CTA BANNER ─── */
  .cta-banner { margin: 0 5% 80px; background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); border-radius: 24px; padding: 64px 48px; text-align: center; color: white; position: relative; overflow: hidden; }
  .cta-banner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: rgba(255,255,255,0.06); border-radius: 50%; }
  .cta-banner::after { content: ''; position: absolute; bottom: -80px; left: -40px; width: 240px; height: 240px; background: rgba(255,255,255,0.04); border-radius: 50%; }
  .cta-banner h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
  .cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 1rem; }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-white { background: white; color: var(--green-dark); padding: 13px 28px; border-radius: 9px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all .2s; }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
  .btn-ghost-white { background: transparent; color: white; padding: 13px 28px; border-radius: 9px; font-weight: 600; font-size: 0.9rem; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.4); transition: all .2s; }
  .btn-ghost-white:hover { background: rgba(255,255,255,0.1); }

  /* ─── FOOTER ─── */
  footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 64px 5% 32px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
  .footer-brand .nav-logo { margin-bottom: 16px; }
  .footer-brand .nav-logo-text { color: white; }
  .footer-brand p { font-size: 0.875rem; line-height: 1.7; }
  .footer-col h4 { color: white; font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
  .footer-col a { display: block; color: rgba(255,255,255,0.55); font-size: 0.85rem; text-decoration: none; margin-bottom: 10px; transition: color .2s; }
  .footer-col a:hover { color: white; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
  .footer-bottom-links { display: flex; gap: 24px; }
  .footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; }
  .footer-bottom-links a:hover { color: white; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
  }
  @media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .cta-banner { padding: 40px 24px; }
  }

  /* ─── ANIMATIONS ─── */
  .fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ─── EMM SECTION ─── */
  .emm-section { padding: 100px 5%; background: white; }
  .emm-inner { max-width: 1200px; margin: 0 auto; }
  .emm-stats-strip { display: flex; gap: 0; margin-top: 52px; background: var(--green-pale); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
  .emm-stat { flex: 1; text-align: center; padding: 24px 16px; border-right: 1px solid rgba(1,116,190,0.15); }
  .emm-stat:last-child { border-right: none; }
  .emm-stat .num { font-size: 1.6rem; font-weight: 800; color: var(--green-dark); }
  .emm-stat .lbl { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; margin-top: 3px; }
  .emm-sec-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin: 48px 0 16px; display: flex; align-items: center; gap: 10px; }
  .emm-sec-label .num { background: var(--green-pale); color: var(--green-dark); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 800; flex-shrink: 0; }
  .emm-sec-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
  .emm-h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.4rem, 2.2vw, 1.9rem); color: var(--text); margin-bottom: 12px; }
  .emm-p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; max-width: 740px; margin-bottom: 10px; }
  .emm-p strong { color: var(--text); font-weight: 600; }
  .emm-flow { display: flex; align-items: center; gap: 0; margin: 24px 0; flex-wrap: wrap; }
  .emm-flow-step { flex: 1; min-width: 110px; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 13px 14px; text-align: center; }
  .emm-flow-step .f-num { font-size: 0.63rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 5px; }
  .emm-flow-step .f-label { font-size: 0.78rem; font-weight: 600; color: var(--text); }
  .emm-flow-arrow { padding: 0 8px; color: var(--green-light); font-size: 1.2rem; flex-shrink: 0; }
  .emm-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-top: 20px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
  .emm-table thead tr { background: var(--green-pale); }
  .emm-table th { text-align: left; padding: 12px 18px; color: var(--green-dark); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
  .emm-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); color: var(--text-muted); vertical-align: top; }
  .emm-table td:first-child { color: var(--text); font-weight: 600; }
  .emm-table tr:last-child td { border-bottom: none; }
  .emm-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; border-radius: 5px; padding: 2px 10px; }
  .emm-badge-on  { background: #D1FAF0; color: #059669; }
  .emm-badge-off { background: #FEE2E2; color: #DC2626; }
  .emm-badge-req { background: var(--amber-light); color: #D97706; }
  .emm-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
  .emm-grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 20px; }
  .emm-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 20px; transition: all .2s; }
  .emm-card:hover { box-shadow: var(--card-shadow); transform: translateY(-2px); }
  .emm-card .c-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 11px; font-size: 0.95rem; font-weight: 700; }
  .emm-teal .c-icon  { background: #D1FAF0; color: #059669; }
  .emm-blue .c-icon  { background: var(--green-pale); color: var(--green-dark); }
  .emm-amber .c-icon { background: var(--amber-light); color: #D97706; }
  .emm-red .c-icon   { background: #FEE2E2; color: #DC2626; }
  .emm-purple .c-icon{ background: #EDE9FE; color: #7C3AED; }
  .emm-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
  .emm-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
  .emm-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
  .emm-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--green-dark); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
  .emm-col h4 span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; }
  .emm-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .emm-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }
  .emm-list li::before { content: ''; flex-shrink: 0; margin-top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
  .emm-list li strong { color: var(--text); font-weight: 600; }
  .emm-callout { background: var(--green-pale); border-left: 3px solid var(--green); border-radius: 0 10px 10px 0; padding: 14px 20px; margin-top: 18px; }
  .emm-callout p { font-size: 0.875rem; color: var(--text); margin: 0; line-height: 1.65; }
  .emm-callout p strong { color: var(--green-dark); }
  .emm-timeline { padding-left: 14px; border-left: 2px solid var(--border); margin-top: 20px; }
  .emm-tl-item { position: relative; padding: 0 0 28px 26px; }
  .emm-tl-item:last-child { padding-bottom: 0; }
  .emm-tl-item::before { content: ''; position: absolute; left: -7px; top: 4px; width: 13px; height: 13px; border-radius: 50%; background: white; border: 2.5px solid var(--green); }
  .emm-tl-range { font-size: 0.72rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
  .emm-tl-title { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
  .emm-tl-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
  .emm-summary-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 20px; }
  .emm-summary-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 22px; position: relative; overflow: hidden; transition: all .2s; }
  .emm-summary-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--green); }
  .emm-summary-card:hover { box-shadow: var(--card-shadow); transform: translateY(-3px); }
  .emm-summary-card .s-icon { font-size: 1.4rem; margin-bottom: 10px; }
  .emm-summary-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
  .emm-summary-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

  @media (max-width: 700px) {
    .emm-grid-2, .emm-two-col { grid-template-columns: 1fr; }
    .emm-stats-strip { flex-wrap: wrap; }
    .emm-stat { flex: 1 1 40%; border-right: none; border-bottom: 1px solid rgba(1,116,190,0.15); }
    .emm-flow { flex-direction: column; align-items: stretch; }
    .emm-flow-arrow { transform: rotate(90deg); text-align: center; }
  }