      :root {
        --ink: #f4f7fb;
        --ink-soft: #c8d1dc;
        --muted: #8f9ba8;
        --paper: #161719;
        --surface: #242930;
        --surface-2: #1e2228;
        --line: rgba(154, 174, 190, 0.2);
        --blue: #22bdd8;
        --teal: #16d5c3;
        --green: #47c878;
        --amber: #ff7b0a;
        --coral: #ff9b3d;
        --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
        --radius: 8px;
        color-scheme: dark;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
        overflow-x: hidden;
      }

      body {
        margin: 0;
        font-family:
          Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial,
          sans-serif;
        color: var(--ink);
        background:
          radial-gradient(circle at 12% 0%, rgba(34, 189, 216, 0.16), transparent 34%),
          radial-gradient(circle at 88% 8%, rgba(255, 123, 10, 0.12), transparent 30%),
          var(--paper);
        overflow-x: hidden;
      }

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

      button,
      input,
      textarea {
        font: inherit;
      }

      .site-header {
        position: sticky;
        top: 0;
        z-index: 30;
        border-bottom: 1px solid rgba(154, 174, 190, 0.18);
        background: rgba(22, 23, 25, 0.88);
        backdrop-filter: blur(18px);
      }

      .nav {
        width: min(1180px, calc(100% - 40px));
        min-height: 72px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
      }

      .brand {
        display: inline-flex;
        align-items: center;
      }

      .brand img {
        width: 178px;
        height: auto;
        max-height: 54px;
        border-radius: 0;
        object-fit: contain;
        background: transparent;
        box-shadow: none;
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 22px;
        color: var(--ink-soft);
        font-size: 14px;
        font-weight: 650;
      }

      .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .icon-button {
        display: none;
        width: 42px;
        height: 42px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--surface);
        color: var(--ink);
        cursor: pointer;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        min-height: 44px;
        padding: 0 18px;
        border: 1px solid transparent;
        border-radius: 8px;
        font-weight: 760;
        cursor: pointer;
        transition:
          transform 0.18s ease,
          box-shadow 0.18s ease,
          background 0.18s ease;
      }

      .btn:hover {
        transform: translateY(-1px);
      }

      .btn-primary {
        background: linear-gradient(135deg, var(--amber), #ff9b3d);
        color: #fff;
        box-shadow: 0 14px 28px rgba(255, 123, 10, 0.22);
      }

      .btn-secondary {
        border-color: var(--line);
        background: rgba(36, 41, 48, 0.78);
        color: var(--ink);
      }

      main {
        overflow: hidden;
      }

      .hero {
        min-height: calc(100svh - 72px);
        display: grid;
        align-items: center;
        border-bottom: 1px solid var(--line);
      }

      .hero-inner {
        width: min(1180px, calc(100% - 40px));
        margin: 0 auto;
        padding: 58px 0 54px;
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
        gap: 44px;
        align-items: center;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        width: max-content;
        max-width: 100%;
        gap: 8px;
        margin: 0 0 18px;
        padding: 7px 10px;
        border: 1px solid rgba(34, 189, 216, 0.38);
        border-radius: 8px;
        color: #91f1ff;
        background: rgba(34, 189, 216, 0.1);
        font-size: 13px;
        font-weight: 760;
      }

      .eyebrow::before {
        content: "";
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: var(--teal);
      }

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

      h1 {
        max-width: 720px;
        font-size: clamp(42px, 5vw, 72px);
        line-height: 0.96;
        letter-spacing: 0;
      }

      h1::after {
        content: "";
        display: block;
        width: 118px;
        height: 5px;
        margin-top: 22px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--blue), var(--amber));
      }

      .lead {
        max-width: 640px;
        margin-top: 24px;
        color: var(--ink-soft);
        font-size: clamp(17px, 1.6vw, 21px);
        line-height: 1.55;
      }

      .hero-actions {
        margin-top: 34px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
      }

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

      .proof {
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(36, 41, 48, 0.78);
      }

      .proof strong {
        display: block;
        font-size: 28px;
        line-height: 1;
      }

      .proof span {
        display: block;
        margin-top: 6px;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.35;
      }

      .hero-visual {
        position: relative;
        min-height: 560px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow);
        background: #232932;
      }

      .hero-visual img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(1.08) brightness(0.78);
      }

      .hero-visual::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(90deg, rgba(22, 23, 25, 0.24), transparent 46%),
          linear-gradient(0deg, rgba(22, 23, 25, 0.3), transparent 40%);
        pointer-events: none;
      }

      .visual-panel {
        position: absolute;
        z-index: 2;
        left: 18px;
        right: 18px;
        bottom: 18px;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 12px;
      }

      .visual-chip {
        padding: 15px;
        border: 1px solid rgba(171, 207, 220, 0.28);
        border-radius: 8px;
        background: rgba(28, 32, 38, 0.82);
        backdrop-filter: blur(16px);
      }

      .visual-chip b {
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
      }

      .visual-chip span {
        color: var(--ink-soft);
        font-size: 13px;
        line-height: 1.45;
      }

      .section {
        padding: 88px 0;
      }

      .section.alt {
        background: rgba(30, 34, 40, 0.72);
      }

      .video-showcase {
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
        gap: 34px;
        align-items: center;
      }

      .video-copy p {
        margin-top: 18px;
        color: var(--ink-soft);
        font-size: 17px;
        line-height: 1.6;
      }

      .video-points {
        margin: 26px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
        color: var(--ink-soft);
      }

      .video-points li {
        position: relative;
        padding-left: 22px;
      }

      .video-points li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.62em;
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--amber);
      }

      .video-window {
        position: relative;
        min-height: 390px;
        border: 1px solid rgba(154, 174, 190, 0.24);
        border-radius: 8px;
        overflow: hidden;
        background: #20252c;
        box-shadow: var(--shadow);
      }

      .video-window img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(1.1) brightness(0.54);
      }

      .video-window::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(135deg, rgba(34, 189, 216, 0.24), transparent 44%),
          linear-gradient(0deg, rgba(22, 23, 25, 0.76), transparent 58%);
      }

      .video-bar {
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        right: 0;
        height: 42px;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(22, 23, 25, 0.74);
      }

      .video-dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
      }

      .video-dot:nth-child(1) {
        background: var(--coral);
      }

      .video-dot:nth-child(2) {
        background: var(--amber);
      }

      .video-dot:nth-child(3) {
        background: var(--blue);
      }

      .video-content {
        position: absolute;
        z-index: 2;
        left: 24px;
        right: 24px;
        bottom: 24px;
        display: grid;
        gap: 16px;
      }

      .video-content h3 {
        max-width: 520px;
        font-size: clamp(26px, 3vw, 40px);
        line-height: 1.05;
      }

      .video-content p {
        max-width: 500px;
        color: rgba(255, 255, 255, 0.76);
        line-height: 1.55;
      }

      .play-button {
        width: 70px;
        height: 70px;
        border: 0;
        border-radius: 999px;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg, var(--amber), #ff9b3d);
        color: #fff;
        cursor: pointer;
        box-shadow: 0 18px 36px rgba(255, 123, 10, 0.3);
      }

      .play-button svg {
        transform: translateX(2px);
      }

      .video-modal {
        position: fixed;
        inset: 0;
        z-index: 60;
        display: none;
        place-items: center;
        padding: 22px;
        background: rgba(7, 9, 12, 0.82);
      }

      .video-modal[data-open="true"] {
        display: grid;
      }

      .video-dialog {
        width: min(960px, 100%);
        border: 1px solid var(--line);
        border-radius: 8px;
        overflow: hidden;
        background: var(--surface);
        box-shadow: var(--shadow);
      }

      .video-dialog-head {
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 0 16px;
        border-bottom: 1px solid var(--line);
      }

      .video-dialog-head strong {
        color: var(--ink);
      }

      .video-close {
        width: 38px;
        height: 38px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--surface-2);
        color: var(--ink);
        cursor: pointer;
      }

      .video-embed {
        aspect-ratio: 16 / 9;
        background:
          linear-gradient(135deg, rgba(34, 189, 216, 0.16), transparent 44%),
          #15181d;
      }

      .video-embed iframe {
        width: 100%;
        height: 100%;
        border: 0;
      }

      .callback-embed {
        width: min(1040px, 100%);
        height: 480px;
        overflow: hidden;
        background: #24292f;
        margin: 0 auto;
      }

      .callback-embed iframe {
        width: 1440px;
        max-width: none;
        height: 620px;
        border: 0;
        display: block;
        margin-left: calc((100% - 1440px) / 2);
        margin-top: -76px;
      }

      .inline-form {
        width: min(860px, 100%);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        border: 1px solid transparent;
        border-radius: 8px;
        transition:
          max-height 0.28s ease,
          opacity 0.18s ease,
          border-color 0.18s ease;
      }

      .inline-form[data-open="true"] {
        max-height: 720px;
        opacity: 1;
        border-color: var(--line);
      }

      .video-placeholder {
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        padding: 28px;
        text-align: center;
      }

      .video-placeholder p {
        max-width: 560px;
        color: var(--ink-soft);
        line-height: 1.6;
      }

      .wrap {
        width: min(1180px, calc(100% - 40px));
        margin: 0 auto;
      }

      .partners-showcase {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
        gap: 34px;
        align-items: center;
      }

      .partner-copy p.lead {
        margin-top: 18px;
      }

      .partner-copy .hero-actions {
        margin-top: 28px;
      }

      .partner-cert {
        border: 1px solid var(--line);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow);
      }

      .partner-cert img {
        display: block;
        width: 100%;
        height: auto;
      }

      .section-head {
        display: grid;
        grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr);
        gap: 32px;
        align-items: end;
        margin-bottom: 34px;
      }

      h2 {
        font-size: clamp(30px, 3vw, 48px);
        line-height: 1.05;
        letter-spacing: 0;
      }

      .section-head p {
        color: var(--ink-soft);
        font-size: 17px;
        line-height: 1.6;
      }

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

      .service-card,
      .price-card,
      .platform-card,
      .case-card,
      .faq-item,
      .solution-card,
      .industry-card,
      .trust-card,
      .career-card {
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--surface);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
      }

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

      .career-card {
        padding: 24px;
        display: grid;
        gap: 14px;
        align-content: start;
      }

      .career-card .package-label {
        margin-bottom: 0;
      }

      .career-card h3 {
        color: var(--amber);
        font-size: 21px;
      }

      .career-card p {
        color: var(--muted);
        line-height: 1.55;
      }

      .career-card ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
        color: var(--ink-soft);
        font-size: 14px;
      }

      .career-card li {
        position: relative;
        padding-left: 18px;
      }

      .career-card li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.6em;
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: var(--teal);
      }

      .career-card .btn {
        width: max-content;
        margin-top: 4px;
      }

      .service-card {
        min-height: 250px;
        padding: 22px;
        display: flex;
        flex-direction: column;
      }

      .service-mark {
        width: 42px;
        height: 42px;
        margin-bottom: 20px;
        border-radius: 8px;
        display: grid;
        place-items: center;
        color: #fff;
        font-weight: 900;
      }

      .service-card:nth-child(1) .service-mark,
      .price-card.featured .package-label {
        background: var(--blue);
      }

      .service-card:nth-child(2) .service-mark {
        background: var(--teal);
      }

      .service-card:nth-child(3) .service-mark {
        background: var(--green);
      }

      .service-card:nth-child(4) .service-mark {
        background: var(--amber);
      }

      .service-card:nth-child(5) .service-mark {
        background: var(--coral);
      }

      .service-card:nth-child(6) .service-mark {
        background: #7380ff;
      }

      h3 {
        font-size: 21px;
        line-height: 1.2;
      }

      .service-card p,
      .case-card p,
      .price-card p,
      .faq-item p {
        margin-top: 12px;
        color: var(--muted);
        line-height: 1.55;
      }

      .service-card ul,
      .price-card ul {
        margin: auto 0 0;
        padding: 22px 0 0;
        list-style: none;
        display: grid;
        gap: 10px;
        color: var(--ink-soft);
        font-size: 14px;
      }

      .service-card li,
      .price-card li {
        position: relative;
        padding-left: 18px;
      }

      .service-card li::before,
      .price-card li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.6em;
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: var(--teal);
      }

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

      .platform-card {
        min-height: 250px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        background: var(--surface);
      }

      .platform-card.featured {
        border-color: rgba(255, 123, 10, 0.48);
        background:
          linear-gradient(145deg, rgba(255, 123, 10, 0.12), transparent 44%),
          var(--surface);
      }

      .platform-label {
        width: max-content;
        max-width: 100%;
        padding: 7px 10px;
        border-radius: 8px;
        background: rgba(34, 189, 216, 0.12);
        color: var(--blue);
        font-size: 13px;
        font-weight: 850;
      }

      .platform-card.featured .platform-label {
        background: rgba(255, 123, 10, 0.16);
        color: var(--coral);
      }

      .platform-card p {
        color: var(--muted);
        line-height: 1.55;
      }

      .platform-card ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
        color: var(--ink-soft);
        font-size: 14px;
      }

      .platform-card li {
        position: relative;
        padding-left: 18px;
      }

      .platform-card li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.6em;
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: var(--amber);
      }

      .platform-links {
        margin-top: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .platform-link {
        width: max-content;
        max-width: 100%;
        min-height: 42px;
        padding: 0 14px;
        border: 1px solid rgba(34, 189, 216, 0.4);
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #91f1ff;
        background: rgba(34, 189, 216, 0.1);
        font-size: 14px;
        font-weight: 820;
        text-align: center;
      }

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

      .solution-card {
        min-height: 230px;
        padding: 22px;
        display: grid;
        align-content: space-between;
        gap: 22px;
      }

      .solution-card p,
      .industry-card p,
      .trust-card p {
        color: var(--muted);
        line-height: 1.55;
      }

      .solution-card a {
        width: max-content;
        max-width: 100%;
        color: var(--blue);
        font-weight: 800;
      }

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

      .industry-card {
        min-height: 210px;
        padding: 22px;
      }

      .industry-card span {
        display: inline-flex;
        margin-bottom: 18px;
        padding: 7px 10px;
        border-radius: 8px;
        background: rgba(34, 189, 216, 0.12);
        color: var(--blue);
        font-size: 13px;
        font-weight: 850;
      }

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

      .trust-card {
        padding: 20px;
        background: var(--surface);
      }

      .trust-card strong {
        display: block;
        margin-bottom: 10px;
        font-size: 30px;
        line-height: 1;
        color: var(--amber);
      }

      .cases {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 14px;
      }

      .case-card {
        padding: 26px;
      }

      .case-card.large {
        min-height: 420px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: #fff;
        background:
          linear-gradient(140deg, rgba(15, 17, 20, 0.9), rgba(15, 17, 20, 0.5)),
          url("assets/hero-crm-automation.png") center / cover;
        border: 0;
      }

      .case-card.large p,
      .case-card.large .case-stat span {
        color: rgba(255, 255, 255, 0.82);
      }

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

      .case-stat {
        display: grid;
        gap: 5px;
      }

      .case-stat strong {
        font-size: 36px;
        line-height: 1;
        color: var(--amber);
      }

      .process {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1px;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--line);
      }

      .format-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-top: 14px;
      }

      .format-grid .step {
        min-height: 220px;
        border: 1px solid var(--line);
        border-radius: 8px;
      }

      .step {
        min-height: 250px;
        padding: 24px;
        background: var(--surface);
      }

      .step span {
        display: inline-grid;
        place-items: center;
        width: 36px;
        height: 36px;
        margin-bottom: 40px;
        border-radius: 8px;
        background: rgba(34, 189, 216, 0.12);
        color: var(--blue);
        font-weight: 850;
      }

      .step p {
        margin-top: 12px;
        color: var(--muted);
        line-height: 1.52;
      }

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

      .price-card {
        padding: 24px;
      }

      .price-card.featured {
        border-color: rgba(255, 123, 10, 0.48);
        box-shadow: var(--shadow);
      }

      .package-label {
        display: inline-flex;
        margin-bottom: 18px;
        padding: 7px 10px;
        border-radius: 8px;
        background: rgba(34, 189, 216, 0.12);
        color: var(--ink);
        font-size: 13px;
        font-weight: 800;
      }

      .price-card.featured .package-label {
        color: #fff;
      }

      .price {
        margin-top: 18px;
        font-size: 34px;
        line-height: 1;
        font-weight: 860;
        color: var(--amber);
      }

      .price small {
        color: var(--muted);
        font-size: 14px;
        font-weight: 650;
      }

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

      .faq-item {
        padding: 22px;
      }

      .contact {
        display: grid;
        grid-template-columns: 0.84fr 1.16fr;
        gap: 38px;
        align-items: start;
      }

      .contact-note {
        padding: 28px;
        border-radius: 8px;
        background:
          linear-gradient(145deg, rgba(34, 189, 216, 0.14), transparent 42%),
          #20252c;
        color: #fff;
      }

      .contact-note p {
        margin-top: 14px;
        color: rgba(255, 255, 255, 0.76);
        line-height: 1.6;
      }

      .contacts-list {
        margin-top: 26px;
        display: grid;
        gap: 12px;
      }

      .contacts-list a {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 13px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        color: #fff;
        font-weight: 760;
      }

      .form {
        display: grid;
        gap: 14px;
        padding: 24px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--surface);
        box-shadow: var(--shadow);
      }

      .legal-text {
        color: var(--muted);
        font-size: 13px;
        line-height: 1.55;
      }

      .callback-card {
        min-height: 310px;
        display: grid;
        align-content: center;
        justify-items: start;
        gap: 20px;
      }

      .callback-card h3 {
        font-size: clamp(28px, 3vw, 42px);
        line-height: 1.05;
      }

      .callback-card p {
        color: var(--ink-soft);
        line-height: 1.6;
      }

      .legal-text a,
      .footer-links a {
        color: var(--blue);
        font-weight: 760;
      }

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

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

      .segment input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
      }

      .segment span {
        min-height: 44px;
        display: grid;
        place-items: center;
        padding: 0 12px;
        border: 1px solid rgba(154, 174, 190, 0.28);
        border-radius: 8px;
        background: var(--surface-2);
        color: var(--ink-soft);
        text-align: center;
        font-size: 14px;
        font-weight: 800;
        cursor: pointer;
      }

      .segment input:checked + span {
        border-color: var(--blue);
        background: rgba(34, 189, 216, 0.12);
        color: var(--blue);
      }

      label,
      .form-group {
        display: grid;
        gap: 7px;
        color: var(--ink-soft);
        font-size: 14px;
        font-weight: 740;
      }

      input,
      textarea {
        width: 100%;
        border: 1px solid rgba(154, 174, 190, 0.28);
        border-radius: 8px;
        background: var(--surface-2);
        color: var(--ink);
        outline: none;
      }

      input::placeholder,
      textarea::placeholder {
        color: #6f7b88;
      }

      input {
        height: 48px;
        padding: 0 13px;
      }

      textarea {
        min-height: 130px;
        resize: vertical;
        padding: 12px 13px;
      }

      input:focus,
      textarea:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 4px rgba(34, 189, 216, 0.16);
      }

      .form-status {
        min-height: 20px;
        color: var(--muted);
        font-size: 14px;
      }

      .site-footer {
        padding: 30px 0;
        border-top: 1px solid var(--line);
        color: var(--muted);
        font-size: 14px;
      }

      .footer-inner {
        width: min(1180px, calc(100% - 40px));
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 20px;
      }

      .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 14px;
      }

      .cookie-notice {
        position: fixed;
        left: 18px;
        right: 18px;
        bottom: 18px;
        z-index: 40;
        width: min(760px, calc(100% - 36px));
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(30, 34, 40, 0.96);
        box-shadow: var(--shadow);
        display: none;
        grid-template-columns: 1fr auto;
        gap: 14px;
        align-items: center;
      }

      .cookie-notice[data-visible="true"] {
        display: grid;
      }

      .cookie-notice p {
        color: var(--ink-soft);
        font-size: 13px;
        line-height: 1.45;
      }

      @media (max-width: 980px) {
        .nav-links,
        .nav-actions .btn {
          display: none;
        }

        .icon-button {
          display: grid;
          place-items: center;
        }

        .nav[data-open="true"] {
          align-items: flex-start;
          padding: 15px 0;
          flex-wrap: wrap;
        }

        .nav[data-open="true"] .nav-links {
          order: 3;
          display: grid;
          width: 100%;
          gap: 0;
          border: 1px solid var(--line);
          border-radius: 8px;
          background: var(--surface);
        }

        .nav[data-open="true"] .nav-links a {
          padding: 14px;
          border-bottom: 1px solid var(--line);
        }

        .nav[data-open="true"] .nav-links a:last-child {
          border-bottom: 0;
        }

        .hero-inner,
        .section-head,
        .video-showcase,
        .partners-showcase,
        .cases,
        .contact {
          grid-template-columns: 1fr;
        }

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

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

        .services-grid,
        .pricing,
        .platform-grid,
        .solutions,
        .industry-grid,
        .trust-strip,
        .format-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

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

      @media (max-width: 680px) {
        .nav,
        .wrap,
        .footer-inner,
        .hero-inner {
          width: min(100% - 24px, 1180px);
        }

        .nav {
          min-height: 62px;
          gap: 12px;
        }

        .brand img {
          width: 128px;
        }

        .hero {
          min-height: auto;
        }

        .hero-inner {
          gap: 22px;
          padding: 26px 0 34px;
        }

        h1 {
          font-size: 34px;
          line-height: 1.04;
        }

        h1::after {
          width: 84px;
          height: 4px;
          margin-top: 16px;
        }

        h2 {
          font-size: 29px;
          line-height: 1.08;
        }

        h3 {
          font-size: 19px;
        }

        .lead {
          margin-top: 18px;
          font-size: 16px;
          line-height: 1.5;
        }

        .eyebrow {
          width: fit-content;
          max-width: 100%;
          white-space: normal;
        }

        .btn {
          min-width: 0;
          white-space: normal;
          text-align: center;
        }

        .solution-card a {
          width: auto;
        }

        .nav-links a,
        .legal-text a,
        .footer-links a {
          overflow-wrap: anywhere;
        }

        .proof-row,
        .services-grid,
        .pricing,
        .platform-grid,
        .solutions,
        .industry-grid,
        .trust-strip,
        .format-grid,
        .process,
        .faq-grid,
        .careers-grid,
        .form-row,
        .segment {
          grid-template-columns: 1fr;
        }

        .proof-row {
          margin-top: 22px;
          gap: 10px;
        }

        .proof {
          padding: 12px;
        }

        .proof strong,
        .trust-card strong {
          font-size: 24px;
        }

        .hero-actions .btn {
          width: 100%;
        }

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

        .video-window {
          min-height: 300px;
        }

        .video-content {
          left: 18px;
          right: 18px;
          bottom: 18px;
          gap: 12px;
        }

        .video-content h3 {
          font-size: 24px;
        }

        .video-content p {
          font-size: 14px;
        }

        .play-button {
          width: 58px;
          height: 58px;
        }

        .visual-panel {
          grid-template-columns: 1fr;
        }

        .visual-chip:nth-child(2) {
          display: none;
        }

        .section {
          padding: 48px 0;
        }

        .section-head {
          gap: 16px;
          margin-bottom: 22px;
        }

        .service-card,
        .platform-card,
        .solution-card,
        .industry-card,
        .price-card,
        .case-card,
        .faq-item,
        .step,
        .trust-card,
        .career-card {
          padding: 18px;
        }

        .service-card,
        .platform-card,
        .solution-card,
        .industry-card,
        .step {
          min-height: auto;
        }

        .case-stat strong,
        .price {
          font-size: 28px;
        }

        .case-card.large {
          min-height: 320px;
          padding: 20px;
        }

        .contact {
          gap: 18px;
        }

        .contact-note,
        .form {
          padding: 20px;
        }

        .contacts-list {
          margin-top: 20px;
          gap: 6px;
        }

        .contacts-list a {
          display: grid;
          justify-content: start;
          gap: 4px;
          padding: 12px 0;
        }

        .contacts-list a span:last-child {
          overflow-wrap: anywhere;
        }

        .callback-card {
          min-height: auto;
          gap: 16px;
        }

        .callback-card h3 {
          font-size: 29px;
        }

        .callback-card .btn {
          width: 100%;
        }

        .legal-text {
          font-size: 12px;
        }

        .footer-inner {
          display: grid;
        }

        .footer-links {
          justify-content: flex-start;
        }

        .cookie-notice {
          grid-template-columns: 1fr;
          left: 12px;
          right: 12px;
          bottom: 12px;
          width: calc(100% - 24px);
          padding: 14px;
        }

        .video-modal {
          padding: 12px;
        }

        .video-dialog-head {
          min-height: 50px;
          padding: 0 12px;
        }

        .video-dialog-head strong {
          font-size: 14px;
        }

        .callback-embed {
          width: 100%;
          height: min(500px, calc(100svh - 96px));
        }

        .callback-embed iframe {
          width: 1080px;
          height: calc(100% + 96px);
          margin-left: calc((100% - 1080px) / 2);
          margin-top: -66px;
        }
      }

      @media (max-width: 520px) {
        .callback-embed {
          height: min(490px, calc(100svh - 92px));
        }

        .callback-embed iframe {
          width: 860px;
          height: calc(100% + 84px);
          margin-left: calc((100% - 860px) / 2);
          margin-top: -58px;
        }
      }

      @media (max-width: 420px) {
        .brand img {
          width: 116px;
        }

        h1 {
          font-size: 31px;
        }

        h2,
        .callback-card h3 {
          font-size: 26px;
        }

        .hero-visual,
        .video-window {
          min-height: 270px;
        }

        .visual-chip {
          padding: 12px;
        }

        .video-content h3 {
          font-size: 21px;
        }

        .nav[data-open="true"] .nav-links a {
          padding: 12px;
        }
      }
