/* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
    color: #1a1a2e;
    line-height: 1.8;
    background: #fff;
  }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  :root {
    --navy: #376ab3;
    --navy-mid: #65b3e4;
    --blue: #a6e4f0;
    --blue-light: #d4eef3;
    --orange: #FEFC47;
    --orange-light: #fffde0;
    --gray-bg: #f0f9fb;
    --gray-line: #b8dde6;
    --text: #0d3d4d;
    --text-sub: #3a6a7a;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(13,61,77,0.10);
    --shadow-hover: 0 8px 32px rgba(13,61,77,0.18);
  }

  /* ===== UTILITY ===== */
  .container { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 88px 0; }
  .section--gray { background: var(--gray-bg); }
  .section--navy { background: var(--navy); color: #fff; }
  .section--navy-mid { background: var(--navy-mid); color: #fff; }

  .label {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--navy);
    border: 1.5px solid var(--orange);
    background: rgba(254,252,71,0.18);
    border-radius: 4px;
    padding: 3px 12px;
    margin-bottom: 16px;
  }
  .label--white { color: #fff; border-color: rgba(255,255,255,0.55); }

  .section-heading {
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 900;
    line-height: 1.45;
    color: var(--navy);
    margin-bottom: 12px;
  }
  .section-heading--white { color: #fff; }
  .section-sub { font-size: 1rem; color: var(--text-sub); margin-bottom: 48px; }
  .section-sub--white { color: rgba(255,255,255,0.7); }

  /* ===== CTA BUTTON ===== */
  .btn {
    display: inline-block;
    background: var(--orange);
    color: #0d3d4d;
    font-size: 1.1rem;
    font-weight: 900;
    padding: 18px 48px;
    border-radius: 50px;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 24px rgba(254,252,71,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
  }
  .btn:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(254,252,71,0.55); }
  .btn--large { font-size: 1.2rem; padding: 20px 56px; }

  /* ===== STICKY HEADER ===== */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #2e79a7;
    backdrop-filter: blur(8px);
    z-index: 100;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  }
  .site-header__logo { font-size: 0.85rem; font-weight: 800; color: #fff; line-height: 1.3; }
  .site-header__logo span { display: block; font-size: 0.7rem; font-weight: 400; color: rgba(255,255,255,0.55); }
  .site-header__cta {
    background: var(--orange);
    color: #0d3d4d;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 9px 22px;
    border-radius: 50px;
    transition: opacity 0.2s;
  }
  .site-header__cta:hover { opacity: 0.85; }

  /* ===== ① FV ===== */
  .fv {
    background: linear-gradient(135deg, var(--blue) 0%,  #94CEDA 100%);
    padding: 130px 0 72px;
    position: relative;
    overflow: hidden;
  }
  .fv::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(148,206,218,0.25) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
  }
  .fv__grid {
    position: relative;
    z-index: 1;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
    align-items: center;
  }
  .fv__content {
    position: relative;
    z-index: 1;
  }

  .fv_label_parent{
    text-align: left;
    padding-left: 0;
  }
  .fv__label {
    display: inline-block;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.28);
    color: rgba(255,255,255,1);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 18px;
    border-radius: 50px;
    align-self: center;
    margin:0 auto 24px;
  }
  .fv__heading {
    font-size: clamp(4rem, 7vw, 2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
  }
  .fv__heading em {
    font-style: normal;
    color: #FEFC47;
    border-bottom: 5px solid #FEFC47;
  }

 

  .fv__sub {
    font-size: clamp(1.2rem, 1.8vw, 1rem);
    color: rgba(255,255,255,0.9);
    line-height: 1.95;
    font-weight: 800;
    margin-bottom: 36px;
  }

   .fv__badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 0px;
    position: relative;
    z-index: 2;
  }
  .fv__badge {
    background: var(--orange);
    color: #333;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 40px 20px;
    border-radius: 10px;
  }
  .fv__badge b {
    font-size: 1.8rem;
    font-style: normal;
    line-height: 1;
    white-space: nowrap;
  }

  .fv_space{
    margin-top: 30px;
  }

  .fv__note { margin-top: 14px; font-size: 1rem; color: rgba(255,255,255,1); }
  .fv__cta {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top:80px;
    padding: 0 20px;
  }
  .fv__illust {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    z-index: 0;
    pointer-events: none;
  }
  .fv__illust img { width: 100%; height: auto; display: block; }

  /* ===== ② 課題共感 ===== */
  .problem__heading-wrap { text-align: center; margin-bottom: 48px; }
  .problem__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
  }
  .problem__item {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px 22px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--blue);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .problem__item:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
  .problem__item-icon { flex-shrink: 0; width: 70px; height: 70px; }
  .problem__item-icon svg { width: 52px; height: 52px; }
  .problem__item-content {}
  .problem__item-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.45;
  }
  .problem__item-body { font-size: 0.9rem; color: var(--text-sub); line-height: 1.7; }
  .problem__closing {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    padding: 28px 32px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.75;
  }
  .problem__closing em { font-style: normal; color: #FEFC47; }

  /* ===== ③ サービス内容 ===== */
  .service__heading-wrap { text-align: center; margin-bottom: 48px; }
  .service__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
  }
  .service__card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .service__card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
  .service__card-header {
    background: linear-gradient(135deg, #4b95c4 0%, #245a97 100%);
    padding: 24px 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .service__card-header svg { width: 64px; height: 64px; }
  .service__card-problem-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .service__card-problem {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,1);
  }
  .service__card-problem-tag {
    display: inline-block;
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,1);
    padding: 2px 8px;
    border-radius: 4px;
  }
  .service__card-arrow {
    text-align: center;
    padding: 10px 0;
    background: #fff;
    font-size: 0;
  }
  .service__card-arrow::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 22px solid #4b95c4;
  }
  
  .service__card-solution { 
    padding: 18px 20px 22px; 
    
  }

  .service__card-solution img{
    width: 150px;
    margin: 0 auto;
  }

  .service__card-solution-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--navy);
    margin: 10px auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .service__card-solution-title::before {
    content: '解決';
    background: var(--orange);
    color: #0d3d4d;
    font-size: 1rem;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
  }
  .service__card-solution-body { font-size: 0.9rem; color: var(--text-sub); line-height: 1.75; }

  /* ===== ④ BEFORE / AFTER ===== */
  .ba__heading-wrap { text-align: center; margin-bottom: 48px; }
  .ba__list { display: flex; flex-direction: column; gap: 14px; }
  .ba__row {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(13,61,77,0.30);
    overflow: hidden;
  }
  .ba__before { padding: 18px 22px; background: #f0f9fb;  }
  .ba__after { padding: 18px 22px; background: var(--blue-light); }
  .ba__tag-before {
    display: inline-block;
    font-size: 0.68rem; font-weight: 800;
    color: #888; background: #e0e4ea;
    padding: 2px 8px; border-radius: 4px; margin-bottom: 5px;
  }
  .ba__tag-after {
    display: inline-block;
    font-size: 0.8rem; font-weight: 800;
    color: var(--navy-mid); background: rgba(254,252,71,0.5);
    padding: 2px 8px; border-radius: 4px; margin-bottom: 5px;
  }
  .ba__text-before { font-size: 1rem; color: #444; line-height: 1.6; }
  .ba__text-after { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.6; }
  .ba__arrow {
    text-align: center;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ba__arrow::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border-top: 5px solid var(--blue);
    border-right: 5px solid var(--blue);
    transform: rotate(45deg) translateX(-5px) translateY(5px);
  }
  .ba__closing {
    margin-top: 40px;
    background: var(--orange);
    color: #0d3d4d;
    border-radius: var(--radius);
    padding: 24px 32px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.7;
  }
  .ba__illust-wrap {
    text-align: center;
    margin-bottom: 10px;
  }
  .ba__illust-wrap img { 
    margin: 0 auto;
    width: 100%; 
    max-width: 500px; 
    height: auto; 
  }

  /* ===== ⑤ STEP ===== */
  .steps__heading-wrap { text-align: center; margin-bottom: 56px; }
  .steps__list { position: relative; max-width: 720px; margin: 0 auto; }
  .steps__list::before {
    content: '';
    position: absolute;
    left: 36px; top: 20px; bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), var(--blue));
    z-index: 0;
  }
  .step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
  }
  .step:last-child { margin-bottom: 0; }
  .step__icon {
    flex-shrink: 0;
    width: 74px; height: 74px;
    background: var(--navy-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(13,61,77,0.28);
  }
  .step__icon svg { width: 38px; height: 38px; }

  .step__icon img{
    width: 38px;
    height: 38px;
    object-fit: contain;
  }
  .step__body {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    flex: 1;
  }
  .step__step-label {
    font-size: 1rem; font-weight: 800;
    color: var(--blue); letter-spacing: 0.1em;
    margin-bottom: 4px;
  }
  .step__title { font-size: 1.2rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
  .step__text { font-size: 1rem; color: var(--text-sub); line-height: 1.75; }
  .steps__closing {
    text-align: center;
    margin-top: 48px;
    font-size: 1.1rem; font-weight: 700;
    color: var(--navy);
    background: var(--blue-light);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-left: auto; margin-right: auto;
  }

  /* ===== ⑥ 実績 ===== */
  .results__heading-wrap { text-align: center; margin-bottom: 12px; }
  .results__illust { text-align: center; margin-bottom: 40px; }
  .results__illust svg { width: 100%; max-width: 340px; height: auto; }
  .results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 60px;
  }
  .result-card {
    background: rgba(255,255,255,1);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .result-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
  .result-card__case { font-size: 0.9rem; font-weight: 800; color: var(--blue); letter-spacing: 0.12em; margin-bottom: 6px; }
  .result-card__company { font-size: 1.3rem; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
  .result-card__industry { font-size: 0.9rem; color: #6b7280; margin-bottom: 18px; font-weight: 500; }
  .result-card__quote {
    background: #f3f4f6;
    
    padding: 12px 14px;
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    border-radius: 0 6px 6px 0;
    margin-bottom: 20px;
    /* font-style: italic; */
  }
  .result-card__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
  .stat { background: #f0f9ff; border-radius: 8px; padding: 10px 12px; text-align: center; border-left: 3px solid var(--orange);}
  .stat__label { font-size: 0.68rem; color: #6b7280; margin-bottom: 3px; }
  .stat__value { font-size: 1.4rem; font-weight: 900; color: var(--navy); }
  .result-card__note { font-size: 1rem; color: #444; line-height: 1.7; border-top: 1px solid #e5e7eb; padding-top: 14px; }
  .result-card__divider-arrow {
    text-align: center;
    margin: 12px 0;
    font-size: 0;
  }
  .result-card__divider-arrow::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 18px solid var(--navy-mid);
  }

  /* ===== ⑦ 選ばれる理由 ===== */
  .reasons__heading-wrap { text-align: center; margin-bottom: 48px; }
  .reasons__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
  }
  .reason-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .reason-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
  .reason-card__icon-wrap {
    width: 60px; height: 60px;
    background: var(--blue-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

 .reason-card__icon-wrap img{
    padding: 7px;

  }
  .reason-card:nth-child(5) .reason-card__icon-wrap { background: var(--orange-light); }
  .reason-card__icon-wrap svg { width: 34px; height: 34px; }
  .reason-card__num { font-size: 0.9rem; font-weight: 800; color: var(--blue); letter-spacing: 0.1em; }
  .reason-card__title { font-size: 1.1rem; font-weight: 900; color: var(--navy); line-height: 1.4; }
  .reason-card__body { font-size: 1rem; color: var(--text-sub); line-height: 1.75; }

  /* ===== ⑧ 料金 ===== */
  .pricing__inner { max-width: 640px; margin: 0 auto; text-align: center; }
  .pricing__heading-wrap { margin-bottom: 28px; }
  .pricing__illust { margin: 0 auto 32px; text-align: center; }
  .pricing__illust svg { width: 100%; max-width: 200px; height: auto; }
  .pricing__box {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow);
    border: 2px solid var(--blue-light);
    margin-bottom: 32px;
  }
  .pricing__badge {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-size: 0.8rem; font-weight: 800;
    padding: 6px 20px; border-radius: 50px; margin-bottom: 20px; letter-spacing: 0.08em;
  }
  .pricing__title { font-size: 1.7rem; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
  .pricing__note { font-size: 0.9rem; color: #555; margin-bottom: 20px; }
  .pricing__body {
    font-size: 1rem; color: var(--text-sub); line-height: 1.85;
    text-align: left;
    background: var(--gray-bg);
    border-radius: 8px;
    padding: 18px 22px;
  }

  /* ===== ⑨ FAQ ===== */
  .faq__heading-wrap { text-align: center; margin-bottom: 48px; }
  .faq__layout { display: grid; grid-template-columns: 1fr ; gap: 48px; align-items: start; }
  .faq__list {}
  .faq__illust { position: sticky; top: 100px; }
  .faq__illust svg { width: 100%; height: auto; }
  .faq-item { border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow); }
  .faq-item__q {
    background: #fff;
    padding: 20px 22px;
    display: flex; align-items: flex-start; gap: 14px;
    cursor: pointer;
    font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.55;
    transition: background 0.2s;
  }
  .faq-item__q:hover { background: var(--blue-light); }
  .faq-item__q::before {
    content: 'Q';
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: var(--navy);
    color: #fff;
    font-size: 0.85rem; font-weight: 900;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
  }
  .faq-item__a {
    background: var(--blue-light);
    padding: 18px 22px 18px 64px;
    font-size: 0.9rem; color: var(--text-sub); line-height: 1.8;
    position: relative;
    display: none;
  }
  .faq-item__a::before {
    content: 'A';
    position: absolute;
    left: 22px; top: 18px;
    width: 28px; height: 28px;
    background: var(--orange);
    color: #fff;
    font-size: 0.85rem; font-weight: 900;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .faq-item.open .faq-item__a { display: block; }

  /* ===== FINAL CTA ===== */
  .final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, #1a6a80 100%);
    padding: 80px 24px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .final-cta__deco {
    position: absolute;
    opacity: 0.06;
    pointer-events: none;
  }
  .final-cta__deco--tl { top: -40px; left: -40px; width: 300px; }
  .final-cta__deco--br { bottom: -40px; right: -40px; width: 260px; }
  .final-cta__inner { position: relative; z-index: 1; }
  .final-cta__heading { font-size: clamp(1.4rem, 3.8vw, 2rem); font-weight: 900; margin-bottom: 16px; line-height: 1.5; }
  .final-cta__sub { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height: 1.85; }
  .final-cta__note { margin-top: 14px; font-size: 0.78rem; color: rgba(255,255,255,0.42); }

  /* ===== CONTACT FORM ===== */
  .contact-form__wrap {
    max-width: 640px;
    margin: 0 auto;
  }
  .contact-form__head {
    text-align: center;
    margin-bottom: 40px;
  }
  .contact-form__sub {
    font-size: 0.9rem;
    color: var(--text-sub);
    margin-top: 12px;
  }
  .contact-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow);
  }
  .contact-form__row {
    margin-bottom: 22px;
  }
  .contact-form__label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .contact-form__req {
    font-size: 0.72rem;
    background: var(--orange);
    color: #0d3d4d;
    font-weight: 800;
    padding: 1px 7px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
  }
  .contact-form__input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--navy);
    background: #f9fafb;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
  }
  .contact-form__input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(46,121,167,0.15);
    background: #fff;
  }
  .contact-form__textarea {
    min-height: 130px;
    resize: vertical;
  }
  .contact-form__submit {
    text-align: center;
    margin-top: 30px;
  }
  .contact-form__note {
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--text-sub);
  }
  input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn--large{
    display:block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    overflow-wrap: break-word;
  }

  .contact-form__submit{
    text-align: center;
  }

  /* ===== FOOTER ===== */
  .footer { background: #090f1e; color: rgba(255,255,255,0.38); text-align: center; padding: 28px 24px; font-size: 0.78rem; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .fv { padding: 100px 0 48px; }
    .fv__grid {
      grid-template-columns: 1fr;
      display: flex;
      flex-direction: column;
    }
    .fv__content { order: 1; }
    .fv__illust {
      order: 2;
      position: static;
      transform: none;
      width: 75%;
      max-width: 320px;
      margin: 24px auto 0;
      z-index: 1;
    }
    .fv__heading {
      font-size: clamp(2.2rem, 5vw, 2.2rem);
    }
    .fv__heading span {
      white-space: normal !important;
    }
    .fv__sub {
      font-size: 0.9rem;
      margin-bottom: 0;
    }
    .fv_label_parent{
      text-align: center;
    }
    .fv__label {
      font-size: 0.85rem;
    }
    .fv__cta { margin-top: 24px; }
    .faq__layout { grid-template-columns: 1fr; }
    .faq__illust { display: none; }
     .fv__badges { margin-top: 0px; gap: 8px; }
    .fv__badge { font-size: 0.8rem; padding: 20px 12px; }
    .fv__badge b{font-size: 1.2rem;}
    .section { padding: 60px 0; }
  }
  @media (max-width: 600px) {
    .ba__row { grid-template-columns: 1fr;}
    .ba__arrow { padding: 6px 0; }
      .ba__list{gap:40px;}
    
    .steps__list::before { left: 30px; }
    .step__icon { width: 62px; height: 62px; }
    .step__icon svg { width: 32px; height: 32px; }
    .pricing__box { padding: 28px 20px; }

    .ba__arrow::after {
    
    transform: rotate(135deg) translateX(-5px) translateY(5px);
  }

   .service__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }

  }