  :root {
    --sba-green: #6ABE45;
    --sba-green-deep: #4a9b2d;
    --sba-green-darker: #2d5f1a;
    --sba-green-soft: #e8f5e0;
    --sba-green-mist: #f5faf2;
    --highlight-yellow: #fff462;

    --cream: #fafaf7;
    --ink: #161816;
    --ink-soft: #4a4f4c;
    --ink-mute: #8a8f8c;
    --line: #e5e8e3;
    --black: #0a0c0a;

    --accent-down: #4a9b2d;
    --serif: 'Inter Tight', sans-serif;
    --sans: 'Inter Tight', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', monospace;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }
  .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

  .variant-banner {
    background: var(--sba-green);
    color: var(--black);
    padding: 12px 0;
    text-align: center;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
  }

  .nav {
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(8px);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
  }
  .logo-img { height: 40px; width: auto; display: block; }
  .nav-links {
    display: flex; gap: 36px; list-style: none;
    font-size: 15px;
  }
  .nav-links a {
    color: var(--ink-soft); text-decoration: none;
    transition: color 0.15s; font-weight: 500;
  }
  .nav-links a:hover { color: var(--sba-green-deep); }
  .nav-cta {
    background: var(--black); color: var(--cream);
    padding: 11px 22px; border-radius: 6px;
    text-decoration: none; font-size: 14px; font-weight: 500;
    transition: background 0.15s;
  }
  .nav-cta:hover { background: var(--sba-green-deep); }

  .hero {
    padding: 80px 0 60px;
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 64px; align-items: center;
  }
  .hero-eyebrow {
    font-family: var(--mono); font-size: 12px;
    color: var(--sba-green-deep); text-transform: uppercase;
    letter-spacing: 0.12em; margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
  }
  .hero-eyebrow::before {
    content: ""; width: 24px; height: 2px; background: var(--sba-green);
  }
  .hero h1 {
    font-family: var(--serif); font-size: 64px;
    line-height: 1.05; letter-spacing: -0.035em;
    font-weight: 700; color: var(--black); margin-bottom: 24px;
  }
  .hero h1 em { font-style: italic; color: var(--sba-green-deep); font-weight: 500; }
  /* YELLOW HIGHLIGHTER STYLE */
  .hero h1 .highlight {
    background: linear-gradient(180deg, transparent 65%, var(--highlight-yellow) 65%, var(--highlight-yellow) 92%, transparent 92%);
    padding: 0 6px;
  }
  .hero-sub {
    font-size: 19px; color: var(--ink-soft);
    margin-bottom: 36px; max-width: 520px; line-height: 1.55;
  }
  .hero-actions { display: flex; gap: 16px; align-items: center; }
  .btn-primary {
    background: var(--sba-green); color: var(--black);
    padding: 15px 28px; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: 15px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
  }
  .btn-primary:hover {
    background: var(--sba-green-deep); color: var(--cream);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(74, 155, 45, 0.25);
  }
  .btn-secondary {
    color: var(--black); text-decoration: none;
    font-weight: 500; font-size: 15px;
    border-bottom: 1.5px solid var(--sba-green);
    padding-bottom: 2px;
  }

  .price-widget {
    background: white; border: 1px solid var(--line);
    border-radius: 16px; padding: 32px;
    box-shadow: 0 1px 3px rgba(106, 190, 69, 0.05), 0 12px 32px rgba(45, 95, 26, 0.08);
    position: relative; overflow: hidden;
  }
  .price-widget::before {
    content: ""; position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--sba-green), var(--sba-green-deep));
  }
  .pw-header {
    display: flex; justify-content: space-between;
    align-items: flex-start; margin-bottom: 20px;
  }
  .pw-label {
    font-family: var(--mono); font-size: 11px;
    color: var(--ink-mute); text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 6px;
  }
  .pw-title {
    font-family: var(--serif); font-size: 18px;
    font-weight: 500; color: var(--black);
  }
  .pw-live {
    display: flex; align-items: center; gap: 6px;
    font-family: var(--mono); font-size: 11px;
    color: var(--sba-green-deep); font-weight: 600;
  }
  .pw-dot {
    width: 8px; height: 8px; background: var(--sba-green);
    border-radius: 50%; animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(106, 190, 69, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(106, 190, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(106, 190, 69, 0); }
  }
  .pw-price {
    font-family: var(--serif); font-size: 60px;
    font-weight: 400; letter-spacing: -0.02em;
    color: var(--black); line-height: 1; margin-bottom: 8px;
  }
  .pw-price .unit {
    font-family: var(--sans); font-size: 18px;
    color: var(--ink-mute); font-weight: 400; margin-left: 8px;
  }
  .pw-change {
    font-family: var(--mono); font-size: 14px;
    color: var(--accent-down); margin-bottom: 24px; font-weight: 500;
  }
  .pw-chart {
    height: 80px; margin: 24px 0;
    display: flex; align-items: flex-end; gap: 3px;
  }
  .pw-bar {
    flex: 1; background: var(--sba-green-soft);
    border-radius: 2px 2px 0 0; transition: background 0.2s;
  }
  .pw-bar:hover { background: var(--sba-green); }
  .pw-bar.highlight { background: var(--sba-green); }
  .pw-footer {
    border-top: 1px solid var(--line); padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .pw-our { font-size: 13px; color: var(--ink-soft); }
  .pw-our strong {
    font-family: var(--mono); color: var(--black); font-weight: 600;
  }
  .pw-cta {
    color: var(--sba-green-deep); text-decoration: none;
    font-size: 13px; font-weight: 600;
    border-bottom: 1.5px solid var(--sba-green); padding-bottom: 1px;
  }

  .trust {
    background: var(--sba-green-mist);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 36px 0; margin: 40px 0 0;
  }
  .trust-inner {
    display: flex; justify-content: space-between; align-items: center; gap: 32px;
  }
  .trust-label {
    font-family: var(--mono); font-size: 11px;
    color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.1em;
  }
  .trust-stats { display: flex; gap: 56px; }
  .stat-num {
    font-family: var(--serif); font-size: 36px;
    color: var(--black); font-weight: 700;
    line-height: 1; letter-spacing: -0.02em;
  }
  .stat-label {
    font-size: 12px; color: var(--ink-mute); margin-top: 6px;
    font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.06em;
  }

  section { padding: 100px 0; }
  .section-eyebrow {
    font-family: var(--mono); font-size: 12px;
    color: var(--sba-green-deep); text-transform: uppercase;
    letter-spacing: 0.12em; margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-eyebrow::before {
    content: ""; width: 24px; height: 2px; background: var(--sba-green);
  }
  .section-title {
    font-family: var(--serif); font-size: 48px;
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--black); font-weight: 700;
    max-width: 740px; margin-bottom: 24px;
  }
  .section-title em { font-style: italic; color: var(--sba-green-deep); font-weight: 500; }
  .section-lead {
    font-size: 18px; color: var(--ink-soft);
    max-width: 640px; margin-bottom: 60px;
  }

  .services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .service-card {
    background: white; border: 1px solid var(--line);
    border-radius: 16px; padding: 40px;
    transition: all 0.2s; position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ""; position: absolute; bottom: 0; left: 0;
    width: 0; height: 3px; background: var(--sba-green); transition: width 0.3s;
  }
  .service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(45, 95, 26, 0.1);
    border-color: var(--sba-green-soft);
  }
  .service-card:hover::before { width: 100%; }
  .service-icon {
    width: 56px; height: 56px;
    background: var(--sba-green-soft); border-radius: 12px;
    display: grid; place-items: center;
    color: var(--sba-green-deep); margin-bottom: 24px;
  }
  .service-card h3 {
    font-family: var(--serif); font-size: 30px; font-weight: 700;
    color: var(--black); margin-bottom: 12px; letter-spacing: -0.01em;
  }
  .service-card p {
    color: var(--ink-soft); margin-bottom: 24px; font-size: 15px;
  }
  .service-features { list-style: none; margin-bottom: 28px; }
  .service-features li {
    padding: 10px 0; color: var(--ink-soft); font-size: 14px;
    display: flex; align-items: flex-start; gap: 12px;
    border-bottom: 1px solid var(--line);
  }
  .service-features li:last-child { border-bottom: none; }
  .service-features li::before {
    content: ""; flex-shrink: 0; width: 16px; height: 16px;
    background: var(--sba-green); border-radius: 50%; margin-top: 3px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path fill='none' stroke='%23161816' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M2 5l2 2 4-4'/></svg>");
    background-repeat: no-repeat; background-position: center;
  }
  .service-link {
    color: var(--black); text-decoration: none;
    font-size: 14px; font-weight: 600;
    border-bottom: 1.5px solid var(--sba-green); padding-bottom: 1px;
  }

  .philosophy {
    background: var(--black); color: var(--cream);
    border-radius: 24px; padding: 80px;
    position: relative; overflow: hidden;
  }
  .philosophy::before {
    content: ""; position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--sba-green) 0%, transparent 60%);
    opacity: 0.25;
  }
  .philosophy::after {
    content: ""; position: absolute;
    bottom: -100px; left: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, var(--sba-green-deep) 0%, transparent 60%);
    opacity: 0.2;
  }
  .philosophy .section-eyebrow { color: var(--sba-green); }
  .philosophy .section-eyebrow::before { background: var(--sba-green); }
  .philosophy h2 {
    font-family: var(--serif); font-size: 52px;
    line-height: 1.15; color: var(--cream); font-weight: 700;
    max-width: 820px; margin-bottom: 32px;
    position: relative; letter-spacing: -0.02em;
  }
  .philosophy h2 em { font-style: italic; color: var(--sba-green); font-weight: 500; }
  .philosophy p {
    font-size: 18px; max-width: 660px;
    color: rgba(250, 250, 247, 0.8);
    line-height: 1.65; position: relative;
  }
  .philosophy-signature {
    margin-top: 48px; padding-top: 32px;
    border-top: 1px solid rgba(106, 190, 69, 0.3);
    position: relative; max-width: 400px;
  }
  .philosophy-signature .label {
    font-family: var(--mono); font-size: 11px;
    color: var(--sba-green); text-transform: uppercase; letter-spacing: 0.12em;
  }
  .philosophy-signature .name {
    font-family: var(--serif); font-size: 16px;
    color: var(--cream); font-style: italic; margin-top: 6px;
  }

  .blog-section-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 60px;
  }
  .blog-section-header .left { flex: 1; }
  .blog-all-link {
    color: var(--black); text-decoration: none;
    font-size: 14px; font-weight: 600;
    border-bottom: 1.5px solid var(--sba-green); padding-bottom: 2px;
  }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .blog-card {
    background: white; border: 1px solid var(--line);
    border-radius: 16px; overflow: hidden;
    transition: all 0.2s; cursor: pointer;
  }
  .blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(45, 95, 26, 0.1);
  }
  .blog-img {
    height: 200px;
    background: linear-gradient(135deg, var(--sba-green-soft), var(--sba-green-mist));
    display: grid; place-items: center;
    color: var(--sba-green-deep);
    font-family: var(--serif); font-size: 56px;
    position: relative; overflow: hidden;
  }
  .blog-img.alt1 {
    background: linear-gradient(135deg, var(--sba-green), var(--sba-green-deep));
    color: var(--cream);
  }
  .blog-img.alt2 { background: var(--black); color: var(--sba-green); }
  .blog-content { padding: 28px; }
  .blog-meta {
    display: flex; gap: 12px; align-items: center;
    font-family: var(--mono); font-size: 11px;
    color: var(--ink-mute); text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 14px;
  }
  .blog-cat {
    color: var(--sba-green-deep);
    padding: 4px 10px;
    background: var(--sba-green-soft);
    border-radius: 4px; font-weight: 600;
  }
  .blog-card h3 {
    font-family: var(--serif); font-size: 22px;
    font-weight: 700; color: var(--black);
    margin-bottom: 12px; line-height: 1.3; letter-spacing: -0.01em;
  }
  .blog-card p {
    color: var(--ink-soft); font-size: 14px;
    margin-bottom: 16px; line-height: 1.55;
  }
  .blog-link {
    color: var(--black); text-decoration: none;
    font-size: 13px; font-weight: 600;
    border-bottom: 1.5px solid var(--sba-green); padding-bottom: 1px;
  }

  .cta-wrapper { padding: 60px 0 100px; }
  .cta-final {
    text-align: center; padding: 100px 60px;
    background: var(--sba-green-mist);
    border-radius: 24px; position: relative; overflow: hidden;
  }
  .cta-final::before {
    content: ""; position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--sba-green), var(--sba-green-deep));
  }
  .cta-final h2 {
    font-family: var(--serif); font-size: 56px;
    line-height: 1.1; color: var(--black); font-weight: 700;
    max-width: 780px; margin: 0 auto 24px; letter-spacing: -0.02em;
  }
  .cta-final h2 em { font-style: italic; color: var(--sba-green-deep); font-weight: 500; }
  .cta-final p {
    font-size: 19px; color: var(--ink-soft);
    max-width: 560px; margin: 0 auto 40px;
  }

  footer {
    background: var(--black); color: var(--cream);
    padding: 80px 0 32px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 60px;
  }
  .footer-brand-img { height: 42px; margin-bottom: 16px; display: block; }
  .footer-tag {
    color: rgba(250, 250, 247, 0.65);
    font-size: 14px; max-width: 320px; line-height: 1.6;
  }
  .footer-col h4 {
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--sba-green); margin-bottom: 20px; font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    color: rgba(250, 250, 247, 0.75); text-decoration: none;
    font-size: 14px; transition: color 0.15s;
  }
  .footer-col a:hover { color: var(--sba-green); }
  .footer-bottom {
    border-top: 1px solid rgba(250, 250, 247, 0.1);
    padding-top: 32px;
    display: flex; justify-content: space-between;
    font-size: 13px; color: rgba(250, 250, 247, 0.5);
  }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding: 48px 0 40px; }
    .hero h1 { font-size: 40px; }
    .services-grid, .blog-grid, .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .philosophy { padding: 48px 32px; }
    .philosophy h2, .cta-final h2 { font-size: 30px; }
    .section-title { font-size: 28px; }
    .trust-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .trust-stats { gap: 24px; flex-wrap: wrap; }
    .nav-links { display: none; }
    section { padding: 60px 0; }
    .cta-final { padding: 60px 32px; }
    .blog-section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  }
