
      :root {
        --bg: #f3f7fc;
        --bg-alt: #ffffff;
        --surface: rgba(255, 255, 255, 0.82);
        --surface-solid: #ffffff;
        --surface-soft: #f7faff;
        --text: #18314f;
        --text-soft: #45607e;
        --heading: #0d2747;
        --line: #d8e2ef;
        --line-strong: #bfd1e6;
        --primary: #114a8b;
        --primary-deep: #0a2f58;
        --primary-light: #e8f1fb;
        --accent: #f28c28;
        --accent-soft: #fff0e0;
        --placeholder: #d6dbe2;
        --shadow-sm: 0 12px 30px rgba(12, 36, 68, 0.06);
        --shadow-md: 0 20px 50px rgba(12, 36, 68, 0.1);
        --radius-sm: 14px;
        --radius-md: 22px;
        --radius-lg: 28px;
        --header-height: 88px;
        --container: min(1120px, calc(100% - 40px));
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: auto;
      }

      body {
        margin: 0;
        color: var(--text);
        background:
          radial-gradient(circle at top left, rgba(17, 74, 139, 0.08), transparent 32%),
          radial-gradient(circle at top right, rgba(242, 140, 40, 0.08), transparent 26%),
          linear-gradient(180deg, #f6f9fd 0%, #edf3fa 100%);
        font-family: 'Noto Sans JP', sans-serif;
        line-height: 1.8;
        padding-top: var(--header-height);
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
      }

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

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

      strong {
        font-weight: 700;
        color: var(--accent);
      }

      .container {
        width: var(--container);
        margin: 0 auto;
      }

      .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 200;
        background: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: 1px solid rgba(191, 209, 230, 0.7);
        box-shadow: 0 10px 30px rgba(11, 41, 79, 0.05);
      }

      .site-header__inner {
        position: relative;
        min-height: var(--header-height);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
      }

      .site-title {
        position: relative;
        display: flex;
        align-items: center;
        padding-left: 0;
        font-size: 24px;
        font-weight: 900;
        line-height: 1.2;
        letter-spacing: 0.08em;
        color: var(--heading);
        white-space: nowrap;
      }

      .site-title::before {
        display: none;
      }

      .site-title img {
        display: block;
        width: auto;
        height: 58px;
        max-width: min(320px, 42vw);
        object-fit: contain;
      }

      .site-nav {
        margin-left: auto;
      }

      .site-nav ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 10px 18px;
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .site-nav a {
        position: relative;
        display: inline-flex;
        align-items: center;
        min-height: 40px;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-soft);
        transition: color 0.25s ease;
      }

      .site-nav a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 6px;
        width: 100%;
        height: 2px;
        transform: scaleX(0);
        transform-origin: left center;
        background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
        transition: transform 0.25s ease;
      }

      .site-nav a:hover,
      .site-nav a:focus-visible {
        color: var(--primary);
      }

      .site-nav a:hover::after,
      .site-nav a:focus-visible::after {
        transform: scaleX(1);
      }

      .hamburger {
        display: none;
        position: relative;
        z-index: 260;
        width: 50px;
        height: 50px;
        padding: 0;
        border: 1px solid var(--line-strong);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: var(--shadow-sm);
        cursor: pointer;
      }

      .hamburger__line {
        display: block;
        width: 20px;
        height: 2px;
        margin: 0 auto;
        border-radius: 999px;
        background: var(--primary-deep);
        transition:
          transform 0.25s ease,
          opacity 0.25s ease;
      }

      .hamburger__line + .hamburger__line {
        margin-top: 5px;
      }

      body.menu-open .hamburger__line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      body.menu-open .hamburger__line:nth-child(2) {
        opacity: 0;
      }

      body.menu-open .hamburger__line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      main {
        display: block;
      }

      section {
        position: relative;
        padding: 88px 0;
      }

      section:nth-of-type(odd):not(.hero):not(.cta) {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(247, 250, 255, 0.92) 100%);
      }

      section:nth-of-type(even):not(.hero):not(.cta) {
        background: transparent;
      }

      .section-head {
        position: relative;
        margin-bottom: 28px;
        padding-top: 24px;
      }

      section[data-en] .section-head::before {
        content: attr(data-en);
        position: absolute;
        left: 0;
        top: 0;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: var(--primary);
      }

      section[data-en] .section-head::after {
        content: '';
        position: absolute;
        left: 0;
        top: 11px;
        width: 54px;
        height: 1px;
        background: linear-gradient(90deg, var(--accent) 0%, rgba(242, 140, 40, 0) 100%);
        transform: translateX(108px);
      }

      .section-head h2 {
        margin: 0;
        font-size: clamp(30px, 3.2vw, 42px);
        line-height: 1.28;
        font-weight: 900;
        letter-spacing: 0.02em;
        color: var(--heading);
      }

      .hero {
        padding-top: 34px;
        padding-bottom: 56px;
        background: transparent;
      }

      .hero-visual {
        position: relative;
        overflow: hidden;
        aspect-ratio: 16 / 9;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, rgba(214, 219, 226, 0.82), rgba(195, 201, 212, 0.82)), var(--placeholder);
        box-shadow: var(--shadow-md);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 36px;
        text-align: center;
      }

      .hero-visual::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(10, 47, 88, 0.54) 0%,
          rgba(17, 74, 139, 0.40) 52%,
          rgba(17, 74, 139, 0.16) 100%
        );
      }

      .hero-visual::after {
        content: '';
        position: absolute;
        right: 16px;
        bottom: 14px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.18em;
        color: rgba(255, 255, 255, 0.6);
      }

      .hero-copy {
        position: relative;
        z-index: 1;
        max-width: 860px;
      }

      .hero-copy h1 {
        margin: 0 0 18px;
        font-size: clamp(34px, 4.7vw, 62px);
        line-height: 1.2;
        font-weight: 900;
        letter-spacing: 0.04em;
        color: #ffffff;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
      }

      .hero-copy__text {
        display: inline-block;
        max-width: 100%;
        margin: 0 auto;
        padding: 18px 20px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.16);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: #ffffff;
        font-size: 16px;
        font-weight: 500;
        box-shadow: 0 18px 40px rgba(4, 20, 39, 0.18);
      }

      .hero-copy__text p {
        margin: 0 0 10px;
      }

      .hero-copy__text p:last-child {
        margin-bottom: 0;
      }

      .hero-cta {
        margin-top: 24px;
      }

      .hero-cta .cta-actions {
        justify-content: center;
      }

      .slider-shell {
        position: relative;
        overflow: hidden;
        margin-top: 24px;
        padding: 6px 0;
        mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
      }

      .slider-shell::before,
      .slider-shell::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 70px;
        pointer-events: none;
        z-index: 1;
      }

      .slider-shell::before {
        left: 0;
        background: linear-gradient(90deg, rgba(243, 247, 252, 1) 0%, rgba(243, 247, 252, 0) 100%);
      }

      .slider-shell::after {
        right: 0;
        background: linear-gradient(270deg, rgba(243, 247, 252, 1) 0%, rgba(243, 247, 252, 0) 100%);
      }

      .slider-track {
        display: flex;
        align-items: stretch;
        gap: 18px;
        width: max-content;
        animation: slider-marquee 68s linear infinite;
        will-change: transform;
      }

      .slider-shell:hover .slider-track {
        animation-play-state: paused;
      }

      @keyframes slider-marquee {
        from {
          transform: translate3d(0, 0, 0);
        }
        to {
          transform: translate3d(calc(-1 * var(--marquee-distance, 0px)), 0, 0);
        }
      }

      .placeholder {
        position: relative;
        overflow: hidden;
        border: 1px solid var(--line-strong);
        border-radius: var(--radius-md);
        background:
          linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
          linear-gradient(180deg, #d9dde3 0%, #cfd5dd 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #5b6470;
        text-align: center;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.18em;
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.55),
          var(--shadow-sm);
      }

      .placeholder::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          120deg,
          rgba(255, 255, 255, 0.28) 0%,
          rgba(255, 255, 255, 0.04) 38%,
          rgba(255, 255, 255, 0) 100%
        );
        pointer-events: none;
      }

      .placeholder--16x9 {
        aspect-ratio: 16 / 9;
      }

      .placeholder--4x3 {
        aspect-ratio: 4 / 3;
      }

      .about-block > img,
      .closing-block > img,
      .work-media > img,
      .card > img {
        display: block;
        width: 100% !important;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border: 1px solid var(--line-strong);
        border-radius: var(--radius-md);
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.55),
          var(--shadow-sm);
      }

      .card > img {
        margin-bottom: 18px;
      }

      .about-block > img,
      .closing-block > img {
        width: min(100%, 760px) !important;
        margin: 0 auto 18px;
      }

      .slider-track .placeholder--4x3 {
        flex: 0 0 clamp(180px, 22vw, 240px);
      }

      .about-block,
      .closing-block {
        width: min(100%, 820px);
        margin: 0 auto;
        box-sizing: border-box;
        padding: 30px;
        border: 1px solid rgba(216, 226, 239, 0.85);
        border-radius: var(--radius-lg);
        background: var(--surface);
        box-shadow: var(--shadow-sm);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
      }

      .about-block > .placeholder,
      .closing-block > .placeholder {
        margin-bottom: 22px;
      }

      .about-block p,
      .closing-block p,
      .work-body p,
      .card p,
      .works-intro p {
        max-width: 100%;
        margin: 0 0 12px;
        font-weight: 400;
        overflow-wrap: anywhere;
      }

      .about-block p:last-child,
      .closing-block p:last-child,
      .works-intro p:last-child,
      .work-body p:last-child,
      .card p:last-child {
        margin-bottom: 0;
      }

      .welcome-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 16px;
      }

      .welcome-list li {
        position: relative;
        padding: 20px 22px 20px 66px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: var(--surface-solid);
        box-shadow: var(--shadow-sm);
        font-size: 17px;
        font-weight: 500;
      }

      .welcome-list li::before {
        content: '';
        position: absolute;
        left: 22px;
        top: 50%;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent) 0%, #ffb35f 100%);
        transform: translateY(-50%);
        box-shadow: 0 8px 18px rgba(242, 140, 40, 0.28);
      }

      .welcome-list li::after {
        content: '';
        position: absolute;
        left: 32px;
        top: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: translateY(-60%) rotate(45deg);
      }

      .works-intro {
        margin-bottom: 30px;
        padding: 28px 30px;
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 246, 253, 0.92) 100%);
        box-shadow: var(--shadow-sm);
      }

      .works-list {
        display: grid;
        gap: 28px;
      }

      .work-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        align-items: stretch;
        padding: 30px;
        border: 1px solid rgba(216, 226, 239, 0.9);
        border-radius: var(--radius-lg);
        background: var(--surface-solid);
        box-shadow: var(--shadow-sm);
      }

      .work-item.reverse .work-media {
        order: 2;
      }

      .work-item.reverse .work-body {
        order: 1;
      }

      .work-media,
      .work-body {
        min-width: 0;
      }

      .work-body {
        align-self: center;
      }

      .work-body h3,
      .card h3 {
        margin: 0 0 14px;
        color: var(--heading);
        font-size: 24px;
        line-height: 1.4;
        font-weight: 700;
      }

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

      .card {
        display: flex;
        flex-direction: column;
        padding: 22px;
        border: 1px solid rgba(216, 226, 239, 0.92);
        border-radius: var(--radius-md);
        background: var(--surface-solid);
        box-shadow: var(--shadow-sm);
      }

      .card .placeholder {
        margin-bottom: 18px;
      }

      .cta {
        padding: 28px 0;
        background: transparent;
      }

      .cta-box {
        position: relative;
        overflow: hidden;
        padding: 32px;
        border: 1px solid rgba(17, 74, 139, 0.12);
        border-radius: 26px;
        background:
          radial-gradient(circle at left top, rgba(242, 140, 40, 0.12), transparent 28%),
          linear-gradient(135deg, rgba(16, 61, 112, 0.06) 0%, rgba(17, 74, 139, 0.1) 100%), #ffffff;
        text-align: center;
        box-shadow: var(--shadow-md);
      }

      .cta-title {
        margin: 0 0 10px;
        color: var(--heading);
        font-size: clamp(24px, 3vw, 34px);
        font-weight: 900;
        line-height: 1.35;
      }

      .cta-copy {
        margin: 0 0 22px;
        color: var(--text-soft);
        font-size: 15px;
        font-weight: 500;
      }

      .cta-actions {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
      }

      .cta-actions a {
        min-width: 240px;
        min-height: 56px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 24px;
        border-radius: 999px;
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 0.03em;
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease,
          background-color 0.25s ease,
          color 0.25s ease,
          border-color 0.25s ease;
      }

      .cta-actions a:first-child {
        border: 1px solid transparent;
        background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
        color: #ffffff;
        box-shadow: 0 14px 30px rgba(17, 74, 139, 0.28);
      }

      .cta-actions a:last-child {
        border: 1px solid rgba(17, 74, 139, 0.22);
        background: #ffffff;
        color: var(--primary);
        box-shadow: 0 12px 26px rgba(11, 41, 79, 0.08);
      }

      .cta-actions a:hover,
      .cta-actions a:focus-visible {
        transform: translateY(-2px);
      }

      .timeline-card,
      .requirements-card,
      .contact-form {
        border: 1px solid rgba(216, 226, 239, 0.92);
        border-radius: var(--radius-lg);
        background: var(--surface-solid);
        box-shadow: var(--shadow-sm);
      }

      .timeline-card {
        padding: 28px 28px 18px;
      }

      .timeline {
        list-style: none;
        margin: 0;
        padding: 0;
      }

      .timeline li {
        position: relative;
        display: grid;
        grid-template-columns: 116px 1fr;
        gap: 22px;
        padding: 18px 0 18px 20px;
        border-bottom: 1px solid var(--line);
      }

      .timeline li::before {
        content: '';
        position: absolute;
        left: 2px;
        top: 26px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent) 0%, #ffb35f 100%);
        box-shadow: 0 0 0 6px rgba(242, 140, 40, 0.14);
      }

      .timeline li::after {
        content: '';
        position: absolute;
        left: 6px;
        top: 36px;
        bottom: -18px;
        width: 2px;
        background: linear-gradient(180deg, rgba(17, 74, 139, 0.25) 0%, rgba(17, 74, 139, 0.05) 100%);
      }

      .timeline li:first-child {
        padding-top: 6px;
      }

      .timeline li:last-child {
        border-bottom: 0;
        padding-bottom: 8px;
      }

      .timeline li:last-child::after {
        display: none;
      }

      .timeline time {
        display: inline-flex;
        align-items: center;
        color: var(--primary);
        font-weight: 700;
        white-space: nowrap;
      }

      .requirements-card {
        overflow: hidden;
      }

      .requirements-row {
        display: grid;
        grid-template-columns: 220px 1fr;
        border-bottom: 1px solid var(--line);
      }

      .requirements-row:last-child {
        border-bottom: 0;
      }

      .requirements-label,
      .requirements-detail {
        padding: 20px 22px;
      }

      .requirements-label {
        background: linear-gradient(180deg, #f8fbff 0%, #f2f7fd 100%);
        color: var(--heading);
        font-weight: 700;
      }

      .requirements-detail p {
        margin: 0 0 10px;
      }

      .requirements-detail p:last-child {
        margin-bottom: 0;
      }

      .contact-form {
        padding: 30px;
      }

      .form-grid {
        display: grid;
        gap: 18px;
      }

      .form-field label {
        display: block;
        margin-bottom: 8px;
        color: var(--heading);
        font-weight: 700;
      }

      .form-field input,
      .form-field textarea {
        width: 100%;
        border: 1px solid var(--line-strong);
        border-radius: 14px;
        background: #fdfefe;
        padding: 14px 16px;
        color: var(--text);
        font: inherit;
        transition:
          border-color 0.2s ease,
          box-shadow 0.2s ease,
          background-color 0.2s ease;
      }

      .form-field input:focus,
      .form-field textarea:focus {
        outline: none;
        border-color: rgba(17, 74, 139, 0.45);
        box-shadow: 0 0 0 4px rgba(17, 74, 139, 0.12);
        background: #ffffff;
      }

      .form-field textarea {
        min-height: 170px;
        resize: vertical;
      }

      .site-footer {
        padding: 28px 0 48px;
        color: var(--text-soft);
        text-align: center;
        font-size: 14px;
        font-weight: 500;
      }

      @media (max-width: 1100px) {
        .site-nav ul {
          gap: 8px 14px;
        }

        .site-nav a {
          font-size: 13px;
        }

        .cards {
          grid-template-columns: 1fr;
        }

        .section-head h2 {
          font-size: clamp(28px, 3vw, 38px);
        }
      }

      @media (max-width: 900px) {
        :root {
          --header-height: 80px;
        }

        section {
          padding: 76px 0;
        }

        .work-item {
          grid-template-columns: 1fr;
        }

        .work-item.reverse .work-media,
        .work-item.reverse .work-body {
          order: initial;
        }

        .requirements-row {
          grid-template-columns: 1fr;
        }

        .requirements-label {
          border-bottom: 1px solid var(--line);
        }

        .timeline li {
          grid-template-columns: 100px 1fr;
        }
      }

      @media (max-width: 768px) {
        :root {
          --header-height: 76px;
          --container: min(1120px, calc(100% - 28px));
        }

        body.menu-open {
          overflow: hidden;
        }

        section {
          padding: 62px 0;
        }

        .site-header__inner {
          gap: 14px;
        }

        .site-nav {
          display: none;
          position: absolute;
          top: calc(100% + 10px);
          left: 14px;
          right: 14px;
          z-index: 250;
          opacity: 0;
          visibility: hidden;
          transform: translateY(-8px);
          pointer-events: none;
          transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
        }

        .site-nav ul {
          display: grid;
          grid-template-columns: 1fr;
          gap: 6px;
          padding: 12px;
          border: 1px solid var(--line);
          border-radius: 20px;
          background: rgba(255, 255, 255, 0.98);
          box-shadow: var(--shadow-md);
        }

        .site-nav li {
          width: 100%;
        }

        .site-nav a {
          display: flex;
          width: 100%;
          min-height: 48px;
          padding: 0 12px;
          border-radius: 12px;
          font-size: 15px;
          justify-content: flex-start;
        }

        .site-nav a::after {
          display: none;
        }

        .site-nav.is-open {
          display: block;
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
          pointer-events: auto;
        }

        .site-nav.is-open ul {
          display: flex;
          flex-direction: column;
          align-items: stretch;
          justify-content: flex-start;
        }

        .hamburger {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          flex-shrink: 0;
        }

        .hero {
          padding-top: 22px;
          padding-bottom: 48px;
        }

        .hero-visual {
          aspect-ratio: auto;
          min-height: 0;
          align-items: flex-start;
          padding: 20px 14px;
        }

        .hero-copy {
          width: 100%;
          max-width: none;
        }

        .hero-copy h1 {
          margin: 0 0 12px;
          font-size: clamp(19px, 6.4vw, 26px);
          line-height: 1.25;
        }

        .hero-copy h1 span {
          font-size: inherit !important;
        }

        .hero-copy__text {
          padding: 12px;
          font-size: 13px;
          line-height: 1.6;
        }

        .hero-copy__text p {
          margin: 0 0 8px;
        }

        .hero-cta {
          margin-top: 14px;
        }

        .hero-cta .cta-actions {
          flex-direction: row;
          gap: 10px;
        }

        .hero-cta .cta-actions a {
          flex: 1 1 0;
          width: auto;
          min-width: 0;
          min-height: 44px;
          padding: 12px 10px;
          font-size: 13px;
        }

        .slider-track .placeholder--4x3 {
          flex-basis: 200px;
        }

        .about-block,
        .closing-block,
        .works-intro,
        .work-item,
        .card,
        .timeline-card,
        .contact-form {
          padding: 22px 18px;
        }

        .about-block,
        .closing-block {
          width: min(100%, 760px);
        }

        .section-head {
          margin-bottom: 22px;
          padding-top: 22px;
        }

        section[data-en] .section-head::before {
          font-size: 11px;
          letter-spacing: 0.22em;
        }

        section[data-en] .section-head::after {
          width: 42px;
          transform: translateX(92px);
        }

        .section-head h2 {
          font-size: 28px;
        }

        .work-item,
        .card {
          gap: 16px;
        }

        .work-item .work-media,
        .work-item .work-body,
        .card .placeholder {
          order: initial;
        }

        .cta-box {
          padding: 24px 18px;
        }

        .cta-actions {
          flex-direction: column;
        }

        .cta-actions a {
          width: 100%;
          min-width: 0;
        }

        .timeline li {
          grid-template-columns: 1fr;
          gap: 6px;
          padding-left: 18px;
        }

        .timeline li::before {
          top: 18px;
        }

        .timeline li::after {
          top: 28px;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
          scroll-behavior: auto !important;
        }
      }

      @media (max-width: 768px) {
        .site-header,
        .site-header__inner {
          overflow: visible !important;
        }

        .hamburger {
          display: inline-flex !important;
          visibility: visible !important;
          opacity: 1 !important;
          pointer-events: auto !important;
          position: relative !important;
          z-index: 320 !important;
        }

        .site-nav {
          display: none !important;
          position: absolute !important;
          top: calc(100% + 10px) !important;
          left: 14px !important;
          right: 14px !important;
          width: auto !important;
          margin-left: 0 !important;
          opacity: 0 !important;
          visibility: hidden !important;
          transform: translateY(-8px) !important;
          pointer-events: none !important;
          z-index: 310 !important;
        }

        .site-nav.is-open {
          display: block !important;
          opacity: 1 !important;
          visibility: visible !important;
          transform: translateY(0) !important;
          pointer-events: auto !important;
        }

        .site-nav ul,
        .site-nav.is-open ul {
          display: flex !important;
          flex-direction: column !important;
          align-items: stretch !important;
          justify-content: flex-start !important;
          gap: 6px !important;
          padding: 12px !important;
        }

        .site-nav li,
        .site-nav a {
          width: 100% !important;
        }

        .site-nav a {
          display: flex !important;
          justify-content: flex-start !important;
          min-height: 48px !important;
        }

      }


.form-error {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(214, 83, 83, 0.28);
  border-radius: 14px;
  background: #fff3f3;
  color: #9a1f1f;
  font-weight: 700;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-actions {
  margin-top: 18px;
}

.form-submit {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #ffb35f 100%);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 16px 34px rgba(242, 140, 40, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(242, 140, 40, 0.34);
  filter: brightness(1.02);
}
