/* ================================================================
   WordPress global styles (from theme.json)
   ================================================================ */
    :root {
      --wp--preset--color--base: #ffffff;
      --wp--preset--color--gray-100: #f5f5f5;
      --wp--preset--color--gray-200: #eeeeee;
      --wp--preset--color--gray-300: #e0e0e0;
      --wp--preset--color--gray-800: #424242;
      --wp--preset--color--red-100: #ffebee;
      --wp--preset--color--denet: #ab010b;
      --wp--preset--font-family--noto-sans-jp: Noto Sans JP;
      --wp--preset--font-size--small: 14px;
      --wp--preset--font-size--medium: clamp(16px, 1rem + ((1vw - 3.2px) * 0.194), 18px);
      --wp--preset--font-size--large: clamp(18px, 1.125rem + ((1vw - 3.2px) * 0.291), 21px);
      --wp--preset--spacing--30: 10px;
      --wp--preset--spacing--40: clamp(16px, 0.88rem + 0.24vw, 18px);
      --wp--preset--spacing--50: clamp(20px, 0.67rem + 1.2vw, 30px);
      --wp--preset--spacing--60: clamp(30px, 0.72rem + 2.4vw, 50px);
      --wp--style--global--content-size: 1350px;
      --wp--style--root--padding-right: 15px;
      --wp--style--root--padding-left: 15px;
      --red: #ab010b;
      --red-deep: #8a0009;
      --gray: #424242;
      --lightgray: #e0e0e0;
    }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: var(--wp--preset--font-size--medium);
      color: #424242;
      letter-spacing: 0.1em;
      line-height: 1.66;
      margin: 0;
      padding: 0;
    }

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

    ul,
    ol {
      list-style: none;
      padding-left: 0;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 5px;
    }

    .has-global-padding {
      padding-right: var(--wp--style--root--padding-right);
      padding-left: var(--wp--style--root--padding-left);
    }

    .is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
      max-width: var(--wp--style--global--content-size);
      margin-left: auto !important;
      margin-right: auto !important;
    }

    .is-layout-flex {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }

    .is-content-justification-space-between {
      justify-content: space-between;
    }

    .is-nowrap {
      flex-wrap: nowrap;
    }

    .has-denet-color {
      color: var(--wp--preset--color--denet) !important;
    }

    .has-denet-background-color {
      background-color: var(--wp--preset--color--denet) !important;
    }

    .has-gray-100-background-color {
      background-color: var(--wp--preset--color--gray-100) !important;
    }

    .has-gray-800-background-color {
      background-color: var(--wp--preset--color--gray-800) !important;
    }

    .has-base-color {
      color: var(--wp--preset--color--base) !important;
    }

    .has-denet-border-color {
      border-color: var(--wp--preset--color--denet) !important;
    }

    /* Focus visibility — WCAG 2.1 AA */
    /* マウス操作時はoutlineを非表示、キーボード操作時は表示 */
    :focus:not(:focus-visible) {
      outline: none;
    }

    :focus-visible {
      outline: 3px solid var(--red);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* ================================================================
   HEADER (matching actual site)
   ================================================================ */
    .header__group {
      width: 100%;
      padding: 15px;
      position: fixed;
      background: #fff;
      top: 0;
      z-index: 9999;
      box-sizing: border-box;
    }

    .header_logo img {
      width: 180px !important;
      border-radius: 0;
    }

    .header__icon--contact {
      width: 44px;
      height: 36px;
      margin-right: 10px !important;
    }

    .header__icon--contact img {
      width: 100%;
      height: 100%;
      border-radius: 0;
    }

    /* Desktop nav */
    .header__navblock {
      position: relative;
    }

    .header-desktop-nav {
      display: none;
    }

    @media (min-width: 1120px) {
      .header-desktop-nav {
        display: block;
      }

      .header__icon--contact {
        display: none;
      }

      .header-mobile-trigger {
        display: none !important;
      }

      .header_logo img {
        width: 180px !important;
      }
    }

    @media (max-width: 1119px) {
      .header-desktop-nav {
        display: none;
      }

      .header_logo img {
        width: 100px !important;
      }
    }

    .desktop-nav-list {
      display: flex;
      align-items: center;
      gap: 0;
      margin: 0;
      padding: 0;
    }

    .desktop-nav-list>li {
      position: relative;
      padding: 0 10px;
    }

    .desktop-nav-list>li>a {
      display: block;
      padding: 8px 0;
      color: #424242;
      font-size: var(--wp--preset--font-size--medium);
      font-weight: 500;
      white-space: nowrap;
    }

    .desktop-nav-list>li>a:hover {
      opacity: 0.6;
    }

    /* Drop-down arrow */
    .desktop-nav-list>li.has-dropdown>a {
      padding-right: 18px;
      position: relative;
    }

    .desktop-nav-list>li.has-dropdown>a::after {
      content: "";
      display: block;
      width: 8px;
      height: 8px;
      border-top: 2px #424242 solid;
      border-right: 2px #424242 solid;
      position: absolute;
      top: 35%;
      right: 0;
      transform: rotate(135deg);
    }

    /* Contact button in nav */
    .desktop-nav-list>li.nav-contact a {
      display: block;
      padding: 5px 10px 5px 40px;
      background: var(--red) url(https://cloudassist.jp/wp-content/uploads/2024/04/Icon-feather-mail.svg) no-repeat 10px center;
      border-radius: 6px;
      color: #fff;
    }

    .desktop-nav-list>li.nav-contact a:hover {
      opacity: 0.8;
    }

    /* Data download button */
    .desktop-nav-list>li.nav-data a {
      color: var(--red);
      font-weight: 700;
    }

    /* Mega-menu popups */
    .header__nav--submenu01,
    .header__nav--submenu03 {
      display: none;
      position: absolute;
      top: 45px;
      left: -100px;
      z-index: 10;
      width: 880px;
      padding: 50px;
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 6px 9px rgba(0, 0, 0, 0.35);
    }

    .header__nav--submenu03 {
      left: -80px;
      width: 440px;
      padding: 50px 50px 25px !important;
    }

    .desktop-nav-list>li:hover>.header__nav--submenu01,
    .desktop-nav-list>li:hover>.header__nav--submenu03 {
      display: block;
    }

    .submenu-title {
      border-bottom: 1px solid var(--red);
      padding-bottom: 10px;
      margin-bottom: 20px;
    }

    .submenu-title a {
      font-size: clamp(20px, 1.25rem + 0.5vw, 33px);
      font-weight: 700;
      color: var(--red) !important;
    }

    .submenu-section-title {
      font-size: var(--wp--preset--font-size--small);
      font-weight: 700;
      margin-bottom: 5px;
    }

    .submenu-section-title a {
      color: #424242;
      position: relative;
      padding-right: 20px;
    }

    .submenu-section-title a::after {
      content: "";
      display: block;
      width: 8px;
      height: 8px;
      border-top: 2px solid var(--red);
      border-right: 2px solid var(--red);
      position: absolute;
      top: 6px;
      right: 5px;
      transform: rotate(45deg);
    }

    .submenu-columns {
      display: flex;
      gap: 2rem;
    }

    .submenu-columns>div {
      flex: 1;
    }

    .submenu-list {
      margin: 0 0 0 10px;
      padding: 0;
    }

    .submenu-list li {
      position: relative;
      padding: 3px 0 3px 20px;
      line-height: 1.5;
      letter-spacing: 0;
      font-size: var(--wp--preset--font-size--small);
    }

    .submenu-list li::before {
      content: "";
      display: block;
      width: 6px;
      height: 6px;
      border-top: 1px #424242 solid;
      border-right: 1px #424242 solid;
      position: absolute;
      top: 10px;
      left: 0;
      transform: rotate(45deg);
    }

    .submenu-list li a {
      color: var(--gray);
    }

    /* Mobile hamburger */
    .header-mobile-trigger {
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      gap: 0;
    }

    .hamburger-lineWrap {
      display: flex;
      flex-direction: column;
      gap: 5px;
      margin-bottom: 2px;
    }

    .hamburger-line {
      display: block;
      width: 24px;
      height: 2px;
      background: #424242;
    }

    .hamburger-text {
      font-size: 10px;
      color: #424242;
      letter-spacing: 0.05em;
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--red);
      z-index: 10000;
      overflow-y: auto;
      padding: 20px;
      color: #fff;
    }

    .mobile-menu-overlay.open {
      display: block;
    }

    .mobile-menu-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .mobile-menu-close svg {
      fill: #fff;
    }

    .mobile-nav-list {
      padding: 60px 0 40px;
      margin: 0;
    }

    .mobile-nav-list li {
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-nav-list li a {
      display: block;
      padding: 15px 10px;
      color: #fff;
      font-size: 16px;
      font-weight: 500;
    }

    .mobile-nav-list li.mobile-sub-toggle>.sub-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 10px;
      color: #fff;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
    }

    .mobile-nav-list li.mobile-sub-toggle>.sub-label .chevron {
      transition: transform 0.3s;
    }

    .mobile-nav-list li.mobile-sub-toggle.open>.sub-label .chevron {
      transform: rotate(180deg);
    }

    .mobile-submenu {
      display: none;
      padding: 0 0 10px 15px;
    }

    .mobile-sub-toggle.open .mobile-submenu {
      display: block;
    }

    .mobile-submenu li {
      border-bottom: none;
    }

    .mobile-submenu li a {
      padding: 8px 10px;
      font-size: 14px;
      opacity: 0.9;
    }

    /* ================================================================
   CONTENT AREA — site-matching light theme
   ================================================================ */
    .content-area {
      background: #fff;
      color: #424242;
    }

    .inner {
      max-width: 1350px;
      margin: 0 auto;
      padding-left: var(--wp--style--root--padding-right);
      padding-right: var(--wp--style--root--padding-left);
    }

    /* ---- Section heading ---- */
    .sec-label {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.75rem;
      /* lang="en"はHTML側に付与 */
    }

    .sec-heading {
      margin-bottom: 3.5rem;
    }

    .sec-heading h2 {
      font-size: clamp(1.4rem, 2.5vw, 1.8rem);
      font-weight: 900;
      line-height: 1.8;
      letter-spacing: 0.04em;
      color: #424242;
    }

    .sec-heading .rule {
      display: block;
      width: 40px;
      height: 3px;
      background: var(--red);
      margin-top: 1.25rem;
      border-radius: 2px;
    }

    .sec-heading .sub {
      margin-top: 1.25rem;
      font-size: 0.95rem;
      color: #666;
      line-height: 2;
      max-width: 640px;
    }

    /* ---- Buttons ---- */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 36px;
      background: var(--red);
      color: #fff;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s;
      letter-spacing: 0.06em;
    }

    .btn-primary:hover {
      background: var(--red-deep);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(171, 1, 11, 0.25);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 36px;
      background: transparent;
      color: #424242;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s;
      letter-spacing: 0.06em;
    }

    .btn-outline:hover {
      border-color: var(--red);
      color: var(--red);
      transform: translateY(-2px);
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 40px;
      background: #fff;
      color: var(--red);
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s;
      letter-spacing: 0.06em;
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    /* ---- Hero ---- */
    .hero {
      min-height: 80vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(30px, 4vw, 80px) var(--wp--style--root--padding-right) clamp(60px, 6vw, 100px) var(--wp--style--root--padding-left);
      position: relative;
      overflow: hidden;
      background: #f5f5f5;
      max-width: 100%;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -15%;
      right: -8%;
      width: 50vw;
      height: 50vw;
      background: radial-gradient(circle, rgba(171, 1, 11, 0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--lightgray), transparent);
    }

    .hero-inner {
      max-width: 1350px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: clamp(24px, 4vw, 60px);
      align-items: start;
    }

    .hero-right {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .hero-label {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      color: var(--red);
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeUp 0.8s ease forwards 0.3s;
    }

    .hero-copy {
      font-size: clamp(1.8rem, 4.5vw, 3.2rem);
      font-weight: 900;
      line-height: 1.6;
      letter-spacing: 0.04em;
      margin-bottom: 1.8rem;
      color: #424242;
      opacity: 0;
      animation: fadeUp 1s ease forwards 0.5s;
    }

    .hero-copy .em {
      color: var(--red);
      position: relative;
    }

    .hero-copy .em::after {
      content: '';
      position: absolute;
      bottom: 0.1em;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--red);
      opacity: 0.3;
      border-radius: 2px;
    }

    .hero-tagline {
      font-size: clamp(1rem, 1.4vw, 1.2rem);
      font-weight: 700;
      line-height: 1.75;
      color: var(--red);
      margin-bottom: 1.4rem;
      letter-spacing: 0.02em;
      opacity: 0;
      animation: fadeUp 1s ease forwards 0.6s;
    }

    .hero-sub {
      font-size: var(--wp--preset--font-size--large);
      color: #555;
      line-height: 2;
      max-width: 640px;
      word-break: keep-all;
      overflow-wrap: anywhere;
      opacity: 0;
      animation: fadeUp 1s ease forwards 0.7s;
    }

    .hero-price {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      opacity: 0;
      animation: fadeUp 1s ease forwards 1s;
    }

    .hero-price-amount {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--red);
      letter-spacing: -0.02em;
      line-height: 1.2;
      word-break: keep-all;
      overflow-wrap: anywhere;
    }

    .hero-price-amount small {
      font-size: 0.75rem;
      color: #999;
      font-weight: 400;
      letter-spacing: 0.02em;
      white-space: nowrap;
    }

    .hero-price-label {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
    }

    .hero-cta-area {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 3rem;
      opacity: 0;
      animation: fadeUp 1s ease forwards 0.9s;
    }

    .hero-metrics {
      display: flex;
      gap: 3rem;
      flex-wrap: wrap;
      padding-top: 2.5rem;
      border-top: 1px solid var(--lightgray);
      opacity: 0;
      animation: fadeUp 1s ease forwards 1.1s;
    }

    .metric-value {
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--red);
      letter-spacing: -0.02em;
    }

    .metric-value span {
      font-size: 0.95rem;
      color: #999;
      margin-left: 0.2rem;
      font-weight: 500;
    }

    .metric-label {
      font-size: 0.8rem;
      color: #888;
      margin-top: 0.3rem;
      letter-spacing: 0.04em;
    }

    /* Hero SVG Diagram */
    .hero-diagram {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-diagram svg {
      width: 100%;
      max-width: 380px;
      height: auto;
    }

    .hero-diagram .draw-line {
      stroke-dasharray: 600;
      stroke-dashoffset: 600;
      animation: drawIn 2.5s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
    }

    .hero-diagram .draw-line-d1 {
      animation-delay: 1s;
    }

    .hero-diagram .draw-line-d2 {
      animation-delay: 1.3s;
    }

    .hero-diagram .draw-line-d3 {
      animation-delay: 1.6s;
    }

    .hero-diagram .node-fade {
      opacity: 0;
      animation: fadeIn 0.6s ease forwards;
    }

    .hero-diagram .node-fade-d1 {
      animation-delay: 1.2s;
    }

    .hero-diagram .node-fade-d2 {
      animation-delay: 1.5s;
    }

    .hero-diagram .node-fade-d3 {
      animation-delay: 1.8s;
    }

    .hero-diagram .node-fade-d4 {
      animation-delay: 2.1s;
    }

    .hero-diagram .node-fade-d5 {
      animation-delay: 2.4s;
    }

    @keyframes drawIn {
      to {
        stroke-dashoffset: 0;
      }
    }

    /* Hero Dark variant */
    .hero-dark {
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }

    .hero-dark::before {
      background: radial-gradient(circle, rgba(255, 82, 82, 0.12) 0%, transparent 70%);
    }

    .hero-dark .hero-label {
      color: #ff5252;
    }

    .hero-dark .hero-copy {
      color: #fff;
    }

    .hero-dark .hero-copy .em {
      color: #ff5252;
    }

    .hero-dark .hero-copy .em::after {
      background: #ff5252;
    }

    .hero-dark .hero-sub {
      color: rgba(255, 255, 255, 0.8);
    }

    .hero-dark .hero-price {
      background: rgba(255, 82, 82, 0.08);
      border: 1px solid rgba(255, 82, 82, 0.2);
    }

    .hero-dark .hero-price-amount {
      color: #ff5252;
    }

    .hero-dark .hero-price-label {
      color: rgba(255, 255, 255, 0.7);
    }

    .hero-dark .hero-metrics {
      border-top-color: rgba(255, 255, 255, 0.15);
    }

    .hero-dark .metric-value {
      color: #ff5252;
    }

    .hero-dark .metric-label {
      color: rgba(255, 255, 255, 0.6);
    }

    .hero-dark .hero-diagram img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .hero-dark .btn-outline {
      border-color: rgba(255, 255, 255, 0.3);
      color: #fff;
    }

    .hero-dark .btn-outline:hover {
      border-color: #ff5252;
      color: #ff5252;
      background: rgba(255, 82, 82, 0.1);
    }

    @media (max-width: 768px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }

      .hero-right {
        display: none;
      }

      .hero-metrics {
        flex-direction: column;
        gap: 1.5rem;
      }
    }

    /* ---- Trust Bar ---- */
    .trust-bar {
      background: #fff;
      padding: 36px 0;
      border-bottom: 1px solid #e0e0e0;
      border-top: 1px solid #e0e0e0;
    }

    .trust-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(24px, 5vw, 48px);
      flex-wrap: wrap;
    }

    .trust-bar-text {
      font-size: 0.78rem;
      color: #888;
      font-weight: 500;
      letter-spacing: 0.08em;
    }

    .trust-bar img {
      height: 84px;
      width: auto;
      opacity: 0.7;
      transition: opacity 0.3s;
    }

    .trust-bar img:hover {
      opacity: 1;
    }

    /* ---- Problem Section ---- */
    .problem-section {
      padding: clamp(60px, 8vw, 120px) var(--wp--style--root--padding-right);
      background: #fff;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(16px, 2vw, 24px);
      max-width: 1350px;
      margin: 0 auto;
    }

    .problem-card {
      padding: clamp(24px, 3vw, 36px);
      background: #f5f5f5;
      border-radius: 12px;
      border-left: 4px solid transparent;
      transition: all 0.3s;
    }

    .problem-card:hover {
      border-left-color: var(--red);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transform: translateY(-2px);
    }

    .problem-num {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--red);
      letter-spacing: 0.15em;
      margin-bottom: 1rem;
    }

    .problem-card h3 {
      font-size: clamp(1.05rem, 1.4vw, 1.2rem);
      font-weight: 700;
      line-height: 1.65;
      margin-bottom: 0.8rem;
      color: #424242;
    }

    .problem-card p {
      font-size: 0.92rem;
      color: #666;
      line-height: 1.95;
    }

    @media (max-width: 768px) {
      .problem-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ---- Value Section (Managed Plan) ---- */
    .value-section {
      padding: clamp(60px, 8vw, 120px) var(--wp--style--root--padding-right);
      background: #f5f5f5;
    }

    .value-stack {
      display: flex;
      flex-direction: column;
      max-width: 1350px;
      margin: 0 auto;
    }

    .value-layer {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 0 1.5rem;
      align-items: start;
      padding: clamp(24px, 3vw, 36px) 0;
      border-bottom: 1px solid #e0e0e0;
      transition: all 0.3s;
    }

    .value-layer:first-child {
      border-top: 1px solid #e0e0e0;
    }

    .value-layer:hover {
      padding-left: 16px;
      background: #fff;
      border-radius: 8px;
    }

    .layer-number {
      font-size: 2rem;
      font-weight: 700;
      color: #e0e0e0;
      line-height: 1;
      padding-top: 4px;
      text-align: center;
      transition: color 0.3s;
    }

    .value-layer:hover .layer-number {
      color: var(--red);
    }

    .layer-content h3 {
      font-size: clamp(1.15rem, 1.5vw, 1.35rem);
      font-weight: 900;
      margin-bottom: 0.3rem;
      color: #424242;
    }

    .layer-tagline {
      font-size: 0.92rem;
      color: #888;
      margin-bottom: 1rem;
      line-height: 1.7;
    }

    .layer-items {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .layer-item {
      font-size: 0.85rem;
      color: #666;
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 6px;
      padding: 4px 12px;
      transition: all 0.25s;
      letter-spacing: 0.04em;
    }

    .layer-item:hover {
      border-color: var(--red);
      color: var(--red);
    }

    @media (max-width: 600px) {
      .value-layer {
        grid-template-columns: 1fr;
        gap: 0.5rem;
      }

      .layer-number {
        text-align: left;
        font-size: 1.5rem;
      }
    }

    /* ---- Scope Section ---- */
    .scope-section {
      padding: clamp(60px, 8vw, 120px) var(--wp--style--root--padding-right);
      background: #fff;
    }

    .scope-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(16px, 2vw, 24px);
      max-width: 1350px;
      margin: 0 auto;
    }

    .scope-card {
      padding: clamp(24px, 3vw, 36px);
      background: #f5f5f5;
      border-radius: 12px;
      border: 1px solid #e0e0e0;
      transition: all 0.3s;
    }

    .scope-card:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transform: translateY(-2px);
    }

    .scope-card-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 1.2rem;
    }

    .scope-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .scope-dot-infra {
      background: #2563eb;
    }

    .scope-dot-system {
      background: #e88b00;
    }

    .scope-dot-security {
      background: var(--red);
    }

    .scope-dot-ops {
      background: #1a9e6f;
    }

    .scope-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #424242;
    }

    .scope-items {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .scope-item {
      font-size: 0.88rem;
      color: #666;
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 6px;
      padding: 6px 14px;
      transition: all 0.25s;
    }

    .scope-item:hover {
      border-color: #bdbdbd;
      color: #424242;
    }

    @media (max-width: 600px) {
      .scope-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ---- Scale Section (Architecture Diagram) ---- */
    .scale-section {
      padding: clamp(60px, 8vw, 120px) var(--wp--style--root--padding-right);
      background: #f5f5f5;
    }

    .scale-note {
      font-size: 0.85rem;
      color: #888;
      text-align: center;
      max-width: 1350px;
      margin: 0 auto;
    }

    /* ---- Accompaniment Section ---- */
    .accomp-section {
      padding: clamp(60px, 8vw, 120px) var(--wp--style--root--padding-right);
      background: #fff;
    }

    .accomp-section .sec-heading h2 {
      word-break: keep-all;
      overflow-wrap: anywhere;
    }

    .accomp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(16px, 2vw, 24px);
      max-width: 1350px;
      margin: 0 auto;
    }

    .accomp-card {
      padding: clamp(24px, 3vw, 36px);
      background: #f5f5f5;
      border-radius: 12px;
      border: 1px solid #e0e0e0;
      transition: all 0.3s;
    }

    .accomp-card:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transform: translateY(-2px);
    }

    .accomp-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      color: #888;
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 50%;
      transition: all 0.3s;
    }

    .accomp-card:hover .accomp-icon {
      border-color: var(--red);
      color: var(--red);
      background: rgba(171, 1, 11, 0.04);
    }

    .accomp-card h3 {
      font-size: clamp(0.98rem, 1.2vw, 1.08rem);
      font-weight: 700;
      line-height: 1.55;
      margin-bottom: 0.75rem;
      color: #424242;
      min-height: 3.1em;
      word-break: keep-all;
      overflow-wrap: anywhere;
    }

    .accomp-card p {
      font-size: 0.9rem;
      color: #666;
      line-height: 1.9;
    }

    @media (max-width: 768px) {
      .accomp-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ---- Plan Comparison ---- */
    .plan-section {
      padding: clamp(60px, 8vw, 120px) var(--wp--style--root--padding-right);
      background: #f5f5f5;
    }

    .plan-table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      background: #fff;
      border-radius: 12px;
      border: 1px solid #e0e0e0;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
      position: relative;
      max-width: 1350px;
      margin: 0 auto;
    }

    .plan-scroll-hint {
      display: none;
      font-size: 0.78rem;
      color: #888;
      text-align: right;
      margin-bottom: 8px;
      letter-spacing: 0.04em;
      max-width: 1350px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 768px) {
      .plan-scroll-hint {
        display: block;
      }
    }

    .plan-table {
      width: 100%;
      min-width: 700px;
      border-collapse: collapse;
      font-size: 0.92rem;
    }

    .plan-table th,
    .plan-table td {
      padding: 14px 20px;
      text-align: center;
      border-bottom: 1px solid #f5f5f5;
      vertical-align: middle;
    }

    .plan-table thead th {
      font-size: 1.1rem;
      font-weight: 700;
      padding: 20px;
      border-bottom: 2px solid #e0e0e0;
      white-space: nowrap;
      color: #424242;
    }

    .plan-table thead th:first-child {
      font-size: 0.85rem;
      font-weight: 500;
      color: #888;
    }

    .plan-col-highlight {
      background: rgba(171, 1, 11, 0.04);
      border-top: 3px solid var(--red);
    }

    .plan-table .plan-col-highlight {
      background: rgba(171, 1, 11, 0.04);
    }

    .plan-table .category-row td {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: #ffffff !important;
      background: var(--red) !important;
      padding: 8px 20px;
      border-bottom: none;
      text-align: left;
    }

    .plan-table .label-cell {
      color: #666;
      font-size: 0.9rem;
      text-align: left;
    }

    .plan-check {
      color: var(--red);
      font-weight: 700;
    }

    /* plan-check/dashのスクリーンリーダー向けテキストはsr-onlyで付与 */

    .plan-dash {
      color: #e0e0e0;
    }

    .plan-price-row td {
      padding-top: 20px;
      padding-bottom: 20px;
      border-bottom: none;
    }

    .plan-price {
      font-size: 1.6rem;
      font-weight: 700;
      color: #424242;
    }

    .plan-price small {
      font-size: 0.75rem;
      color: #888;
      font-weight: 400;
    }

    .plan-recommended {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: #fff;
      background: var(--red);
      padding: 3px 10px;
      border-radius: 4px;
      margin-bottom: 8px;
    }

    /* ---- Case Studies ---- */
    .case-section {
      padding: clamp(60px, 8vw, 120px) var(--wp--style--root--padding-right);
      background: #fff;
    }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(16px, 2vw, 24px);
      max-width: 1350px;
      margin: 0 auto;
    }

    .case-card {
      padding: clamp(24px, 3vw, 36px);
      background: #f5f5f5;
      border-radius: 12px;
      border-left: 4px solid var(--red);
      transition: all 0.3s;
    }

    .case-card:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transform: translateY(-2px);
    }

    .case-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #888;
      margin-bottom: 1rem;
    }

    .case-card h3 {
      font-size: clamp(1.05rem, 1.3vw, 1.2rem);
      font-weight: 700;
      line-height: 1.7;
      margin-bottom: 0.8rem;
      color: #424242;
    }

    .case-card p {
      font-size: 0.9rem;
      color: #666;
      line-height: 1.9;
    }

    @media (max-width: 768px) {
      .case-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ---- FAQ ---- */
    .faq-section {
      padding: clamp(60px, 8vw, 120px) var(--wp--style--root--padding-right);
      background: #f5f5f5;
    }

    .faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid #e0e0e0;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      cursor: pointer;
      gap: 16px;
      transition: color 0.2s;
    }

    .faq-question:hover {
      color: var(--red);
    }

    .faq-question h3 {
      font-size: 1.02rem;
      font-weight: 700;
      line-height: 1.65;
    }

    .faq-toggle {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      font-weight: 400;
      color: #888;
      border: 1px solid #e0e0e0;
      border-radius: 50%;
      transition: all 0.3s;
    }

    .faq-item.faq-open .faq-toggle {
      transform: rotate(45deg);
      border-color: var(--red);
      color: var(--red);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .faq-answer-inner {
      padding-bottom: 20px;
      font-size: 0.92rem;
      color: #666;
      line-height: 2;
    }

    /* ---- Final CTA ---- */
    .final-cta {
      padding: clamp(60px, 8vw, 120px) var(--wp--style--root--padding-right);
      background: var(--red);
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -10%;
      width: 50%;
      height: 200%;
      background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
      pointer-events: none;
    }

    .final-cta h2 {
      font-size: clamp(1.4rem, 3vw, 2.2rem);
      font-weight: 900;
      line-height: 1.8;
      margin-bottom: 1rem;
      position: relative;
    }

    .final-cta .cta-sub {
      font-size: 1rem;
      opacity: 0.85;
      margin-bottom: 2.5rem;
      line-height: 2;
      position: relative;
    }

    .final-cta-phone {
      margin-top: 2rem;
      position: relative;
    }

    .final-cta-phone-sub {
      font-size: 0.82rem;
      opacity: 0.6;
      letter-spacing: 0.08em;
    }

    /* ---- Floating CTA (Mobile) ---- */
    .floating-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9998;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
      padding: 10px var(--wp--style--root--padding-right);
      border-top: 1px solid #e0e0e0;
    }

    .floating-cta-inner {
      display: flex;
      gap: 8px;
      max-width: 1350px;
      margin: 0 auto;
    }

    .floating-cta .btn-primary,
    .floating-cta .btn-outline {
      flex: 1;
      min-width: auto;
      min-height: 44px;
      /* WCAG 2.5.5 タッチターゲット最小サイズ */
      padding: 12px 8px;
      font-size: 0.85rem;
    }

    @media (max-width: 768px) {

      /* デフォルトは非表示。.visibleクラスで表示、.hiddenクラスで非表示 */
      .floating-cta {
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
        transition: opacity 0.3s, visibility 0.3s;
      }

      .floating-cta.visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      .floating-cta.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
      }

      body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
      }
    }

    /* ---- Footer overrides ---- */
    .site-footer-wrap {
      letter-spacing: 0;
    }

    .site-footer-wrap a {
      color: inherit;
    }

    .site-footer-wrap a:hover {
      opacity: 0.6;
      text-decoration: none;
    }

    .site-footer-wrap img {
      border-radius: 0;
    }

    .footer-columns {
      display: flex;
      align-items: flex-start;
      gap: 0;
      max-width: 1350px;
      margin: 0 auto;
    }

    .footer-col-left {
      flex: 0 0 24%;
      min-width: 180px;
      padding-right: 30px;
    }

    .footer-col-right {
      flex: 1 1 76%;
      min-width: 0;
    }

    @media (max-width: 781px) {
      .footer-columns {
        flex-direction: column;
      }

      .footer-col-left {
        flex: none;
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
      }

      .footer-col-right {
        flex: none;
        width: 100%;
      }

      .footer-nav-service {
        flex-direction: column;
      }
    }

    /* ---- Scroll Reveal ---- */
    .js-loaded .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .js-loaded .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-d1 {
      transition-delay: 0.08s;
    }

    .reveal-d2 {
      transition-delay: 0.16s;
    }

    .reveal-d3 {
      transition-delay: 0.24s;
    }

    .reveal-d4 {
      transition-delay: 0.32s;
    }

    .reveal-d5 {
      transition-delay: 0.40s;
    }

    .reveal-d6 {
      transition-delay: 0.48s;
    }

    /* ---- Animations ---- */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* ---- Mid-page CTA ---- */
    .mid-cta {
      background: rgba(171, 1, 11, 0.04);
      border-top: 1px solid rgba(171, 1, 11, 0.1);
      border-bottom: 1px solid rgba(171, 1, 11, 0.1);
      padding: 32px 0;
    }

    .mid-cta-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      max-width: 1350px;
      margin: 0 auto;
      padding: 0 var(--wp--style--root--padding-right);
    }

    .mid-cta-text {
      font-size: 1rem;
      font-weight: 700;
      color: #424242;
      line-height: 1.7;
    }

    .mid-cta-sub {
      display: block;
      font-size: 0.88rem;
      font-weight: 400;
      color: #666;
      margin-top: 4px;
    }

    /* ---- Screen Reader Only ---- */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* ---- Reduced Motion ---- */
    @media (prefers-reduced-motion: reduce) {

      .js-loaded .reveal,
      .hero-label,
      .hero-copy,
      .hero-sub,
      .hero-price,
      .hero-cta-area,
      .hero-metrics {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
      }

      .hero-diagram .draw-line {
        stroke-dashoffset: 0;
        animation: none;
      }

      .hero-diagram .node-fade {
        opacity: 1;
        animation: none;
      }
    }

    /* ---- Responsive Fine-tuning ---- */
    @media (max-width: 480px) {
      .hero-copy {
        font-size: 1.6rem;
      }

      .hero-copy br {
        display: none;
      }

      .hero-cta-area {
        flex-direction: column;
      }

      .btn-primary,
      .btn-outline {
        min-width: auto;
        width: 100%;
      }

      .hero-price-amount {
        font-size: 1.6rem;
      }
    }

    @media (max-width: 1024px) {
      .accomp-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .accomp-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ---- Support Systems Section (3 plans overview) ---- */
    .support-section {
      padding: clamp(60px, 8vw, 120px) var(--wp--style--root--padding-right);
      background: #f5f5f5;
    }

    .support-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(20px, 2.5vw, 28px);
      max-width: 1350px;
      margin: 0 auto;
      align-items: stretch;
    }

    .support-card {
      padding: clamp(28px, 3vw, 40px);
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: all 0.3s;
    }

    .support-card:not(.is-core):hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      transform: translateY(-3px);
      border-color: #bdbdbd;
    }

    .support-card.is-core {
      border: 2px solid var(--red);
      background: linear-gradient(180deg, rgba(171, 1, 11, 0.04) 0%, #fff 60%);
    }

    .support-card.is-core:hover {
      box-shadow: 0 10px 28px rgba(171, 1, 11, 0.18);
      transform: translateY(-3px);
    }

    .support-card.is-core::before {
      content: '中核プラン';
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--red);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      padding: 5px 14px;
      border-radius: 4px;
      white-space: nowrap;
    }

    .support-card-role {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--red);
      margin-bottom: 0.5rem;
      text-transform: uppercase;
    }

    .support-card-name {
      font-size: clamp(1.2rem, 1.6vw, 1.4rem);
      font-weight: 900;
      margin-bottom: 0.7rem;
      color: #424242;
      line-height: 1.4;
    }

    .support-card-lead {
      font-size: 0.92rem;
      color: #666;
      line-height: 1.85;
      margin-bottom: 1.4rem;
    }

    .support-card-price {
      font-size: 1.6rem;
      font-weight: 700;
      color: #424242;
      margin-bottom: 0.2rem;
      letter-spacing: -0.02em;
    }

    .support-card-price small {
      font-size: 0.72rem;
      color: #888;
      font-weight: 400;
    }

    .support-card-pricenote {
      font-size: 0.78rem;
      color: #888;
      margin-bottom: 1.4rem;
      line-height: 1.6;
    }

    .support-card-list {
      margin: 0 0 1.5rem 0;
      padding-left: 0;
    }

    .support-card-list li {
      font-size: 0.88rem;
      color: #666;
      line-height: 1.65;
      position: relative;
      padding: 5px 0 5px 22px;
    }

    .support-card-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 11px;
      width: 10px;
      height: 5px;
      border-bottom: 2px solid var(--red);
      border-left: 2px solid var(--red);
      transform: rotate(-45deg);
    }

    .support-card-cta {
      margin-top: auto;
      padding-top: 1rem;
      border-top: 1px solid #f0f0f0;
      text-align: center;
    }

    .support-card-cta a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--red);
      padding: 6px 0;
      transition: all 0.2s;
    }

    .support-card-cta a::after {
      content: '→';
      transition: transform 0.2s;
    }

    .support-card-cta a:hover {
      opacity: 0.75;
    }

    .support-card-cta a:hover::after {
      transform: translateX(4px);
    }

    @media (max-width: 900px) {
      .support-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .support-card.is-core {
        margin-top: 14px;
      }
    }

    /* ---- Companion Support Plan Section ---- */
    .companion-section {
      padding: clamp(60px, 8vw, 120px) var(--wp--style--root--padding-right);
      background: #fff;
    }

    .companion-section-title {
      font-size: clamp(1.1rem, 1.5vw, 1.3rem);
      font-weight: 700;
      color: #424242;
      margin: 0 0 1.5rem;
      padding: 6px 0 6px 14px;
      border-left: 4px solid var(--red);
      letter-spacing: 0.04em;
      max-width: 1350px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.5;
    }

    .companion-roles {
      margin-bottom: clamp(40px, 5vw, 60px);
    }

    .companion-roles .value-stack {
      background: #f5f5f5;
      border-radius: 12px;
      padding: 0 clamp(20px, 3vw, 32px);
      border: 1px solid #e0e0e0;
    }

    .companion-roles .value-layer:hover {
      background: #fff;
    }

    .companion-roles .value-layer:first-child {
      border-top: none;
    }

    .companion-roles .value-layer:last-child {
      border-bottom: none;
    }

    .companion-usecases {
      max-width: 1350px;
      margin: 0 auto;
    }

    /* ---- Hero Diagram for 3-tier plans (service overview) ---- */
    .hero-tier {
      transition: all 0.3s;
    }

    .hero-tier-recommended rect {
      filter: drop-shadow(0 4px 12px rgba(171, 1, 11, 0.15));
    }

    /* ================================================================
       LP HEADER — Simplified for listing ad LP (no nav, no megamenu)
       ================================================================ */
    .lp-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      background: #fff;
      border-bottom: 1px solid #e0e0e0;
      padding: 12px 20px;
      box-sizing: border-box;
    }

    .lp-header-inner {
      max-width: 1350px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .lp-logo {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
    }

    .lp-logo img {
      width: 180px;
      height: auto;
      border-radius: 0;
    }

    .lp-header-right {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .lp-header-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 1.2rem;
      font-weight: 700;
      color: #424242;
      white-space: nowrap;
      letter-spacing: 0.02em;
    }

    .lp-header-phone svg {
      flex-shrink: 0;
      color: var(--red);
    }

    .lp-header-phone-sub {
      font-size: 0.66rem;
      font-weight: 400;
      color: #888;
      display: block;
      line-height: 1.3;
      letter-spacing: 0.04em;
    }

    .lp-header-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 22px;
      background: var(--red);
      color: #fff;
      font-size: 0.88rem;
      font-weight: 700;
      border-radius: 6px;
      white-space: nowrap;
      transition: background 0.2s;
      min-height: 40px;
    }

    .lp-header-cta:hover {
      background: var(--red-deep);
    }

    @media (max-width: 900px) {
      .lp-logo img {
        width: 140px;
      }
    }

    @media (max-width: 768px) {
      .lp-header-phone {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .lp-logo img {
        width: 110px;
      }

      .lp-header-cta {
        padding: 8px 14px;
        font-size: 0.78rem;
      }
    }

    /* ================================================================
       LP FOOTER — Simplified for listing ad LP
       ================================================================ */
    .lp-footer {
      padding: 36px var(--wp--style--root--padding-right);
      background: #424242;
      color: #fff;
      text-align: center;
    }

    .lp-footer-legal {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px 24px;
      margin-bottom: 18px;
      font-size: 0.82rem;
    }

    .lp-footer-legal a {
      color: #ddd;
      transition: color 0.2s;
    }

    .lp-footer-legal a:hover {
      color: #fff;
      text-decoration: underline;
    }

    .lp-footer-ssl {
      font-size: 0.75rem;
      color: #bbb;
      margin: 0 0 6px;
    }

    .lp-footer-copy {
      font-size: 0.78rem;
      color: #aaa;
      margin: 0;
    }
