/* ==========================================
   PICKS & GUIDES — MAIN STYLES
   ========================================== */

:root {
    --primary: #007953;
    --primary-dark: #005a3e;
    --primary-light: #eaf8f1;

    --accent: #f59e0b;
    --accent-dark: #d97706;

    --dark: #111827;
    --text: #374151;
    --muted: #6b7280;
    --border: #e5e7eb;
    --light: #f8fafc;
    --white: #ffffff;

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.07);
    --shadow: 0 8px 22px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.14);

    --radius: 14px;
    --radius-lg: 22px;

    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --transition: 0.25s ease;
}

/* RESET */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
}

/* ==========================================
   HEADER
   ========================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--dark);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    padding: 10px;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #00a86b);
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 5px 12px rgba(0, 121, 83, 0.22);
}

.logo-accent {
    color: var(--primary);
    margin: 0 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary);
}

/* ==========================================
   HERO
   ========================================== */

.hero-home {
    position: relative;
    overflow: hidden;
    padding: 92px 0 100px;
    background:
        radial-gradient(circle at 85% 20%, rgba(0, 121, 83, 0.14), transparent 30%),
        linear-gradient(135deg, #f0fbf6 0%, #ffffff 60%);
    border-bottom: 1px solid #edf2ef;
}

.hero-home::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -170px;
    width: 430px;
    height: 430px;
    border: 70px solid rgba(0, 121, 83, 0.06);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    text-align: center;
}

.hero-badge,
.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 15px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-home h1 {
    max-width: 760px;
    margin: 22px auto 18px;
    color: var(--dark);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.06em;
}

.hero-subtitle {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-top: 30px;
    color: var(--primary-dark);
    font-size: 0.86rem;
    font-weight: 700;
}

/* ==========================================
   FEATURED SECTION
   ========================================== */

.featured-section {
    padding: 92px 0 105px;
    background:
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-heading {
    max-width: 650px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2,
.about-box h2 {
    margin: 16px 0 12px;
    color: var(--dark);
    font-size: clamp(1.8rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.section-heading p {
    color: var(--muted);
    font-size: 1rem;
}

/* ==========================================
   CARDS
   ========================================== */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 121, 83, 0.34);
    box-shadow: var(--shadow-lg);
}

.card-label {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 121, 83, 0.25);
}

.card-label--orange {
    background: var(--accent);
    color: #332000;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    padding: 22px;
    background: linear-gradient(145deg, #f3f7f5, #eef4f2);
    border-bottom: 1px solid var(--border);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition);
}

.product-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px 24px 24px;
}

.card-category {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-content h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.card-content p {
    flex: 1;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* Desktop and mobile CTA */

.card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    padding: 13px 18px;
    border: 2px solid var(--primary);
    border-radius: 10px;
    background: var(--primary);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 800;
    text-align: center;
    transition: var(--transition);
}

.card-button span {
    font-size: 1.15rem;
    line-height: 1;
    transition: transform var(--transition);
}

.card-button:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 8px 18px rgba(0, 121, 83, 0.22);
}

.card-button:hover span {
    transform: translateX(4px);
}

.card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    margin-top: auto;
    border-radius: 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.01em;
    box-shadow: 0 5px 14px rgba(0, 121, 83, 0.22);
    transition: all 0.25s ease;
}

.card__link span {
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.card__link:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 90, 62, 0.3);
}

.card__link:hover span {
    transform: translateX(5px);
}

.card__link:active {
    transform: translateY(-1px);
}


/* ==========================================
   ABOUT
   ========================================== */

.about-section {
    padding: 90px 0;
    background: var(--white);
}

.about-box {
    max-width: 780px;
    padding: 48px 40px;
    border: 1px solid #dcefe6;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #f2fbf6, #ffffff);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.about-box p {
    max-width: 650px;
    margin: 0 auto 22px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.text-link {
    color: var(--primary);
    font-weight: 800;
}

.text-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
    padding: 68px 0 0;
    background: #17231f;
    color: #cbd5d0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 42px;
}

.logo--footer {
    color: var(--white);
}

.footer-brand p {
    max-width: 330px;
    margin-top: 16px;
    color: #aebdb5;
    font-size: 0.92rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 0.95rem;
}

.footer-column a {
    color: #aebdb5;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-disclaimer {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9eada5;
    font-size: 0.77rem;
    line-height: 1.65;
}

.footer-disclaimer p {
    margin-bottom: 12px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9eada5;
    font-size: 0.8rem;
    text-align: center;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 980px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 32px, 540px);
    }

    .header-inner {
        min-height: auto;
        padding: 15px 0;
        flex-direction: column;
        gap: 13px;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        gap: 13px;
        flex-wrap: wrap;
    }

    .main-nav a {
        font-size: 0.76rem;
    }

    .hero-home {
        padding: 62px 0 70px;
    }

    .hero-home h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 0.96rem;
    }

    .hero-trust {
        align-items: center;
        flex-direction: column;
        gap: 8px;
        font-size: 0.78rem;
    }

    .featured-section {
        padding: 65px 0 75px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    /*
       Extra space between cards on mobile.
       This prevents the cards from appearing glued together.
    */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .product-card {
        border-radius: 18px;
    }

    .card-image {
        height: 210px;
    }

    .card-content {
        padding: 24px 20px 20px;
    }

    .card-content p {
        margin-bottom: 22px;
    }

    /*
       Strong mobile CTA:
       full width, larger touch area and high contrast
    */
    .card-button {
        min-height: 54px;
        padding: 15px 18px;
        border-radius: 11px;
        font-size: 0.94rem;
    }

    .about-section {
        padding: 65px 0;
    }

    .about-box {
        padding: 34px 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column {
        align-items: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        margin-right: auto;
        margin-left: auto;
    }

    .footer-disclaimer {
        font-size: 0.73rem;
    }
}

@media (max-width: 380px) {
    .hero-home h1 {
        font-size: 2rem;
    }

    .main-nav {
        gap: 9px;
    }

    .main-nav a {
        font-size: 0.7rem;
    }

    .card-image {
        height: 190px;
    }
}
