/* ============================================================
   EFGE PHARMA — MAIN STYLESHEET v20260318
   Pure white backgrounds. Bright blues & greens. Dark text.
============================================================ */

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

:root {
    --blue:        #0ea5e9;
    --blue-dark:   #0284c7;
    --green:       #10d97e;
    --green-dark:  #059669;
    --text:        #1e293b;
    --muted:       #64748b;
    --bg:          #ffffff;
    --bg-alt:      #f0f9ff;
    --bg-green:    #f0fdf4;
    --shadow:      0 4px 20px rgba(14,165,233,0.15);
    --shadow-lg:   0 12px 40px rgba(14,165,233,0.22);
    --radius:      16px;
    --ease:        all 0.3s ease;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(14,165,233,0.15);
    transition: var(--ease);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(14,165,233,0.18); }

.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; font-size: 1.25rem; font-weight: 700; color: var(--blue);
}
.nav-logo-img { height: 42px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
    text-decoration: none; padding: 8px 16px; border-radius: 8px;
    font-weight: 500; font-size: 0.95rem; color: var(--text); transition: var(--ease);
}
.nav-links a:hover { background: var(--bg-alt); color: var(--blue); }
.nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--green)) !important;
    color: #fff !important; font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(14,165,233,0.35);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14,165,233,0.45) !important;
    background: linear-gradient(135deg, var(--blue-dark), var(--green-dark)) !important;
}

.nav-burger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--ease); }

/* ── HERO ── */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(140deg, #e0f2fe 0%, #ffffff 45%, #dcfce7 100%);
    overflow: hidden; padding-top: 68px;
}

#med-canvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
}

.hero-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 60px 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: #fff; font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 100px; margin-bottom: 1.2rem;
}

.hero-heading {
    font-size: 3.8rem; font-weight: 900; line-height: 1.1;
    color: var(--text); margin-bottom: 1.4rem; letter-spacing: -0.03em;
}

.grad-text {
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
    font-size: 1.2rem; color: var(--muted); margin-bottom: 2.4rem;
    line-height: 1.75; max-width: 480px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border-radius: 12px; font-size: 1rem; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer; transition: var(--ease); white-space: nowrap;
}
.btn-fill {
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: #fff; box-shadow: 0 4px 18px rgba(14,165,233,0.38);
}
.btn-fill:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,165,233,0.5); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

/* Hero card */
.hero-card {
    position: relative; background: #fff; border-radius: 24px; padding: 2.5rem;
    box-shadow: var(--shadow-lg); border: 1px solid rgba(14,165,233,0.12);
    animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero-img { width: 100%; height: auto; max-height: 300px; object-fit: contain; }

.hero-badge {
    position: absolute; padding: 8px 16px; border-radius: 100px;
    font-size: 0.85rem; font-weight: 700; white-space: nowrap;
    animation: floatBadge 3s ease-in-out infinite;
}
.badge-blue { background: var(--blue); color: #fff; top: -18px; right: 24px; animation-delay: 0.5s; }
.badge-green { background: var(--green); color: #fff; bottom: -18px; left: 24px; animation-delay: 1s; }
@keyframes floatBadge { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-8px) scale(1.04); } }

.scroll-hint {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    font-size: 1.6rem; color: var(--blue); animation: bounce 2s infinite; z-index: 2;
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(10px); }
}

/* ── FEATURE SECTIONS ── */
.feature { padding: 100px 0; background: #ffffff; }
.feature-alt { background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%); }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feature-grid.reverse { direction: rtl; }
.feature-grid.reverse > * { direction: ltr; }

.feat-img {
    width: 100%; max-height: 380px; object-fit: contain;
    filter: drop-shadow(0 16px 32px rgba(14,165,233,0.18)); transition: var(--ease);
}
.feat-img:hover { transform: scale(1.04) rotate(-1deg); }

.pill-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: #fff; font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 100px; margin-bottom: 1rem;
}

.feature-copy h2 {
    font-size: 2.8rem; font-weight: 800; color: var(--text); line-height: 1.2;
    margin-bottom: 1.6rem; letter-spacing: -0.02em;
}

.check-list { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.check-list li {
    font-size: 1.1rem; color: var(--muted); line-height: 1.6;
    padding-left: 1.8rem; position: relative;
}
.check-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* ── TRUST SECTION ── */
.trust-section { padding: 90px 0; background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%); text-align: center; }
.trust-label {
    font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 3rem;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.trust-card {
    background: #fff; border-radius: var(--radius); padding: 2rem 1.5rem;
    box-shadow: var(--shadow); border: 1px solid rgba(14,165,233,0.1); transition: var(--ease);
}
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.trust-card img { width: 72px; height: 72px; object-fit: contain; margin: 0 auto 1.2rem; display: block; }
.trust-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.trust-card p { font-size: 0.88rem; color: var(--muted); }

/* ── NEWSLETTER ── */
.newsletter-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    padding: 80px 0;
}
.newsletter-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.newsletter-inner h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.newsletter-inner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }

.nl-form { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }
.nl-form input[type="email"] {
    padding: 14px 20px; border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.2);
    color: #fff; font-size: 1rem; width: 280px; outline: none; transition: var(--ease);
}
.nl-form input::placeholder { color: rgba(255,255,255,0.7); }
.nl-form input:focus { border-color: #fff; background: rgba(255,255,255,0.3); }
.nl-form .btn-fill { background: #fff; color: var(--blue); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.nl-form .btn-fill:hover { background: var(--bg-alt); transform: translateY(-2px); }

/* ── FOOTER ── */
.footer { background: #f8fafc; border-top: 1px solid #e2e8f0; padding: 60px 0 30px; }
.footer-brand { margin-bottom: 1rem; }
.footer-tagline { font-size: 0.92rem; color: var(--muted); max-width: 260px; line-height: 1.6; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-grid h4 {
    font-size: 0.92rem; font-weight: 700; color: var(--text);
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-grid ul a { text-decoration: none; color: var(--muted); font-size: 0.92rem; transition: var(--ease); }
.footer-grid ul a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid #e2e8f0; padding-top: 1.5rem; text-align: center; font-size: 0.88rem; color: var(--muted); }
