  /* ===== FV ===== */
  #fv {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
  }
  #fv video {
    width: 100%;
    display: block;
    pointer-events: none;
  }

  /* ロゴ */
  .fv-logo {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .fv-logo-icon {
    width: 60px;
    height: 60px;
    fill: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
    animation: fadeInUp 1s ease 0.3s both;
  }
  .fv-logo-text {
   font-family: "avenir-next-lt-pro", sans-serif;
    font-size: 52px;
    letter-spacing: 0.15em;
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
    animation: fadeInUp 1s ease 0.5s both;
  }
  /* PLAYボタン */
  .fv-play-hint {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    letter-spacing: 0.2em;
    animation: fadeIn 1.5s ease 1s both;
  }
  .fv-play-circle {
    width: 64px;
    height: 64px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
    background: rgba(255,255,255,0.08);
  }
  #fv:hover .fv-play-circle {
    border-color: var(--blue);
    background: rgba(30,157,200,0.2);
    transform: scale(1.1);
  }
  .fv-play-circle svg {
    fill: rgba(255,255,255,0.85);
    width: 22px;
    height: 22px;
    margin-left: 3px;
  }

  /* ===== ABOUT ===== */
  #about {
    padding: 100px 0;
    overflow: visible;
  }
  .about-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    position: relative;
  }
  /* テキストブロック：左側 */
  .about-left {
    position: relative;
    z-index: 2;
    padding-right: 40px;
  }
  /* タイトルを画像の左端にオーバーラップ */
  .about-left .section-title-wrap {
    margin-right: -60px;
  }
  /* 画像ブロック：右側 */
  .about-right {
    aspect-ratio: 69/74;
    position: relative;
    z-index: 1;
    margin: 0 0 0 auto;
  }
  .about-copy {
    font-size: 58px;
    font-weight: 600;
    line-height: 1.4;
    margin: 40px 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s 0.3s, transform 0.6s 0.3s;
  }
  .about-text {
    font-size: 16px;
    line-height: 2.2;
    color: #040000;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s 0.5s, transform 0.6s 0.5s;
  }
  /* ===== MASK REVEAL 共通 ===== */
  .reveal-wrap {
    width: 620px;
    position: relative;
    overflow: hidden;
  }
  .reveal-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: scaleX(1);
    transform-origin: left center;
    z-index: 2;
    transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1);
  }
  .reveal-inner {
    width: 100%;
    height: 100%;
    transform: scale(1.08);
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .reveal-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .reveal-inner .placeholder-img {
    width: 100%;
    height: 100%;
    display: block;
  }
  .reveal-wrap.revealed::after {
    transform: scaleX(0);
    transform-origin: right center;
  }
  .reveal-wrap.revealed .reveal-inner {
    transform: scale(1);
  }
  .placeholder-img {
    width: 100%;
    height: 100%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 13px;
    letter-spacing: 0.1em;
  }
  #about.in-view .about-copy,
  #about.in-view .about-text { opacity: 1; transform: none; }

  /* ===== WORKS ===== */
  #works {
    padding: 80px 0;
    overflow: visible;
  }
  .works-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    position: relative;
  }
  .works-left {
    aspect-ratio: 69/74;
    position: relative;
    z-index: 1;
  }
  .works-right {
    position: relative;
    z-index: 2;
    padding-left: 40px;
  }
  /* タイトルを画像にオーバーラップ */
  .works-right .section-title-wrap {
    margin-left: -135px;
  }
  .works-desc {
    font-size: 16px;
    line-height: 2.2;
    color: #040000;
    margin: 15px auto 45px;
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.4s, transform 0.6s 0.4s;
  }
  .works-wrap{
    width: fit-content;
    margin: 0 0 0 auto;
  }
  #works.in-view .works-desc { opacity: 1; transform: none; }
  /* MORE ボタン */
  .btn-more {
    font-family: avenir-next-lt-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 450px;
    padding: 26px 24px;
    margin:auto 0 auto auto;
    background: var(--blue);
    color: var(--white);
    font-size: 20px;
    letter-spacing: 0.05em;
    transition: background 0.25s, color 0.25s;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.5s, transform 0.6s 0.5s, background 0.25s, color 0.25s;
  }
  #works.in-view .btn-more { opacity: 1; transform: none; }
  .btn-more:hover { background: var(--white); color: var(--blue); outline: 2px solid var(--blue); }
  .btn-more-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  }

  /* ===== CLIENTS ===== */
  #clients {
    padding: 80px 0;
    overflow: visible;
  }
  .clients-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    position: relative;
  }
  .clients-left {
    position: relative;
    z-index: 2;
    padding-right: 40px;
  }
  #clients .section-title { letter-spacing: 0.056em; }
  /* タイトルを画像にオーバーラップ */
  .clients-left .section-title-wrap {
    margin-left: -6px;
    margin-top: -75px;
  }
  .clients-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 32px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.3s, transform 0.6s 0.3s;
  }
  #clients.in-view .clients-list { opacity: 1; transform: none; }
  .clients-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .clients-list li {
    white-space: nowrap;
    list-style: none;
    font-size: 11px;
    font-weight: 300;
    color: #040000;
    padding: 4px 0;
  }
  .clients-right {
    aspect-ratio: 69/74;
    position: relative;
    z-index: 1;
    top: 6px;
    margin: 0 0 0 auto;
  }

  /* ===== WORK FLOW ===== */
  #workflow {
    padding: 80px 0;
    overflow: hidden;
  }
  .workflow-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
  }
  #workflow .section-title { font-size: clamp(60px, 120vw, 150px);}
  .workflow-sub {
    font-size: 33px;
    font-weight: 500;
    margin: 50px 0 15px;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.6s 0.3s;
  }
  .workflow-lead {
    font-size: 16px;
    margin-bottom: 50px;
    opacity: 0;
    transition: opacity 0.6s 0.4s;
  }
  #workflow.in-view .workflow-sub,
  #workflow.in-view .workflow-lead { opacity: 1; }
  /* 9枚横並び画像グリッド */
  .workflow-steps {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 3px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s 0.5s, transform 0.8s 0.5s;
  }
  #workflow.in-view .workflow-steps { opacity: 1; transform: none; }
  .step-item {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    background: #222;
  }
  .step-img {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s 0.6s, transform 0.7s 0.6s;
}
#workflow.in-view .step-img {
  opacity: 1;
  transform: none;
}
  .step-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
  }
  .step-item:hover img { transform: scale(1.05); }
  /* 番号オーバーレイ */
  .step-num {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: var(--blue);
   font-family: "avenir-next-lt-pro", sans-serif;
    font-size: 28px;
    color: var(--white);
    line-height: 1;
    padding: 6px 0;
    text-align: center;
    z-index: 1;
  }
  .step-item:nth-child(even) .step-num { background: rgba(30,157,200,0.75); }
  /* ラベルオーバーレイ */
  .step-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.55);
    writing-mode: vertical-rl;
    font-size: 10px;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.1em;
    padding: 10px 0;
    text-align: center;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* 画像未設定時のプレースホルダー */
  .step-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===== FAQ ===== */
  #faq {
    padding: 100px 0;
    overflow: hidden;
  }
  .faq-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
  }
  .faq-list {
    margin-top: 40px;
    text-align: left;
  }
  .faq-item {
    border-top: 1px solid #ccc;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
  }
  .faq-item:last-child { border-bottom: 1px solid #ccc; }
  #faq.in-view .faq-item { opacity: 1; transform: none; }
  #faq.in-view .faq-item:nth-child(1) { transition-delay: 0.1s; }
  #faq.in-view .faq-item:nth-child(2) { transition-delay: 0.15s; }
  #faq.in-view .faq-item:nth-child(3) { transition-delay: 0.2s; }
  #faq.in-view .faq-item:nth-child(4) { transition-delay: 0.25s; }
  #faq.in-view .faq-item:nth-child(5) { transition-delay: 0.3s; }
  #faq.in-view .faq-item:nth-child(6) { transition-delay: 0.35s; }
  #faq.in-view .faq-item:nth-child(7) { transition-delay: 0.4s; }
  #faq.in-view .faq-item:nth-child(8) { transition-delay: 0.45s; }
  .faq-q {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 8px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
  }
  .faq-q:hover { background: var(--gray-light); }
  .faq-icon {
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    width: 50px;
    height: 50px;
    font-size: 34px;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
  }
  .faq-q-text {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
  }
  .faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
  }
  .faq-toggle::before,
  .faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--black);
    transition: transform 0.3s, opacity 0.3s;
  }
  .faq-toggle::before { width: 16px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .faq-toggle::after { width: 1px; height: 16px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .faq-item.open .faq-toggle::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
  .faq-a-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
  }
  .faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
  .faq-a-inner { overflow: hidden; }
  .faq-a {
    display: flex;
    gap: 16px;
    padding: 0 8px 20px;
  }
  .faq-a-icon {
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    width: 50px;
    height: 50px;
    font-size: 34px;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
  }
  .faq-a-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    padding-top: 4px;
  }

  /* ===== COMPANY ===== */
  #company {
    padding: 100px 0;
    overflow: hidden;
  }
  .company-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
  }
  .company-grid {
    display: grid;
    grid-template-columns: 1fr 1.85fr;
    gap: 60px;
    margin-top: 55px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s 0.3s, transform 0.7s 0.3s;
  }
  #company.in-view .company-grid { opacity: 1; transform: none; }
  .company-name {
    color: var(--blue);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
  }
  .company-table {
    width: 100%;
    border-collapse: collapse;
  }
  .company-table th,
  .company-table td {
    padding: 7px 0;
    font-size: 16px;
    vertical-align: top;
  }
  .company-table th {
    width: 110px;
    font-weight: 500;
    white-space: nowrap;
  }
  .company-map {
    width: 100%;
    background: #d0d0d0;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: opacity 0.3s;
  }
  .company-map:hover { opacity: 0.85; }
  .company-map iframe {
    max-width: 700px;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
  }
  .map-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 2;
  }

  /* ===== SERVICES ===== */
  #services .section-title { letter-spacing: 0.06em; }
  #services {
    padding: 80px 0;
    overflow: visible;
  }
  .services-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    position: relative;
  }
  .services-left {
    aspect-ratio: 69/74;
    position: relative;
    z-index: 1;
  }
  .services-right {
    position: relative;
    z-index: 2;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .services-right .section-title-wrap {
    margin-left: -314px;
    margin-top: -27px;
  }
  #services .section-title-glow{
    display: none;
  }
  /* 円画像ラッパー（画像差し替え用） */
  .services-chart-wrap {
    margin-top: 24px;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s 0.3s, transform 0.7s 0.3s;
    flex-direction: column;
  }
  .services-chart-placeholder{
    max-width: 450px;
    margin: 60px 0 0 auto;
  }
  #services.in-view .services-chart-wrap { opacity: 1; transform: scale(1); }
  .services-chart-wrap img { width: 100%; height: 100%; object-fit: cover; }
  .services-chart-wrap .placeholder-img { border-radius: 50%; }

  /* ===== CONTACT SECTION（全面背景） ===== */
  #contact-section {
    position: relative;
    height: 420px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* 背景画像エリア */
  .contact-bg {
    position: absolute;
    inset: 0;
    background:url(../img/img07.jpg);
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.6s ease;
    z-index: 0;
  }
  #contact-section:hover .contact-bg { transform: scale(1.04); }
  /* 中央コンテンツ */
  .contact-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .contact-title {
   font-family: "avenir-next-lt-pro", sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--black);
  }
  .btn-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--blue);
    color: var(--white);
    max-width: 390px;
    width: 100%;
    padding: 26px 24px;
    font-size: 18px;
    letter-spacing: 0.1em;
    font-weight: 400;
    justify-content: center;
    transition: background 0.25s, color 0.25s, outline 0.25s;
  }
  .btn-contact-link:hover { background: var(--white); color: var(--blue); outline: 2px solid var(--blue); }



  /* ===== RESPONSIVE SP (TOP) ===== */
  @media (max-width: 767px) {
    .fv-logo-text { font-size: 36px; }
    .fv-logo-icon { width: 44px; height: 44px; }
    /* ABOUT */
    #about { padding:0; }
    .about-inner {
      grid-template-columns: 1fr;
      padding: 0;
    }
    .about-right { width: 53%; order: 2;position: absolute;right: 5%;aspect-ratio: 821/1001; }
    .about-left {
      order: 1;
      padding: 3em 20px 40px;
      top: 5em;
    }
    .about-left .section-title-wrap { margin-right: 0; }
    .about-copy { font-size: 5.6vw; margin: 10px 0 0;letter-spacing: .14em; }
    .about-text { font-size: 15.5px;position: relative;top: 6rem;font-feature-settings: "palt"; }
    /* WORKS */
    #works { padding: 56vw 0 5.8em; }
    .works-inner {
      grid-template-columns: 1fr;
      padding: 0;
    }
    .works-left { width: 50%; position: absolute;left: 5%;order: 1;aspect-ratio: 821/1001; }
    .works-right { padding: 20px 0 0; order: 2;top: 3em;text-align: right; }
    .works-right .section-title-wrap { margin: 0 14px 0 auto;display: inline-block;position: relative;text-align: right; }
    .works-desc{
      white-space: nowrap;
      font-size: 16px;
      position: relative;
      top: 10.5em;
      text-align: left;
      margin: 0 auto 25px;
      letter-spacing: 0.06em;
      font-feature-settings: "palt";
      width: calc(100% - 40px);
    }
    .works-wrap{width: 100%;margin: auto;}
    /* .works-desc br{display: none;} */
    .btn-more { margin: auto;width: calc(100% - 40px);position: relative;top: 10em;max-width: 100%;padding: 18px 24px;font-size: 17px; }
    /* CLIENTS */
    #clients { padding:80px 0 60px 0;position: relative;top: 140px; }
    .clients-inner {
      grid-template-columns: 1fr;
      padding: 0;
    }
    .clients-left { padding: 0 20px; order: 1;position: relative;top: 6.15em; }
    .clients-left .section-title-wrap { margin-right: 0;margin-top: 0; }
    .clients-list { grid-template-columns: 1fr 1fr; gap: 2px 16px;position: relative;top:9.9em;margin: 0; }
    .clients-list ul:last-child { width: fit-content; margin: 0 0 0 auto; }
    .clients-list li { font-size: 8px;padding: 2px 0;white-space: nowrap; }
    .clients-right { width: 53%;position: absolute;right: 5%;top: 0; order: 2;aspect-ratio: 821/1001; }
    /* SERVICES */
    #services { position: relative;top: 260px; }
    .services-inner {
      grid-template-columns: 1fr;
      padding: 0;
    }
    .services-left { width: 53%;position: absolute;top: 0;left: 5%;order: 1;aspect-ratio: 821/1001; }
    .services-right { padding: 20px 20px 0; order: 2; align-items: center; top: 5.2em; position: relative; }
    .services-right .section-title-wrap { margin-left: 0;display: block;text-align: right;margin: 0 0 0 auto;right: -8px; }
    #services .section-title-glow {
      display: block;
      position: absolute;
      top: 0;
      right: -18px;
      font-family: avenir-next-lt-pro, sans-serif;
      font-weight: 400;
      font-size: clamp(40px, 11vw, 64px);
      letter-spacing: 0.1em;
      line-height: 1;
      white-space: nowrap;
      padding: 20px 30px;
      color: transparent;
      text-shadow:
        0 0 10px rgba(255,255,255,0.9),
        0 0 10px rgba(255,255,255,0.9),
        0 0 10px rgba(255,255,255,0.9);
      pointer-events: none;
      z-index: -1;
    }
    .services-chart-wrap { width: 220px; height: 220px; max-width: 220px; }
    .services-chart-placeholder {
    position: relative;
    top: 6.2em;
    margin: 50px 0 0 0;
}
    /* WORK FLOW */
    #workflow { padding: 0; margin-top: 400px; scroll-margin-top: 52px; }
    #workflow.in-view .step-img{margin: 20px 0 0;}
    .workflow-inner { padding: 0 20px; }
    .workflow-sub, .workflow-lead{
      display: none;
    }
    .workflow-steps {
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .step-item { aspect-ratio: 9/16; }
    .step-num { font-size: 20px; padding: 4px 0; }
    .step-label { font-size: 8px; }
    /* SERVICES */
    #services { padding:10em 0 7em 0; }
    .services-inner {
      grid-template-columns: 1fr;
      gap: 0;
      padding: 0;
    }

    .services-chart-wrap { width: 240px; height: 240px; }
    /* CONTACT */
    #contact-section { height: 280px; }
  .contact-content{width: 100%;}

    .contact-title { font-size: 30px; }
    .btn-contact-link { min-width: 0; font-size: 12px; padding: 18px 20px;width: fit-content; }

/* FAQ */
    #faq { padding: 5.2em 0; }
    .faq-inner { padding: 0 20px; text-align: center; }
    .faq-list {margin-top: 22px;}
    .faq-q-text { font-size: 12px;text-align: left; }
    .faq-a-text { font-size: 12px;text-align: left; }
    #faq .section-title-wrap{
      text-align: center;
      display: inline-block;
    }
    .faq-icon, .faq-a-icon {
    width: 25px;
    height: 25px;
    font-size: 17px;
}
    /* COMPANY */
    #company { padding: 10px 0 60px 0; }
    .company-inner { padding: 0 20px; text-align: center; }
    #company .section-title-wrap{
      text-align: center;
      display: inline-block;
    }
    .company-name{
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 19px;
    }
    .company-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 32px;
    }
    .company-table th { font-size: 12px;padding: 4px 0; }
    .company-table td { font-size: 12px;padding: 4px 0; }
    .company-map{aspect-ratio: 70/32;}
    .reveal-wrap { width: 53%; }
  }
 
@media (max-width: 399px) {
  .about-text {
        font-size: 14.5px;
    }
    .works-desc{
        font-size: 14.5px;
        letter-spacing: 0.04em;

    }
    .clients-list {
        top: 9em;
    }
}

   @media (max-width: 376px) {
    .about-text{
        font-size: 13px;
        letter-spacing: 0.02em;
        top: 5rem;
    } 
     .works-desc {
        font-size: 13px;
        letter-spacing:0.1em;
    } 
     .works-right {
          top: 4em;
       }
      .works-desc {
        top: 9.5em;
    }
     .btn-more {
        top: 7.3em;
      }
      #clients {
        padding: 30px 0 40px 0;
    }
    .clients-left {
        top: 5.5em;
    }
    .services-chart-placeholder {
        top: 4.5em;
    }

    .clients-list li {
      font-size: 7.1px;
    }

   }
   @media (min-width: 768px) and (max-width: 820px) {
    .about-inner,
    .works-inner,
    .clients-inner,
    .services-inner,
    .workflow-inner,
    .faq-inner,
    .company-inner {
    padding: 0 20px;
}
    .reveal-wrap {
    width: 90%;

}
.about-left {
    padding-right: 0px;
}
.about-text{
  font-size: 12px;
}
      .about-copy {
    font-size: 30px;
    margin: 25px 0 20px;
      }
      .works-desc{
        font-size: 12px;
        br{
          display: none;
        }
      }
#works {
    padding: 0px 0 50px;
}
.works-right {

    padding-left: 0px;
}
.works-right .section-title-wrap {
    margin-left: -66px;
}


  #clients {
    padding: 0px 0 50px;
}
.clients-left{
  padding-right: 0;
}
.clients-left .section-title-wrap {
    margin-top: 55px;
}
.clients-list{
  gap: 4px 18px;
    margin-top: 10px;
}
.clients-list li {
    font-size: 8px;
}
#services {
    padding: 50px 0 80px;
}
      .services-right .section-title-wrap {
    margin-left: -188px;
        margin-top: 0;
  }
.services-chart-placeholder {
  margin: 20px 0 0 auto;
        width: 90%; 
}
.services-right{
  padding-left: 0;
}
#workflow{
  padding: 30px 0 50px;
}
#faq {
    padding:50px 0 0 0;
}
.company-name {
    font-size: 17px;
}
   }