    :root {
      --teal: #2ab5b5;
      --teal-dark: #1a8a8a;
      --teal-light: #e8f7f7;
      --teal-mid: #4dcaca;
      --accent: #f0a500;
      --text: #333333;
      --text-light: #666666;
      --bg: #ffffff;
      --bg-grey: #f7f7f7;
      --border: #e0e0e0;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.7;
    }

    /* ── NAV ── */
    header {
      background: #fff;
      box-shadow: 0 2px 12px rgba(0,0,0,.08);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .header-inner {
      max-width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 64px;
    }
    .logo {
      font-size: 1rem;
      font-weight: 700;
      color: var(--teal-dark);
      letter-spacing: .03em;
      line-height: 1.3;
    }
    .logo span { display: block; font-size: .72rem; font-weight: 400; color: var(--text-light); }
    nav { display: flex; gap: 4px; }
    nav a {
      text-decoration: none;
      color: var(--text);
      font-size: .85rem;
      padding: 8px 12px;
      border-radius: 6px;
      transition: background .15s, color .15s;
      cursor: pointer;
    }
    nav a:hover, nav a.active { background: var(--teal-light); color: var(--teal-dark); }
    .nav-apply {
      background: var(--teal) !important;
      color: #fff !important;
      font-weight: 700;
      padding: 8px 18px !important;
      border-radius: 20px !important;
    }
    .nav-apply:hover { background: var(--teal-dark) !important; }

    /* ── PAGES ── */
    .page { display: none; }
    .page.active { display: block; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-mid) 100%);
      color: #fff;
      padding: 90px 24px 80px;
      text-align: center;
    }
    .hero h1 { font-size: 2.4rem; letter-spacing: .04em; margin-bottom: 18px; }
    .hero p { font-size: 1.15rem; opacity: .92; max-width: 600px; margin: 0 auto 36px; }
    .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn {
      display: inline-block;
      padding: 14px 36px;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: transform .15s, box-shadow .15s;
      text-decoration: none;
      border: none;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
    .btn-white { background: #fff; color: var(--teal-dark); }
    .btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }

    /* ── SECTION ── */
    section { padding: 70px 24px; }
    .section-inner { max-width: 1000px; margin: 0 auto; }
    .section-title {
      font-size: 1.6rem;
      color: var(--teal-dark);
      border-left: 5px solid var(--teal);
      padding-left: 16px;
      margin-bottom: 36px;
    }
    .section-title.center { border-left: none; padding-left: 0; text-align: center; }
    .section-sub {
      font-size: 1rem;
      color: var(--text-light);
      text-align: center;
      margin-top: -26px;
      margin-bottom: 36px;
    }

    /* ── CARDS ── */
    .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
    /* 概要カード：PCは横一列4つ、狭い画面は2×2 */
    .cards-4 { grid-template-columns: repeat(4, 1fr); }
    @media (max-width: 900px) { .cards.cards-4 { grid-template-columns: repeat(2, 1fr); } }
    .card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px 24px;
      box-shadow: 0 2px 10px rgba(0,0,0,.05);
      transition: box-shadow .15s;
    }
    .card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
    .card-icon { font-size: 2.2rem; margin-bottom: 14px; }
    .card h3 { font-size: 1.15rem; color: var(--teal-dark); margin-bottom: 10px; text-align: center; }
    .card p { font-size: 1rem; color: var(--text-light); text-align: center; }

    /* ── SCHOLARSHIP TABLE ── */
    .sch-table-wrap { overflow-x: auto; }
    .sch-table {
      width: 100%;
      border-collapse: collapse;
      font-size: .9rem;
    }
    .sch-table th, .sch-table td {
      border: 1px solid var(--border);
      padding: 12px 14px;
      vertical-align: top;
    }
    .sch-table thead th {
      text-align: center;
      color: #fff;
      font-weight: 700;
    }
    .th-label { background: #555; }
    .th-dental { background: #2ab5b5; }
    .th-hygiene { background: #4dc9b0; }
    .th-nutrition { background: #f0a500; }
    .th-care { background: #e06090; }
    .sch-table tbody tr:nth-child(odd) { background: #fafafa; }
    .sch-table tbody td:first-child { font-weight: 600; color: var(--teal-dark); background: var(--teal-light); }
    .sch-table tbody td { line-height: 1.6; }
    .amount-big { font-size: 1.1rem; font-weight: 700; color: var(--teal-dark); }

    /* ── FLOW ── */
    .flow { display: flex; flex-direction: column; gap: 0; }
    .flow-step {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      position: relative;
      padding-bottom: 32px;
    }
    .flow-step:last-child { padding-bottom: 0; }
    .flow-step:not(:last-child)::after {
      content: "";
      position: absolute;
      left: 19px;
      top: 40px;
      bottom: 0;
      width: 2px;
      background: var(--teal-light);
    }
    .step-num {
      min-width: 40px;
      height: 40px;
      background: var(--teal);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: .95rem;
      flex-shrink: 0;
    }
    .step-body h3 { font-size: 1.05rem; color: var(--teal-dark); margin-bottom: 6px; }
    .step-body p { font-size: .9rem; color: var(--text-light); }

    /* ── DOCS GRID ── */
    .docs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
    .doc-item {
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 20px 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 8px;
      background: #fff;
      transition: border-color .15s, box-shadow .15s;
      cursor: pointer;
    }
    .doc-item:hover { border-color: var(--teal); box-shadow: 0 3px 12px rgba(42,181,181,.15); }
    .doc-icon { font-size: 1.8rem; }
    .doc-label { font-size: 1.05rem; font-weight: 600; color: var(--text); text-align: center; width: 100%; }
    .doc-badge {
      font-size: .85rem;
      background: var(--teal-light);
      color: var(--teal-dark);
      padding: 3px 10px;
      border-radius: 10px;
      display: inline-block;
      margin-top: 2px;
    }

    /* ── PROFILE ── */
    .profile-box {
      background: var(--teal-light);
      border-radius: 16px;
      padding: 40px;
    }
    .profile-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
    .profile-title { font-size: .9rem; color: var(--teal-dark); margin-bottom: 18px; }
    .profile-text { font-size: .93rem; color: var(--text); line-height: 1.85; }

    /* ── OVERVIEW TABLE ── */
    .overview-table { width: 100%; border-collapse: collapse; }
    .overview-table th, .overview-table td {
      border-bottom: 1px solid var(--border);
      padding: 14px 16px;
      text-align: left;
      font-size: .93rem;
    }
    .overview-table th { width: 160px; background: var(--teal-light); color: var(--teal-dark); font-weight: 600; }

    /* ── DISCLOSURE ── */
    .disclosure-section {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 32px;
      margin-bottom: 24px;
    }
    .disclosure-section h3 {
      font-size: 1.1rem;
      color: var(--teal-dark);
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--teal-light);
    }
    .disclosure-note {
      background: #fff8e1;
      border-left: 4px solid var(--accent);
      padding: 14px 18px;
      border-radius: 6px;
      font-size: .88rem;
      color: #555;
      margin-bottom: 28px;
    }

    /* ── INFO BOX ── */
    .info-box {
      background: var(--teal-light);
      border-radius: 12px;
      padding: 24px 28px;
      margin-top: 28px;
    }
    .info-box h3 { font-size: 1rem; color: var(--teal-dark); margin-bottom: 10px; }
    .info-box p { font-size: .9rem; color: var(--text); }

    /* ── RULES LIST ── */
    .rules-list { list-style: none; counter-reset: rule-counter; }
    .rules-list li {
      counter-increment: rule-counter;
      display: flex;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: .9rem;
    }
    .rules-list li::before {
      content: "①②③④⑤⑥⑦⑧";
      /* handled inline */
    }
    .rule-num {
      min-width: 28px;
      height: 28px;
      background: var(--teal-light);
      color: var(--teal-dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .82rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .rule-stop { color: #e06030; font-weight: 600; font-size: .8rem; margin-left: 4px; }
    .rule-end { color: #c0392b; font-weight: 600; font-size: .8rem; margin-left: 4px; }

    /* ── FOOTER ── */
    footer {
      background: #2c3e3e;
      color: #ccc;
      padding: 48px 24px 28px;
    }
    .footer-inner { max-width: 1000px; margin: 0 auto; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
    .footer-brand h2 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
    .footer-brand p { font-size: .85rem; line-height: 1.7; }
    .footer-links h3 { color: #fff; font-size: .9rem; margin-bottom: 14px; }
    .footer-links ul { list-style: none; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a { color: #aaa; font-size: .85rem; text-decoration: none; cursor: pointer; }
    .footer-links a:hover { color: var(--teal-mid); }
    .footer-bottom { border-top: 1px solid #445; padding-top: 20px; text-align: center; font-size: .8rem; color: #888; }

    /* ── BG SECTIONS ── */
    .bg-grey { background: var(--bg-grey); }
    .bg-teal { background: var(--teal-dark); color: #fff; }
    .bg-teal .section-title { color: #fff; border-color: rgba(255,255,255,.5); }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: linear-gradient(135deg, var(--teal-dark), var(--teal));
      color: #fff;
      text-align: center;
      padding: 60px 24px;
    }
    .cta-banner h2 { font-size: 1.8rem; margin-bottom: 14px; }
    .cta-banner p { font-size: 1rem; opacity: .9; margin-bottom: 32px; }

    /* ── TAGS ── */
    .tag {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 12px;
      font-size: .8rem;
      font-weight: 600;
      margin-right: 6px;
    }
    .tag-teal { background: var(--teal-light); color: var(--teal-dark); }
    .tag-yellow { background: #fff3cd; color: #856404; }

    /* ── NOTICE ── */
    .notice {
      border: 1px solid var(--teal);
      border-radius: 10px;
      padding: 20px 24px;
      background: var(--teal-light);
      margin-bottom: 24px;
      font-size: .9rem;
    }
    .notice strong { color: var(--teal-dark); }

    @media (max-width: 768px) {
      .header-inner { padding: 0 12px; flex-wrap: wrap; height: auto; gap: 8px; padding: 10px 12px; }
      .logo img { height: 36px !important; }
      nav { flex-wrap: wrap; gap: 2px; }
      nav a { padding: 6px 8px; font-size: .78rem; }
      nav a span { display: none; }
      .profile-box { flex-direction: column; align-items: center; text-align: center; padding: 24px 16px; }
      .profile-avatar { width: 100px; height: 100px; font-size: 2rem; }
      .footer-grid { grid-template-columns: 1fr; gap: 20px; }
      .cards { grid-template-columns: 1fr; }
      .docs-grid { grid-template-columns: 1fr 1fr; }
      section { padding: 48px 16px; }
      .section-title { font-size: 1.3rem; }
      .sch-table { font-size: .82rem; }
      .sch-table th, .sch-table td { padding: 8px 10px; }
      .overview-table th { width: 110px; }
    }
    @media (max-width: 480px) {
      nav a { padding: 5px 6px; font-size: .74rem; }
      .docs-grid { grid-template-columns: 1fr; }
      .hero-split-text { padding: 36px 24px !important; }
      .hero-split-text h1 { font-size: 1.6rem !important; }
    }

    /* ══ ENHANCED DESIGN ══ */
    @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

    body { font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif; }

    /* Scroll-reveal base */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: .08s; }
    .reveal-delay-2 { transition-delay: .16s; }
    .reveal-delay-3 { transition-delay: .24s; }
    .reveal-delay-4 { transition-delay: .32s; }

    /* Header scroll effect */
    header { transition: box-shadow .3s, backdrop-filter .3s; }
    header.scrolled {
      box-shadow: 0 4px 24px rgba(0,0,0,.12);
      backdrop-filter: blur(8px);
      background: rgba(255,255,255,.96);
    }

    /* Nav links — animated underline */
    nav a { position: relative; }
    nav a:not(.nav-apply)::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 12px; right: 12px;
      height: 2px;
      background: var(--teal);
      transform: scaleX(0);
      transition: transform .25s cubic-bezier(.22,1,.36,1);
      transform-origin: left;
    }
    nav a:not(.nav-apply):hover::after,
    nav a:not(.nav-apply).active::after { transform: scaleX(1); }
    .nav-apply {
      transition: background .2s, transform .15s, box-shadow .2s !important;
    }
    .nav-apply:hover { transform: translateY(-1px) !important; box-shadow: 0 4px 12px rgba(42,181,181,.35) !important; }

    /* Cards — elevated on hover */
    .card {
      border: none !important;
      box-shadow: 0 2px 12px rgba(0,0,0,.06) !important;
      transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s !important;
    }
    .card:hover {
      transform: translateY(-6px) !important;
      box-shadow: 0 12px 36px rgba(42,181,181,.18) !important;
    }
    .card h3 { font-size: 1rem; font-weight: 700; }

    /* Section titles — refined */
    .section-title {
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: .02em;
      position: relative;
      padding-left: 20px !important;
    }
    .section-title::before {
      content: '';
      position: absolute;
      left: 0; top: 4px; bottom: 4px;
      width: 4px;
      background: linear-gradient(to bottom, var(--teal), var(--teal-mid));
      border-radius: 2px;
    }
    .section-title.center::before { display: none; }
    .section-title.center { padding-left: 0 !important; }

    /* Buttons — polished */
    .btn {
      position: relative;
      overflow: hidden;
      letter-spacing: .04em;
      font-size: .92rem;
    }
    .btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,.18);
      opacity: 0;
      transition: opacity .2s;
    }
    .btn:hover::after { opacity: 1; }
    .btn-white { 
      box-shadow: 0 2px 10px rgba(0,0,0,.12);
      transition: box-shadow .2s, transform .15s;
    }
    .btn-white:hover { box-shadow: 0 6px 20px rgba(0,0,0,.18); }

    /* Hero split */
    .hero-split-text h1 { letter-spacing: -.01em; font-weight: 700; }
    .hero-split-text p { font-weight: 300; }

    /* Tables — refined */
    .sch-table { border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
    .sch-table th, .sch-table td { border-color: #eee !important; }
    .sch-table tbody tr { transition: background .15s; }
    .sch-table tbody tr:hover { background: #f0fbfb !important; }

    .overview-table tr { transition: background .15s; }
    .overview-table tr:hover td, .overview-table tr:hover th { background: #f0fbfb; }

    /* Flow steps — refined */
    .flow-step:not(:last-child)::after {
      background: linear-gradient(to bottom, var(--teal-light), transparent) !important;
    }
    .step-num {
      background: linear-gradient(135deg, var(--teal-dark), var(--teal)) !important;
      box-shadow: 0 3px 10px rgba(42,181,181,.35);
      font-weight: 700;
    }

    /* ── PC Steps Timeline ── */
    .steps-pc { display: flex; flex-direction: column; gap: 0; }
    .step-pc-item {
      display: grid;
      grid-template-columns: 56px 1fr auto;
      gap: 0 24px;
      align-items: start;
    }
    .step-pc-left {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .step-pc-num {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, var(--teal-dark), var(--teal));
      color: #fff; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: .95rem;
      box-shadow: 0 3px 10px rgba(42,181,181,.35);
      flex-shrink: 0; position: relative; z-index: 1;
    }
    .step-pc-line {
      width: 2px; flex: 1; min-height: 36px;
      background: linear-gradient(to bottom, var(--teal), var(--teal-light));
      margin: 4px 0;
    }
    .step-pc-item:last-child .step-pc-line { display: none; }
    .step-pc-content {
      padding: 8px 0 32px;
    }
    .step-pc-content h3 {
      font-size: 1.05rem; font-weight: 700;
      color: var(--teal-dark); margin-bottom: 6px;
    }
    .step-pc-content p { font-size: .88rem; color: var(--text-light); line-height: 1.65; }
    .step-pc-addr {
      background: var(--teal-light); border-radius: 8px;
      padding: 10px 16px; margin-top: 10px;
      font-size: .88rem; line-height: 1.7;
    }
    .step-pc-meta { padding: 8px 0 32px; text-align: right; }
    .step-pc-tag {
      display: inline-block;
      background: var(--teal-light); color: var(--teal-dark);
      border-radius: 20px; padding: 5px 16px;
      font-size: .8rem; font-weight: 700; white-space: nowrap;
    }
    .tag-deadline { background: #fff3e0 !important; color: #d07000 !important; }
    .tag-pay { background: #e8f5e9 !important; color: #2a7a2a !important; }
    @media (max-width: 767px) {
      .step-pc-item { grid-template-columns: 48px 1fr; }
      .step-pc-meta { display: none; }
      .step-pc-content { padding-right: 0; }
    }

    /* Disclosure sections */
    .disclosure-section {
      border-radius: 14px !important;
      border: none !important;
      box-shadow: 0 2px 14px rgba(0,0,0,.06);
      transition: box-shadow .25s;
    }
    .disclosure-section:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
    .disclosure-section h3 {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: .02em;
      color: var(--teal-dark);
    }

    /* Doc items */
    .doc-item {
      border-radius: 12px !important;
      transition: all .25s cubic-bezier(.22,1,.36,1) !important;
    }
    .doc-item:hover {
      border-color: var(--teal) !important;
      transform: translateY(-3px);
      box-shadow: 0 6px 18px rgba(42,181,181,.18) !important;
    }

    /* Profile box */
    .profile-box {
      background: linear-gradient(135deg, #e8f7f7 0%, #f0fafa 100%) !important;
      border: none;
      box-shadow: 0 4px 20px rgba(42,181,181,.1);
    }
    .profile-avatar {
      background: linear-gradient(135deg, var(--teal-dark), var(--teal)) !important;
      box-shadow: 0 4px 16px rgba(42,181,181,.3);
    }

    /* Footer */
    footer { background: #1e2e2e !important; }
    footer a:hover { color: var(--teal-mid) !important; }

    /* Page transition */
    .page.active { animation: pageIn .35s cubic-bezier(.22,1,.36,1); }
    @keyframes pageIn {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: none; }
    }

    /* Count-up numbers */
    .count-up { display: inline-block; }

    /* CTA banner */
    .cta-banner {
      background: linear-gradient(135deg, #0d6b6b 0%, var(--teal-dark) 40%, var(--teal) 100%) !important;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: rgba(255,255,255,.04);
      top: -200px; right: -100px;
      pointer-events: none;
    }

    /* Schedule grid */
    .schedule-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 0;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 14px rgba(0,0,0,.07);
      margin: 24px 0;
    }
    .schedule-step {
      background: #fff;
      padding: 24px 20px;
      border-right: 1px solid #eee;
      position: relative;
      transition: background .2s;
    }
    .schedule-step:last-child { border-right: none; }
    .schedule-step:hover { background: var(--teal-light); }
    .schedule-step .step-date {
      font-size: .78rem;
      color: var(--teal-dark);
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .schedule-step .step-label {
      font-size: .88rem;
      font-weight: 600;
      color: var(--text);
    }
    .schedule-step .step-num-small {
      width: 26px; height: 26px;
      background: var(--teal);
      color: #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .75rem; font-weight: 700;
      margin-bottom: 12px;
    }
    @media (max-width: 640px) {
      .schedule-grid { grid-template-columns: 1fr 1fr; }
      .schedule-step { border-right: 1px solid #eee; border-bottom: 1px solid #eee; }
    }


    /* ── TIMELINE ── */
    .timeline-row {
      display: flex; align-items: flex-start; justify-content: center;
      gap: 0; flex-wrap: wrap; margin-top: 20px;
    }
    .tl-item {
      flex: 1 1 140px; max-width: 200px;
      display: flex; flex-direction: column; align-items: center;
      text-align: center; padding: 0 8px;
    }
    .tl-dot {
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--teal); border: 3px solid #fff;
      box-shadow: 0 0 0 3px var(--teal);
      margin-bottom: 12px; flex-shrink: 0;
    }
    .tl-item-last .tl-dot { background: var(--teal-dark); box-shadow: 0 0 0 3px var(--teal-dark); }
    .tl-line {
      flex: 0 0 40px; height: 3px; background: var(--teal);
      margin-top: 8px; align-self: flex-start;
    }
    .tl-date { font-size: .78rem; color: var(--teal-dark); font-weight: 700; margin-bottom: 4px; }
    .tl-label { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
    .tl-desc { font-size: .82rem; color: var(--text-light); line-height: 1.5; }

    /* ── FEATURES ── */
    .feature-row { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 12px; }
    .feature-item {
      flex: 1 1 220px; text-align: center; padding: 32px 20px;
      background: #fff; border-radius: 14px;
      box-shadow: 0 2px 14px rgba(0,0,0,.06);
      transition: transform .2s, box-shadow .2s;
    }
    .feature-item:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(42,181,181,.15); }
    .feature-icon-wrap { display: flex; justify-content: center; margin-bottom: 16px; }
    .feature-title { font-size: 1.05rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 10px; }
    .feature-text { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

    /* ── FLOW ── */
    .flow-row {
      display: flex; align-items: flex-start; justify-content: center;
      gap: 12px; flex-wrap: wrap; margin-top: 16px;
    }
    .flow-step {
      flex: 1 1 150px; max-width: 190px;
      display: flex; flex-direction: column; align-items: center;
      text-align: center; padding: 24px 12px;
      background: #fff; border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,.05);
    }
    .flow-num {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, var(--teal-dark), var(--teal));
      color: #fff; font-size: 1.2rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 12px;
    }
    .flow-label { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
    .flow-desc { font-size: .82rem; color: var(--text-light); line-height: 1.5; }
    .flow-arrow {
      flex: 0 0 auto; padding: 0 2px; font-size: 1.4rem;
      color: var(--teal); align-self: center;
    }

    @media (max-width: 600px) {
      .timeline-row { flex-direction: column; align-items: center; }
      .tl-line { width: 3px; height: 30px; flex: 0 0 auto; margin: 0; }
      .flow-row { flex-direction: column; align-items: center; }
      .flow-arrow { transform: rotate(90deg); }
    }
