    :root {
      --accent: #e7350e;
      --accent-2: #ff7557;
      --ink: #111827;
      --muted: #5f6878;
      --line: #e6e8ed;
      --paper: #ffffff;
      --soft: #f6f7f9;
      --dark: #14161c;
      --green: #34a853;
      --blue: #2563eb;
      --yellow: #f9ab00;
      --shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.6;
    }

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

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

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

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border: 1px solid transparent;
      border-radius: 6px;
      font-weight: 750;
      cursor: pointer;
      transition: transform 180ms ease, background 180ms ease, border 180ms ease;
      white-space: nowrap;
    }

    button,
    [role="button"],
    input[type="button"],
    input[type="submit"],
    input[type="reset"] {
      cursor: pointer;
    }

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

    .button:disabled {
      cursor: not-allowed;
      opacity: 0.72;
      transform: none;
    }

    .button-primary {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 16px 34px rgba(231, 53, 14, 0.24);
    }

    .button-primary:hover {
      background: #c92f0e;
    }

    .button-secondary {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.46);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
    }

    .button-dark {
      color: #fff;
      background: var(--dark);
    }

    .section {
      padding: 92px 0;
    }

    .section-soft {
      background: var(--soft);
    }

    .eyebrow {
      margin: 0 0 12px;
      color: var(--accent);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

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

    h1 {
      max-width: 760px;
      margin-bottom: 22px;
      color: #fff;
      font-size: clamp(2.6rem, 6vw, 5.7rem);
      line-height: 0.97;
      letter-spacing: 0;
    }

    h2 {
      margin-bottom: 18px;
      font-size: clamp(2rem, 4vw, 3.8rem);
      line-height: 1.04;
      letter-spacing: 0;
    }

    h3 {
      margin-bottom: 10px;
      font-size: 1.24rem;
      line-height: 1.25;
    }

    .lead {
      color: var(--muted);
      font-size: 1.12rem;
    }

    .hero {
      position: relative;
      min-height: 760px;
      color: #fff;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(18, 20, 27, 0.94), rgba(18, 20, 27, 0.74) 46%, rgba(231, 53, 14, 0.26)),
        url("assets/hero.jpg") center / cover;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 150px;
      background: linear-gradient(0deg, rgba(20, 22, 28, 0.8), transparent);
      pointer-events: none;
    }

    .nav {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 28px 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand img {
      width: 82px;
      height: auto;
    }

    .brand span {
      color: #fff;
      font-size: 0.95rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.94rem;
      font-weight: 650;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 410px;
      gap: 52px;
      align-items: start;
      padding: 84px 0 120px;
    }

    .hero-copy {
      padding-top: 24px;
    }

    .hero-copy .kicker {
      margin-bottom: 22px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .hero-copy h1 span {
      color: var(--accent-2);
    }

    .hero-copy p {
      max-width: 660px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.22rem;
    }

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

    .trust-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      max-width: 760px;
      margin-top: 50px;
    }

    .trust-pill {
      min-height: 78px;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.09);
      backdrop-filter: blur(12px);
    }

    .trust-pill strong,
    .trust-pill span {
      display: block;
    }

    .trust-pill strong {
      color: #fff;
      font-size: 1rem;
      line-height: 1.2;
    }

    .trust-pill span {
      margin-top: 4px;
      color: rgba(255, 255, 255, 0.66);
      font-size: 0.82rem;
    }

    .contact-card {
      padding: 30px;
      border-radius: 8px;
      background: #fff;
      color: var(--ink);
      box-shadow: var(--shadow);
    }

    .contact-card h2 {
      margin-bottom: 10px;
      font-size: 1.75rem;
      line-height: 1.15;
    }

    .contact-card p {
      margin-bottom: 22px;
      color: var(--muted);
    }

    .form-row {
      display: grid;
      gap: 12px;
      margin-bottom: 14px;
    }

    label {
      font-size: 0.88rem;
      font-weight: 750;
    }

    input,
    textarea,
    select {
      width: 100%;
      min-height: 46px;
      border: 1px solid #d9dde6;
      border-radius: 6px;
      padding: 12px 13px;
      color: var(--ink);
      background: #fff;
      font: inherit;
    }

    textarea {
      min-height: 104px;
      resize: vertical;
    }

    .contact-card .button {
      width: 100%;
      margin-top: 8px;
    }

    .contact-card form.is-submitted input,
    .contact-card form.is-submitted textarea,
    .contact-card form.is-submitted select {
      border-color: #cfd6e3;
      background: #f7f8fb;
    }

    .form-status {
      min-height: 22px;
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.35;
    }

    .form-status.is-success {
      color: #1f7a3a;
    }

    .form-status.is-error {
      color: #b42318;
    }

    .section-heading {
      max-width: 780px;
      margin-bottom: 44px;
    }

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

    .service-card,
    .benefit-card,
    .review-card {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
    }

    .service-card {
      min-height: 156px;
      padding: 22px;
    }

    .service-icon,
    .benefit-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      margin-bottom: 18px;
      border-radius: 8px;
      color: #fff;
    }

    .service-icon svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .benefit-icon {
      font-weight: 900;
    }

    .icon-red {
      background: var(--accent);
    }

    .icon-green {
      background: var(--green);
    }

    .icon-blue {
      background: var(--blue);
    }

    .icon-yellow {
      background: var(--yellow);
      color: var(--ink);
    }

    .service-card p,
    .benefit-card p,
    .review-card p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 54px;
      align-items: start;
    }

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

    .benefit-card {
      padding: 24px;
    }

    .process {
      position: relative;
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 18px;
    }

    .process::before {
      content: "";
      position: absolute;
      left: 8%;
      right: 8%;
      top: 31px;
      border-top: 1px dashed rgba(231, 53, 14, 0.5);
    }

    .step {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      margin-bottom: 18px;
      border: 2px solid var(--accent);
      border-radius: 50%;
      color: var(--accent);
      background: #fff;
      font-size: 1.25rem;
      font-weight: 900;
    }

    .step p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 0.96rem;
    }

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

    .review-card {
      display: flex;
      flex-direction: column;
      min-height: 318px;
      padding: 24px;
    }

    .review-person {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
    }

    .review-person img {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #fff;
      box-shadow: 0 8px 24px rgba(17, 24, 39, 0.16);
      flex: 0 0 auto;
    }

    .review-person strong {
      color: var(--ink);
      font-size: 0.98rem;
      line-height: 1.2;
    }

    .quote-mark {
      color: var(--accent);
      font-size: 3rem;
      font-weight: 900;
      line-height: 0.8;
    }

    .review-card p {
      flex: 1;
      margin-top: 12px;
    }

    .about-band {
      color: #fff;
      background: var(--dark);
    }

    .about-band .lead {
      color: rgba(255, 255, 255, 0.72);
    }

    .about-panel {
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
    }

    .about-panel img {
      width: 110px;
      margin-bottom: 26px;
    }

    .about-panel p {
      color: rgba(255, 255, 255, 0.74);
    }

    .cta {
      padding: 82px 0;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(231, 53, 14, 0.95), rgba(20, 22, 28, 0.94)),
        url("assets/hero.jpg") center / cover;
    }

    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    .cta h2 {
      margin-bottom: 12px;
      max-width: 720px;
    }

    .cta p {
      max-width: 760px;
      margin-bottom: 0;
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.12rem;
    }

    footer {
      padding: 42px 0;
      color: rgba(255, 255, 255, 0.72);
      background: #0d0f14;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 34px;
      align-items: center;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .footer-brand img {
      width: 70px;
    }

    .footer-brand strong {
      display: block;
      color: #fff;
      line-height: 1.2;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      font-size: 0.94rem;
      font-weight: 700;
    }

    @media (max-width: 1040px) {
      .nav-links {
        display: none;
      }

      .hero-grid,
      .split {
        grid-template-columns: 1fr;
      }

      .contact-card {
        max-width: 560px;
      }

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

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

      .process::before {
        display: none;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(100% - 24px, 1180px);
      }

      .section {
        padding: 68px 0;
      }

      .hero {
        min-height: auto;
      }

      .nav {
        align-items: flex-start;
      }

      .brand img {
        width: 64px;
      }

      .brand span {
        font-size: 0.78rem;
      }

      .nav .button {
        min-height: 42px;
        padding: 0 14px;
        font-size: 0.86rem;
      }

      .hero-grid {
        gap: 34px;
        padding: 42px 0 74px;
      }

      h1 {
        font-size: 3rem;
      }

      .hero-copy p {
        font-size: 1.06rem;
      }

      .hero-actions,
      .cta-inner,
      .footer-inner {
        align-items: stretch;
        flex-direction: column;
      }

      .hero-actions .button,
      .cta .button {
        width: 100%;
      }

      .trust-row,
      .service-grid,
      .benefit-grid,
      .process,
      .reviews,
      .footer-inner {
        grid-template-columns: 1fr;
      }

      .trust-row {
        margin-top: 34px;
      }

      .contact-card,
      .about-panel {
        padding: 22px;
      }

      .step {
        text-align: left;
      }

      .step-number {
        width: 54px;
        height: 54px;
        margin-bottom: 12px;
      }

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