﻿:root {
      --bg: #ffffff;
      --text: #1a1a1a;
      --muted: #5f6b6b;
      --brand: #6C7D21;
      --brand-2: #2aa77f;
      --card: #f6f8f7;
      --border: #e3e7e5;
      }

      .container { max-width: 1100px; margin: 0 auto; padding: 24px; }

.gg-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 22px;
    color: var(--sitegreen);
    text-shadow: 0 0 3px rgba(255,255,255,1), 0 0 10px rgba(255,255,255,.9), 0 0 22px rgba(255,255,255,.8);
}
.leaf {
    width: 16px;
    height: 16px;
}
.hero-div {
    padding-top: 75px;
    margin-top: 15px;
    min-height: 120px; /* or any fixed height */
    height:50vh;
    max-height: 450px;
    background-image: url("https://www.blindschalet.com/images/greenguard/GreenGuard-bg.jpg");
    background-size: cover; /* fills the div */
    background-position: center; /* keeps the center visible */
    background-repeat: no-repeat;
}
.hero-div h1 {
    font-size:36px;
    text-shadow: 0 0 3px rgba(255,255,255,1), 0 0 10px rgba(255,255,255,.9), 0 0 22px rgba(255,255,255,.8);
}
          header.hero {
      padding: 28px 0 24px;
      }
            header.hero .btn {
                margin:10px;
            }
            header.hero .secondary{background-color:#fff;}
p.hero-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 60ch;
    text-shadow: 0 0 3px rgba(255,255,255,1), 0 0 10px rgba(255,255,255,.9), 0 0 22px rgba(255,255,255,.8);
}
      
      .cta { display:flex; gap:12px; margin-top: 16px; flex-wrap: wrap;}
      .btn.secondary { background: transparent; color: var(--brand) !important; }
      .btn {
      display:inline-block; padding:12px 16px; border-radius:10px; border:1px solid var(--brand); background: var(--brand); color:white !important; font-weight:600;
      }
      #what{border-top:1px solid var(--border);}

      .grid-2 { display:grid; grid-template-columns: 1fr 1fr; gap:28px; }
      @media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } h1{font-size:32px} }
      section { padding: 28px 0; }
      h2 { font-size: 28px; margin: 0 0 10px; }
      .card {
      background: var(--card); border:1px solid var(--border); padding:20px; border-radius:14px;
      }
      .levels { margin:25px 0 20px 0;display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
      @media (max-width: 780px) { .levels { grid-template-columns: 1fr; } }
      .level h3 { margin:6px 0 8px; }
      .note { font-size: 14px; color: var(--muted); }
      .pill { display:inline-block; padding:4px 10px; border-radius:999px; background:#e1eebf; color:#0b684f; font-size: 12px; border:1px solid #cfe9e2; }
      .products { margin-top: 8px; }
      .product-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
      @media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
      @media (max-width: 620px) { .product-grid { grid-template-columns: 1fr; } }
      .product-card { background:white; border:1px solid var(--border); border-radius:12px; overflow:hidden; display:flex; flex-direction:column; }
      .product-img { background: #eaf5f1; aspect-ratio: 4/3; display:flex; align-items:center; justify-content:center; font-weight:700; color:#0b7a5e; }
      .product-body { padding:14px; display:flex; flex-direction:column; gap:8px; }
      .product-body h4 { margin: 0; font-size: 16px; }
      .product-meta { font-size: 12px; color: var(--muted); }
      .faq-item { border-top:1px solid var(--border); padding:16px 0; }
      footer {
      border-top:1px solid var(--border); padding: 16px 0 40px; color: var(--muted); font-size: 14px;
      }
      .inline-icon { display:inline-flex; gap:8px; align-items:center;}
      .disclaimer { font-size:12px; color: var(--muted); margin-top:8px; }
      .filter { display:flex; gap:10px; flex-wrap:wrap; margin: 12px 0 18px; }
      .filter button { padding:8px 12px; border-radius:8px; border:1px solid var(--border); background:white; cursor:pointer; }
      .filter button.active { background:#e1eebf; border-color:#bfe3d8; }


/* CSS */
.gg-cards {
    display: flex;
    gap: 28px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap; /* stacks on small screens */
    padding: 18px;
}

.gg-card {
    --accent: #7ea844; /* overridden per variant */
    --strip: #e9f1df; /* overridden per variant */
    --title: #3d4a3a;
    width: min(260px, 100%);
    border-radius: 26px;
    background: linear-gradient(180deg, #fbfaf7 0%, #f5f2eb 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10), 0 2px 0 rgba(255, 255, 255, 0.6) inset;
    overflow: hidden;
    text-align: center;
    padding: 20px 18px 16px;
}

.gg-card--green {
    --accent: #7ea844;
    --strip: #e7efdd;
}

.gg-card--gold {
    --accent: #b88a2f;
    --strip: #f1e6cf;
}



.gg-title {
    margin: 0 0 14px;
    color: var(--title);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 750;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size:22px;
    line-height: 1.05;
}

    .gg-title sup {
        font-size: 0.45em;
        top: -0.6em;
        position: relative;
        margin-left: 1px;
    }

.gg-title-accent {
    font-weight: 500;
    font-size: 0.9em;
    color: var(--title);
    opacity: 0.95;
}

.gg-strip {
    background: var(--strip);
    padding: 14px 16px;
    margin: 0 -22px 16px; /* extend to edges inside card padding */
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.25;
    color: #3b3b33;
}

.gg-foot {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 4px 2px 2px;
}

.gg-check {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--accent);
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

    .gg-check svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: #fff;
        stroke-width: 3.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.gg-foot-text {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.25;
    color: #3b3b33;
}


/* CSS */
.feature-cards {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap; /* stack on small screens */
    padding: 18px;
}

.feature-card {
    width: min(185px, 100%);
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #fbfaf7 0%, #eef1e7 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10), 0 2px 0 rgba(255, 255, 255, 0.55) inset;
}

.feature-card__media {
    padding: 14px 14px 0;
}

.feature-card__img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
}

.feature-card__body {
    padding: 18px 20px 24px;
    text-align: center;
}

.feature-card__title {
    margin: 0 0 10px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 750;
    font-size: 26px;
    line-height: 1.12;
    color: #3d4a37;
}

.feature-card__text {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: rgba(47, 53, 44, 0.82);
}


@media (max-width: 620px) {
    .feature-card {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .feature-card__img {
        height: 220px;
    }

    .feature-card__title {
        font-size: 24px;
    }
}
