* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      height: 100%;
    }

    body {
      font-family: Montserrat, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
      line-height: 1.5;
      color: #222;
      background: #f4f4f4;
    }

    .navbar {
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      z-index: 40;
      padding: 18px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-weight: 700;
    }

    .brand .logo {
      width: 30px;
      height: 30px;
      border-radius: 6px;
      display: inline-block;
    }

    .navlinks {
      display: flex;
      gap: 22px;
      align-items: center;
    }

    .navlinks a {
      color: rgba(255, 255, 255, .9);
      text-decoration: none;
      font-weight: 600;
    }

    .hero {
      height: 800px;
      background-image: url('images/banner.jpg');
      background-size: cover;
      display: flex;
      align-items: center;
    }


    .hero .container {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 60px 30px;
      display: flex;
      gap: 40px;
      align-items: center;
    }

    .hero-left {
      flex: 1;
      color: #fff;
    }

    .eyebrow {
      color: #ffd27a;
      font-weight: 700;
      margin-bottom: 10px;
      display: inline-block;
    }

    .subtitle {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: #fff;
      margin-bottom: 8px;
    }

    .headline {
      font-family: 'Montserrat', sans-serif;
      font-size: 84px;
      line-height: 0.9;
      font-weight: 800;
      color: transparent;
      -webkit-text-stroke: 2px #fff;
      margin-bottom: 18px;
    }

    .headline strong {
      display: block;
      color: transparent;
      -webkit-text-stroke: 2px #ffffff;
    }

    .desc {
      max-width: 420px;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 22px;
    }

    .cta {
      display: flex;
      gap: 12px;
    }

    .btn {
      padding: 12px 20px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .12);
      font-weight: 700;
      cursor: pointer;
    }

    .btn.primary {
      background: #f7b733;
      color: #2b2b2b;
    }

    .btn.ghost {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .4);
    }

    .cards-section {
      background: #f6f6f6;
      padding: 50px 20px;
    }

    .cards {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .card {
      background: #fff;
      border-radius: 10px;
      padding: 26px;
      text-align: center;
      box-shadow: 0 6px 18px rgba(12, 12, 12, 0.06);
    }

    .card h4 {
      margin-top: 12px;
      margin-bottom: 12px;
      color: #2b2b2b;
    }

    .card p {
      font-size: 14px;
      color: #666;
      margin-bottom: 12px;
    }

    .card a {
      font-weight: 700;
      color: #f7b733;
      text-decoration: none;
      font-size: 14px;
    }

    .features {
      display: flex;
      align-items: center;
      gap: 40px;
      max-width: 1100px;
      margin: 36px auto;
      padding: 30px;
    }

    .features .list {
      flex: 1;
    }

    .features ul {
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .features li {
      padding-left: 18px;
      position: relative;
      color: #333;
    }

    .features li::before {
      content: "\2661";
      position: absolute;
      left: 0;
      color: #f7b733;
    }

    .features .mockup {
      width: 360px;
      flex-shrink: 0;
    }

    .burger-stack {
      display: block;
      width: 100%;
      max-width: 360px;
    }

    .callout {
      background-image: url('/mnt/data/900bc4fe-b52e-4674-9e1c-ed1b3b602987.png');
      background-size: cover;
      background-position: center;
      padding: 46px 20px;
      margin-top: 30px;
      position: relative;
    }

    .callout::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: rgba(10, 10, 10, 0.6);
    }

    .callout .inner {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      margin: 0 auto;
      color: #fff;
      text-align: center;
      padding: 32px;
    }

    .callout p {
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 14px;
    }

    .callout .phone {
      color: #ffd27a;
      font-size: 20px;
      font-weight: 800;
    }

    footer {
      background: #1f1f1f;
      color: #bbb;
      padding: 18px;
      text-align: center;
      font-size: 13px;
    }

    @media (max-width: 900px) {
      .headline {
        font-size: 56px;
      }

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

      .features {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
      }

      .features .mockup {
        width: 260px;
        margin: 0 auto;
      }

      .hero {
        height: 520px;
      }
    }

    @media (max-width: 480px) {
      .navbar {
        padding: 12px 20px;
      }

      .hero {
        height: 520px;
      }

      .headline {
        font-size: 40px;
      }

      .subtitle {
        font-size: 20px;
      }
    }