  :root {
    /* メインカラー：#156ebdを基準とした鮮やかなブルー系 */
    --navy: #1465ac;            /* 基準色：鮮やかなロイヤルブルー */
    --deep-blue: #0d4f8a;       /* navyより深いブルー（見出し・濃い箇所用）*/
    --sky: #2e8ad9;             /* navyより少し明るく鮮やかなブルー */
    --sky-light: #8dccff;       /* 明るめのスカイブルー */

    /* アクセントカラー：ブルーを引き立てる温かみのある補色 */
    --accent: #df712d;          /* 鮮やかなオレンジ（補色アクセント）*/
    --accent-light: #f8b487;    /* やわらかいオレンジ */
    --gold: #d49544;            /* ベージュゴールド */

    /* 背景・ベース */
    --cream: #eaf3fb;           /* navyに合わせた淡ブルー背景 */
    --white: #ffffff;
    --gray-light: #d4e6f4;      /* セクション区切り用の淡ブルーグレー */
    --gray: #6b8298;

    /* テキスト */
    --text: #142a40;            /* 濃いネイビーグレー（読みやすさ重視）*/
    --text-light: #4a5d75;

    /* グラデーション */
    --gradient-hero: linear-gradient(135deg, #0d1b2a 0%, #1b3a5c 50%, #0d2d4a 100%);
    --gradient-accent: linear-gradient(135deg, #156ebd, #2e8ad9);
    --gradient-blue: linear-gradient(135deg, #0d4f8a, #156ebd);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
  }

  /* ===== HERO ===== */
  .hero {
    background:url('scaimg/keyvisual.webp') center center / cover no-repeat;
    /* background-blend-mode: multiply; */
    position: relative;
    overflow: hidden;
    padding: 20px 20px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9, 34, 50, 0.6);
}

  /* .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(46,126,237,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(46,126,237,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
  } */

  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease both;
  }


  .hero-eyebrow {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--sky-light);
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    animation: fadeUp 0.7s 0.1s ease both;
  }

  .hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(32px, 5.5vw, 58px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 28px;
    animation: fadeUp 0.7s 0.2s ease both;
  }

  .page-title {
    color: var(--white);
    margin-top: 8px;
    margin-bottom: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    animation: none;
  }

  .hero-title em {
    font-style: normal;
    color: var(--accent);
    position: relative;
  }

  .page-header {
    padding: 30px 20px;
    background: var(--deep-blue);
  }

  .page-footer {
    padding: 24px 20px;
    background: var(--deep-blue);
    text-align: center;
    color: var(--text-light);
  }

  .page-footer p {
    margin: 0;
    font-size: 14px;
  }

  .hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    margin-bottom: 48px;
    font-weight: 300;
    animation: fadeUp 0.7s 0.3s ease both;
  }

  .hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 52px;
    animation: fadeUp 0.7s 0.4s ease both;
  }

  .pill {
    background: var(--deep-blue);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,1);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    backdrop-filter: blur(4px);
  }

  .hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    animation: fadeUp 0.7s 0.5s ease both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    font-weight: 800;
    font-size: 16px;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 28px rgba(21,110,189,0.42), 0 2px 8px rgba(13,79,138,0.22);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(21,110,189,0.52), 0 4px 12px rgba(13,79,138,0.28);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 15px;
    padding: 17px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.35);
    transition: background 0.2s, border-color 0.2s;
  }

  .btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
  }

  /* ===== SECTION BASE ===== */
  section { padding: 80px 20px; }

  .container { max-width: 900px; margin: 0 auto; }

  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--text);
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .section-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
    max-width: 640px;
  }

  /* ===== PAIN POINTS ===== */
  .pain {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  .pain::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,126,237,0.12) 0%, transparent 70%);
  }

  .pain .section-title { color: var(--white); }
  .pain .section-label { color: var(--accent-light); }

  .pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 48px;
  }

  .pain-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 22px 22px 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: background 0.2s, border-color 0.2s;
  }



  .pain-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    /* background: rgba(245,166,35,0.15); */
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }

  .pain-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .pain-text {
    font-size: 14px; 
    color: var(--text);
    line-height: 1.7;
    font-weight: 400;
  }

  /* ===== PROBLEM STATEMENT ===== */
  .problem {
    background: var(--gray-light);
    text-align: center;
  }

  .problem-statement {
    max-width: 700px;
    margin: 0 auto;
  }

  .problem-statement p {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 16px;
  }

  .problem-statement strong {
    color: var(--navy);
    font-weight: 800;
  }

  .problem-highlight {
    background: var(--white);
    border-left: 4px solid var(--sky);
    padding: 24px 32px;
    border-radius: 0 12px 12px 0;
    margin: 40px auto;
    text-align: left;
    max-width: 680px;
  }

  .problem-highlight p {
    font-size: 18px;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.8;
  }

  /* ===== ABOUT ===== */
  .about { background: var(--white); }

  .about-card {
    background: var(--gradient-hero);
    border-radius: 20px;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    margin-top: 48px;
  }

  .about-card::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,126,237,0.2) 0%, transparent 70%);
  }

  .about-card-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-light);
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .about-card-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .about-card-title span { color: var(--accent); }

  .about-card-text {
    font-size: 15px;
    color: rgba(255,255,255,0.78);
    line-height: 1.95;
    max-width: 580px;
    position: relative;
    z-index: 1;
  }

  /* ===== CURRICULUM ===== */
  .curriculum { background: var(--cream); }

  .curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }

  .curriculum-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1.5px solid rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .curriculum-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  }

  .curriculum-num {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--sky);
    margin-bottom: 10px;
  }

  .curriculum-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .curriculum-items {
    list-style: none;
  }

  .curriculum-items li {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .curriculum-items li::before {
    content: '▸';
    color: var(--sky);
    font-size: 11px;
    flex-shrink: 0;
  }

  /* ===== BEFORE/AFTER ===== */
  .transformation {
    background: var(--gray-light);
  }

  .ba-grid {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    align-items: stretch;
    margin-top: 48px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }

  @media (max-width: 640px) {
    .ba-grid { grid-template-columns: 1fr; }
    .ba-arrow { display: none; }
    .hero-title span { font-size: clamp(20px, 6vw, 48px); }
  }

  .ba-before {
    background: #f0f0f0;
    padding: 36px 32px;
    border-right: none;
  }

  .ba-after {
    background: #f0f0f0;
    padding: 36px 32px;
  }

  .ba-label {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
  }

  .ba-label.before { color: #c0392b; }
  .ba-label.after { color: var(--sky); }

  .ba-list { list-style: none; }

  .ba-list li {
    font-size: 14px;
    line-height: 1.75;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
  }

  .ba-list li .icon { flex-shrink: 0; font-size: 14px; margin-top: 2px; }

  .ba-arrow {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: var(--sky);
  }

  /* ===== FEATURES ===== */
  .features { background: var(--white); }

  .features-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .feature-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 8px 24px;
    align-items: start;
    background: var(--gray-light);
    border-radius: 16px;
    padding: 28px;
    border: 1.5px solid transparent;
    transition: border-color 0.2s;
  }

  .feature-item:hover { border-color: var(--sky-light); }

  .feature-num {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--gradient-blue);
    color: var(--white);
    font-weight: 900;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: 'DM Serif Display', serif;
  }

  .feature-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
  }

  .feature-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.85;
    grid-column: 1 / -1;
    margin: 0;
  }

  .feature-desc strong { color: var(--navy); font-weight: 700; }

  /* ===== CERTIFICATION ===== */
  .certification {
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .certification::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(245,166,35,0.08) 0%, transparent 70%);
  }

  .cert-badge {
    display: inline-block;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 10px;
    margin: 40px 0 32px;
    position: relative;
    z-index: 1;
  }

  .cert-badge-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 8px;
    line-height: 1.5;
  }

  .cert-badge-sub {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.85);
  }

  .cert-uses {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
  }

  .cert-use-tag {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.88);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
  }

  /* ===== FOR WHOM ===== */
  .forwho { background: var(--cream); }

  .forwho-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 40px;
  }

  @media (max-width: 480px) {
    .forwho-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
  }

  .forwho-item {
    background: var(--white);
    border: 1.5px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: border-color 0.2s, background 0.2s;
  }

  .forwho-item:hover {
    border-color: var(--sky);
    background: #f0f7ff;
  }

  .forwho-item .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--sky);
    flex-shrink: 0;
  }

  /* ===== OVERVIEW TABLE ===== */
  .overview { background: var(--white); }

  .overview-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  }

  .overview-table tr:nth-child(odd) { background: var(--cream); }
  .overview-table tr:nth-child(even) { background: var(--white); }
  .overview-table tr:first-child { background: var(--navy); }

  .overview-table th {
    padding: 18px 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    letter-spacing: 0.05em;
  }

  .overview-table td {
    padding: 16px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    vertical-align: top;
  }

  .overview-table td:first-child {
    font-weight: 700;
    color: var(--navy);
    width: 38%;
    border-right: 2px solid rgba(0,0,0,0.05);
  }

  .price-big {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
  }
    .price-small {
    /* font-family: 'DM Serif Display', serif; */
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
  }

  .price-note {
    display: inline-block;
    background: #e8f4e8;
    color: #2d6a2d;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    margin-left: 8px;
    vertical-align: middle;
  }

  /* ===== FAQ ===== */
  .faq { background: var(--gray-light); }

  .faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid rgba(0,0,0,0.07);
  }

  .faq-q {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
  }

  .faq-q-mark {
    width: 26px; height: 26px;
    background: var(--gradient-blue);
    color: var(--white);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;
  }

  .faq-a {
    padding: 0 24px 20px 64px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.85;
  }

  /* ===== CTA FINAL ===== */
  .cta-final {
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
  }

  .cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 0%, rgba(46,126,237,0.2) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 80% 80%, rgba(245,166,35,0.08) 0%, transparent 60%);
  }

  .cta-final .section-title { color: var(--white); position: relative; z-index: 1; }
  .cta-final .section-label { color: var(--accent-light); position: relative; z-index: 1; }

  .cta-final-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 2;
    margin: 24px auto 48px;
    max-width: 600px;
    position: relative;
    z-index: 1;
  }

  .cta-final-desc strong { color: var(--accent-light); }

  .cta-final-btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
  }

  .cta-final-note {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.9;
  }

  /* ===== FORM SECTION ===== */
  .form-section {
    background: var(--cream);
    padding: 80px 20px;
  }

  .form-card {
    max-width: 620px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 48px 44px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.09);
    border: 1.5px solid rgba(0,0,0,0.07);
  }

  .confirm-card .form-group {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .confirm-card .form-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .form-card .section-label { margin-bottom: 8px; }

  .form-card .section-title {
    font-size: clamp(20px, 3vw, 26px);
    margin-bottom: 8px;
  }

  .form-note {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 32px;
    line-height: 1.7;
  }

  .form-group { margin-bottom: 20px; }

  .form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
    letter-spacing: 0.03em;
  }

  .form-label span { color: #c0392b; margin-left: 4px; }

  .form-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text);
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    /* -webkit-appearance: none; */
  }

  .form-input:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(46,126,237,0.12);
    background: var(--white);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  @media (max-width: 500px) {
    .form-row { grid-template-columns: 1fr; }
  }

  .checkbox-group { margin-bottom: 24px; }

  .checkbox-group-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.6;
  }

  .checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1.5px solid rgba(0,0,0,0.08);
    transition: background 0.15s, border-color 0.15s;
  }

  .checkbox-item:hover { background: #f0f7ff; border-color: var(--sky-light); }

  .checkbox-item input[type="checkbox"] {
    margin-top: 2px;
    width: 16px; height: 16px;
    accent-color: var(--sky);
    flex-shrink: 0;
    cursor: pointer;
  }

  .checkbox-text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.75;
  }

  .form-submit {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    font-size: 16px;
    padding: 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 24px rgba(21,110,189,0.42);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
  }

  .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(21,110,189,0.52);
  }

  .form-alt-link {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-light);
  }

  .form-alt-link a {
    color: var(--sky);
    font-weight: 600;
    text-decoration: none;
  }

  .form-alt-link a:hover { text-decoration: underline; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--deep-blue);
    padding: 36px 20px;
    text-align: center;
  }

  footer p {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
  }

  footer p a { color: rgba(255,255,255,0.9); text-decoration: none; }

  /* ===== STICKY NAV ===== */
  .sticky-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(0,0,0,0.10);
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
  }

  .sticky-bar a {
    flex: 1;
    max-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: transform 0.15s;
  }

  .sticky-bar a:hover { transform: translateY(-1px); }

  .sticky-bar .s-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(21,110,189,0.42);
  }

  .sticky-bar .s-secondary {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--sky);
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .bgBlue {color: var(--accent-light);}

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 600px) {
    section { padding: 60px 16px; }
    .about-card { padding: 36px 24px; }
    .form-card { padding: 32px 20px; }
    .ba-before, .ba-after { padding: 28px 20px; }
    .feature-item { flex-direction: column; gap: 16px; }
    .overview-table td:first-child { width: auto; }
  }

  body { padding-bottom: 70px; }

