/* Home Start */
  /* HERO */
  .hero { padding: 1rem 0 3rem; border-bottom: 1px solid var(--border); margin-bottom: 3rem; display: flex; gap: 3rem; align-items: center; }
  .hero-text { flex: 1; min-width: 0; }
  .hero-visual { flex: 0 0 340px; }
  .hero-visual img { width: 100%; display: block; border-radius: 14px; }
  .hero-badge { display: inline-block; background: var(--orange-dim); border: 1px solid var(--orange-border); color: var(--orange); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 1.5rem; font-weight: 600; }
  .hero h1 { font-size: 64px; font-weight: 700; line-height: 1.05; margin-bottom: 1.75rem; color: var(--navy); letter-spacing: -2px; }
  .hero h1 span { color: var(--orange); }
  .hero-sub { font-size: 17px; color: var(--text-mid); line-height: 1.85; margin-bottom: 2rem; }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-primary { display: inline-block; background: var(--orange); color: var(--navy); text-decoration: none; border: none; padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; transition: opacity 0.15s; }
  .btn-primary:hover { opacity: 0.88; }

  /* TWO-COL SECTION (text left, image right) */
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; margin-bottom: 3rem; }
  .two-col-img img { width: 100%; border-radius: 12px; border: 1px solid var(--border); }

  /* QUOTE */
  .quote-block { margin-bottom: 3rem; padding: 2rem 2.25rem; background: var(--bg); border-left: 4px solid var(--orange); border-radius: 0 12px 12px 0; }
  .quote-block p { font-size: 16px; color: var(--text-mid); line-height: 1.85; font-style: italic; }

  /* PROSE SECTION */
  .prose-section { margin-bottom: 0; }
  .prose-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 1rem; color: var(--navy); letter-spacing: -0.5px; }
  .prose-section p { font-size: 16px; color: var(--text-mid); line-height: 1.85; margin-bottom: 0.875rem; }

  /* FEATURE LIST */
  .feature-list { list-style: none; margin-bottom: 1.5rem; }
  .feature-list li { font-size: 14px; color: var(--text-mid); padding: 5px 0; display: flex; align-items: center; gap: 10px; line-height: 1.7; }
  .feature-list li::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

  /* FEATURE CARDS */
  .features-section { margin-bottom: 3.5rem; }
  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .feature-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 1.5rem; transition: border-color 0.15s, box-shadow 0.15s; }
  .feature-card:hover { border-color: var(--orange); box-shadow: 0 2px 12px rgba(255,153,51,0.10); }
  .feature-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
  .feature-card h3::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
  .feature-card ul { list-style: none; }
  .feature-card ul li { font-size: 13px; color: var(--text-mid); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.7; }
  .feature-card ul li::before { content: ''; width: 4px; height: 4px; background: var(--border-med); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }

  /* CTA BAR */
  .cta-bar { background: var(--orange-dim); border: 1.5px solid var(--orange-border); border-radius: 16px; padding: 2.5rem; text-align: center; }
  .cta-bar h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; color: var(--navy); letter-spacing: -0.3px; }
  .cta-bar p { font-size: 15px; color: var(--text-mid); margin-bottom: 1.75rem; }

  @media (max-width: 720px) {
    .hero { flex-direction: column; }
    .hero-visual { flex: 0 0 auto; width: 100%; }
    .hero h1 { font-size: 40px; letter-spacing: -1px; }
    .two-col { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-bar { text-align: center; }
  }
  /* Home End */