@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,300&family=Poppins:wght@400;500;600;700&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green: #0f7f54;
      --green-light: #f5f8f6;
      --green-hover: #ebf3ed;
      --white: #ffffff;
      --black: #111111;
      --gray: #6b7280;
      --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
      --font-sans: 'Poppins', ui-sans-serif, system-ui, -apple-system, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-sans);
      color: var(--black);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── Animations ── */
    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ─────────────────────────────────────────
       HERO
    ───────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: flex-end;
      padding: 96px 0 48px;
      overflow: hidden;
    }
    .hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .hero__overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;

      background: linear-gradient(
        to top,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.85) 0%,
        rgba(255,255,255,0.3) 40%,
        rgba(255,255,255,0) 60%
      );
    }
    .hero__content {
      position: relative;
      z-index: 1;
      width: 100%;
      display: flex;
      align-items: flex-end;
      gap: 68px;
    }
    .hero__title-block { flex: 0 0 auto; }
    .hero__title {
      font-family: var(--font-display);
      font-size: 62px;
      font-weight: 700;
      color: var(--black);
      line-height: 1.08;
      letter-spacing: -0.02em;
      -webkit-text-stroke: 1px var(--green);
    }
    .hero__title--green { color: var(--green); }
    .hero__right {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-left: 100px;
      padding-bottom: 6px;
    }
    .hero__desc {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.6;
      max-width: 320px;
      color: var(--black);
    }
    @media (max-width: 768px) {
      .hero__content { flex-direction: column; align-items: flex-start; gap: 24px; }
      .hero__right { padding-bottom: 0; }
    }

    /* ── Buttons ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      border-radius: 99px;
      font-family: var(--font-sans);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
    .btn-white {
      background: var(--white);
      color: var(--black);
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }
    .btn-white-green {
      background: var(--white);
      color: var(--green);
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

    /* ─────────────────────────────────────────
       WHY BRANDS CHOOSE
    ───────────────────────────────────────── */
    .why {
    background: var(--green);
    padding: 100px 0;
    }

    .why__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.45fr;
    gap: 80px;
    align-items: center;
    }

    .why__title {
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1.05;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    }

    .why__desc {
    max-width: 420px;
    color: rgba(255,255,255,.9);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
    }

    .why__video {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 2px solid rgba(255,255,255,.6);
    padding: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,.25);
    }

    .why__video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    }

    .why__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .why__play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,.95);
    border-radius: 999px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .why__play-btn svg {
    width: 28px;
    height: 28px;
    }

    /* ─────────────────────────────────────────
       PRODUCT HIGHLIGHT
    ───────────────────────────────────────── */
    .products {
      padding: 96px 0;
      background: var(--white);
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 600;
      text-align: center;
      letter-spacing: -0.02em;
      margin-bottom: 64px;
    }
    .products__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    @media (max-width: 900px) { .products__grid { grid-template-columns: repeat(2, 1fr); } }

    .product-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
    }
    .product-card__img-wrap {
      width: 100%;
      aspect-ratio: 1;
      background: var(--green-light);
      border-radius: 24px;
      padding: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-bottom: 20px;
      transition: background 0.3s ease;
    }
    .product-card:hover .product-card__img-wrap { background: var(--green-hover); }
    .product-card__img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      mix-blend-mode: multiply;
      border-radius: 12px;
      transition: transform 0.5s ease;
    }
    .product-card:hover .product-card__img-wrap img { transform: scale(1.1); }
    .product-card__name {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 600;
      text-align: center;
    }

        /* ─────────────────────────────────────────
       PRODUCT MODAL
    ───────────────────────────────────────── */
    .product-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .product-modal.active {
      opacity: 1;
      pointer-events: auto;
    }
    .product-modal__overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
    }
    .product-modal__content {
      position: relative;
      background: var(--white);
      width: 100%;
      max-width: 800px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
      transform: translateY(20px) scale(0.95);
      transition: transform 0.3s ease;
      z-index: 1;
    }
    .product-modal.active .product-modal__content {
      transform: translateY(0) scale(1);
    }
    .product-modal__close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: #f5f5f5;
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-size: 24px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--black);
      transition: background 0.2s;
      z-index: 2;
    }
    .product-modal__close:hover {
      background: #e0e0e0;
    }
    .product-modal__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    @media (max-width: 768px) {
      .product-modal__grid { grid-template-columns: 1fr; }
    }
    .product-modal__img-wrap {
      background: var(--green-light);
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .product-modal__img-wrap img {
      width: 100%;
      max-width: 250px;
      object-fit: contain;
      mix-blend-mode: multiply;
    }
    @media (max-width: 768px) {
      .product-modal__img-wrap { padding: 24px; }
      .product-modal__img-wrap img { max-width: 150px; }
    }
    .product-modal__info {
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    @media (max-width: 768px) {
      .product-modal__info { padding: 24px; }
    }
    .product-modal__badges {
      display: flex;
      gap: 8px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .badge {
      font-size: 12px;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 99px;
    }
    .badge--primary { background: var(--green); color: var(--white); }
    .badge--secondary { background: #ffebeb; color: #d32f2f; }
    
    .product-modal__title {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--black);
      line-height: 1.2;
    }
    .product-modal__desc {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
    }
    .product-modal__desc p { margin-bottom: 12px; }
    .product-modal__desc ul { padding-left: 20px; margin-bottom: 12px; }

    /* ─────────────────────────────────────────
      OUR PROCESS
    ───────────────────────────────────────── */
    .process {
      padding: 80px 0 96px;
      background: var(--white);
      border-top: 1px solid #f0f0f0;
    }
    .process__header {
      text-align: center;
      margin-bottom: 64px;
    }
    .process__label {
      display: block;
      color: var(--green);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .process__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .process__card {
      border-radius: 20px;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    }
    .process__card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    }
    .process__card-img {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: #c8dfd4;
    }
    .process__card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .process__card:hover{
      transform: scale(1.05);
    }
    .process__card-num {
      position: absolute;
      top: 14px;
      right: 14px;
      background: var(--green);
      color: var(--white);
      width: 40px;
      height: 20px;
      border-radius: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 700;
      box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    }
    .process__card-body {
      padding: 20px 24px 24px;
    }
    .process__card-title {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--black);
    }
    .process__card-desc {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.65;
    }

    @media (max-width: 900px) {
      .process__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    }
    @media (max-width: 480px) {
      .process__grid { grid-template-columns: 1fr; }
    }

    /* ─────────────────────────────────────────
       VISIT FORM
    ───────────────────────────────────────── */
    .visit-form {
    padding: 120px 0;
    }

    .visit-card {
    background: #f6f6f6;
    border-radius: 32px;
    padding: 60px;
    }

    .visit-card__content {
        display: grid;
        grid-template-columns: 1.0fr 0.9fr;
        gap: 60px;
        align-items: start;
    }

    .visit-card__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 4vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0;
    }

    .visit-card__desc {
    color: #737373;
    font-size: 18px;
    line-height: 1.8;
    }

    .visit-card__desc p {
    margin-bottom: 20px;
    }

    .visit-card__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 48px;
    }

    .visit-card__button {
    background: #0d7c4a;
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 600;
    transition: .3s;
    }

    .visit-card__button:hover {
    transform: translateY(-2px);
    }


    @media (max-width: 768px) {
    .visit-card {
        padding: 32px;
    }

    .visit-card__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .visit-card__footer {
        justify-content: flex-start;
    }
    }

    @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

    /* Responsive overrides only */
    @media (max-width: 1024px) {
      .hero__content {
        gap: 40px;
      }

      .hero__right {
        margin-left: 0;
      }

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

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

    @media (max-width: 768px) {
      .container {
        padding: 0 14px;
      }

      .hero {
        min-height: 640px;
      }

      .hero__content {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero__title {
        font-size: clamp(42px, 13vw, 72px);
      }

      .hero__right {
        width: 100%;
        max-width: 360px;
      }

      .why {
        padding: 28px 0;
      }

      .why__grid {
        gap: 18px;
      }

      .why__desc {
        max-width: none;
        margin-bottom: 18px;
      }

      .why__video {
        width: 100%;
        aspect-ratio: 4 / 5.4;
        border-radius: 14px;
        padding: 3px;
      }

      .why__video img {
        border-radius: 11px;
      }

      .why__play-btn {
        width: 58px;
        height: 58px;
      }

      .products {
        padding: 42px 0;
      }

      .products .section-title {
        text-align: left;
        margin-bottom: 22px;
      }

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

      .process__steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .visit-form {
        padding: 56px 0;
      }
    }

    @media (max-width: 420px) {
      .hero__title {
        font-size: clamp(34px, 12vw, 46px);
      }

      .hero__desc {
        max-width: 100%;
      }

      .products__grid {
        gap: 18px;
      }

      .process__steps,
      .visit-card__content {
        grid-template-columns: 1fr;
      }
    }

    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .form-group label { font-size: 13px; font-weight: 600; color: #444; }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 12px 16px;
      border: 1.5px solid #dde5e0;
      border-radius: 12px;
      font-family: var(--font-sans);
      font-size: 15px;
      color: var(--black);
      background: var(--white);
      outline: none;
      transition: border-color 0.2s ease;
      width: 100%;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--green); }
    .form-group textarea { resize: vertical; min-height: 120px; }

    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--green);
      color: var(--white);
      border: none;
      border-radius: 12px;
      font-family: var(--font-sans);
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .form-submit:hover { background: #164d2d; transform: translateY(-1px); }