    :root {
      --ink: #101827;
      --muted: #667085;
      --line: rgba(16, 24, 39, 0.11);
      --soft: #f7f9fc;
      --soft-orange: #fff3ec;
      --orange: #ff5b22;
      --orange-dark: #d94d1f;
      --blue: #2f74ff;
      --green: #34a66a;
      --navy: #061f44;
      --shadow: 0 24px 70px rgba(32, 42, 62, 0.08);
      --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: #fff;
      font-family: var(--sans);
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    h1,
    h2,
    h3,
    p {
      margin: 0;
    }

    .nav,
    .wrap {
      width: min(1240px, calc(100% - 80px));
      margin: 0 auto;
    }

    .nav {
      height: 86px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      border-bottom: 1px solid rgba(16, 24, 39, 0.08);
    }

    .logo img {
      width: 160px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(30px, 4.6vw, 66px);
      color: #172033;
      font-size: 15px;
      font-weight: 520;
    }

    .nav-links a {
      opacity: 0.9;
      transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-links a:hover {
      opacity: 1;
      transform: translateY(-1px);
    }

    .nav-action {
      min-width: 142px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: #fff;
      color: #172033;
      font-size: 15px;
      font-weight: 600;
      box-shadow: 0 10px 26px rgba(18, 25, 38, 0.04);
    }

    .page-hero {
      padding: 54px 0 28px;
      background: linear-gradient(180deg, #fff 0%, #fff 72%, #fafcff 72%, #fafcff 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.84fr) minmax(540px, 1fr);
      gap: 44px;
      align-items: start;
    }

    .crumb {
      width: fit-content;
      margin-bottom: 22px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #5e6879;
      font-size: 14px;
      font-weight: 560;
    }

    .crumb img {
      width: auto;
      height: 30px;
      max-width: 92px;
      max-height: 30px;
      object-fit: contain;
    }

    h1 {
      max-width: 660px;
      font-size: clamp(40px, 3.8vw, 56px);
      line-height: 1.14;
      letter-spacing: -0.012em;
      font-weight: 460;
    }

    .hero-lead {
      max-width: 690px;
      margin-top: 18px;
      color: #5f697b;
      font-size: 17px;
      line-height: 1.55;
      letter-spacing: 0;
      font-weight: 440;
    }

    .hero-actions {
      margin-top: 26px;
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .primary,
    .secondary {
      min-height: 48px;
      padding: 0 21px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 620;
    }

    .primary {
      color: #fff;
      background: var(--orange);
      box-shadow: 0 16px 34px rgba(255, 91, 34, 0.2);
    }

    .secondary {
      border: 1px solid var(--line);
      color: #172033;
      background: #fff;
    }

    .trust-line {
      margin-top: 18px;
      color: #667085;
      font-size: 15px;
      line-height: 1.45;
      font-weight: 440;
    }

    .hero-visual {
      position: relative;
      min-height: 390px;
      display: grid;
      place-items: center;
      border: 0;
      border-radius: 14px;
      background: linear-gradient(145deg, #fff 0%, #f8fbff 100%);
      box-shadow: none;
      overflow: hidden;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 12px;
      border-radius: 12px;
      background: radial-gradient(circle at 25% 18%, rgba(255, 91, 34, 0.08), transparent 34%), radial-gradient(circle at 82% 82%, rgba(47, 116, 255, 0.1), transparent 32%);
    }

    .hero-visual img.hero-art {
      position: relative;
      width: min(108%, 720px);
      max-width: none;
      z-index: 1;
      object-fit: contain;
    }

    .intent-strip {
      padding: 14px 0 26px;
      background: #fafcff;
    }

    .chips {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 9px 16px;
    }

    .chip {
      min-height: 0;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 0;
      color: #778091;
      background: transparent;
      font-size: 13px;
      line-height: 1.28;
      font-weight: 500;
      box-shadow: none;
      text-align: center;
      white-space: normal;
      overflow-wrap: anywhere;
    }

    .chip::before {
      content: "";
      width: 4px;
      height: 4px;
      margin-right: 8px;
      border-radius: 50%;
      background: rgba(255, 91, 34, 0.58);
    }

    .section {
      padding: 58px 0;
      border-top: 1px solid rgba(16, 24, 39, 0.08);
    }

    .section.alt {
      background: #fbfcfe;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 0;
      align-items: start;
      margin-bottom: 28px;
    }

    .section-kicker {
      display: none;
    }

    .section h2 {
      max-width: 760px;
      font-size: clamp(29px, 3.1vw, 42px);
      line-height: 1.08;
      letter-spacing: -0.022em;
      font-weight: 460;
    }

    .section-note {
      max-width: 710px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.55;
      letter-spacing: 0;
      font-weight: 440;
    }

    .fit-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(420px, 0.62fr);
      gap: 34px;
      align-items: stretch;
    }

    .fit-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      align-items: stretch;
    }

    .fit-card,
    .service-card,
    .check-card,
    .audience-card {
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 16px 44px rgba(16, 24, 39, 0.035);
    }

    .fit-card {
      min-height: 190px;
      padding: 24px;
    }

    .fit-visual {
      min-height: 420px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: linear-gradient(145deg, #fff 0%, #f7faff 100%);
      overflow: visible;
    }

    .fit-visual img {
      width: min(100%, 560px);
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    .num {
      display: none;
    }

    .fit-card h3,
    .service-card h3,
    .check-card h3,
    .audience-card h3,
    .faq-card h3 {
      color: #172033;
      font-size: 18px;
      line-height: 1.2;
      letter-spacing: -0.006em;
      font-weight: 560;
    }

    .fit-card p,
    .service-card p,
    .check-card p,
    .audience-card p,
    .faq-card p {
      margin-top: 11px;
      color: #5f697b;
      font-size: 14px;
      line-height: 1.52;
      letter-spacing: 0;
      font-weight: 440;
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .step {
      min-height: 180px;
      padding: 22px 18px;
      border-left: 1px solid var(--line);
    }

    .step:first-child {
      border-left: 0;
    }

    .step-index {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      margin-bottom: 28px;
      border-radius: 50%;
      color: var(--orange);
      background: var(--soft-orange);
      font-size: 13px;
      font-weight: 560;
    }

    .step h3 {
      font-size: 17px;
      line-height: 1.18;
      letter-spacing: -0.004em;
      font-weight: 560;
    }

    .step p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
      font-weight: 440;
    }

    .mini-cta {
      margin-top: 40px;
      padding: 24px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
      gap: 28px;
      align-items: center;
      border: 1px solid rgba(255, 91, 34, 0.22);
      border-radius: 14px;
      background: linear-gradient(135deg, #fff7f2 0%, #fff 100%);
    }

    .mini-cta h2 {
      font-size: 27px;
      line-height: 1.14;
      letter-spacing: -0.014em;
      font-weight: 500;
    }

    .inline-form {
      display: grid;
      grid-template-columns: 1fr 190px;
      gap: 10px;
    }

    .inline-form input,
    .contact-form input {
      min-width: 0;
      height: 54px;
      padding: 0 17px;
      border: 1px solid var(--line);
      border-radius: 10px;
      outline: 0;
      color: var(--ink);
      background: #fff;
    }

    .inline-form input:focus-visible,
    .contact-form input:focus-visible {
      border-color: rgba(255, 91, 34, 0.72);
      outline: 3px solid rgba(255, 91, 34, 0.22);
      outline-offset: 2px;
    }

    .inline-form button,
    .contact-form button {
      height: 54px;
      border: 0;
      border-radius: 10px;
      color: #fff;
      background: var(--orange);
      font-weight: 650;
      cursor: pointer;
    }

    .service-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
      gap: 34px;
      align-items: center;
    }

    .service-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 0;
      border-top: 1px solid var(--line);
    }

    .service-card {
      min-height: 0;
      display: grid;
      grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
      gap: 22px;
      align-items: start;
      padding: 22px 0;
      border: 0;
      border-bottom: 1px solid var(--line);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .service-card p {
      margin-top: 0;
    }

    .service-art,
    .delivery-art {
      min-height: 330px;
      display: grid;
      place-items: center;
      border: 0;
      border-radius: 14px;
      background: #fff;
      box-shadow: none;
      overflow: visible;
    }

    .service-art img {
      width: min(96%, 520px);
      margin: 0 auto;
      object-fit: contain;
    }

    .check-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .check-card {
      min-height: 126px;
      padding: 22px;
    }

    .check-mark {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 50%;
      color: #fff;
      background: var(--green);
      font-size: 15px;
      font-weight: 620;
    }

    .delivery-layout {
      display: grid;
      grid-template-columns: minmax(420px, 0.86fr) minmax(0, 1fr);
      gap: 34px;
      align-items: center;
    }

    .delivery-art img {
      width: min(96%, 520px);
      margin: 0 auto;
      object-fit: contain;
    }

    .hero-visual img.hero-art,
    .fit-visual img,
    .service-art img,
    .delivery-art img {
      -webkit-mask-image: radial-gradient(ellipse 76% 72% at 50% 50%, #000 68%, rgba(0, 0, 0, 0.9) 82%, transparent 100%);
      mask-image: radial-gradient(ellipse 76% 72% at 50% 50%, #000 68%, rgba(0, 0, 0, 0.9) 82%, transparent 100%);
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
    }

    .delivery-list {
      display: grid;
      gap: 14px;
    }

    .delivery-item {
      padding: 22px 0;
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 24px;
      border-bottom: 1px solid var(--line);
    }

    .delivery-item:first-child {
      border-top: 1px solid var(--line);
    }

    .delivery-item strong {
      color: var(--orange);
      font-size: 14px;
      font-weight: 620;
    }

    .delivery-item p {
      color: #4d586a;
      font-size: 16px;
      line-height: 1.48;
      font-weight: 440;
    }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .audience-card {
      min-height: 180px;
      padding: 24px;
      background: linear-gradient(180deg, #fff 0%, #fafcff 100%);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .faq-card {
      align-self: start;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 10px 28px rgba(16, 24, 39, 0.025);
      transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }

    .faq-card summary {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 18px;
      align-items: center;
      min-height: 72px;
      padding: 16px 20px;
      gap: 14px;
      list-style: none;
      cursor: pointer;
    }

    .faq-card summary::-webkit-details-marker {
      display: none;
    }

    .faq-card h3 {
      margin: 0;
      font-size: 17px;
      line-height: 1.28;
    }

    .faq-card p {
      margin: 0;
      padding: 0 52px 20px 20px;
    }

    .faq-card summary::before {
      content: "";
      width: 9px;
      height: 9px;
      justify-self: end;
      border-right: 2px solid #0b2b5c;
      border-bottom: 2px solid #0b2b5c;
      transform: translateY(-2px) rotate(45deg);
      transition: transform 180ms ease, border-color 180ms ease;
      grid-column: 2;
      grid-row: 1;
      pointer-events: none;
    }

    .faq-card:hover,
    .faq-card[open] {
      border-color: rgba(255, 91, 34, 0.32);
    }

    .faq-card[open] summary::before {
      border-color: #0b2b5c;
      transform: translateY(2px) rotate(225deg);
    }

    .faq-card[open] {
      background: #fffaf7;
      box-shadow: 0 14px 32px rgba(255, 91, 34, 0.07);
    }

    .faq-card summary:focus-visible {
      outline: 3px solid rgba(47, 116, 255, 0.36);
      outline-offset: -3px;
    }

    .contact-panel {
      padding: 34px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 1px minmax(360px, 0.82fr);
      gap: 34px;
      align-items: center;
      border-radius: 14px;
      border: 1px solid rgba(255, 91, 34, 0.18);
      color: var(--ink);
      background: linear-gradient(135deg, #fff7f2 0%, #fff 62%, #f7faff 100%);
    }

    .contact-panel h2 {
      max-width: 620px;
      color: var(--ink);
      font-size: clamp(26px, 2.5vw, 36px);
      line-height: 1.14;
      letter-spacing: -0.012em;
      font-weight: 440;
    }

    .contact-panel p {
      max-width: 590px;
      margin-top: 12px;
      color: #5f697b;
      font-size: 14px;
      line-height: 1.5;
      font-weight: 440;
    }

    .contact-form {
      margin-top: 24px;
      max-width: 640px;
      display: grid;
      grid-template-columns: 1fr 180px;
      gap: 10px;
    }

    .panel-line {
      width: 1px;
      height: 132px;
      background: rgba(16, 24, 39, 0.1);
    }

    .messengers h3 {
      margin-bottom: 16px;
      color: #172033;
      font-size: 16px;
      font-weight: 650;
    }

    .messenger-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .messenger {
      height: 58px;
      padding: 0 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-radius: 10px;
      border: 1px solid var(--line);
      background: #fff;
      color: #172033;
      font-size: 14px;
      font-weight: 650;
    }

    .messenger img {
      width: 28px;
      height: 28px;
    }

    .footer {
      width: min(1240px, calc(100% - 80px));
      margin: 0 auto;
      padding: 36px 0 42px;
      display: grid;
      grid-template-columns: minmax(250px, 1.4fr) repeat(3, minmax(150px, 0.55fr));
      gap: 44px;
      color: #667085;
      font-size: 14px;
      line-height: 1.55;
    }

    .footer img {
      width: 145px;
      margin-bottom: 15px;
    }

    .footer h3 {
      margin-bottom: 12px;
      color: #172033;
      font-size: 14px;
      font-weight: 650;
    }

    .footer > div:not(:first-child) > a,
    .footer > div:not(:first-child) > span {
      display: table;
      margin-top: 8px;
    }

    .footer p a {
      display: inline;
      margin-top: 0;
    }

    @media (max-width: 1040px) {
      .nav,
      .wrap,
      .footer {
        width: calc(100% - 36px);
      }

      .nav {
        height: 74px;
      }

      .logo img {
        width: 118px;
      }

      .nav-links {
        display: none;
      }

      .hero-grid,
      .section-head,
      .fit-layout,
      .fit-grid,
      .timeline,
      .mini-cta,
      .service-layout,
      .service-grid,
      .check-grid,
      .delivery-layout,
      .audience-grid,
      .faq-grid,
      .contact-panel,
      .footer {
        grid-template-columns: 1fr;
      }

      .chips {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .page-hero {
        padding-top: 42px;
      }

      .hero-visual {
        min-height: 280px;
      }

      .hero-visual img.hero-art {
        width: min(100%, 560px);
      }

      .fit-card:nth-child(2),
      .fit-card:nth-child(4) {
        transform: none;
      }

      .step {
        min-height: 0;
        border-left: 0;
        border-top: 1px solid var(--line);
      }

      .step:first-child {
        border-top: 0;
      }

      .service-art,
      .delivery-art {
        min-height: 220px;
      }

      .service-art img,
      .delivery-art img {
        width: min(100%, 540px);
      }

      .panel-line {
        width: 100%;
        height: 1px;
      }
    }

    @media (max-width: 640px) {
      .page-hero {
        padding: 34px 0 18px;
      }

      h1 {
        font-size: 36px;
        line-height: 1.12;
        letter-spacing: -0.018em;
        font-weight: 540;
      }

      .hero-lead {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.52;
      }

      .crumb {
        margin-bottom: 18px;
        font-size: 13px;
      }

      .crumb img {
        width: auto;
        height: 26px;
        max-width: 78px;
        max-height: 26px;
      }

      .hero-actions {
        margin-top: 22px;
      }

      .trust-line {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.42;
      }

      .primary,
      .secondary {
        width: 100%;
      }

      .secondary {
        width: fit-content;
        min-height: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        color: var(--blue);
        background: transparent;
        box-shadow: none;
        font-size: 14px;
        font-weight: 650;
      }

      .inline-form,
      .contact-form,
      .messenger-row {
        grid-template-columns: 1fr;
      }

      .messenger-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .messenger {
        padding: 0 12px;
        justify-content: center;
      }

      .messenger-row .messenger:nth-child(3) {
        grid-column: 1 / -1;
        height: 52px;
        color: #5f697b;
      }

      .intent-strip {
        padding: 8px 0 20px;
      }

      .chips {
        justify-content: flex-start;
        gap: 8px 12px;
      }

      .chip {
        font-size: 12px;
        text-align: left;
      }

      .chip::before {
        width: 3px;
        height: 3px;
        margin-right: 6px;
      }

      .delivery-item {
        grid-template-columns: 1fr;
        gap: 8px;
      }
    }


    /* 2026-07-09: align service-section artwork with card baseline on desktop */
    @media (min-width: 1041px) {
      .service-layout {
        grid-template-columns: minmax(360px, 0.78fr) minmax(0, 0.92fr);
      }

      .service-art {
        order: -1;
        align-items: end;
        min-height: 410px;
      }

      .service-art img {
        margin-bottom: -34px;
      }
    }

    /* 2026-07-09: align platform detail pages with the home page rhythm */
    .page-hero {
      padding: 64px 0 34px;
      background: linear-gradient(180deg, #fff 0%, #fff 74%, #fafcff 74%, #fafcff 100%);
    }

    h1 {
      font-size: clamp(42px, 4.1vw, 58px);
      line-height: 1.1;
      letter-spacing: -0.034em;
      font-weight: 560;
    }

    .hero-lead {
      max-width: 620px;
      font-size: 17px;
      line-height: 1.5;
      font-weight: 430;
    }

    .section {
      padding: 76px 0;
    }

    .section-head {
      justify-items: center;
      margin-bottom: 30px;
      text-align: center;
    }

    .section h2,
    .mini-cta h2,
    .contact-panel h2 {
      max-width: 820px;
      font-size: clamp(30px, 2.65vw, 38px);
      line-height: 1.13;
      letter-spacing: -0.034em;
      font-weight: 560;
    }

    .section-note {
      max-width: 720px;
      margin: 14px auto 0;
      font-size: 15px;
      line-height: 1.5;
      font-weight: 430;
    }

    .fit-card,
    .service-card,
    .check-card,
    .audience-card {
      min-height: 0;
      padding: 22px;
      border-radius: 12px;
      box-shadow: 0 14px 34px rgba(16, 24, 39, 0.03);
    }

    .timeline {
      border-radius: 12px;
      box-shadow: 0 16px 44px rgba(16, 24, 39, 0.04);
    }

    .step {
      min-height: 158px;
      padding: 20px 16px;
    }

    .mini-cta {
      padding: 22px 24px;
      border-radius: 16px;
    }

    .contact-panel {
      padding: 28px;
      border-radius: 18px;
      background: radial-gradient(circle at 88% 0%, rgba(255, 91, 34, 0.12), transparent 34%), #fff;
      box-shadow: 0 16px 44px rgba(16, 24, 39, 0.045);
    }

    .contact-panel p {
      font-weight: 430;
    }

    .contact-form input,
    .inline-form input {
      font-size: 14px;
    }

    .footer {
      width: min(1288px, calc(100% - 96px));
      padding: 30px 0 44px;
      grid-template-columns: minmax(180px, 0.8fr) repeat(3, minmax(140px, auto));
      gap: 30px;
      border-top: 1px solid rgba(18, 23, 34, 0.08);
      color: rgba(105, 112, 125, 0.86);
      font-size: 14px;
      line-height: 1.55;
    }

    .footer img {
      width: 132px;
      margin-bottom: 10px;
    }

    .footer h3 {
      font-weight: 610;
    }

    .footer a {
      color: inherit;
      font-weight: inherit;
    }

    @media (max-width: 1040px) {
      .section {
        padding: 64px 0;
      }

      .section-head {
        text-align: center;
      }

      .contact-panel {
        padding: 24px;
      }
    }

    @media (max-width: 640px) {
      .page-hero {
        padding: 38px 0 24px;
      }

      h1 {
        max-width: 320px;
        margin: 0 auto;
        font-size: 32px;
        line-height: 1.08;
        text-align: center;
      }

      .crumb {
        margin: 0 auto 16px;
      }

      .hero-lead,
      .trust-line {
        max-width: 310px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
      }

      .hero-lead {
        font-size: 15px;
        line-height: 1.42;
      }

      .hero-grid { gap: 0; }
      .hero-grid > div:first-child { display: contents; }
      .hero-visual { order: 1; margin-top: 24px; }
      .hero-actions {
        order: 2;
        justify-content: center;
        margin-top: 20px;
        gap: 14px;
      }

      .trust-line {
        display: none;
      }

      .intent-strip {
        display: none;
      }

      .section {
        padding: 48px 0;
      }

      .section-head {
        margin-bottom: 20px;
      }

      .section h2,
      .mini-cta h2,
      .contact-panel h2 {
        font-size: 26px;
        line-height: 1.04;
      }

      .section-note {
        font-size: 14px;
        line-height: 1.42;
      }

      .fit-visual {
        min-height: 0;
        padding: 10px 0 0;
      }

      .fit-card,
      .service-card,
      .check-card,
      .audience-card {
        padding: 20px;
      }

      .faq-grid {
        gap: 12px;
      }

      .faq-card summary {
        min-height: 68px;
        padding: 15px 18px;
      }

      .faq-card p {
        padding: 0 46px 18px 18px;
      }

      .service-card {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .service-card p {
        margin-top: 0;
      }

      .step {
        padding: 18px;
      }

      .step-index {
        margin-bottom: 14px;
      }

      .mini-cta {
        margin-top: 28px;
        padding: 20px;
      }

      .inline-form input,
      .contact-form input {
        height: 52px;
        font-size: 13px;
      }

      .contact-panel {
        padding: 22px;
        gap: 18px;
        border-radius: 22px;
      }

      .footer {
        width: calc(100% - 36px);
        padding: 28px 0 38px;
        gap: 18px;
        font-size: 13px;
      }
    }
