:root {
      --teal: #10c59a;
      --teal-dark: #00827e;
      --teal-soft: #e8fbf6;
      --teal-soft-2: #f1fffb;
      --ink: #202a2f;
      --muted: #5e6b70;
      --line: #e4eeeb;
      --white: #fff;
      --bg: #f7fbfa;
      --shadow: 0 22px 70px rgba(14, 43, 37, .10);
      --jp: "Noto Sans JP", sans-serif;
      --en: "Inter", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--jp);
      color: var(--ink);
      background: var(--bg);
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    .container { width: min(1380px, calc(100% - 96px)); margin: 0 auto; }

    /* Header */
    .lp-header {
      height: 88px;
      background: rgba(255,255,255,.86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(28,44,49,.08);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .header-inner {
      height: 100%;
      display: grid;
      grid-template-columns: 210px 1fr auto auto;
      align-items: center;
      gap: 32px;
    }
    .logo img { width: 134px; }
    .nav {
      display: flex;
      justify-content: center;
      gap: 42px;
      font-size: 15px;
      font-weight: 800;
      color: #1d2b31;
    }
    .nav a { opacity: .88; transition: color .2s ease, opacity .2s ease; }
    .nav a:hover { color: var(--teal-dark); opacity: 1; }
    .cta-short { display: none; }
    .nav-official {
      display: inline-flex;
      align-items: center;
      border: 1.5px solid var(--teal);
      border-radius: 999px;
      padding: 6px 16px;
      color: var(--teal-dark);
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
      text-decoration: none;
      transition: background .2s ease, color .2s ease;
    }
    .nav-official:hover {
      background: var(--teal);
      color: #fff;
    }
    .header-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 278px;
      padding: 15px 24px;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      font-weight: 900;
      box-shadow: 0 18px 40px rgba(16,197,154,.22);
    }

    /* Hero */
    .hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 80% 26%, rgba(16,197,154,.14) 0 0, transparent 34%),
        linear-gradient(180deg, #fff 0%, #f7fbfa 78%);
      padding: 70px 0 42px;
    }
    .hero::before {
      content: "";
      position: absolute;
      width: 720px;
      height: 720px;
      border-radius: 50%;
      right: 2%;
      top: 22px;
      background: rgba(16,197,154,.075);
      filter: blur(0);
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(16,197,154,.15) 1px, transparent 1px);
      background-size: 32px 32px;
      opacity: .20;
      mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-main {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 86px;
      align-items: center;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      border-radius: 999px;
      background: var(--teal-soft);
      color: var(--teal-dark);
      font-weight: 900;
      font-size: 15px;
      margin-bottom: 24px;
    }
    .hero-title {
      margin: 0;
      font-weight: 900;
      line-height: 1.35;
      letter-spacing: -.03em;
      font-size: clamp(28px, 2.8vw, 42px);
      max-width: 760px;
    }
    .hero-title .teal {
      color: var(--teal);
      display: inline;
    }
    .hero-title-emphasis {
      font-size: clamp(38px, 4.2vw, 60px);
      font-weight: 900;
      letter-spacing: -.04em;
      line-height: 1.15;
      display: inline-block;
    }
    .hero-copy {
      margin: 24px 0 0;
      font-size: 18px;
      color: #344349;
      line-height: 2.0;
      font-weight: 600;
      max-width: 610px;
    }
    .hero-actions {
      margin-top: 34px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 11px;
      min-height: 58px;
      padding: 16px 26px;
      border-radius: 999px;
      font-weight: 900;
      font-size: 15px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-right: 5px;
      font-size: 1.1em;
      line-height: 1;
    }
    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      box-shadow: 0 18px 38px rgba(16,197,154,.22);
    }
    .btn-outline {
      background: rgba(255,255,255,.78);
      border: 1px solid var(--line);
      color: #253137;
      box-shadow: 0 12px 28px rgba(21,44,38,.06);
    }
    .hero-notes {
      margin-top: 22px;
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
    }
    .hero-notes span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }
    .check {
      width: 19px;
      height: 19px;
      border-radius: 50%;
      color: #fff;
      background: var(--teal);
      display: inline-flex;
      justify-content: center;
      align-items: center;
      font-size: 12px;
    }
    .hero-photo {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 28px;
      box-shadow: 0 28px 80px rgba(21,44,38,.16);
      border: 1px solid rgba(255,255,255,.75);
      align-self: flex-start;
    }
    .hero-photo-mobile { display: none; }

    /* Feature strip */
    .feature-strip {
      position: relative;
      z-index: 2;
      margin-top: 40px;
      background: rgba(255,255,255,.88);
      border: 1px solid rgba(228,238,235,.95);
      border-radius: 22px;
      box-shadow: var(--shadow);
      padding: 32px 36px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
    }
    .feature {
      padding: 8px 20px;
      border-right: 1px solid var(--line);
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 14px;
      align-items: start;
      min-height: 126px;
    }
    .feature:last-child { border-right: 0; }
    .f-icon {
      width: 50px;
      height: 50px;
      border-radius: 999px;
      border: 3px solid var(--teal);
      color: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(16,197,154,.04);
      box-shadow: 0 10px 24px rgba(16,197,154,.08);
      flex: 0 0 50px;
    }
    .f-icon svg {
      width: 26px;
      height: 26px;
      stroke: currentColor;
      stroke-width: 2.2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .feature h3 {
      margin: 0 0 8px;
      font-size: 15px;
      line-height: 1.45;
      font-weight: 900;
      white-space: nowrap;
      letter-spacing: -.03em;
    }
    .feature p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.7;
      font-weight: 600;
    }

    /* Stats */
    .stats {
      margin-top: 28px;
      background: linear-gradient(180deg, rgba(232,251,246,.85), rgba(255,255,255,.85));
      border: 1px solid rgba(16,197,154,.13);
      border-radius: 22px;
      box-shadow: 0 18px 52px rgba(16,197,154,.07);
      padding: 26px 36px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
    }
    .stat {
      border-right: 1px solid rgba(16,197,154,.18);
      padding: 8px 22px;
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 14px;
      align-items: center;
    }
    .stat:last-child { border-right: 0; }
    .s-icon {
      color: var(--teal);
      font-size: 34px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .s-icon svg {
      width: 32px;
      height: 32px;
      stroke: var(--teal);
    }
    .s-value {
      font-family: var(--en);
      color: var(--teal);
      font-size: 34px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -.03em;
    }
    .s-label {
      margin-top: 4px;
      font-size: 14px;
      font-weight: 900;
      color: #2e3b40;
      line-height: 1.55;
      letter-spacing: -.02em;
    }

    /* Sections */
    .section { padding: 96px 0; }
    .section-white { background: #fff; }
    .section-soft { background: var(--bg); }
    .section-grey { background: #f3f4f6; color: var(--ink); }
    .section-grey .mini-label { color: var(--teal-dark); background: rgba(16,197,154,.12); border-color: rgba(16,197,154,.2); }
    .section-grey h2 { color: var(--ink); }
    .section-grey .lead { color: var(--muted); }
    .section-dark {
      background: #0e1d19;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .section-dark::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 12% 16%, rgba(16,197,154,.22), transparent 24%),
        radial-gradient(circle at 88% 88%, rgba(0,130,126,.22), transparent 26%);
      pointer-events: none;
    }
    .section-dark .container { position: relative; z-index: 1; }
    .section-head {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 54px;
    }
    .mini-label {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--teal-dark);
      background: var(--teal-soft);
      padding: 7px 16px;
      border-radius: 999px;
      font-size: 12px;
      letter-spacing: .10em;
      font-family: var(--en);
      font-weight: 900;
      margin-bottom: 14px;
    }
    .section-dark .mini-label {
      color: #8fffe3;
      background: rgba(16,197,154,.13);
    }
    h2 {
      margin: 0;
      font-size: clamp(30px, 3.3vw, 48px);
      line-height: 1.28;
      letter-spacing: -.035em;
      font-weight: 900;
    }
    .lead {
      margin: 18px auto 0;
      color: var(--muted);
      font-size: 16px;
      font-weight: 600;
      line-height: 2;
    }
    .section-dark .lead { color: rgba(255,255,255,.68); }

    /* Service section — light teal-soft (matches official site) */
    .section-teal-soft {
      background: var(--teal-soft);
      color: var(--ink);
      position: relative;
      overflow: hidden;
    }
    /* Decorative corner elements */
    .svc-deco {
      position: absolute;
      top: 0;
      pointer-events: none;
      z-index: 0;
      width: 320px;
      height: 320px;
    }
    .svc-deco-left { left: 0; }
    .svc-deco-right { right: 0; }

    .svc-blob {
      position: absolute;
      top: -80px;
      left: -90px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(16,197,154,.13);
    }
    .svc-dots {
      position: absolute;
      top: 30px;
      left: 30px;
      width: 220px;
      height: 220px;
      background-image: radial-gradient(circle, rgba(16,197,154,.35) 1.5px, transparent 1.5px);
      background-size: 20px 20px;
    }
    .svc-deco-right .svc-dots {
      left: auto;
      right: 20px;
    }
    .svc-circle-sm {
      position: absolute;
      bottom: 30px;
      right: 120px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(16,197,154,.4);
    }
    .section-teal-soft .container { position: relative; z-index: 1; }
    .section-teal-soft .mini-label {
      color: var(--teal-dark);
      background: rgba(16,197,154,.14);
      border-color: rgba(16,197,154,.22);
    }
    .section-teal-soft h2 { color: var(--ink); }
    .section-teal-soft .lead { color: var(--muted); }
    /* Cards on light bg */
    .section-teal-soft .service-card {
      background: #fff;
      border: 1px solid rgba(16,197,154,.18);
      box-shadow: 0 8px 32px rgba(14,43,37,.08);
    }
    .section-teal-soft .service-card:hover {
      background: #fff;
      border-color: rgba(16,197,154,.45);
      box-shadow: 0 16px 48px rgba(14,43,37,.13);
    }
    .section-teal-soft .service-num {
      color: var(--teal-dark);
      background: rgba(16,197,154,.10);
      border-color: rgba(16,197,154,.22);
    }
    .section-teal-soft .service-card h3 { color: var(--ink); }
    .section-teal-soft .service-card p { color: var(--muted); }
    .section-teal-soft .tags span {
      color: var(--teal-dark);
      background: rgba(16,197,154,.08);
      border: 1px solid rgba(16,197,154,.18);
    }
    .section-teal-soft .service-thumb::after {
      background: linear-gradient(180deg, rgba(255,255,255,0) 38%, rgba(255,255,255,.12) 100%);
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 16px 44px rgba(26,45,40,.055);
    }
    .card-icon {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      background: var(--teal-soft);
      color: var(--teal-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 12px;
    }
    .card h3 {
      margin: 0 0 10px;
      font-size: 18px;
      line-height: 1.55;
      font-weight: 900;
    }
    .card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.85;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      align-items: stretch;
    }
    .service-card {
      min-height: 520px;
      background: rgba(255,255,255,.065);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 24px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 24px 60px rgba(0,0,0,.18);
      transition: transform .22s ease, border-color .22s ease, background .22s ease;
    }
    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(16,197,154,.42);
      background: rgba(255,255,255,.085);
    }
    .service-thumb {
      position: relative;
      height: 230px;
      overflow: hidden;
      background: rgba(255,255,255,.08);
    }
    .service-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.96) contrast(1.02);
      transform: scale(1.02);
      transition: transform .35s ease;
    }
    .service-card:hover .service-thumb img {
      transform: scale(1.07);
    }
    .service-thumb::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(14,29,25,0) 38%, rgba(14,29,25,.92) 100%);
    }
    .service-body {
      padding: 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .service-num {
      display: inline-flex;
      width: fit-content;
      color: #8fffe3;
      background: rgba(16,197,154,.13);
      border: 1px solid rgba(16,197,154,.22);
      border-radius: 999px;
      padding: 5px 13px;
      font-family: var(--en);
      font-weight: 900;
      font-size: 12px;
      letter-spacing: .10em;
      margin-bottom: 12px;
    }
    .service-card h3 {
      margin: 0 0 14px;
      font-size: 24px;
      line-height: 1.45;
      font-weight: 900;
    }
    .service-card p {
      margin: 0;
      color: rgba(255,255,255,.68);
      font-size: 15px;
      font-weight: 600;
      line-height: 1.95;
    }
    .tags {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .tags span {
      color: rgba(255,255,255,.78);
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 12px;
      font-weight: 900;
    }


    /* Why STEAH (tech centric) */
    .why-tech {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 10% 10%, rgba(16,197,154,.08), transparent 28%),
        radial-gradient(circle at 88% 85%, rgba(0,130,126,.06), transparent 24%),
        linear-gradient(180deg, #fbfefe 0%, #f6fbfa 100%);
    }
    .why-tech::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(16,197,154,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,197,154,.045) 1px, transparent 1px);
      background-size: 36px 36px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.22));
      pointer-events: none;
    }
    .why-wrap {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 520px 1fr;
      gap: 54px;
      align-items: stretch;
    }
    .why-side {
      position: relative;
      min-height: 100%;
      border: 1px solid rgba(16,197,154,.12);
      border-radius: 32px;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,251,250,.98));
      box-shadow: 0 18px 50px rgba(31,41,51,.06);
      display: flex;
      flex-direction: column;
    }
    .why-photo {
      height: 300px;
      background:
        linear-gradient(180deg, rgba(14,29,25,.15), rgba(14,29,25,.38)),
        url("../image/about-team-photo.webp") center/cover;
      position: relative;
    }
    .why-photo::after {
      display: none;
    }
    .why-copy {
      padding: 48px 42px 42px;
      position: relative;
      z-index: 1;
    }
    .why-copy h2 {
      margin-top: 6px;
      font-size: clamp(30px, 3vw, 46px);
      line-height: 1.2;
    }
    .why-copy p {
      margin: 18px 0 0;
      color: var(--text);
      font-size: 16px;
      line-height: 1.95;
      font-weight: 600;
    }
    .why-chip-visual { display: none; }
    .why-cards {
      position: relative;
      display: grid;
      gap: 16px;
      align-content: start;
      padding-left: 70px;
    }
    .why-cards::before {
      content: "";
      position: absolute;
      top: 24px;
      bottom: 24px;
      left: 10px;
      width: 2px;
      background: linear-gradient(180deg, rgba(16,197,154,.0), rgba(16,197,154,.6) 10%, rgba(16,197,154,.6) 90%, rgba(16,197,154,.0));
    }
    .why-card {
      position: relative;
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 18px;
      align-items: center;
      border: 1px solid rgba(16,197,154,.14);
      border-radius: 22px;
      padding: 18px 22px;
      max-width: 920px;
      margin-left: auto;
      background: rgba(255,255,255,.88);
      box-shadow: 0 16px 40px rgba(31,41,51,.05);
      overflow: hidden;
    }
    .why-card::before {
      content: "";
      position: absolute;
      left: -30px;
      top: 50%;
      width: 18px; height: 18px;
      transform: translateY(-50%);
      background: #fff;
      border: 4px solid var(--teal);
      border-radius: 50%;
      box-shadow: 0 0 0 8px rgba(16,197,154,.12);
    }
    .why-card::after {
      content: "";
      position: absolute;
      right: -20px;
      top: 50%;
      width: 210px;
      height: 210px;
      transform: translateY(-50%);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(16,197,154,.08), rgba(16,197,154,0) 66%);
      pointer-events: none;
    }
    .why-iconbox {
      height: 78px;
      border-radius: 24px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 50% 50%, rgba(104,255,226,.25), rgba(104,255,226,0) 48%),
        linear-gradient(180deg, #0f5760 0%, #0a7a78 100%);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 16px 34px rgba(0,130,126,.16);
    }
    .why-iconbox::before {
      content: "";
      position: absolute;
      inset: 14px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,.08);
    }
    .why-iconbox::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 18%, rgba(255,255,255,.2) 1px, transparent 1.5px),
        radial-gradient(circle at 78% 74%, rgba(255,255,255,.16) 1px, transparent 1.5px),
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: auto, auto, 28px 28px, 28px 28px;
      opacity: .9;
    }
    .why-glyph {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 31px;
      font-weight: 900;
      z-index: 1;
      text-shadow: 0 0 24px rgba(115,255,227,.22);
    }
    .why-card-content {
      position: relative;
      z-index: 1;
      padding-right: 34px;
    }
    .why-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 48px;
      padding: 5px 12px;
      border-radius: 12px;
      background: linear-gradient(135deg, #11d1a8, #0ea39a);
      color: #fff;
      font-family: var(--en);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .06em;
      box-shadow: 0 10px 18px rgba(16,197,154,.18);
    }
    .why-card h3 {
      margin: 8px 0 8px;
      font-size: clamp(18px, 1.4vw, 22px);
      line-height: 1.35;
      font-weight: 900;
      letter-spacing: -.02em;
    }
    .why-line {
      width: 44px;
      height: 4px;
      border-radius: 999px;
      background: linear-gradient(90deg, #10c59a, #0ea39a);
      margin-bottom: 12px;
    }
    .why-card p {
      margin: 0;
      color: #42535a;
      font-size: 13px;
      line-height: 1.75;
      font-weight: 600;
      max-width: 760px;
    }
    .why-faint {
      position: absolute;
      right: 22px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(16,197,154,.22);
      font-size: 68px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -.06em;
      user-select: none;
      pointer-events: none;
      z-index: 0;
    }

    .ai-section-box {
      background:
        radial-gradient(circle at 8% 12%, rgba(16,197,154,.09), transparent 24%),
        radial-gradient(circle at 94% 88%, rgba(0,130,126,.07), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #fbfefd 100%);
      border: 1px solid var(--line);
      border-radius: 34px;
      box-shadow: var(--shadow);
      padding: 44px;
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 56px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .ai-section-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(16,197,154,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,197,154,.04) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: .55;
      pointer-events: none;
      mask-image: linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.32));
    }
    .ai-section-box > * {
      position: relative;
      z-index: 1;
    }

    .ai-saas-visual {
      width: min(100%, 640px);
      justify-self: center;
      border-radius: 30px;
      padding: 18px;
      background:
        radial-gradient(circle at 26% 26%, rgba(21,230,190,.22), transparent 28%),
        linear-gradient(180deg, #07151d 0%, #061018 100%);
      border: 1px solid rgba(16,197,154,.22);
      box-shadow:
        0 30px 70px rgba(7,22,30,.24),
        inset 0 1px 0 rgba(255,255,255,.06);
      color: #fff;
      overflow: hidden;
    }
    .ai-saas-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }
    .ai-saas-badge,
    .ai-saas-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(16,197,154,.22);
      color: rgba(255,255,255,.88);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .05em;
      white-space: nowrap;
    }
    .ai-saas-badge::before,
    .ai-saas-status::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #10c59a;
      box-shadow: 0 0 14px rgba(16,197,154,.75);
    }
    .ai-saas-screen {
      border-radius: 22px;
      padding: 20px;
      background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        radial-gradient(circle at 50% 42%, rgba(16,197,154,.22), transparent 34%),
        #07111b;
      background-size: 30px 30px, 30px 30px, auto, auto;
      border: 1px solid rgba(16,197,154,.18);
    }
    .ai-saas-map {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) 92px minmax(0, 1.15fr);
      gap: 12px;
      align-items: center;
      min-height: 246px;
    }
    .ai-data-stack,
    .ai-output-stack {
      display: grid;
      gap: 10px;
    }
    .ai-node {
      min-height: 50px;
      border-radius: 14px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.08);
      padding: 9px 10px;
      display: flex;
      align-items: center;
      gap: 9px;
      min-width: 0;
    }
    .ai-node-icon {
      width: 30px;
      height: 30px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 30px;
      background:
        radial-gradient(circle at 35% 30%, rgba(115,255,227,.34), transparent 42%),
        linear-gradient(135deg, rgba(16,197,154,.24), rgba(0,130,126,.16));
      border: 1px solid rgba(115,255,227,.22);
      color: #bfffee;
      font-family: var(--en);
      font-size: 10px;
      letter-spacing: .04em;
      font-weight: 900;
      box-shadow: 0 0 16px rgba(16,197,154,.14);
    }
    .ai-node div {
      min-width: 0;
    }
    .ai-node strong {
      display: block;
      color: #fff;
      font-size: 11px;
      line-height: 1.25;
      font-weight: 900;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .ai-node span:not(.ai-node-icon) {
      display: block;
      color: rgba(255,255,255,.62);
      font-size: 9px;
      line-height: 1.35;
      margin-top: 3px;
      font-weight: 700;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .ai-core {
      position: relative;
      width: 92px;
      height: 92px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff;
      font-family: var(--en);
      font-size: 32px;
      font-weight: 900;
      background:
        radial-gradient(circle, rgba(16,197,154,.95), rgba(0,130,126,.72));
      box-shadow:
        0 0 0 16px rgba(16,197,154,.10),
        0 0 58px rgba(16,197,154,.35);
    }
    .ai-core::before,
    .ai-core::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 54px;
      height: 2px;
      background: linear-gradient(90deg, rgba(16,197,154,0), rgba(16,197,154,.9), rgba(16,197,154,0));
    }
    .ai-core::before {
      right: 100%;
    }
    .ai-core::after {
      left: 100%;
    }
    .ai-saas-flow {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }
    .ai-flow-step {
      min-height: 56px;
      border-radius: 15px;
      background: rgba(255,255,255,.055);
      border: 1px solid rgba(16,197,154,.15);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px;
      color: rgba(255,255,255,.88);
      font-size: 12px;
      font-weight: 900;
      text-align: center;
      white-space: nowrap;
    }
    .ai-flow-step::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #10c59a;
      box-shadow: 0 0 12px rgba(16,197,154,.65);
      flex: 0 0 8px;
    }

    .ai-content h2 {
      font-size: clamp(34px, 3.2vw, 48px);
      line-height: 1.18;
      letter-spacing: -.045em;
      margin: 12px 0 20px;
    }
    .ai-content .lead {
      font-size: 16px;
      line-height: 1.9;
      color: var(--muted);
      margin-bottom: 24px;
    }
    .mini-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
    .mini {
      padding: 20px;
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,253,250,.96));
      border: 1px solid rgba(16,197,154,.18);
      min-width: 0;
      box-shadow: 0 14px 36px rgba(31,41,51,.055);
    }
    .mini-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }
    .mini-icon {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, rgba(16,197,154,.16), rgba(0,130,126,.10));
      border: 1px solid rgba(16,197,154,.18);
      color: var(--teal-dark);
      font-size: 15px;
      font-weight: 900;
      flex: 0 0 40px;
    }
    .mini strong {
      display: block;
      color: var(--teal-dark);
      font-weight: 900;
      font-size: 20px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .mini p {
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.8;
      margin: 0;
    }





    /* IT-centric issue section */
    .issue-section {
      background:
        radial-gradient(circle at 12% 12%, rgba(16,197,154,.08), transparent 26%),
        radial-gradient(circle at 88% 86%, rgba(0,130,126,.06), transparent 24%),
        #ffffff;
      position: relative;
      overflow: hidden;
    }
    .issue-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(16,197,154,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,197,154,.045) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: .65;
      pointer-events: none;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.20));
    }
    .issue-section .container { position: relative; z-index: 1; }
    .issue-section .section-head {
      max-width: 1080px;
      margin-bottom: 50px;
    }
    .issue-title-single {
      white-space: nowrap;
      font-size: clamp(34px, 3.6vw, 54px);
      letter-spacing: -.05em;
    }
    .issue-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .issue-card {
      padding: 24px;
      border-radius: 16px;
      border: 1px solid rgba(16,197,154,.18);
      background: #fff;
      transition: transform .22s ease, box-shadow .22s ease;
    }
    .issue-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(16,197,154,.10);
    }
    .issue-card::before { display: none; }
    .issue-card::after  { display: none; }
    .issue-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      background: rgba(16,197,154,.12);
      color: #0f6e56;
    }
    .issue-icon::before { display: none; }
    .issue-icon svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .issue-card h3 {
      margin: 0 0 8px;
      font-size: 15px;
      line-height: 1.45;
      font-weight: 700;
      color: var(--ink);
    }
    .issue-card p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.75;
      font-weight: 400;
    }
    .issue-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 14px;
    }
    .issue-tags span {
      display: inline-flex;
      align-items: center;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(16,197,154,.1);
      border: 1px solid rgba(16,197,154,.22);
      color: #0f6e56;
      font-size: 11px;
      font-weight: 600;
    }

    /* Team section */
    .team-section {
      position: relative;
      overflow: hidden;
    }
    .team-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(16,197,154,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,197,154,.04) 1px, transparent 1px);
      background-size: 42px 42px;
      pointer-events: none;
      opacity: .75;
    }
    .team-section .container { position: relative; z-index: 1; }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
      align-items: stretch;
    }
    .team-card {
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(16,197,154,.18);
      border-radius: 26px;
      overflow: hidden;
      box-shadow: 0 20px 58px rgba(31,41,51,.075);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .team-card:hover {
      transform: translateY(-6px);
      border-color: rgba(16,197,154,.42);
      box-shadow: 0 28px 70px rgba(16,197,154,.12);
    }
    .team-photo {
      height: 270px;
      background: linear-gradient(180deg, #eafff9 0%, #dff7f2 100%);
      overflow: hidden;
      position: relative;
    }
    .team-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0) 58%, rgba(0,130,126,.20) 100%);
      pointer-events: none;
    }
    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .32s ease;
    }
    .team-card:hover .team-photo img { transform: scale(1.045); }
    .team-body {
      padding: 24px 24px 26px;
    }
    .team-role {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      color: var(--teal-dark);
      background: var(--teal-soft);
      border: 1px solid rgba(16,197,154,.20);
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .08em;
      font-family: var(--en);
      margin-bottom: 14px;
      white-space: nowrap;
    }
    .team-body h3 {
      margin: 0;
      font-size: 23px;
      line-height: 1.35;
      font-weight: 900;
      letter-spacing: -.02em;
      color: var(--ink);
    }
    .team-country {
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }
    .team-residence {
      background: rgba(16,197,154,.12) !important;
      color: var(--teal-dark) !important;
      border-color: rgba(16,197,154,.30) !important;
    }
    .team-desc {
      margin: 16px 0 0;
      padding-top: 16px;
      border-top: 1px solid rgba(31,41,51,.08);
      color: var(--muted);
      font-size: 14px;
      line-height: 1.85;
      font-weight: 600;
      min-height: 78px;
    }
    .team-tags {
      display: flex;
      flex-wrap: nowrap;
      gap: 6px;
      margin-top: 18px;
    }
    .team-tags span {
      display: inline-flex;
      align-items: center;
      padding: 5px 9px;
      border-radius: 999px;
      background: rgba(16,197,154,.09);
      border: 1px solid rgba(16,197,154,.25);
      color: var(--teal-dark);
      font-size: 11px;
      font-weight: 900;
      white-space: nowrap;
    }

    /* ── Process section ─────────────────────────── */
    .process-section {
      position: relative;
      overflow: hidden;
      padding: 96px 0;
      background:
        radial-gradient(circle at 8% 15%, rgba(16,197,154,.10), transparent 20%),
        radial-gradient(circle at 92% 12%, rgba(61,180,255,.10), transparent 22%),
        linear-gradient(180deg, #fbfcfc 0%, #f6f8f8 100%);
    }
    .process-section::before {
      content: "";
      position: absolute;
      top: 32px; left: -40px;
      width: 240px; height: 240px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(16,197,154,.08) 0%, rgba(16,197,154,.03) 45%, transparent 70%);
      pointer-events: none;
    }
    .process-section::after {
      content: "";
      position: absolute;
      right: -80px; top: 20px;
      width: 420px; height: 420px;
      border-radius: 50%;
      border: 1px solid rgba(16,197,154,.10);
      box-shadow: 0 0 0 40px rgba(16,197,154,.03), 0 0 0 80px rgba(16,197,154,.02);
      pointer-events: none;
    }
    .proc-dots {
      position: absolute;
      width: 124px; height: 124px;
      background-image: radial-gradient(rgba(16,197,154,.22) 1.6px, transparent 1.6px);
      background-size: 15px 15px;
      pointer-events: none;
      z-index: 0;
    }
    .proc-dots-left  { left: 8px;  top: 92px; }
    .proc-dots-right { right: 24px; bottom: 56px; }
    .proc-label {
      display: inline-flex;
      align-items: center; justify-content: center;
      height: 40px; padding: 0 22px;
      border-radius: 999px;
      background: linear-gradient(180deg, #effcf7, #e8faf4);
      color: #109874;
      font-weight: 800; letter-spacing: .12em; font-size: 13px;
      margin-bottom: 22px;
    }
    .heading-wrap { text-align: center; margin-bottom: 56px; }
    .proc-subtitle {
      margin: 18px auto 0; max-width: 820px;
      color: var(--muted); font-size: 15px;
      line-height: 1.9; font-weight: 600;
    }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
      position: relative; z-index: 1;
    }
    .step-card {
      position: relative;
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.84));
      border: 1px solid rgba(15,23,42,.07);
      border-radius: 28px;
      box-shadow: 0 20px 50px rgba(15,23,42,.08);
      padding: 28px 26px 30px;
      min-height: 380px;
      display: flex; flex-direction: column;
      backdrop-filter: blur(12px);
    }
    .step-card-raised { transform: translateY(-18px); }
    .step-num {
      font-size: clamp(2.3rem, 3vw, 3rem);
      line-height: 1; font-weight: 900;
      color: var(--teal);
      letter-spacing: -.04em;
      margin-bottom: 22px;
      font-family: var(--en);
    }
    .icon-badge {
      width: 84px; height: 84px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: radial-gradient(circle at 30% 30%, #f4fffb, #dff8f0);
      border: 1px solid rgba(16,197,154,.14);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
      margin-bottom: 24px;
      color: var(--teal);
    }
    .icon-badge svg { width: 38px; height: 38px; stroke: var(--teal); stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }
    .step-title {
      margin: 0; font-size: clamp(1.1rem, 1.6vw, 1.35rem);
      line-height: 1.35; font-weight: 900;
      letter-spacing: -.02em; color: var(--ink);
    }
    .step-divider {
      width: 52px; height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--teal), rgba(16,197,154,.25));
      margin: 16px 0;
    }
    .step-desc {
      margin: 0; color: var(--muted);
      font-size: 13.5px; line-height: 1.9; font-weight: 600;
    }
    /* keep old .process .num reference for mobile overrides below */
    .process .num {
      color: var(--teal);
      font-family: var(--en);
      font-weight: 900;
      margin-bottom: 14px;
    }
    .process h3 { margin: 0; font-size: 17px; color: var(--ink); }
    .process p { margin: 0; color: var(--muted); font-size: 13px; font-weight: 600; line-height: 1.8; }

    .faq-list {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      border: 1px solid rgba(16,197,154,.22);
      border-left: 4px solid var(--teal);
      border-radius: 14px;
      padding: 24px 28px;
      background: #fff;
      box-shadow: 0 2px 10px rgba(16,197,154,.05);
      transition: box-shadow .2s ease, border-color .2s ease;
    }
    .faq-item:hover {
      box-shadow: 0 6px 20px rgba(16,197,154,.10);
      border-color: rgba(16,197,154,.40);
    }
    .faq-item:last-child { border-bottom: 1px solid rgba(16,197,154,.22); }
    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0;
      cursor: pointer;
      user-select: none;
    }
    .faq-q-inner {
      display: flex;
      gap: 16px;
      align-items: baseline;
    }
    .faq-q-badge {
      font-size: 15px;
      font-weight: 700;
      color: #10c59a;
      min-width: 20px;
      flex-shrink: 0;
      font-family: var(--en);
    }
    .faq-q-text {
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.55;
    }
    .faq-chevron {
      flex-shrink: 0;
      margin-left: 16px;
      color: var(--teal);
      display: flex;
      align-items: center;
      transition: transform .25s ease;
    }
    .faq-item.is-open .faq-chevron {
      transform: rotate(180deg);
    }
    .faq-a {
      display: flex;
      gap: 16px;
      align-items: baseline;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height .35s ease, opacity .25s ease, padding-top .35s ease;
      padding-top: 0;
    }
    .faq-item.is-open .faq-a {
      max-height: 600px;
      opacity: 1;
      padding-top: 14px;
    }
    .faq-a-badge {
      font-size: 15px;
      font-weight: 700;
      color: var(--muted);
      min-width: 20px;
      flex-shrink: 0;
      font-family: var(--en);
    }
    .faq-a-text {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.85;
    }
    .cta .lead { color: rgba(255,255,255,.72); max-width: 720px; }
    .cta .hero-actions { justify-content: center; }

    footer { background: #091410; color: rgba(255,255,255,.55); padding: 44px 0; }
    .footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; }
    .footer-inner img { width: 120px; filter: brightness(0) invert(1); opacity: .82; }


    /* Supplied SVG visual for AI integration section */
    .ai-svg-visual {
      width: min(100%, 620px);
      justify-self: center;
      position: relative;
    }
    .ai-svg-frame {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      background:
        radial-gradient(circle at 20% 20%, rgba(16,197,154,.10), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f4fbf9 100%);
      border: 1px solid rgba(16,197,154,.18);
      box-shadow: 0 26px 70px rgba(16,197,154,.11);
      padding: 22px;
    }
    .ai-svg-frame::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(16,197,154,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,197,154,.04) 1px, transparent 1px);
      background-size: 36px 36px;
      pointer-events: none;
    }
    .ai-svg-frame img {
      position: relative;
      z-index: 1;
      display: block;
      width: 100%;
      height: auto;
    }



    /* Case study section */
    .case-section {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 14%, rgba(16,197,154,.10), transparent 28%),
        radial-gradient(circle at 88% 86%, rgba(0,130,126,.07), transparent 25%),
        #ffffff;
    }
    .case-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(16,197,154,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,197,154,.04) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: .55;
      pointer-events: none;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.18));
    }
    .case-section .container {
      position: relative;
      z-index: 1;
    }
    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }
    .case-card {
      position: relative;
      min-height: 430px;
      border-radius: 28px;
      overflow: hidden;
      background: #0c1b18;
      border: 1px solid rgba(16,197,154,.18);
      box-shadow: 0 24px 70px rgba(14,43,37,.12);
      color: #fff;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .case-card:hover {
      transform: translateY(-6px);
      border-color: rgba(16,197,154,.46);
      box-shadow: 0 34px 90px rgba(16,197,154,.16);
    }
    .case-visual {
      height: 185px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 72% 24%, rgba(115,255,227,.26), transparent 26%),
        linear-gradient(135deg, #122c28 0%, #0b171f 100%);
    }
    .case-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
      background-size: 30px 30px;
      opacity: .5;
    }
    .case-visual svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
    /* Photo variant — real image fills the visual area */
    .case-visual.case-photo {
      background: #0c1b18;
    }
    .case-visual.case-photo::before {
      display: none;
    }
    .case-visual.case-photo img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .case-body {
      padding: 28px;
    }
    .case-tag {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      padding: 7px 13px;
      border-radius: 999px;
      color: #9fffe8;
      background: rgba(16,197,154,.13);
      border: 1px solid rgba(16,197,154,.22);
      font-family: var(--en);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .08em;
      margin-bottom: 18px;
    }
    .case-body h3 {
      margin: 0 0 14px;
      font-size: 24px;
      line-height: 1.45;
      font-weight: 900;
      letter-spacing: -.02em;
    }
    .case-body p {
      margin: 0;
      color: rgba(255,255,255,.70);
      font-size: 14px;
      line-height: 1.9;
      font-weight: 600;
    }
    .case-points {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 22px;
    }
    .case-points span {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      color: rgba(255,255,255,.82);
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.10);
      font-size: 11px;
      font-weight: 900;
      white-space: nowrap;
    }
    .case-cta {
      margin-top: 34px;
      display: flex;
      justify-content: center;
    }


    /* Contact form section */
    .contact-form-section {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 14% 12%, rgba(16,197,154,.12), transparent 28%),
        radial-gradient(circle at 86% 86%, rgba(0,130,126,.08), transparent 26%),
        linear-gradient(180deg, #f8fdfb 0%, #ffffff 100%);
      padding: 104px 0;
    }
    .contact-form-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(16,197,154,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,197,154,.045) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: .62;
      pointer-events: none;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.20));
    }
    .contact-form-wrap {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 42px;
      align-items: start;
    }
    .contact-form-copy {
      position: sticky;
      top: 112px;
      border-radius: 32px;
      padding: 42px;
      color: #fff;
      background:
        radial-gradient(circle at 20% 18%, rgba(16,197,154,.28), transparent 30%),
        linear-gradient(135deg, #0d211c 0%, #07110f 100%);
      box-shadow: 0 26px 70px rgba(14,43,37,.16);
      overflow: hidden;
    }
    .contact-form-copy::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 34px 34px;
      opacity: .35;
      pointer-events: none;
    }
    .contact-form-copy > * {
      position: relative;
      z-index: 1;
    }
    .contact-form-copy .mini-label {
      color: #8fffe3;
      background: rgba(16,197,154,.15);
      border: 1px solid rgba(16,197,154,.24);
    }
    .contact-form-copy h2 {
      color: #fff;
      margin: 18px 0 18px;
      font-size: clamp(34px, 3.2vw, 50px);
      line-height: 1.18;
    }
    .contact-form-copy p {
      color: rgba(255,255,255,.74);
      font-size: 15px;
      line-height: 1.95;
      font-weight: 700;
      margin: 0;
    }
    .contact-flow {
      margin-top: 30px;
      display: grid;
      gap: 12px;
    }
    .contact-flow-step {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      align-items: start;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.10);
    }
    .contact-flow-step b {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(16,197,154,.18);
      color: #bfffee;
      font-family: var(--en);
      font-size: 13px;
    }
    .contact-flow-step span {
      color: rgba(255,255,255,.82);
      font-size: 13px;
      line-height: 1.6;
      font-weight: 800;
    }
    .contact-form-card {
      background: rgba(255,255,255,.94);
      border: 1px solid rgba(16,197,154,.16);
      border-radius: 32px;
      padding: 34px;
      box-shadow: 0 24px 70px rgba(31,41,51,.08);
    }
    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }
    .form-field {
      display: grid;
      gap: 8px;
    }
    .form-field.full {
      grid-column: span 2;
    }
    .form-field label {
      font-size: 13px;
      font-weight: 900;
      color: var(--ink);
    }
    .required,
    .optional {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 34px;
      height: 20px;
      padding: 0 7px;
      border-radius: 5px;
      font-size: 11px;
      line-height: 1;
      margin-left: 8px;
      font-weight: 900;
      vertical-align: middle;
    }
    .required {
      color: #fff;
      background: var(--teal);
    }
    .optional {
      color: #fff;
      background: #c8cdd0;
    }
    .form-field input,
    .form-field textarea,
    .form-field select {
      width: 100%;
      border: 1px solid rgba(16,197,154,.18);
      border-radius: 16px;
      padding: 14px 15px;
      color: var(--ink);
      background: #fff;
      font: inherit;
      font-size: 14px;
      line-height: 1.5;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .form-field textarea {
      min-height: 132px;
      resize: vertical;
    }
    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-color: rgba(16,197,154,.72);
      box-shadow: 0 0 0 4px rgba(16,197,154,.10);
      background: #fdfffe;
    }
    .checkbox-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }
    .checkbox-item {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 11px 12px;
      border: 1px solid rgba(16,197,154,.16);
      border-radius: 14px;
      background: #fbfffd;
      color: #2d3b40;
      font-size: 13px;
      font-weight: 800;
      cursor: pointer;
    }
    .checkbox-item input {
      width: 16px;
      height: 16px;
      accent-color: var(--teal);
      flex: 0 0 16px;
    }
    .form-submit-row {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }
    .form-note {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.7;
      font-weight: 700;
      max-width: 520px;
      margin: 0;
    }
    .form-submit {
      border: 0;
      cursor: pointer;
      min-width: 260px;
    }


    /* Contact confirmation step */
    .form-honeypot {
      position: absolute !important;
      left: -9999px !important;
      width: 1px !important;
      height: 1px !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }
    .confirm-screen {
      display: none;
      background: rgba(255,255,255,.94);
      border: 1px solid rgba(16,197,154,.16);
      border-radius: 32px;
      padding: 34px;
      box-shadow: 0 24px 70px rgba(31,41,51,.08);
    }
    .confirm-screen.is-active {
      display: block;
    }
    .contact-form-card.is-hidden {
      display: none;
    }
    .confirm-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(31,41,51,.08);
    }
    .confirm-head h3 {
      margin: 0;
      font-size: 28px;
      line-height: 1.35;
      font-weight: 900;
      color: var(--ink);
    }
    .confirm-head p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.8;
    }
    .confirm-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      color: var(--teal-dark);
      background: var(--teal-soft);
      border: 1px solid rgba(16,197,154,.18);
      border-radius: 999px;
      padding: 9px 13px;
      font-size: 12px;
      font-weight: 900;
    }
    .confirm-list {
      display: grid;
      gap: 12px;
    }
    .confirm-row {
      display: grid;
      grid-template-columns: 170px 1fr;
      gap: 16px;
      padding: 15px 16px;
      border: 1px solid rgba(16,197,154,.12);
      border-radius: 16px;
      background: #fbfffd;
    }
    .confirm-label {
      color: var(--teal-dark);
      font-size: 13px;
      font-weight: 900;
    }
    .confirm-value {
      color: var(--ink);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.75;
      white-space: pre-wrap;
      word-break: break-word;
    }
    .confirm-actions {
      margin-top: 24px;
      display: flex;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(31,41,51,.12);
      border-radius: 999px;
      padding: 16px 28px;
      background: #fff;
      color: var(--ink);
      font-weight: 900;
      cursor: pointer;
      min-width: 190px;
    }
    .thanks-screen {
      display: none;
      background: rgba(255,255,255,.94);
      border: 1px solid rgba(16,197,154,.16);
      border-radius: 32px;
      padding: 46px 34px;
      text-align: center;
      box-shadow: 0 24px 70px rgba(31,41,51,.08);
    }
    .thanks-screen.is-active {
      display: block;
    }
    .thanks-icon {
      width: 72px;
      height: 72px;
      border-radius: 999px;
      margin: 0 auto 22px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      color: #fff;
      font-size: 34px;
      font-weight: 900;
      box-shadow: 0 18px 36px rgba(16,197,154,.20);
    }
    .thanks-screen h3 {
      margin: 0;
      font-size: 30px;
      font-weight: 900;
      color: var(--ink);
    }
    .thanks-screen p {
      margin: 16px auto 0;
      max-width: 620px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.9;
    }

    /* Final CTA and footer fixes */
    .cta {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 18% 18%, rgba(16,197,154,.22), transparent 28%),
        radial-gradient(circle at 86% 88%, rgba(0,130,126,.22), transparent 26%),
        linear-gradient(135deg, #0d1f1a 0%, #07110f 100%);
      color: #fff;
      padding: 96px 0;
      text-align: center;
    }
    .cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: .35;
      pointer-events: none;
    }
    .cta .container {
      position: relative;
      z-index: 1;
      max-width: 980px;
    }
    .cta .mini-label {
      color: #8fffe3;
      background: rgba(16,197,154,.13);
      border: 1px solid rgba(16,197,154,.22);
    }
    .cta h2 {
      color: #fff;
      margin-top: 12px;
      text-shadow: 0 10px 30px rgba(0,0,0,.22);
    }
    .cta .lead {
      color: rgba(255,255,255,.78);
      max-width: 760px;
      margin: 22px auto 0;
    }
    .cta .hero-actions {
      justify-content: center;
      margin-top: 36px;
    }
    .cta .btn-outline {
      background: rgba(255,255,255,.96);
      color: var(--ink);
      border-color: rgba(255,255,255,.72);
    }

    footer {
      background: #07110f;
      color: rgba(255,255,255,.64);
      padding: 36px 0;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      font-size: 13px;
      font-weight: 600;
    }
    .footer-inner img {
      width: 118px;
      height: auto;
      filter: none;
      opacity: .95;
    }


    .footer-links {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: rgba(255,255,255,.72);
      font-size: 13px;
      font-weight: 800;
      transition: color .2s ease;
    }
    .footer-links a:hover {
      color: #8fffe3;
    }


    @media (max-width: 760px) {
      .hero-title {
        font-size: 30px;
      }
      .hero-title-emphasis {
        font-size: 44px;
      }
    }

    @media (max-width: 1100px) {
      .container { width: min(100% - 48px, 1380px); }
      /* Header: tighten up so nav links don't wrap on tablet */
      .header-inner { gap: 18px; grid-template-columns: 180px 1fr auto auto; }
      .nav { gap: 22px; font-size: 13.5px; }
      .header-cta { min-width: 0; padding: 13px 18px; font-size: 13px; }
      .nav-official { font-size: 12px; padding: 5px 12px; }
      .hero-main, .split, .ai-section-box { grid-template-columns: 1fr; }
      .feature-strip { grid-template-columns: repeat(2, 1fr); }
      .feature { border-right: 0; border-bottom: 1px solid var(--line); }
      .feature:nth-last-child(-n+1) { border-bottom: 0; }
      .stats { grid-template-columns: repeat(2, 1fr); }
      .stat { border-right: 0; border-bottom: 1px solid rgba(16,197,154,.18); }
      .card-grid, .service-grid, .team-grid, .issue-grid, .case-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-form-wrap { grid-template-columns: 1fr; }
      .contact-form-copy { position: relative; top: auto; }
      .issue-title-single { white-space: normal; font-size: 19px; letter-spacing: -.03em; }
      .issue-section .lead { font-size: 13px; }
      .process-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
      .step-card-raised { transform: none; }

      /* Why section: stack side and cards vertically */
      .why-wrap { grid-template-columns: 1fr; }
      .why-side { min-height: auto; }
      .why-cards { padding-left: 0; }
      .why-card { margin-left: 0; max-width: 100%; }
    }

    @media (max-width: 760px) {
      .container { width: min(100% - 28px, 1380px); }
      .lp-header { height: 74px; }
      .header-inner { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
      .nav { display: none; }
      .nav-official { font-size: 11px; padding: 5px 10px; }
      .header-cta { min-width: 0; padding: 11px 14px; font-size: 12px; white-space: nowrap; gap: 0; }
      .cta-full { display: none; }
      .cta-short { display: inline; }
      .logo img { width: 110px; }
      .badge { font-size: 12px; padding: 6px 14px; }
      .hero { padding: 42px 0 28px; }
      .hero-main { gap: 36px; }
      .hero-title { font-size: 30px; }
      .hero-copy { font-size: 13px; }
      .hero-main { grid-template-columns: 1fr; gap: 28px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-notes { flex-wrap: nowrap; gap: 10px; font-size: clamp(9px, 2.6vw, 11.5px); justify-content: center; width: 100%; overflow: hidden; }
      .hero-notes span { gap: 4px; white-space: nowrap; }
      .btn { width: 100%; }
      .hero-photo { border-radius: 16px; width: 100%; }
      .feature-strip, .card-grid, .service-grid, .team-grid, .issue-grid, .case-grid, .mini-grid, .process-grid, .form-grid { grid-template-columns: 1fr; }
      .step-card {
        min-height: auto;
        padding: 22px 20px 22px;
        text-align: left;
        overflow: hidden;
        position: relative;
      }
      .step-card-raised { transform: none; }
      /* watermark number */
      .step-num {
        position: absolute;
        top: -10px; right: 10px;
        font-size: 110px;
        line-height: 1;
        margin: 0;
        color: rgba(15,23,42,.05);
        font-weight: 900;
        pointer-events: none;
        letter-spacing: -.04em;
      }
      /* hide icon badge on mobile — number watermark replaces it */
      .icon-badge { display: none; }
      .step-title { font-size: 1.15rem; position: relative; z-index: 1; }
      .step-divider { margin: 12px 0; }
      .step-desc { font-size: 13px; position: relative; z-index: 1; }
      .checkbox-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .process { min-height: unset; padding: 16px 18px; }
      .process .num { margin-bottom: 8px; }
      .process h3 { font-size: 15px; margin-bottom: 6px; }
      .process p { font-size: 12.5px; line-height: 1.6; }

      /* Stats: single column, clean left-accent style */
      .stats { grid-template-columns: 1fr; padding: 12px 16px; gap: 0; }
      .stat {
        border-right: 0;
        border-bottom: 0;
        border-left: 3px solid var(--teal);
        padding: 9px 12px 9px 16px;
        margin-bottom: 8px;
        gap: 14px;
        border-radius: 0;
        background: rgba(16,197,154,.04);
      }
      .stat .s-label { white-space: nowrap; }
      .stat:last-child { margin-bottom: 0; }
      .stat:nth-child(odd) { border-right: 0; }
      .s-icon { font-size: 22px; width: 28px; height: 28px; flex-shrink: 0; }
      .s-icon svg { width: 22px; height: 22px; }
      .s-label { font-size: 13px; line-height: 1.5; }

      /* Why-cards: icon on top, title on single line */
      .why-card {
        grid-template-columns: 1fr;
        overflow: visible;
        padding: 22px 20px 18px;
        gap: 0;
        align-items: start;
      }
      .why-card::before, .why-card::after { display: none; }
      .why-iconbox { display: none; }
      .why-card-content { padding-right: 0; }
      .why-card h3 {
        font-size: 14.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 6px 0 8px;
      }
      .why-faint { display: none; }
      .form-field.full { grid-column: span 1; }
      .contact-form-section { padding: 56px 0 80px; }
      .contact-form-card, .contact-form-copy { padding: 24px; }
      .form-submit { width: 100%; }
      .confirm-row { grid-template-columns: 1fr; gap: 6px; }
      .confirm-head { flex-direction: column; }
      .btn-secondary { width: 100%; }
      .team-photo { height: 260px; }
      .ai-content h2 { font-size: 34px; }
      summary { padding: 22px 22px; font-size: 17px; }
      .faq-answer-content { padding: 0 22px 24px; font-size: 14px; }
      .service-card { min-height: auto; }
      .service-thumb { height: 210px; }
      .feature, .stat { border-right: 0; }
      .feature { padding: 20px 16px 20px 4px; gap: 20px; grid-template-columns: 72px 1fr; align-items: start; min-height: unset; }
      .f-icon { width: 72px; height: 72px; flex: 0 0 72px; background: rgba(16,197,154,.10); border: 2.5px solid var(--teal); margin-top: 0; }
      .f-icon svg { width: 32px; height: 32px; }
      .feature h3 { white-space: normal; font-size: 16px; margin-bottom: 6px; }
      .feature p { font-size: 13px; }
      .section { padding: 70px 0; }
      .ai-section-box { padding: 18px; border-radius: 24px; }
      .ai-steps { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { flex-direction: column; align-items: flex-start; }

      /* Why section mobile */
      .why-cards { padding-left: 0; }
      .why-cards::before { display: none; }
      .why-copy { padding: 32px 24px 28px; }
    }
    /* ==========================================
       OFFICIAL STEAH FOOTER
    ========================================== */
    .lp-site-footer {
      background-color: #333333;
      position: relative;
      overflow: hidden;
    }

    /* Horizontal animated border lines */
    .lp-footer-border-lr {
      position: absolute;
      width: 100%;
      height: 2px;
      top: 23px;
      left: 0;
      background: #3c3c3c;
    }
    .lp-footer-border-lr .lp-slider-lr {
      width: 0;
      height: 2px;
      background: rgba(143,143,143,0.2);
    }
    .lp-footer-border-lr.lp-border-mid {
      top: 50%;
      transform: rotate(180deg);
    }
    .lp-footer-border-lr.lp-border-bot {
      top: initial;
      bottom: 23px;
    }

    /* Vertical animated border lines */
    .lp-footer-border-tb {
      width: 2px;
      height: 100%;
      position: absolute;
      top: 0;
      left: 70px;
      background: #3c3c3c;
    }
    .lp-footer-border-tb .lp-slider-tb {
      width: 2px;
      height: 0;
      background: rgba(143,143,143,0.2);
    }
    .lp-footer-border-tb.lp-border-tb-mid {
      left: 50%;
      transform: rotate(180deg);
    }
    .lp-footer-border-tb.lp-border-tb-right {
      left: initial;
      right: 70px;
    }

    /* Footer content wrapper */
    .lp-footer-content {
      position: relative;
      z-index: 1;
      padding: 80px 0 24px;
    }

    /* Main two-column row */
    .lp-footer-main {
      display: flex;
      gap: 32px;
      padding-bottom: 40px;
    }
    .lp-footer-brand {
      flex: 0 0 50%;
      max-width: 50%;
    }
    .lp-footer-brand-logo {
      max-width: 265px;
    }
    .lp-footer-brand-logo img {
      width: 100%;
      background: #333333;
      display: block;
    }

    /* Address info (desktop) */
    .lp-footer-info {
      padding-top: 24px;
      padding-left: 26px;
    }
    .lp-footer-info p {
      font-size: 16px;
      line-height: 18px;
      color: #f8f8f8;
      padding-top: 12px;
    }
    .lp-footer-info p a {
      color: #f8f8f8;
      text-decoration: none;
    }
    .lp-footer-info p a:hover { opacity: 0.75; }
    .lp-address-row {
      display: flex;
      gap: 8px;
    }
    .lp-address-labels { flex-shrink: 0; }
    .lp-address-values { flex: 1; }

    /* Nav column */
    .lp-footer-nav {
      flex: 0 0 50%;
      max-width: 50%;
    }
    .lp-footer-nav-ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      height: 260px;
      gap: 15px;
    }
    .lp-footer-nav-ul > li {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      width: 50%;
      position: relative;
    }
    .lp-footer-nav-ul > li::after {
      content: "";
      position: absolute;
      width: 70%;
      height: 1px;
      background: #f8f8f8;
      top: 19px;
      left: 0;
    }
    .lp-footer-nav-ul li a {
      color: #f8f8f8;
      font-size: 13px;
      text-decoration: none;
    }
    .lp-footer-nav-ul li a:hover { opacity: 0.75; }
    .lp-footer-nav-ul li ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .lp-footer-nav-ul li ul li {
      font-weight: 400;
      margin-top: 24px;
      width: 100%;
    }
    .lp-footer-nav-ul li ul li::after { display: none; }

    /* Address info (mobile only — hidden on desktop) */
    .lp-footer-info-mobile {
      display: none;
      text-align: center;
      padding: 16px 0 40px;
    }
    .lp-footer-info-mobile p {
      font-size: 14px;
      line-height: 1.6;
      color: #f8f8f8;
      padding-top: 12px;
    }
    .lp-footer-info-mobile p a {
      color: #f8f8f8;
      text-decoration: none;
    }

    /* Copyright */
    .lp-footer-copyright {
      text-align: center;
      padding-top: 24px;
    }
    .lp-footer-copyright p {
      color: #f8f8f8;
      font-size: 16px;
      line-height: 18px;
    }

    /* Steah icon background overlay */
    .lp-footer-overlay {
      position: absolute;
      right: 0;
      top: 0;
      z-index: 0;
      width: 50%;
      pointer-events: none;
    }
    .lp-footer-overlay img { width: 100%; display: block; }

    /* ==========================================
       BACK TO TOP BUTTON
    ========================================== */
    .lp-back-to-top {
      background-color: rgba(16, 197, 154, 0.6);
      width: 50px;
      height: 50px;
      text-align: center;
      border-radius: 100%;
      border: none;
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      transform: translateY(200%);
      transition: transform 175ms linear;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      cursor: pointer;
    }
    .lp-back-to-top:hover { background-color: rgb(16, 197, 155); }
    .lp-back-to-top i { color: #fff; font-size: 14px; }
    .lp-back-to-top span {
      font-size: 10px;
      text-transform: uppercase;
      color: #fff;
      font-weight: 600;
      line-height: 1;
    }
    .lp-back-to-top.show { transform: translateY(0); }

    /* ==========================================
       FOOTER MOBILE RESPONSIVE
    ========================================== */
    @media (max-width: 900px) {
      .lp-footer-border-tb { left: 7px; }
      .lp-footer-border-tb.lp-border-tb-right { right: 7px; left: initial; }
      .lp-footer-border-tb.lp-border-tb-mid { left: 50%; }

      .lp-footer-content { padding-top: 60px; }

      .lp-footer-main {
        flex-direction: column;
        align-items: center;
      }
      .lp-footer-brand,
      .lp-footer-nav {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
      }
      .lp-footer-brand-logo {
        max-width: 195px;
        margin: 0 auto;
      }
      .lp-footer-brand-logo img { background: transparent; }

      /* Hide desktop address, show mobile address */
      .lp-footer-info.desktop-only { display: none !important; }
      .lp-footer-info-mobile { display: block; }

      .lp-footer-nav-ul {
        height: auto;
        gap: 25px;
      }
      .lp-footer-nav-ul > li {
        width: 100%;
      }
      .lp-footer-nav-ul > li::after { width: 100%; max-width: 100%; top: 26px; }

      /* Reorder nav to match official site mobile */
      .lp-footer-nav-ul li:last-child  { order: 1; }
      .lp-footer-nav-ul li:first-child { order: 2; }
      .lp-footer-nav-ul li:nth-child(2) { order: 3; }
      .lp-footer-nav-ul li:nth-child(3) { order: 4; }
      .lp-footer-nav-ul li:nth-child(4) { order: 5; }

      .lp-footer-copyright p { font-size: 12px; line-height: 14px; }

      .lp-footer-overlay {
        top: initial;
        bottom: 78px;
        width: 100%;
      }
    }

    /* ==========================================
       OFFICIAL STEAH ARROW BUTTON (case-cta)
    ========================================== */
    .lp-btn-box {
      display: flex;
      justify-content: center;
    }
    .lp-btn-link {
      box-shadow: none;
      font-size: 20px;
      font-weight: 700;
      line-height: 23px;
      color: #333333;
      display: inline-flex;
      align-items: center;
      width: max-content;
      position: relative;
      padding: 0 0 6px 0;
      border-radius: 0;
      border-bottom: 1px solid #10c59a;
      text-decoration: none;
      transition: opacity 0.2s ease;
      gap: 16px;
    }
    .lp-btn-link:hover { opacity: 0.8; }
    .lp-btn-link i {
      position: relative;
      right: auto;
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
      color: #fff;
      font-size: 16px;
    }
    .lp-btn-link i::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 26px;
      background-color: #10c59a;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: all 0.3s ease;
      z-index: -1;
    }
    .lp-btn-link:hover i::after { transform: scale(1.3); }

    /* ==========================================
       RECAPTCHA BADGE + NOTICE
    ========================================== */
    .grecaptcha-badge {
      bottom: 98px !important;
      z-index: 3;
    }
    .recaptcha-note {
      margin-top: 10px;
      font-size: 11px;
      color: var(--muted);
      text-align: center;
      line-height: 1.6;
    }
    .recaptcha-note a {
      color: var(--teal-dark);
      text-decoration: underline;
    }



    /* ==========================================
       HERO BADGES
    ========================================== */
    .hero-badges {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(2, max-content);
      gap: 10px;
    }
    .hero-badge-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 16px;
      background: rgba(16,197,154,.10);
      border: 1px solid rgba(16,197,154,.28);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      color: var(--teal-dark);
      white-space: nowrap;
    }

    /* ==========================================
       ISSUE CLOSING CTA
    ========================================== */
    .issue-closing {
      margin-top: 52px;
      text-align: center;
    }
    .issue-closing p {
      font-size: 17px;
      font-weight: 700;
      color: var(--ink);
      margin: 0 0 24px;
    }

    /* ==========================================
       特徴・強み (STRENGTH SECTION)
    ========================================== */
    .strength-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .strength-card {
      background: #fff;
      border-radius: 16px;
      padding: 24px;
      border: 0.5px solid rgba(16,197,154,.18);
      display: flex;
      gap: 18px;
      align-items: flex-start;
      transition: transform .22s ease, box-shadow .22s ease;
    }
    .strength-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(16,197,154,.10);
    }
    .strength-icon { display: none; }
    .strength-num {
      font-family: var(--en);
      font-size: 32px;
      font-weight: 500;
      color: #10c59a;
      line-height: 1;
      min-width: 36px;
      flex-shrink: 0;
    }
    .strength-card-body { flex: 1; }
    .strength-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin: 0 0 8px;
      line-height: 1.45;
      color: var(--ink);
    }
    .strength-card p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.75;
      margin: 0;
      font-weight: 400;
    }

    /* ==========================================
       こんな企業様に (TARGET SECTION)
    ========================================== */
    .target-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
    .target-card {
      background: var(--bg);
      border-radius: 28px;
      padding: 40px 40px 44px;
      border: 1px solid var(--line);
      transition: box-shadow .22s ease;
    }
    .target-card:hover {
      box-shadow: 0 18px 52px rgba(16,197,154,.09);
    }
    .target-card-label {
      display: inline-flex;
      align-items: center;
      padding: 5px 14px;
      background: var(--teal-soft);
      border: 1px solid rgba(16,197,154,.25);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      color: var(--teal-dark);
      letter-spacing: .06em;
      margin-bottom: 16px;
    }
    .target-card-title {
      font-size: 20px;
      font-weight: 900;
      margin: 0 0 12px;
      letter-spacing: -.02em;
    }
    .target-card-desc {
      font-size: 14px;
      color: var(--muted);
      font-weight: 600;
      margin: 0 0 24px;
      line-height: 1.8;
    }
    .target-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .target-list li {
      padding: 11px 0;
      border-bottom: 1px solid var(--line);
      font-size: 14px;
      font-weight: 700;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--ink);
    }
    .target-list li:last-child { border-bottom: 0; }
    .target-list li::before {
      content: "✓";
      color: var(--teal);
      font-weight: 900;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ==========================================
       対象技術 (TECH SECTION)
    ========================================== */
    .tech-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      margin-bottom: 32px;
    }
    .tech-highlight-card {
      background: #fff;
      border: 2px solid var(--teal);
      border-radius: 16px;
      padding: 18px 28px;
      text-align: center;
      min-width: 180px;
      box-shadow: 0 8px 28px rgba(16,197,154,.10);
    }
    .tech-highlight-label {
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .1em;
      color: var(--teal-dark);
      margin-bottom: 6px;
      text-transform: uppercase;
    }
    .tech-highlight-name {
      font-size: 18px;
      font-weight: 900;
      color: var(--ink);
      letter-spacing: -.02em;
    }
    .tech-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px;
      margin-bottom: 24px;
    }
    .tech-item {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 12px 8px;
      text-align: center;
      font-size: 13px;
      font-weight: 700;
      color: var(--ink);
      transition: border-color .2s ease;
    }
    .tech-item:hover {
      border-color: var(--teal);
      color: var(--teal-dark);
    }
    .tech-note {
      font-size: 13px;
      color: var(--muted);
      font-weight: 600;
      text-align: center;
      margin: 0;
    }

    /* Tech category cards */
    .tech-cat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 28px;
    }
    .tech-cat-card {
      background: #fff;
      border: 1.5px solid var(--line);
      border-radius: 14px;
      padding: 20px 22px;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .tech-cat-card:hover {
      border-color: var(--teal);
      box-shadow: 0 6px 24px rgba(16,197,154,.10);
    }
    .tech-cat-label {
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .06em;
      color: var(--teal-dark);
      text-transform: uppercase;
      margin-bottom: 10px;
      padding-bottom: 8px;
      border-bottom: 1.5px solid var(--teal-soft);
    }
    .tech-cat-items {
      font-size: 13px;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.9;
    }

    /* ==========================================
       サービス概要 (SERVICE OVERVIEW)
    ========================================== */
    .svc-overview-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.9;
      max-width: 860px;
      margin: 0 auto 48px;
      text-align: center;
    }
    /* Section background */
    .svc-section-grey { background: #f5f6f7; }

    /* Outer container: two cards + arrow */
    .svc-phases-outer {
      display: grid;
      grid-template-columns: 1fr 56px 1fr;
      gap: 0;
      align-items: stretch;
    }
    /* Connector arrow between cards */
    .svc-phases-connector {
      display: flex;
      align-items: center;
      justify-content: center;
      align-self: center;
    }
    .svc-phases-connector svg { width: 48px; height: 28px; }
    /* Phase card */
    .svc-phase-card {
      background: #fff;
      border: 1.5px solid #c8e8df;
      border-radius: 18px;
      overflow: hidden;
      padding: 28px 28px 24px;
      box-shadow: 0 4px 24px rgba(16,197,154,.08);
    }
    .svc-phase-card-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 10px;
    }
    .svc-phase-pill {
      display: inline-block;
      border: 1.5px solid #10c59a;
      color: var(--teal-dark);
      font-size: 12px;
      font-weight: 900;
      padding: 4px 14px;
      border-radius: 999px;
      letter-spacing: .04em;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .svc-phase-card-title {
      font-size: clamp(16px, 1.6vw, 22px);
      font-weight: 900;
      color: var(--ink);
      letter-spacing: -.02em;
      margin: 0;
      line-height: 1.3;
    }
    .svc-phase-card-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.8;
      margin: 0 0 18px;
    }
    /* Card body: illustration left + steps right */
    .svc-phase-card-body {
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 20px;
      align-items: center;
    }
    .svc-phase-illus svg {
      width: 100%;
      height: auto;
    }
    /* Steps list */
    .svc-phase-steps-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .svc-phase-steps-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.4;
      padding: 10px 0;
      min-height: 52px;
    }
    /* Vertical connecting line */
    .svc-step-line-wrap {
      position: relative;
      flex-shrink: 0;
      width: 12px;
      align-self: stretch;
      min-height: 38px;
    }
    .svc-step-dot {
      position: absolute;
      top: 50%;
      left: 1px;
      transform: translateY(-50%);
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #10c59a;
      z-index: 2;
    }
    .svc-step-vline {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 5px;
      width: 2px;
      background: rgba(16,197,154,.2);
      z-index: 1;
    }
    .svc-step-n {
      font-size: 13px;
      font-weight: 900;
      color: var(--ink);
      font-family: 'Inter', sans-serif;
      width: 22px;
      flex-shrink: 0;
    }
    .svc-step-ico {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: #fff;
      border: 1.5px solid rgba(16,197,154,.3);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(16,197,154,.08);
    }
    .svc-step-ico svg { width: 20px; height: 20px; }

    @media (max-width: 1100px) {
      .svc-phases-outer { grid-template-columns: 1fr 40px 1fr; }
      .svc-phase-card-body { grid-template-columns: 110px 1fr; }
    }
    @media (max-width: 760px) {
      .svc-phases-outer { grid-template-columns: 1fr; gap: 16px; }
      .svc-phases-connector { transform: rotate(90deg); margin: 4px auto; }
      .svc-phase-card-body { grid-template-columns: 1fr; }
      .svc-phase-illus { display: none; }
      .svc-overview-desc { text-align: left; }
    }

    /* ==========================================
       料金イメージ (PRICING SECTION)
    ========================================== */
    .pricing-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 52px;
    }
    .pricing-stat-card {
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 28px 20px;
      text-align: center;
    }
    .pricing-stat-featured {
      background: var(--teal-soft);
      border-color: var(--teal);
      box-shadow: 0 12px 36px rgba(16,197,154,.14);
    }
    .pricing-stat-value {
      font-family: var(--en);
      font-size: 20px;
      font-weight: 900;
      color: var(--ink);
      margin-bottom: 8px;
    }
    .pricing-stat-value span {
      font-size: 44px;
      color: var(--teal);
      line-height: 1;
    }
    .pricing-stat-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--muted);
    }
    .pricing-compare {
      max-width: 780px;
      margin: 0 auto 40px;
      background: var(--bg);
      border-radius: 24px;
      padding: 36px 40px;
      border: 1px solid var(--line);
    }
    .pricing-compare-title {
      font-size: 17px;
      font-weight: 900;
      margin: 0 0 24px;
      text-align: center;
      color: var(--ink);
    }
    .pricing-compare-table {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .pricing-compare-row {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1.1fr;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      align-items: center;
    }
    .pricing-compare-row:last-child { border-bottom: 0; }
    .pricing-compare-header {
      background: transparent;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--line);
    }
    .compare-col-label {
      font-size: 13px;
      font-weight: 900;
      color: var(--muted);
      text-align: center;
      letter-spacing: .02em;
    }
    .compare-col-label.compare-teal {
      color: var(--teal-dark);
    }
    .compare-col-label.compare-col-item {
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .compare-item-label {
      font-weight: 800;
      color: var(--ink);
    }
    .compare-teal {
      color: var(--teal-dark);
      font-weight: 800;
    }
    .pricing-disclaimer {
      font-size: 12px;
      color: var(--muted);
      text-align: center;
      margin: 20px 0 0;
      font-weight: 600;
    }
    .pricing-cta {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ==========================================
       6-STEP PROCESS GRID
    ========================================== */
    .process-grid-6 {
      grid-template-columns: repeat(6, 1fr) !important;
    }

    /* ==========================================
       資料請求 (BROCHURE SECTION)
    ========================================== */
    /* ==========================================
       BROCHURE SECTION (redesigned)
    ========================================== */
    .brochure-section {
      padding: 96px 0;
      position: relative;
      overflow: hidden;
    }
    .brochure-card {
      /* no card — matches plain section style like other sections */
    }

    /* Centered section head */
    .brochure-section-head {
      text-align: center;
      margin-bottom: 40px;
    }
    .brochure-section-head .mini-label {
      margin-bottom: 14px;
    }
    .brochure-title {
      font-size: clamp(24px, 2.6vw, 34px);
      font-weight: 900;
      line-height: 1.35;
      letter-spacing: -.03em;
      margin: 0;
      color: var(--teal-dark);
    }

    /* Desktop: 2-column layout — left: desc+grid, right: illus+form */
    .brochure-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .brochure-left {
      display: flex;
      flex-direction: column;
    }
    .brochure-right {
      background: #fff;
      border-radius: 24px;
      padding: 36px 40px;
      box-shadow: 0 16px 48px rgba(16,197,154,.13);
      border: 1px solid rgba(16,197,154,.14);
    }
    @media (min-width: 761px) {
      .brochure-left {
        align-items: center;
        justify-content: center;
        text-align: center;
        align-self: center;
      }
      .brochure-top {
        flex-direction: row;
        justify-content: center;
      }
    }

    /* Description + illustration row (inside left col) */
    .brochure-top {
      display: flex;
      align-items: center;
      gap: 28px;
      margin-bottom: 32px;
      width: 100%;
    }
    .brochure-top-left {
      flex: 1;
    }
    .brochure-desc {
      font-size: 15px;
      color: var(--muted);
      font-weight: 600;
      line-height: 1.9;
      margin: 0;
    }
    .brochure-illus {
      flex-shrink: 0;
      width: 120px;
    }
    .brochure-illus svg {
      width: 100%;
      height: auto;
    }

    /* 2×2 content grid */
    .brochure-contents-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 32px;
    }
    .brochure-content-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 16px;
      background: var(--teal-soft);
      border: 1px solid rgba(16,197,154,.2);
      border-radius: 12px;
      font-size: 13px;
      font-weight: 800;
      color: var(--ink);
    }
    .bci-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: #fff;
      color: var(--teal);
      flex-shrink: 0;
    }

    /* Form fields with icon */
    .brochure-field-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
    }
    .bfield-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--teal-soft);
      border: 1px solid rgba(16,197,154,.2);
      color: var(--teal);
      flex-shrink: 0;
      margin-top: 26px;
    }
    .bfield-wrap {
      flex: 1;
    }
    .bfield-wrap label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 800;
      color: var(--ink);
      margin-bottom: 6px;
    }
    .bfield-wrap input {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--line);
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      background: #fff;
      transition: border-color .2s;
      box-sizing: border-box;
    }
    .bfield-wrap input:focus {
      outline: none;
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(16,197,154,.12);
    }

    /* Submit + privacy */
    .brochure-submit-btn {
      width: 100%;
      justify-content: center;
      font-size: 16px;
      padding: 18px 24px;
      display: flex;
      align-items: center;
    }
    .brochure-privacy-note {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      font-size: 12px;
      color: var(--muted);
      font-weight: 600;
      margin: 12px 0 0;
      text-align: left;
      line-height: 1.6;
      gap: 5px;
    }
    .brochure-privacy-note svg {
      flex-shrink: 0;
      margin-top: 2px;
    }

    .brochure-form .form-submit-row {
      display: flex;
      flex-direction: column;
      gap: 0;
      align-items: stretch;
      margin-top: 8px;
    }
    .field-error {
      display: block;
      font-size: 12px;
      color: #e53935;
      font-weight: 700;
      margin-top: 4px;
    }
    .bfield-wrap input.is-error,
    .bfield-wrap input:has(+ .field-error) {
      border-color: #e53935 !important;
    }

    /* ==========================================
       RESPONSIVE — TABLET (≤1100px)
    ========================================== */
    @media (max-width: 1100px) {
      /* Strength */
      .strength-grid { grid-template-columns: repeat(2, 1fr); }

      /* Pricing */
      .pricing-stats { grid-template-columns: repeat(2, 1fr); }
      .pricing-compare { padding: 28px 24px; }

      /* 6-step process */
      .process-grid-6 { grid-template-columns: repeat(3, 1fr) !important; }

      /* Brochure */
      .brochure-body { gap: 40px; }
      .brochure-illus { width: 100px; }

      /* Tech */
      .tech-grid { grid-template-columns: repeat(4, 1fr); }
    }

    /* ==========================================
       RESPONSIVE — MOBILE (≤760px)
    ========================================== */
    @media (max-width: 760px) {
      /* Hero — buttons full-width stacked */
      .hero-actions {
        flex-direction: column;
        gap: 12px;
      }
      .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 16px 20px;
        font-size: 15px;
      }

      /* Hero badges — 2×2 card grid */
      .hero-badges {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 1fr;
        gap: 10px;
        margin-top: 20px;
        align-items: stretch;
      }
      .hero-badge-item {
        display: flex;
        align-items: center;
        gap: 0;
        padding: 12px 14px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        font-size: 12px;
        font-weight: 800;
        color: var(--ink);
        white-space: normal;
        line-height: 1.45;
        box-shadow: 0 2px 8px rgba(0,0,0,.05);
        height: 100%;
      }
      .hb-icon {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        font-size: 15px;
        line-height: 1;
        margin-right: 8px;
      }

      /* Hide decorative dots on mobile */
      .svc-deco { display: none; }

      /* Strength — mobile card redesign (icon-circle left, content right) */
      .strength-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .strength-card {
        padding: 20px;
        gap: 14px;
      }
      .strength-num { font-size: 26px; }
      .strength-card h3 { font-size: 15px; }
      .strength-card p { font-size: 13px; }

      /* Target */
      .target-grid { grid-template-columns: 1fr; gap: 20px; }
      .target-card { padding: 28px 24px 32px; }

      /* Tech */
      .tech-highlights { gap: 10px; overflow: hidden; }
      .tech-highlight-card { min-width: 0; width: 100%; padding: 14px 16px; }
      .tech-highlight-name { font-size: 15px; }
      .tech-grid { grid-template-columns: repeat(2, 1fr); overflow: hidden; }

      /* Pricing */
      .pricing-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .pricing-stat-card { padding: 20px 12px; }
      .pricing-stat-value span { font-size: 34px; }
      .pricing-compare { padding: 20px 16px; }
      .pricing-compare-row { grid-template-columns: 1fr; gap: 4px; font-size: 13px; }
      .pricing-compare-header { display: none; }
      .compare-item-label { font-weight: 900; border-top: 1px solid var(--line); padding-top: 10px; }
      .pricing-cta { flex-direction: column; align-items: stretch; }
      .pricing-cta .btn { justify-content: center; }

      /* 6-step process */
      .process-grid-6 { grid-template-columns: 1fr !important; }

      /* Brochure */
      .brochure-section { padding: 60px 0; }
      .brochure-body { grid-template-columns: 1fr; gap: 32px; }
      .brochure-right { padding: 28px 20px; border-radius: 18px; }
      .brochure-left { align-items: flex-start; text-align: left; }
      .brochure-top { gap: 16px; }
      .brochure-illus { width: 60px; }
      .brochure-title { font-size: 22px; }
      .brochure-contents-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
      .brochure-content-item { font-size: 11px; padding: 10px 8px; gap: 6px; white-space: normal; line-height: 1.3; }
      .bci-icon { width: 22px; height: 22px; flex-shrink: 0; }
      .bci-icon svg { width: 14px; height: 14px; }
      .bfield-icon { width: 34px; height: 34px; margin-top: 24px; }
      .brochure-submit-btn { font-size: 15px; padding: 16px 20px; }
      .brochure-privacy-note { font-size: 11px; }

      /* Issue closing */
      .issue-closing { margin-top: 36px; }
      .issue-closing p { font-size: 15px; }

      /* Why-cards tablet override */
      .why-cards { padding-left: 0; }
      .why-card { margin-left: 0; max-width: 100%; }
    }

    /* ==========================================
       SECTION-HEAD INSIDE BROCHURE / CONTACT
    ========================================== */
    .brochure-section .section-head,
    .contact-form-section .section-head {
      margin-bottom: 40px;
    }

    /* ==========================================
       TARGET CARDS — REDESIGN TO MATCH SCREENSHOT
    ========================================== */
    /* Override previous target-card styles */
    .target-section { background: #f7fbfa; }
    .target-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
    .target-card {
      background: #fff;
      border-radius: 24px;
      padding: 36px 36px 0;
      border: 1px solid rgba(16,197,154,.12);
      box-shadow: 0 4px 28px rgba(16,197,154,.07), 0 1px 4px rgba(0,0,0,.04);
      overflow: hidden;
    }
    .target-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 8px;
    }
    .target-card-info {
      flex: 1;
      min-width: 0;
    }
    .target-card-label {
      display: inline-flex;
      align-items: center;
      padding: 5px 14px;
      background: var(--teal-soft);
      border: 1px solid rgba(16,197,154,.30);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      color: var(--teal-dark);
      letter-spacing: .08em;
      margin-bottom: 14px;
    }
    .target-card-title {
      font-size: clamp(20px, 1.8vw, 26px);
      font-weight: 900;
      margin: 0 0 10px;
      letter-spacing: -.03em;
      line-height: 1.35;
      color: var(--ink);
    }
    .target-card-desc {
      font-size: 13.5px;
      color: var(--muted);
      font-weight: 600;
      margin: 0;
      line-height: 1.8;
    }
    .target-card-illus {
      flex-shrink: 0;
      width: 100px;
      height: 110px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }
    .target-card-illus svg {
      width: 100%;
      height: 100%;
    }
    /* Checklist — override old styles */
    .target-list {
      list-style: none;
      padding: 0;
      margin: 20px -36px 0;
      display: flex;
      flex-direction: column;
    }
    .target-list li {
      padding: 13px 36px;
      border-top: 1px solid rgba(16,197,154,.10);
      font-size: 14px;
      font-weight: 700;
      display: flex;
      gap: 12px;
      align-items: center;
      color: var(--ink);
    }
    .target-list li::before { display: none; }
    .target-check {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--teal-soft);
      border: 1.5px solid rgba(16,197,154,.40);
      color: var(--teal);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 900;
      flex-shrink: 0;
    }

    /* ==========================================
       TARGET CARDS — MOBILE
    ========================================== */
    @media (max-width: 1100px) {
      .target-card-illus { width: 80px; height: 88px; }
      .target-card-title { font-size: 20px; }
    }
    @media (max-width: 760px) {
      .target-section h2 { font-size: 26px; }
      #service h2 { font-size: 26px; }
      .target-grid { grid-template-columns: 1fr; gap: 16px; }
      .target-card { padding: 24px 24px 0; }
      .target-list { margin: 16px -24px 0; }
      .target-list li { padding: 11px 24px; font-size: 13px; }
      /* Float illustration so desc uses full card width */
      .target-card-top {
        display: block;
      }
      .target-card-top::after {
        content: '';
        display: table;
        clear: both;
      }
      .target-card-illus {
        float: right;
        width: 64px;
        height: 70px;
        margin: 0 0 8px 12px;
      }
      .target-card-desc {
        clear: both;
        width: 100%;
      }
    }

    /* ==========================================
       TECH SECTION — ICON REDESIGN
    ========================================== */
    /* Highlight cards — icon on top */
    .tech-highlights {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      justify-content: center;
      margin-bottom: 36px;
    }
    .tech-highlight-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 28px 16px 24px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      box-shadow: 0 4px 16px rgba(0,0,0,.04);
      transition: box-shadow .2s ease, transform .2s ease;
      min-width: 0;
    }
    .tech-highlight-card:hover {
      box-shadow: 0 8px 28px rgba(16,197,154,.12);
      transform: translateY(-2px);
    }
    .tech-highlight-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--teal-soft);
      border: 1.5px solid rgba(16,197,154,.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .tech-highlight-icon svg {
      width: 28px;
      height: 28px;
    }
    .tech-highlight-icon-text {
      /* text-based icon — inherits circle styles from .tech-highlight-icon */
    }
    .tech-highlight-label {
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .08em;
      color: var(--teal-dark);
      text-transform: uppercase;
      margin: 0;
    }
    .tech-highlight-name {
      font-size: 17px;
      font-weight: 900;
      color: var(--ink);
      letter-spacing: -.02em;
      line-height: 1.3;
    }

    /* Grid items — icon + text */
    .tech-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 24px;
    }
    .tech-item {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 13px 16px;
      font-size: 14px;
      font-weight: 700;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 10px;
      transition: border-color .18s ease, box-shadow .18s ease;
    }
    .tech-item:hover {
      border-color: rgba(16,197,154,.35);
      box-shadow: 0 4px 14px rgba(16,197,154,.08);
    }
    .ti-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .ti-icon svg {
      width: 22px;
      height: 22px;
    }

    /* ==========================================
       TECH — RESPONSIVE OVERRIDES
    ========================================== */
    @media (max-width: 1100px) {
      .tech-highlights { grid-template-columns: repeat(2, 1fr); }
      .tech-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 760px) {
      .tech-highlights { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .tech-highlight-card { padding: 22px 12px 18px; gap: 8px; }
      .tech-highlight-icon { width: 52px; height: 52px; }
      .tech-highlight-name { font-size: 15px; }
      .tech-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .tech-item { padding: 10px 12px; font-size: 13px; gap: 8px; }
      .ti-icon { width: 28px; height: 28px; }
      .ti-icon svg { width: 18px; height: 18px; }
    }

    /* ==========================================
       PRICING COMPARE — COMPANY BADGES
    ========================================== */
    /* Badges hidden on desktop (header row handles labelling) */
    .cmp-badge {
      display: none;
    }

    /* ==========================================
       PRICING COMPARE — MOBILE REDESIGN
    ========================================== */
    @media (max-width: 760px) {
      .pricing-compare { padding: 20px 16px; }
      .pricing-compare-title { font-size: 15px; margin-bottom: 16px; }

      /* Hide the desktop header row entirely */
      .pricing-compare-header { display: none; }

      /* Each row becomes a stacked card */
      .pricing-compare-row {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
      }
      .pricing-compare-row:last-child { border-bottom: 0; }

      /* Category label: bold, dark, full width */
      .compare-item-label {
        font-size: 13px;
        font-weight: 900;
        color: var(--ink);
        border-top: 0;
        padding-top: 0;
        margin-bottom: 4px;
      }

      /* Value cells: flex row with badge pill on the left */
      .pricing-compare-row > div:not(.compare-item-label) {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        color: var(--ink);
      }

      /* Show badges on mobile */
      .cmp-badge {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        padding: 3px 10px;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .03em;
        background: #f0f0f0;
        color: var(--muted);
        white-space: nowrap;
      }
      .cmp-badge-teal {
        background: var(--teal-soft);
        color: var(--teal-dark);
      }

      /* STEAH value: teal text */
      .compare-teal {
        color: var(--teal-dark) !important;
        font-weight: 800 !important;
      }
    }

    /* ==========================================
       PRICING COMPARE — MOBILE CLEAN REDESIGN
       (overrides previous mobile styles)
    ========================================== */
    @media (max-width: 760px) {
      .pricing-compare {
        padding: 16px 14px 14px;
        background: var(--bg);
        border: 1px solid var(--line);
        border-radius: 20px;
      }
      .pricing-compare-title {
        font-size: 14px;
        font-weight: 900;
        text-align: center;
        margin: 0 0 12px;
        color: var(--ink);
      }

      /* Wrap table rows in a rounded bordered container */
      .pricing-compare-table {
        border: 1px solid var(--line);
        border-radius: 12px;
        overflow: hidden;
      }

      /* Header row */
      .pricing-compare-header {
        display: grid !important;
        grid-template-columns: 36% 1fr 1fr;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid var(--line);
        margin-bottom: 0;
        background: transparent;
      }
      .pricing-compare-header .compare-col-label {
        padding: 8px 4px;
        font-size: 10px;
        font-weight: 900;
        text-align: center;
        color: var(--muted);
        background: #f0f0f0;
        letter-spacing: .03em;
        border-right: 1px solid var(--line);
      }
      .pricing-compare-header .compare-col-label:last-child { border-right: 0; }
      .pricing-compare-header .compare-col-label.compare-teal {
        background: rgba(16,197,154,.12);
        color: var(--teal-dark);
      }
      .pricing-compare-header .compare-col-item {
        background: #e8efed;
        color: var(--ink);
      }

      /* Data rows — clean 3-col grid, no gaps */
      .pricing-compare-row {
        display: grid !important;
        grid-template-columns: 36% 1fr 1fr;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid var(--line);
        margin-bottom: 0;
        flex-direction: unset;
      }
      .pricing-compare-row:last-child { border-bottom: 0; }

      /* Category label cell */
      .compare-item-label {
        padding: 10px 8px;
        font-size: 11px;
        font-weight: 800;
        color: var(--ink);
        background: #f8faf9;
        display: flex;
        align-items: center;
        line-height: 1.4;
        border-right: 1px solid var(--line);
        border-top: 0;
        border-radius: 0;
        border-left: 0;
        border-bottom: 0;
      }

      /* Value cells */
      .pricing-compare-row > div:not(.compare-item-label) {
        padding: 10px 6px;
        font-size: 12px;
        font-weight: 700;
        color: var(--muted);
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.5;
        border-right: 1px solid var(--line);
        border-radius: 0;
        border-top: 0;
        border-bottom: 0;
        border-left: 0;
        gap: 0;
      }
      .pricing-compare-row > div:not(.compare-item-label):last-child {
        border-right: 0;
      }

      /* STEAH teal column */
      .pricing-compare-row .compare-teal {
        background: var(--teal-soft) !important;
        color: var(--teal-dark) !important;
        font-weight: 800 !important;
      }

      /* Hide inline badges — header row handles labelling */
      .cmp-badge { display: none !important; }
    }

/* ==========================================
   WORKS section (copied from official site style.css)
========================================== */
.lp-works-area {
  padding-top: 80px;
  padding-bottom: 20px;
  overflow: hidden;
}
.lp-works-area .works-content {
  padding-bottom: 40px;
  margin-left: -260px;
}
.lp-works-area .works-item-photo img {
  border-radius: 20px;
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.lp-works-area .works-item-info {
  padding: 30px 20px 0 20px;
  text-align: center;
}
.lp-works-area .works-item h6 {
  font-size: 16px;
  line-height: 28px;
  color: #10c59a;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}
.lp-works-area .works-item {
  text-align: center;
}
.lp-works-area .works-item h5 {
  line-height: 1.6;
  padding-top: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.lp-works-area .btn-box {
  display: flex;
  justify-content: center;
  padding-right: 60px;
}
.lp-works-area .btn-box .btn {
  box-shadow: none;
  font-size: 20px;
  line-height: 23px;
  color: #333;
  display: flex;
  align-items: center;
  width: max-content;
  position: relative;
  padding: 0;
  border-radius: 0;
  border-bottom: 1px solid #10c59a;
  background: transparent;
  text-decoration: none;
}
.lp-works-area .btn-box .btn i {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: #fff;
  right: -60px;
}
.lp-works-area .btn-box .btn i::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  background-color: #10c59a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: -1;
  transition: transform .3s ease;
}
.lp-works-area .btn-box .btn:hover i::after {
  transform: scale(1.3);
}
@media only screen and (max-width: 768px) {
  .lp-works-area .works-content {
    margin-left: 0;
    padding-bottom: 16px;
  }
  .lp-works-area .works-item-photo img {
    height: 280px;
  }
  .lp-works-area .btn-box {
    padding-right: 0;
  }
}
@media only screen and (max-width: 440px) {
  .lp-works-area .works-item-photo img {
    height: 230px;
    border-radius: 8px;
    object-fit: cover;
  }
}

/* ==========================================
   HERO MOBILE IMAGE (below title)
========================================== */
@media (max-width: 760px) {
  /* Show mobile image (inside content column, right after h1) */
  .hero-photo.hero-photo-mobile {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 16px 0 20px;
    box-shadow: 0 12px 40px rgba(21,44,38,.14);
  }
  /* Hide original desktop image (direct child of hero-main) */
  .hero-main > .hero-photo:not(.hero-photo-mobile) {
    display: none;
  }
}

/* ==========================================
   TECH CATEGORY CARDS — RESPONSIVE
========================================== */
@media (max-width: 1100px) {
  .tech-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .tech-cat-grid { grid-template-columns: 1fr; gap: 12px; }
  .tech-cat-card { padding: 16px 18px; }
  .tech-cat-label { font-size: 11px; }
  .tech-cat-items { font-size: 13px; }
}


/* ==========================================
   LP CASE SECTION
========================================== */
.lp-cases-wrap { overflow: hidden; }
.lp-cases-wrap .section-head { padding: 80px 0 24px; }

/* Each case row */
.lp-case-row {
  position: relative;
  background: #f7fbfa;
  padding: 40px 0;
  overflow: hidden;
}
.lp-case-row--reverse { background: #f8f8f8; }

/* Inner container — holds the text only */
.lp-case-inner { position: relative; }

/* Text block */
.lp-case-info { max-width: 560px; }
.lp-case-info--right { margin-left: auto; max-width: 560px; }

/* CASE number — teal pill */
.lp-case-no-wrap { margin-bottom: 20px; }
.lp-case-line { display: none; }
.lp-case-no {
  display: inline-block;
  background: #10c59a;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .15em;
  padding: 10px 24px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(16,197,154,.35);
}
.lp-case-row--reverse .lp-case-no { margin-left: 0; }

/* Title */
.lp-case-title {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* Blocks */
.lp-blocks { display: flex; flex-direction: column; gap: 14px; }
.lp-blocks p { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 14px; color: #333; margin-top: 8px; line-height: 1.75; }

.lp-do-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.lp-do-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; line-height: 1.6; color: #333; font-family: 'Zen Kaku Gothic New', sans-serif; }
.lp-do-list li svg { flex-shrink: 0; width: 15px; height: 15px; margin-top: 3px; color: #10c59a; }

/* Photo — absolutely positioned, bleeds to edge like works page */
.lp-case-photo {
  position: absolute;
  top: 0;
  bottom: 0;
  max-width: 660px;
  width: 52%;
  display: flex;
  align-items: center;
}
.lp-case-photo--right { right: 0; }
.lp-case-photo--left  { left: 0; }

.lp-case-photo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 100%;
  object-fit: contain;
}
.lp-case-photo--right img { border-radius: 20px 0 0 20px; }
.lp-case-photo--left  img { border-radius: 0 20px 20px 0; }

@media (max-width: 991px) {
  .lp-case-row {
    display: flex;
    flex-direction: column;
    padding: 0 0 48px;
    overflow: hidden;
  }
  /* Image first, full natural height */
  .lp-case-photo {
    position: relative;
    top: auto; left: auto; right: auto;
    width: 100%; max-width: 100%;
    height: auto;
    display: block;
    align-items: unset;
    order: -1;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
  }
  .lp-case-photo--left {
    border-radius: 0 20px 20px 0;
  }
  .lp-case-photo img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* Text section below */
  .lp-case-inner { order: 1; padding: 32px 0 0; }
  .lp-case-info, .lp-case-info--right { max-width: 100%; margin-left: 0; }
  .lp-blocks { border-radius: 12px; }
  /* Smaller pill on mobile */
  .lp-case-no { font-size: 13px; padding: 8px 18px; }
}

/* Block icon+label design */
.lp-block + .lp-block { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,.08); }
.lp-block__label { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.lp-block__icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(16,197,154,.12); color: #0a7a5f;
}
.lp-block__icon svg { width: 16px; height: 16px; }
.lp-block__name { font-size: .88rem; font-weight: 700; color: #1a2e28; font-family: 'Zen Kaku Gothic New', sans-serif; }
.lp-block__name span { display: block; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #6b8a80; margin-top: 1px; }
.lp-block__text { font-size: .85rem; line-height: 1.75; color: #4a5568; font-family: 'Zen Kaku Gothic New', sans-serif; }

.lp-block--result { background: rgba(16,197,154,.07); border: 1px solid rgba(16,197,154,.2); border-radius: 10px; padding: 14px 16px; margin-top: 16px; }
.lp-block--result.lp-block { border-top: 1px solid rgba(16,197,154,.2); }
.lp-block--result .lp-block__icon { background: #fff; color: #10c59a; }
.lp-block--result .lp-block__text { color: #1a2e28; font-weight: 500; }

/* White card around blocks for visual separation */
.lp-blocks {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  margin-top: 8px;
}
