/* ==================================
   VIRAL MARKETING DESIGN - MODERN MINIMALIST
   High CTR | Influencer-Heavy | Conversion Optimized
   ================================== */

:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-600: #4B5563;
    --gray-900: #111827;
    --accent: #10B981;
    --accent-dark: #059669;
    --red: #EF4444;
    --orange: #F59E0B;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER - GLASSMORPHIC */
.header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.logo i {
    font-size: 1.75rem;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

/* HERO WITH GIF BACKGROUND */
.hero {
    position: relative;
    padding: 8rem 0 4rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -80px;
}

.hero-bg-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-bg-gif {
        background-position: 65% center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.75) 50%,
            rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
}

.as-featured {
    margin-bottom: 2rem;
}

.as-featured span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    opacity: 0.9;
}

.media-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.media-logo {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-block {
    max-width: 500px;
    margin: 0 auto;
}

.cta-primary {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.cta-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.cta-primary small {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.trust-line {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* VIRAL MOMENT - JOE ROGAN */
.viral-moment {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: var(--white);
    padding: 4rem 0;
}

.viral-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .viral-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.viral-tag {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.viral-moment h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.viral-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.viral-source {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.viral-proof {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.proof-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.viral-visual {
    text-align: center;
}

.video-frame {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--black);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
}

.video-frame:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

.viral-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s;
}

.video-frame:hover .play-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.play-overlay i {
    font-size: 4rem;
    color: var(--white);
    transition: transform 0.3s;
}

.video-frame:hover .play-overlay i {
    transform: scale(1.1);
}

.play-overlay span {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
}

.video-caption {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* DOCTORS SECTION */
.doctors-section {
    padding: 4rem 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: -1rem auto 3rem;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.doctor-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.doctor-video-container {
    position: relative;
    aspect-ratio: 9/16;
    background: var(--black);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.doctor-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Fix pixelation and improve rendering */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.viral-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.doctor-info {
    padding: 1.5rem;
}

.doctor-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.doctor-title {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.doctor-quote {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
    font-style: italic;
}


/* SOCIAL WALL - HORIZONTAL SCROLL WITH GIF BACKGROUNDS */
.viral-moment {
    padding: 4rem 0;
    background: linear-gradient(135deg,
            #111827 0%,
            #1f2937 25%,
            #374151 50%,
            #4b5563 75%,
            #6b7280 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.viral-moment::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(156, 163, 175, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.viral-moment::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(107, 114, 128, 0.08) 0%, transparent 60%);
    animation: rotate 25s linear infinite reverse;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Floating Icons Background */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.25;
    z-index: 0;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: #ff1744;
    animation: float-up 8s infinite ease-in;
    opacity: 0;
}

.floating-icons i:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    font-size: 2.5rem;
}

.floating-icons i:nth-child(2) {
    left: 25%;
    animation-delay: 1.5s;
    font-size: 1.8rem;
}

.floating-icons i:nth-child(3) {
    left: 45%;
    animation-delay: 3s;
    font-size: 2.2rem;
}

.floating-icons i:nth-child(4) {
    left: 65%;
    animation-delay: 4.5s;
    font-size: 1.5rem;
}

.floating-icons i:nth-child(5) {
    left: 80%;
    animation-delay: 6s;
    font-size: 2rem;
}

.floating-icons i:nth-child(6) {
    left: 15%;
    animation-delay: 2s;
    font-size: 1.8rem;
}

.floating-icons i:nth-child(7) {
    left: 55%;
    animation-delay: 5s;
    font-size: 2.3rem;
}

.floating-icons i:nth-child(8) {
    left: 90%;
    animation-delay: 7s;
    font-size: 1.6rem;
}

@keyframes float-up {
    0% {
        bottom: -50px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(20px) rotate(15deg);
    }
}


.social-row {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1.5rem 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.social-row::-webkit-scrollbar {
    display: none;
}

.social-post {
    position: relative;
    flex: 0 0 320px;
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
    padding: 1.5rem;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-post:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.social-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.post-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--white);
}

.post-header i {
    font-size: 1.25rem;
}

.social-post p {
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 0.95rem;
}

.post-actions {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.post-actions i {
    margin-right: 0.25rem;
}

/* URGENCY BAR */
/* PHARMACY TRUST SECTION */
.pharmacy-trust {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.trust-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.trust-card.primary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%);
    color: var(--white);
}

.trust-icon-large {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.trust-icon-large i {
    font-size: 2.5rem;
    color: var(--white);
}

.trust-card.primary h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
}

.trust-card.primary p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.trust-card-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-card.secondary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.trust-card.secondary i {
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.trust-card.secondary strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.trust-card.secondary span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* NO PRESCRIPTION INFO BAR */
.prescription-info-bar {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.prescription-info-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.info-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.info-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-icon i {
    font-size: 2.5rem;
    color: var(--accent);
}

.info-text {
    flex: 1;
}

.info-text h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.info-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

.info-text strong {
    font-weight: 900;
    text-decoration: underline;
}

.info-badge {
    flex-shrink: 0;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-badge i {
    font-size: 1.5rem;
    color: var(--accent);
}

.info-badge span {
    font-weight: 900;
    color: var(--black);
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .info-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .info-text h3 {
        font-size: 1.5rem;
    }
}

/* LABORATORY CERTIFICATE SECTION */
.lab-certificate-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.certificate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .certificate-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .certificate-image-side {
        order: 1;
    }

    .certificate-info-side {
        order: 2;
    }

    .certificate-img {
        max-width: 100%;
        width: 100%;
    }

    .certificate-info-side h2 {
        font-size: 2rem;
        text-align: center;
    }

    .certificate-badge {
        display: flex;
        margin: 0 auto 1.5rem;
    }

    .certificate-intro {
        text-align: center;
    }

    .certificate-actions {
        flex-direction: column;
    }
}

.certificate-image-side {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.certificate-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.certificate-img:hover {
    transform: scale(1.02);
}

.lab-certificate-video {
    width: 100%;
    height: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: block;
    object-fit: cover;
    transform: scale(1.15);
    margin: -50px 0;
}

.certificate-info-side h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.certificate-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.certificate-badge i {
    font-size: 1rem;
}

.certificate-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.certificate-details {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--gray-200);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.detail-item:first-child {
    padding-top: 0;
    border-bottom: 1px solid var(--gray-200);
}

.detail-item:last-child {
    padding-bottom: 0;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.detail-item span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    font-family: 'Courier New', monospace;
}

.certificate-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cert-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-btn.primary {
    background: var(--black);
    color: var(--white);
}

.cert-btn.primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cert-btn.secondary {
    background: var(--white);
    color: var(--black);
    border-color: var(--gray-300);
}

.cert-btn.secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.verification-note {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    background: #eff6ff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.verification-note i {
    color: #3b82f6;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.verification-note p {
    font-size: 0.9375rem;
    color: #1e40af;
    margin: 0;
    line-height: 1.6;
}

.verification-note strong {
    font-weight: 700;
}

/* WHY CHOOSE DOCTOR B - CERTIFICATIONS SLIDER */
.certifications-slider-section {
    padding: 3.5rem 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    overflow: hidden;
}

.cert-slider-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.cert-slider-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.cert-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.cert-slider-track {
    display: flex;
    gap: 2rem;
    animation: slideLeft 30s linear infinite;
}

.cert-slider-track:hover {
    animation-play-state: paused;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cert-slide-card {
    flex: 0 0 280px;
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-slide-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.cert-slide-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
}

.cert-slide-card h3 {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.cert-slide-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .cert-slide-card {
        flex: 0 0 220px;
    }

    .cert-slider-title {
        font-size: 2rem;
    }
}

/* MANUFACTURING FACILITY SECTION */
.manufacturing-facility {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.facility-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.facility-header h2 {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.facility-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.facility-video-wrapper {
    max-width: 1100px;
    margin: 0 auto 5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.facility-video {
    width: 100%;
    display: block;
}

.production-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #059669);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1.25rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card li {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.feature-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900;
}

.feature-card li strong {
    color: var(--black);
    font-weight: 700;
}

.qa-section {
    background: var(--white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.qa-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--black);
    text-align: center;
    margin-bottom: 1rem;
}

.qa-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.qa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.qa-card {
    text-align: center;
}

.qa-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.qa-card:hover .qa-icon {
    background: var(--accent);
}

.qa-icon i {
    font-size: 2rem;
    color: var(--accent);
    transition: color 0.3s ease;
}

.qa-card:hover .qa-icon i {
    color: var(--white);
}

.qa-card h4 {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1rem;
}

.qa-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.qa-card li {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.qa-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900;
    font-size: 1.25rem;
}

@media (max-width: 968px) {
    .production-features {
        grid-template-columns: 1fr;
    }

    .qa-grid {
        grid-template-columns: 1fr;
    }

    .facility-header h2 {
        font-size: 2rem;
    }

    .qa-section {
        padding: 2rem;
    }
}

/* PRODUCT SECTION */
.product-section {
    padding: 3rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
}

.badge-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-info h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--gray-100);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cta-secondary {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-secondary:hover {
    background: var(--black);
    color: var(--white);
}

/* PRICING */
.pricing-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.timer-text {
    font-size: 1.125rem;
    color: var(--red);
    font-weight: 700;
}

#countdown {
    font-family: 'Courier New', monospace;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.price-box {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.price-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.price-box.popular {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.popular-badge,
.stock-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.stock-badge {
    background: var(--red);
}

.price-top h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price-top p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.price-main {
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
}

.savings {
    background: var(--accent);
    color: var(--white);
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.price-features li {
    padding: 0.5rem 0;
}

.buy-btn {
    width: 100%;
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
}

.buy-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
}

.buy-btn.primary {
    background: var(--accent);
}

.buy-btn.primary:hover {
    background: var(--accent-dark);
}

.sold-text {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--red);
    font-weight: 700;
}

.guarantee-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--gray-100);
}

.guarantee-box i {
    font-size: 3rem;
    color: var(--accent);
}

/* FAQ */
.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-q {
    padding: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.faq-q:hover {
    background: var(--gray-50);
}

.faq-a {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--gray-600);
}

.faq-item.active .faq-a {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* FOOTER */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-links {
    margin: 1.5rem 0;
}

.footer-links a {
    color: var(--white);
    margin: 0 1rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.disclaimer {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 2rem;
}

/* MOBILE CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 99;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray-100);
}

@media (max-width: 768px) {
    .mobile-cta {
        display: flex;
    }
}

.mobile-info {
    display: flex;
    flex-direction: column;
}

.mobile-title {
    font-weight: 700;
}

.mobile-price {
    font-size: 1.125rem;
    font-weight: 900;
}

.mobile-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}