  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  :root {
      --navy: #0d1b2a;
      --orange: #cc1f1f;
      --cream: #f5f0e8;
      --mid: #4a5568;
  }

  body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--navy);
      overflow-x: hidden;
  }

  /* NAV */
  nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 5%;
      background: var(--navy);
  }

  .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 2px;
      color: #fff;
  }

  .logo span {
      color: var(--orange);
  }

  nav a {
      color: #ffffffaa;
      text-decoration: none;
      font-size: .9rem;
      margin-left: 2rem;
      transition: color .2s;
  }

  nav a:hover {
      color: var(--orange);
  }

  .nav-cta {
      background: var(--orange);
      color: #fff !important;
      padding: .5rem 1.2rem;
      border-radius: 4px;
      font-weight: 600;
  }

  .nav-cta:hover {
      background: #a81919 !important;
      color: #fff !important;
  }

  /* HERO */
  .hero {
      min-height: 100vh;
      background: var(--navy);
      display: flex;
      align-items: center;
      padding: 6rem 5% 4rem;
      position: relative;
      overflow: hidden;
  }

  .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(13, 27, 42, 0.95) 30%, rgba(13, 27, 42, 0.2) 100%), url('images/hero.png') center/cover no-repeat;
      z-index: 1;
  }

  .hero-content {
      position: relative;
      z-index: 10;
      max-width: 600px;
      animation: fadeUp .8s ease both;
  }

  .hero-tag {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: .35rem .9rem;
      border-radius: 3px;
      margin-bottom: 1.5rem;
  }

  h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 10vw, 6.5rem);
      line-height: 1;
      color: #fff;
      margin-bottom: 1.5rem;
  }

  h1 em {
      color: var(--orange);
      font-style: normal;
  }

  .hero p {
      color: #ffffffbb;
      font-size: 1.1rem;
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 2.5rem;
  }

  .btn-group {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
  }

  .btn {
      display: inline-block;
      padding: .85rem 2rem;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 5px;
      text-decoration: none;
      transition: transform .15s, background .2s;
  }

  .btn:hover {
      transform: translateY(-2px);
  }

  .btn-primary {
      background: var(--orange);
      color: #fff;
  }

  .btn-primary:hover {
      background: #a81919;
  }

  .btn-outline {
      border: 2px solid #ffffff55;
      color: #fff;
  }

  .btn-outline:hover {
      border-color: var(--orange);
      color: var(--orange);
  }

  /* STATS */
  .stats {
      background: var(--orange);
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      text-align: center;
      padding: 2.5rem 5%;
  }

  .stat-item {
      padding: 1rem;
  }

  .stat-item strong {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: #fff;
      line-height: 1;
  }

  .stat-item span {
      color: #ffffff99;
      font-size: .85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
  }


  .services {
      padding: 1rem 5%;
      background-color: var(--bg-light);
  }

  .section-title {
      text-align: center;
      margin-bottom: 4rem;
  }

  .section-title span {
      color: var(--primary-red);
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 2px;
      font-weight: 700;
      display: block;
      margin-bottom: 0.5rem;
  }

  .section-title h2 {
      font-size: 2.5rem;
  }

  /* FIRST SERVICES */
  .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
  }

  .service-card {
      background: var(--text-white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
  }

  .service-img {
      height: 200px;
      background-size: cover;
      background-position: center;
  }

  .service-content {
      padding: 2rem;
  }

  .service-content h3 {
      margin-bottom: 1rem;
      font-size: 1.5rem;
  }

  .service-content p {
      color: #666;
      font-size: 0.95rem;
  }

  /* SERVICES */
  .section {
      padding: 3rem 5%;
  }

  .section-label {
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: .75rem;
  }

  h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.05;
      margin-bottom: 1rem;
  }

  .section-intro {
      color: var(--mid);
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 3rem;
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
  }

  .card {
      background: #fff;
      border-radius: 10px;
      padding: 2rem;
      border-bottom: 4px solid transparent;
      box-shadow: 0 2px 12px #0d1b2a11;
      transition: border-color .2s, transform .2s;
  }

  .card:hover {
      border-color: var(--orange);
      transform: translateY(-4px);
  }

  .card-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
  }

  .card h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: .5rem;
  }

  .card p {
      color: var(--mid);
      font-size: .9rem;
      line-height: 1.6;
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
  }

  .service-card {
      background: var(--text-white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
  }

  /* WHY US */
  .why {
      background: #2d0a0a;
      color: #fff;
  }

  .why h2 {
      color: #fff;
  }

  .why .section-intro {
      color: #ffffff88;
  }

  .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
  }

  .why-item {
      display: flex;
      gap: 1rem;
  }

  .why-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--orange);
      line-height: 1;
      flex-shrink: 0;
  }

  .why-item h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: .4rem;
      color: #fff;
  }

  .why-item p {
      color: #ffffff77;
      font-size: .88rem;
      line-height: 1.6;
  }

  /* QUOTE FORM */
  .quote-section {
      background: var(--cream);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
  }

  @media(max-width: 768px) {
      .hero {
          text-align: center;
          padding: 8rem 5% 4rem;
          justify-content: center;
      }

      .hero-bg {
          background: linear-gradient(to top, rgba(13, 27, 42, 0.98) 30%, rgba(13, 27, 42, 0.5) 100%), url('images/hero.png') center/cover no-repeat;
      }

      .hero-content {
          margin: 0 auto;
      }

      .hero p {
          margin: 0 auto 2rem;
      }

      .btn-group {
          justify-content: center;
      }

      .quote-section {
          grid-template-columns: 1fr;
      }
  }

  .form-box {
      background: #fff;
      border-radius: 12px;
      padding: 2.5rem;
      box-shadow: 0 4px 24px #0d1b2a15;
  }

  .form-box h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      margin-bottom: 1.5rem;
  }

  .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
  }

  label {
      display: block;
      font-size: .8rem;
      font-weight: 600;
      color: var(--mid);
      margin-bottom: .3rem;
  }

  input,
  select,
  textarea {
      width: 100%;
      padding: .75rem 1rem;
      border: 1.5px solid #e2e8f0;
      border-radius: 6px;
      font-family: inherit;
      font-size: .95rem;
      background: #fafafa;
      transition: border-color .2s;
      outline: none;
  }

  input:focus,
  select:focus,
  textarea:focus {
      border-color: var(--orange);
  }

  .field {
      margin-bottom: 1.2rem;
  }

  textarea {
      resize: vertical;
      min-height: 90px;
  }

  .form-box .btn-primary {
      width: 100%;
      border: none;
      cursor: pointer;
      font-family: inherit;
      margin-top: .5rem;
  }

  .quote-info h2 {
      margin-bottom: 1rem;
  }

  .quote-info p {
      color: var(--mid);
      line-height: 1.7;
      margin-bottom: 1.5rem;
  }

  .contact-line {
      display: flex;
      align-items: center;
      gap: .75rem;
      margin-bottom: 1rem;
  }

  .contact-line .ico {
      font-size: 1.3rem;
  }

  .contact-line span {
      font-weight: 600;
  }

  .contact-line small {
      display: block;
      color: var(--mid);
      font-size: .85rem;
  }

  /* FOOTER */
  footer {
      background: var(--navy);
      color: #ffffff66;
      text-align: center;
      padding: 2rem 5%;
      font-size: .85rem;
  }

  footer a {
      color: var(--orange);
      text-decoration: none;
  }

  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }