@font-face {
    font-family: "OpenSauce";
    src: url('../assets/fonts/OpenSauceOne-Regular.ttf') format("truetype");
}

:root {
    --orange: #ff6b00;
    --orange-dark: #ff5500;
    --offwhite: #fff8f3;
    --text: #111;
    --radius: 20px;
    --max: 1100px;
  }

  body {
    margin: 0;
    font-family: "OpenSauce", "Inter", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--orange);
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3 {
    margin: 0;
  }

  .wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 40px 20px;
  }

  /* HEADER */
  .hero-title {
    color: white;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 40px;
  }

  /* 3-COLUMN SERVICE BOXES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 60px;
  }

  .service-box {
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 4px;
    background: transparent;
    color: white;
    padding: 28px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .service-box h3 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .service-box p {
    font-size: 18px;
    line-height: 1.4;
    opacity: 0.95;
  }

  /* TABLE SECTION */
  .comparison {
    margin-top: 20px;
    border-collapse: collapse;
    width: 100%;
    color: white;
    font-size: 15px;
  }

  .comparison th {
    background: rgba(255,255,255,0.15);
    padding: 14px;
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
  }

  .comparison td {
    padding: 21px;
    border: 1px solid rgba(255,255,255,0.3);
    text-align: center;
  }

  .comparison td:first-child {
    text-align: left;
  }

  .check {
    background: white;
    color: var(--orange);
    font-weight: bold;
    border-radius: 50%;
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
  }

  .cross {
    background: black;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
  }

  /* STATS SECTION */
  .impact-section {
    background: var(--offwhite);
    color: var(--text);
    padding: 60px 20px;
  }

  .impact-wrap {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .impact-text {
    flex: 1;
  }

  .impact-text h2 {
    color: var(--orange);
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .impact-number {
    background: var(--orange);
    color: white;
    padding: 40px 24px;
    border-radius: var(--radius);
    font-size: 185px;
    font-weight: 800;
    line-height: 0.9;
    flex: 0;
  }

  .impact-desc {
    font-size: 36px;
    margin-top: 40px;
    font-weight: normal;
  }

  /* FORM SECTION */
  .form-section {
    background: var(--offwhite);
    padding: 80px 20px;
  }

  .form-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: var(--max);
    margin: 0 auto;
    align-items: flex-start;
  }

  .form-left {
    flex: 1;
    background-image: url('../assets/bg.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    color: white;
    padding: 40px 28px;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 460px;
    box-sizing: border-box;
  }

  .form-left small {
    font-size: 14px;
    opacity: 0.9;
    display: block;
    margin-bottom: 12px;
  }

  .form-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    min-width: 300px;
  }

  .form-right input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.15);
    font-size: 14px;
  }

  .form-right button {
    grid-column: span 2;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    color: white;
    border: none;
    border-radius: 999px;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  }

  .form-right small {
    grid-column: span 2;
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: -8px;
  }

  .range-wrap {
    position: relative;
  }
  .range {
    width: 100%;
    accent-color: var(--orange);
  }
  .bubble {
    background: var(--orange-dark);
    color: white;
    padding: 4px 12px;
    position: absolute;
    border-radius: 4px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
  }
  .bubble::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--orange-dark);
    top: -1px;
    left: 50%;
  }

  form label {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .form-right button {
    margin-top: 20px;
  }

  @media (max-width: 800px) {
    .form-wrap { flex-direction: column; }
    .form-right { grid-template-columns: 1fr; }
    .impact-wrap {
        flex-direction: column;
    }
    .impact-text {
        display: none;
    }
    .impact-number {
      font-size: 120px;
    }
    .form-right {
      flex-direction: column;
      display: flex;
      gap: 20px;
    }

    .form-right input {
      max-width: calc(100% - 26px);
    }
  }