﻿    /* =============================================
       CSS変数・リセット
    ============================================= */
    :root {
      --blue:        #0092d7;
      --blue-dark:   #263d7a;
      --blue-light:  #94bae3;
      --orange:      #F26522;
      --orange-light:#FFF3EC;
      --text-main:   #1A1A1A;
      --text-sub:    #1A1A1A;
      --text-muted:  #555555;
      --border:      #E0E0E0;
      --bg:          #FFFFFF;
      --bg-gray:     #F7F8FA;
      --radius:      12px;
      --radius-sm:   8px;
      --max-w:       860px;
      --font:        'Noto Sans JP', sans-serif;
      --transition:  0.25s ease;
      /* ヒーロー背景切替: 画像利用時は --hero-bg-image に url(...) を設定1 */
      --hero-bg-image: url(../assets/img/main-visual.png);
      /* --hero-bg-image: none; */
      --hero-bg-gradient:
        radial-gradient(circle at top left, rgba(0,150,214,.14), transparent 20%),
        radial-gradient(circle at top right, rgba(242,101,34,.10), transparent 18%),
        linear-gradient(160deg, var(--blue-light) 0%, #ffffff 60%);
      --hero-overlay: linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18));
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--text-main);
      line-height: 1.95;
      font-size: 18px;
    }

    a { color: var(--blue); text-decoration: none; }
    a:hover { text-decoration: underline; }

    img { max-width: 100%; display: block; }

    /* =============================================
       レイアウト
    ============================================= */
    .wrap {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 20px;
    }

    header.page-header {
      position: relative;
      top: 0;
      z-index: 20;
      padding: 35px 0;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    header.page-header.fixed {
      position: fixed;
      top: 18px;
      left: 0;
      right: 0;
      z-index: 1000;
      transform: translateY(0);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 20px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(255,255,255,.78);
      backdrop-filter: blur(18px);
      border-radius: 999px;
      box-shadow: 0 18px 44px rgba(0,35,70,.09);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .brand-mark {
      display: inline-block;
      width: auto;
      height: 20px;
      max-width: 100%;
      object-fit: contain;
      border-radius: 0;
      box-shadow: none;
    }

    .brand-text {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: .02em;
    }

    .menu-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 4px;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      background: rgba(0,150,214,.1);
      cursor: pointer;
      padding: 0;
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: var(--blue-dark);
      transition: transform var(--transition), opacity var(--transition);
    }

    .header-nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .header-nav a {
      display: inline-flex;
      align-items: center;
      padding: 8px 14px;
      font-size: 16px;
      color: var(--text-sub);
      border-radius: 999px;
      transition: background var(--transition), color var(--transition);
    }

    .header-nav a:hover {
      color: var(--blue-dark);
      background: rgba(0,150,214,.1);
      text-decoration: none;
    }

    @media (max-width: 1023px) {
      .menu-toggle {
        display: inline-flex;
      }

      .header-inner {
        flex-wrap: wrap;
        border-radius:30px;
      }

      .header-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(0,0,0,.08);
      }

      .header-nav.is-open {
        display: flex;
      }

      .header-nav a {
        width: 100%;
        padding: 10px 0;
        border-radius:30px;
      }
    }

    @media (max-width: 640px) {
      section { padding: 48px 0; }

      .hero-phases { grid-template-columns: 1fr; gap: 10px; }

      .info-grid { grid-template-columns: 1fr; }

      .feature-grid { grid-template-columns: 1fr; }

      .steps-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .steps-wrap::after { display: none; }
      .step-col { padding: 0; text-align: left; display: flex; gap: 16px; align-items: flex-start; }
      .step-num-wrap { flex-shrink: 0; width: 52px; height: 52px; font-size: 20px; margin: 0; }
      .step-label-sm, .step-icon-lg { display: none; }
      .step-title { font-size: 16px; }

      .btn-lg { width: 100%; font-size: 16px; }
      .btn { width: 100%; }
    }

    section { padding: 64px 0; }
    section + section { border-top: 1px solid var(--border); }

    /* グレー背景セクション */
    .bg-gray { background: var(--bg-gray); }

    /* セクション見出し共通1 */
    .sec-head {
      text-align: center;
      margin-bottom: 40px;
    }

    .sec-head h2 {
      font-size: clamp(26px, 5vw, 36px);
      font-weight: 900;
      line-height: 1.25;
      color: var(--text-main);
    }

    .sec-head h2 .accent { color: var(--blue); }

    .sec-head .sec-sub {
      margin-top: 10px;
      font-size: 16px;
      color: var(--text-sub);
    }

    /* ルール下線 見出し1 */
    .sec-head.underline h2 {
      display: inline-block;
      padding-bottom: 12px;
      border-bottom: 3px solid var(--blue);
    }

    /* フェードイン */
    .fade {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade.in { opacity: 1; transform: none; }

    /* =============================================
       ヒーロー1
    ============================================= */
    #hero {
      position: relative;
      background-color: #eaf5fc;
      background-image: var(--hero-overlay), var(--hero-bg-image), var(--hero-bg-gradient);
      background-size: cover, cover, cover;
      background-position: center, center, center;
      background-repeat: no-repeat, no-repeat, no-repeat;
      padding: 0 0 72px;
      text-align: center;
      border-bottom: 1px solid rgba(0,150,214,.12);
      overflow: hidden;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      padding: 44px 0 36px;
      max-width: 760px;
      margin: 0 auto;
    }

    .hero-eyebrow {
      display: inline-block;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--blue);
      background: rgba(0,150,214,.1);
      border: 1px solid rgba(0,150,214,.25);
      padding: 8px 20px;
      border-radius: 50px;
      margin-bottom: 0px;
    }

    .hero-title {
      font-size: clamp(32px, 6vw, 51px);
      font-weight: 900;
      line-height: 1.18;
      letter-spacing: -0.01em;
      margin-bottom: 18px;
      margin-top: 0px;
    }

    .hero-title img.hero-title-img {
      width: 100%;
      max-width: 520px;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .hero-title .line-blue {
      color: var(--orange);
      display: block;
    }

    .hero-sub {
      font-size: 18px;
      color: var(--text-sub);
      margin-bottom: 44px;
      line-height: 1.95;
    }

    /* ポイントビジュアル 1*/
    .hero-phases {
      display: flex;
      justify-content: center;
      margin: 0 auto 36px;
      padding: 0 12px;
    }

    .phase-figure {
      margin: 0;
      text-align: center;
      max-width: 420px;
    }

    .phase-card-img {
      width: min(100%, 420px);
      height: auto;
      display: block;
      border-radius: var(--radius);
      box-shadow: 0 10px 28px rgba(0,0,0,.12);
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .phase-card-img:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px rgba(0,0,0,.16);
    }

    .phase-caption {
      margin-top: 12px;
      font-size: 15px;
      font-weight: 700;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* CTAボタン */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: var(--font);
      font-size: 17px;
      font-weight: 700;
      padding: 18px 44px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
      min-height: 58px;
      letter-spacing: .03em;
    }

    .btn-primary {
      background: var(--blue);
      color: #fff;
      box-shadow: 0 4px 18px rgba(0,150,214,.35);
    }
    .btn-primary:hover {
      filter: brightness(1.08);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0,150,214,.45);
      text-decoration: none;
    }

    .btn-subtle {
      background: rgba(0,146,214,.10);
      color: var(--blue-dark);
      border: 1px solid rgba(0,146,214,.25);
      box-shadow: none;
      padding: 14px 32px;
      font-size: 15px;
      min-height: 50px;
      opacity: 0.96;
      transition: background var(--transition), transform var(--transition), color var(--transition);
    }
    .btn-subtle:hover {
      background: rgba(0,146,214,.16);
      transform: translateY(-1px);
      text-decoration: none;
    }

    .btn-lg {
      font-size: 17px;
      padding: 18px 52px;
      min-height: 58px;
    }

    .hero-note {
      margin-top: 16px;
      font-size: 16px;
      color: var(--text-muted);
    }

    /* =============================================
       キャンペーン概要
    ============================================= */
    /* 青いインフォバー */
    .info-bar {
      background: var(--blue-light);
      border-left: 4px solid var(--blue);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 18px 22px;
      font-size: 16px;
      color: var(--text-sub);
      margin-bottom: 28px;
      line-height: 1.85;
    }

    /* giftee説明1 */
    .giftee-box {
      background: var(--bg-gray);
      border-radius: var(--radius);
      padding: 28px;
      margin-top: 28px;
      margin-bottom: 28px;
    }

    .giftee-box h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text-main);
    }

    .giftee-box p {
      font-size: 16px;
      color: var(--text-sub);
      line-height: 1.9;
      margin-bottom: 10px;
    }
    .giftee-box p:last-child { margin-bottom: 0; }

    /* 条件チェックリスト */
    .condition-block {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      margin-top: 28px;
    }

    .condition-block h3 {
      font-size: 25px;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--text-main);
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }

    .cond-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .cond-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 16px;
      color: var(--text-sub);
    }

    .cond-num {
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      background: var(--blue);
      color: #fff;
      border-radius: 50%;
      font-size: 16px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .cond-note {
      margin-top: 18px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      font-size: 16px;
      color: var(--text-muted);
    }

    .info-summary {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      margin-top: 28px;
    }

    .info-summary-head {
      margin-bottom: 16px;
    }

    .info-summary h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-main);
    }

    .info-summary p {
      margin: 0;
      font-size: 16px;
      color: var(--text-sub);
      line-height: 1.8;
    }

    .info-summary-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 14px;
    }

    .info-summary-list li {
      font-size: 16px;
      color: var(--text-sub);
      line-height: 1.9;
      background: rgba(0,150,214,.04);
      border-radius: 14px;
      padding: 18px 20px;
    }

    .info-summary-list li strong {
      display: block;
      margin-bottom: 8px;
      color: var(--blue);
      font-weight: 700;
      font-size: 20px;
    }

    /* 対象製品一覧テーブル */
    .product-table {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      margin-top: 28px;
    }

    .product-table-head {
      margin-bottom: 18px;
    }

    .product-table h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-main);
    }

    .product-table p {
      font-size: 16px;
      color: var(--text-sub);
      line-height: 1.85;
      margin: 0;
    }

    .product-table-wrap {
      overflow-x: auto;
      margin-top: 10px;
    }

    .product-table table {
      width: 100%;
      border-collapse: collapse;
      min-width: 680px;
    }

    .product-table th,
    .product-table td {
      border: 1px solid var(--border);
      padding: 16px 18px;
      text-align: left;
      vertical-align: top;
    }

    .product-table thead th {
      background: rgba(0,150,214,.08);
      color: var(--blue-dark);
      font-weight: 700;
    }

    .product-table tbody tr:nth-child(even) {
      background: rgba(0,150,214,.04);
    }

    .product-table tbody th {
      background: rgba(0,150,214,.04);
      color: var(--text-main);
      font-weight: 700;
      width: 12rem;
      font-size: 16px;
    }

    .product-table td {
      color: var(--text-sub);
      font-size: 16px;
      line-height: 1.8;
    }

    @media (max-width: 640px) {
      .product-table {
        padding: 22px;
      }

      .product-table table {
        min-width: 100%;
      }

      .product-table th,
      .product-table td {
        padding: 12px 10px;
        font-size: 15px;
      }
    }

    /* 情報グリッド */
    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 20px;
    }

    .info-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 18px;
    }

    .info-item .lbl {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: .08em;
      color: var(--blue);
      margin-bottom: 8px;
    }

    .info-item .val {
      font-size: 16px;
      color: var(--text-sub);
      line-height: 1.8;
    }

    /* =============================================
       スケジュール（タイムライン）
    ============================================= */
    #schedule{
      background:#263d7a ;
    }

    .timeline {
      position: relative;
      padding-left: 36px;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 11px;
      top: 8px;
      bottom: 130px;
      width: 2px;
      background: var(--border);
    }

    .tl-item {
      position: relative;
      margin-bottom: 24px;
    }

    .tl-item:last-child { margin-bottom: 0; }

    .tl-dot {
      position: absolute;
      left: -34px;
      top: 5px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid;
      background: #fff;
    }

    .tl-dot.blue  { border-color: var(--blue);   box-shadow: 0 0 0 3px rgba(0,150,214,.12); }
    .tl-dot.orange{ border-color: var(--orange);  box-shadow: 0 0 0 3px rgba(242,101,34,.12); }
    .tl-dot.gray  { border-color: var(--border); background: var(--bg-gray); }

    .tl-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 18px 20px;
      transition: box-shadow var(--transition);
    }

    .tl-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.08); }

    .tl-date {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: .06em;
      margin-bottom: 6px;
    }
    .tl-date.blue   { color: var(--blue); }
    .tl-date.orange { color: var(--orange); }
    .tl-date.gray   { color: var(--text-muted); }

    .tl-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
    }

    .tl-sub {
      font-size: 16px;
      color: var(--text-sub);
      line-height: 1.8;
    }

    /* =============================================
       管理者アカウント
    ============================================= */
    #admin {
      background:var(--blue-dark);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 24px;
    }

    .feat-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 18px;
      text-align: center;
      transition: box-shadow var(--transition), transform var(--transition);
    }

    .feat-card:hover {
      box-shadow: 0 4px 18px rgba(0,0,0,.09);
      transform: translateY(-2px);
    }

    .feat-icon {
      font-size: 34px;
      margin-bottom: 14px;
      display: block;
    }

    .feat-title {
      font-size:20px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-main);
    }

    .feat-desc {
      font-size: 16px;
      color: var(--text-sub);
      line-height: 1.8;
    }

    .admin-note {
      background: var(--bg);
      border-radius: var(--radius);
      padding: 24px 26px;
      font-size: 16px;
      color: var( --blue-dark);
      line-height: 1.95;
    }

    .admin-note p { margin-bottom: 6px; }
    .admin-note p:last-child { margin-bottom: 0; }

    /* =============================================
       申込の流れ（STEP）
    ============================================= */

    .steps-wrap {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
    }

    /* STEPをつなぐ線 */
    .steps-wrap::after {
      content: '';
      position: absolute;
      top: 32px;
      left: calc(50% / 3);
      right: calc(50% / 3);
      height: 2px;
      background: var(--border);
      z-index: 0;
    }

    .step-col {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 12px;
    }

    .step-num-wrap {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      margin: 0 auto 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 900;
      color: #fff;
      position: relative;
    }

    .step-col:nth-child(1) .step-num-wrap { background: var(--blue); box-shadow: 0 4px 14px rgba(0,150,214,.35); }
    .step-col:nth-child(2) .step-num-wrap { background: var(--blue-dark); box-shadow: 0 4px 14px rgba(0,111,168,.35); }
    .step-col:nth-child(3) .step-num-wrap { background: var(--orange); box-shadow: 0 4px 14px rgba(242,101,34,.35); }

    .step-label-sm {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: .12em;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .step-icon-lg {
      font-size: 30px;
      margin-bottom: 10px;
      display: block;
    }

    .step-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .step-desc {
      font-size: 16px;
      color: var(--text-sub);
      line-height: 1.8;
      text-align: left;
    }

    /* =============================================
       FAQ
    ============================================= */

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 1px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }


    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      background: #fff;
      list-style: none;
      transition: background var(--transition);
      border-bottom: 1px solid var(--border);
      user-select: none;
    }

    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary:hover { background: var(--bg-gray); }

    .faq-q-wrap {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .q-badge {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      background: var(--blue);
      color: #fff;
      border-radius: 50%;
      font-size: 16px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .faq-chevron {
      flex-shrink: 0;
      color: var(--text-muted);
      font-size: 16px;
      transition: transform 0.3s ease;
    }

    details[open] .faq-chevron { transform: rotate(180deg); }

    .faq-answer {
      padding: 18px 24px;
      font-size: 16px;
      color: var(--text-sub);
      line-height: 1.95;
      background: var(--bg-gray);
      border-bottom: 1px solid var(--border);
    }

    .faq-item:last-child summary,
    .faq-item:last-child .faq-answer { border-bottom: none; }

    /* =============================================
       留意事項
    ============================================= */

    .note-box {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 34px 32px;
      line-height: 1.95;
      max-height: 520px;
      overflow-y: auto;
      overflow-x: hidden;
    }

    .note-box .note-section + .note-section {
      margin-top: 24px;
    }

    .note-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 14px;
    }

    .note-box ol,
    .note-box ul {
      margin: 0;
      padding-left: 1.2rem;
      color: var(--text-sub);
    }

    .note-box li {
      margin-bottom: 0px;
      line-height: 1.9;
      font-size: 14px;
    }

    .note-box li:last-child {
      margin-bottom: 0;
    }

    .note-box p {
      margin-bottom: 12px;
      color: var(--text-sub);
      font-size: 14px;
    }

    .note-box p:last-child {
      margin-bottom: 0;
    }

    @media (max-width: 640px) {
      .note-box {
        max-height: 420px;
        padding: 28px 22px;
      }
    }

    /* =============================================
       最終CTA
    ============================================= */
    #final-cta {
      background: linear-gradient(160deg, var(--blue-light), #fff);
      text-align: center;
    }

    .cta-deadline-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--orange-light);
      border: 1px solid rgba(242,101,34,.3);
      color: var(--orange);
      font-size: 20px;
      font-weight: 700;
      padding: 10px 22px;
      border-radius: 50px;
      margin-bottom: 24px;
    }

    .cta-title {
      font-size: clamp(28px, 5vw, 40px);
      font-weight: 900;
      line-height: 1.3;
      margin-bottom: 16px;
    }

    .cta-desc {
      font-size: 16px;
      color: var(--text-sub);
      margin-bottom: 36px;
      line-height: 1.9;
    }

    .cta-note {
      margin-top: 18px;
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.75;
    }

    /* =============================================
       フッター
    ============================================= */
    footer {
      background: var(--text-main);
      color: rgba(255,255,255,.6);
      text-align: center;
      padding: 32px 20px;
      font-size: 16px;
      line-height: 1.9;
    }

    footer a { color: rgba(255,255,255,.8); }
    footer a:hover { color: #fff; }

    /* =============================================
       レスポンシブ1
    ============================================= */
    @media (max-width: 640px) {
      section { padding: 48px 0; }

      .hero-phases { grid-template-columns: 1fr 1fr; gap: 10px; }

      .info-grid { grid-template-columns: 1fr; }

      .feature-grid { grid-template-columns: 1fr; }

      .steps-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .steps-wrap::after { display: none; }
      .step-col { padding: 0; text-align: left; display: flex; gap: 16px; align-items: flex-start; }
      .step-num-wrap { flex-shrink: 0; width: 52px; height: 52px; font-size: 20px; margin: 0; }
      .step-label-sm, .step-icon-lg { display: none; }
      .step-title { font-size: 16px; }

      .btn-lg { width: 100%; font-size: 16px; }
      .btn { width: 100%; }
      #hero{
        padding-top: 35px;
      }
    }

    @media (max-width: 400px) {
      .hero-phases { grid-template-columns: 1fr; }
    }
  
