* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f4f7fc;
    color: #1e2a3a;
    line-height: 1.5;
}

/* Background joint pain image */
.bg-joint {
    background-image: url('../assets/jointpain-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.bg-joint::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(122, 114, 70, 0.65);
    pointer-events: none;
    z-index: 0;
}

.wrapper {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 20px 50px;
}

/* TOP BAR */
.top-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: rgb(244, 245, 239);
    backdrop-filter: blur(4px);
    border-radius: 60px;
    padding: 12px 28px;
    margin-bottom: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e9f5;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: #0b2b4b;
}

.logo-item img {
    height: 42px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    background: #ffffffd9;
    padding: 6px 12px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.trust-badge {
    background: #1e6f3f;
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 12px rgba(30, 111, 63, 0.25);
}

/* HERO */
.hero {
    text-align: center;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    padding: 32px 20px;
    border-radius: 48px;
    border: 1px solid #ffffff;
    box-shadow: 0 18px 30px -10px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2.7rem;
    font-weight: 800;
    color: #0c2e4b;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hero p {
    font-size: 1.3rem;
    color: #1f3e5c;
    max-width: 800px;
    margin: 0 auto 20px;
    font-weight: 500;
}

.urgency {
    background: #d93b3b;
    color: white;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 40px;
    display: inline-block;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 18px rgba(217, 59, 59, 0.3);
}

/* OFFER GRID */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.offer-card {
    background: #dbe1b9fa;
    backdrop-filter: blur(4px);
    border-radius: 28px;
    padding: 22px 18px 18px;
    box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.15);
    border: 3px solidrgb(147, 110, 110)d;
    transition: transform 0.2s ease, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 35px -10px rgba(0, 0, 0, 0.2);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.product-logo {
    height: 160px;
    width: 220px;
    object-fit: contain;        /* shows full logo, no cropping */
    background: transparent;     /* 🔑 no white box */
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    flex-shrink: 0;
    display: block;
}
.product-name {
    font-size: 1.6rem;         /* ⬆️ was 1.5rem */
    font-weight: 650;
    color: #0b1f31;
    line-height: 1.1;
}

.product-type {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3d6b8f;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #e4eff9;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.benefits {
    list-style: none;
    margin: 10px 0 18px;
    flex-grow: 1;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.98rem;
    margin-bottom: 8px;
    color: #1d3b57;
}

.benefits li::before {
    content: "✓";
    color: #1e8f4e;
    font-weight: 900;
    font-size: 1.2rem;
}

.price-box {
    margin: 12px 0 14px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.old-price {
    text-decoration: line-through;
    color: #0b1620;
    font-weight: 600;
    font-size: 0.9rem;
}

.new-price {
    font-size: 1.9rem;
    font-weight: 800;
    color: #0b2b4b;
}

.cta-button {
    background: linear-gradient(145deg, #447e5b, #bc5732);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 16px 12px;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 8px 14px rgba(15, 79, 42, 0.3);
    letter-spacing: 0.5px;
    border: 1px solid #328a55;
    margin-top: 8px;
}

.cta-button:hover {
    background: linear-gradient(145deg, #2a8a52, #146332);
    transform: scale(1.02);
}

/* LEGAL */
.legal-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border-radius: 40px;
    padding: 32px 28px;
    margin-top: 55px;
    border: 1px solid #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    font-size: 1rem;
    font-weight: 600;
    color: #1e4b6e;
    margin-bottom: 18px;
}

.legal-links a {
    color: #1e4b6e;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.legal-links a:hover {
    border-bottom-color: #1e6f3f;
    color: #0e3b24;
}

.legal-text {
    font-size: 0.85rem;
    color: #3b5569;
    text-align: center;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-text p {
    margin-bottom: 12px;
}

@media (max-width: 700px) {
    .hero h1 { font-size: 2rem; }
    .top-bar {
        flex-direction: column;
        gap: 12px;
        border-radius: 30px;
        padding: 18px;
    }
    .logo-area { justify-content: center; }
    .offer-grid { grid-template-columns: 1fr; }
    .legal-links { gap: 18px; font-size: 0.9rem; }
}