 :root {
      --bg: #efefef;
      --surface: #ffffff;
      --text: #111111;
      --muted: #666666;
      --line: #dddddd;
      --primary: #ff140f;
      --dark: #050505;
      --soft: #e3e3e3;
      --soft-2: #d9d9d9;
      --radius: 18px;
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.4;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(calc(100% - 48px), var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 72px 0;
    }

    .hero {
      position: relative;
      min-height: 520px;
      color: #fff;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(10, 12, 29, 0.2), rgba(10, 12, 29, 0.55)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.15)),
        radial-gradient(circle at 72% 30%, rgba(36, 120, 255, 0.28), transparent 20%),
        radial-gradient(circle at 30% 18%, rgba(255, 80, 80, 0.14), transparent 24%),
        linear-gradient(135deg, #1b1830 0%, #121533 35%, #1d0d20 65%, #111111 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(0,0,0,0.45), transparent 45%),
        repeating-linear-gradient(
          90deg,
          rgba(255,255,255,0.03) 0 1px,
          transparent 1px 90px
        );
      pointer-events: none;
    }

    .hero .container {
      position: relative;
      z-index: 1;
      min-height: 520px;
      display: grid;
      place-items: center;
      text-align: center;
    }

    .hero-content {
      max-width: 760px;
    }

    .hero h1 {
      font-size: clamp(42px, 5vw, 74px);
      line-height: 1.02;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .hero p {
      font-size: 18px;
      color: rgba(255,255,255,0.9);
      max-width: 620px;
      margin: 0 auto;
    }

    .hero-play {
      width: 82px;
      height: 82px;
      border-radius: 999px;
      background: rgba(26, 20, 20, 0.92);
      border: 3px solid rgba(255,255,255,0.45);
      display: grid;
      place-items: center;
      font-size: 28px;
      margin: 18px auto 18px;
      box-shadow: 0 10px 26px rgba(0,0,0,0.3);
    }


    .card-image {
      min-height: 260px;
      overflow: hidden;
      border-radius: 16px;
    }

    .card-image img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
    }



    .intro-grid {
      display: grid;
      grid-template-columns: 460px 1fr;
      gap: 36px;
      align-items: center;
      margin-top: 24px;
    }





    .intro-copy h2 {
      font-size: clamp(34px, 4vw, 58px);
      line-height: 1.05;
      font-weight: 800;
      margin-bottom: 18px;
      max-width: 540px;
    }

    .intro-copy > p {
      font-size: 18px;
      color: #303030;
      max-width: 520px;
      margin-bottom: 28px;
    }

    .stats {
      display: flex;
      gap: 44px;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }

    .stat h3 {
      font-size: 54px;
      line-height: 1;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .stat p {
      color: var(--muted);
      font-size: 16px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--primary);
      color: #fff;
      padding: 18px 24px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 16px;
    }

    .btn-primary .icon,
    .btn-light .icon {
      width: 20px;
      height: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 34px;
    }

    .service-card {
      background: linear-gradient(180deg, #ffffff, #f7f7f7);
      border: 1px solid rgba(17, 17, 17, 0.06);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      position: relative;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 48px rgba(20, 20, 20, 0.14);
      border-color: rgba(255, 20, 15, 0.18);
    }

    .service-card::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 4px;
      background: linear-gradient(90deg, #ff140f, #ff7a59);
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .service-card:hover::after {
      opacity: 1;
    }

    .card-image {
      margin: 18px 18px 0;
      min-height: 230px;
      border-radius: 16px;
      background: linear-gradient(135deg, #f0f0f0, #d9d9d9);
      display: grid;
      place-items: center;
      color: #333;
      font-size: 48px;
      position: relative;
      overflow: hidden;
    }

    .card-image::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.16));
      pointer-events: none;
    }

    .card-body {
      padding: 18px 20px 22px;
    }

    .service-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 20, 15, 0.08);
      color: #c7332e;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .service-kicker::before {
      content: "✦";
      font-size: 10px;
      line-height: 1;
    }

    .card-body h3 {
      font-size: 22px;
      line-height: 1.12;
      margin-bottom: 12px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .card-body p {
      color: #5a5a5a;
      font-size: 14px;
      line-height: 1.7;
    }

    .pagination {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 28px;
    }

    .page-dot {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      border: none;
      background: #f2dada;
      color: #bf6161;
      font-size: 12px;
      cursor: pointer;
    }

    .page-dot.active {
      background: var(--primary);
      color: #fff;
    }

    .cta-band {
      background: var(--primary);
      margin-top: 60px;
    }

    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 34px 0;
    }

    .cta-text h2 {
      color: #fff;
      font-size: clamp(30px, 3.5vw, 52px);
      line-height: 1.04;
      font-weight: 800;
      max-width: 620px;
      margin-bottom: 8px;
    }

    .cta-text p {
      color: rgba(255,255,255,0.9);
      font-size: 15px;
      max-width: 430px;
    }

    .btn-light {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #f4f0f0;
      color: #111;
      padding: 16px 24px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 16px;
      white-space: nowrap;
    }

    .btn-light .icon {
      width: 24px;
      height: 24px;
      border: 2px solid #111;
      border-radius: 999px;
      font-size: 11px;
    }

    .footer {
      margin-top: 68px;
      background: #000;
      border-top-left-radius: 24px;
      border-top-right-radius: 24px;
      min-height: 340px;
      position: relative;
    }

    .footer::before {
      content: "";
      position: absolute;
      left: 36px;
      right: 36px;
      top: 210px;
      border-top: 1px solid rgba(255,255,255,0.25);
    }

    @media (max-width: 1100px) {
      .intro-grid,
      .cta-inner {
        grid-template-columns: 1fr;
        display: grid;
      }

      .cta-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }

      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(calc(100% - 24px), var(--container));
      }

      .section {
        padding: 50px 0;
      }

      .hero,
      .hero .container {
        min-height: 420px;
      }

      .hero h1,
      .intro-copy h2,
      .cta-text h2 {
        font-size: 32px;
      }

      .intro-grid,
      .cards-grid {
        grid-template-columns: 1fr;
      }

      .video-box {
        min-height: 280px;
      }

      .card-image {
        min-height: 220px;
      }

      .footer::before {
        left: 18px;
        right: 18px;
      }
    }