/* Reset & Base */
:root {
    --primary: #2563EB;
    /* Blue medical/trust */
    --primary-dark: #1E40AF;
    --accent: #16A34A;
    /* Green success/nature */
    --bg-dark: #FFFFFF;
    /* Clean White */
    --bg-card: #F8FAFC;
    /* Very light grey for cards */
    --text-main: #1E293B;
    /* Slate 800 */
    --text-muted: #64748B;
    /* Slate 500 */
    --border-color: #E2E8F0;
    --glow: rgba(37, 99, 235, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    /* Base 16px */
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    /* 20px padding on mobile */
}

/* Guarantee Bar */
.guarantee-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-main);
}

.guarantee-bar p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.icon-sm {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.hidden-mobile {
    display: none;
    /* Hidden by default on mobile */
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 3rem 0 4rem;
    /* Reduced padding for mobile */
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    /* Stack by default (Mobile First) */
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.hero-text {
    width: 100%;
    max-width: 600px;
}

.badge-futuristic {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 2.25rem;
    /* Mobile font size */
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

/* Hero Product Image */
.hero-product-img {
    width: 100%;
    max-width: 280px;
    /* Smaller on mobile */
    margin: 1.5rem auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Hero Benefits List */
.hero-benefits {
    margin-bottom: 2rem;
    text-align: left;
    display: inline-block;
    /* Center the block, but align text left */
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.icon-check {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA Button */
.cta-button {
    display: block;
    background: var(--accent);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(22, 163, 74, 0.4);
    background: #15803d;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(22, 163, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
    }
}

/* Offer Section */
.offer-section {
    padding: 4rem 0;
    background: var(--bg-card);
}

.offer-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.offer-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    line-height: 1.2;
}

.offer-header p {
    font-size: 1rem;
    color: var(--text-muted);
    padding: 0 1rem;
}

.country-selector {
    display: grid;
    grid-template-columns: 1fr;
    /* Stack on mobile */
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.country-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.country-card:active {
    transform: scale(0.98);
}

.flag-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.country-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

.status-badge {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--accent);
    background: rgba(22, 163, 74, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
}

.arrow-icon {
    margin-left: auto;
    color: var(--primary);
    opacity: 1;
    /* Visible on mobile for clarity */
}

/* Trust Badges */
.trust-badges {
    margin-top: 3rem;
    padding: 0 1rem;
}

.trust-badges p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.trust-img {
    max-width: 100%;
    height: auto;
    opacity: 0.9;
    filter: grayscale(100%);
}

/* Footer */
.site-footer {
    background: white;
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    /* Stack links on mobile */
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-disclaimer p {
    margin-bottom: 0.5rem;
}

.discrete-shipping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.85rem;
}

.discrete-shipping svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.icon-xs {
    width: 16px;
    height: 16px;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

/* Legal Pages */
.legal-content {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.legal-content p,
.legal-content ul {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.legal-content ul {
    padding-left: 1.5rem;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background-color: var(--bg-card);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

/* =========================================
   DESKTOP / TABLET OVERRIDES (Min-Width)
   ========================================= */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .hidden-mobile {
        display: inline;
    }

    .hero-section {
        padding: 5rem 0 7rem;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 4rem;
    }

    .hero-text {
        max-width: 100%;
    }

    h1 {
        font-size: 3.5rem;
    }

    .hero-sub {
        font-size: 1.25rem;
        padding: 0;
    }

    .hero-product-img {
        max-width: 350px;
        /* Larger on desktop */
        margin: 2rem auto;
    }

    .hero-benefits {
        text-align: left;
        display: block;
    }

    .cta-button {
        display: inline-block;
        width: auto;
    }

    .country-selector {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns on desktop */
        max-width: 100%;
    }

    .country-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        border-color: var(--primary);
    }

    .arrow-icon {
        opacity: 0;
        transform: translateX(-10px);
    }

    .country-card:hover .arrow-icon {
        opacity: 1;
        transform: translateX(0);
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .trust-img {
        filter: grayscale(100%);
        transition: 0.3s;
    }

    .trust-img:hover {
        filter: grayscale(0%);
    }
}