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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    padding-top: 56px;
}

@media (min-width: 769px) {
    body {
        padding-top: 68px;
    }
}

/* Announcement Bar */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(107, 138, 253, 0.15) 0%, rgba(178, 152, 255, 0.15) 100%);
    border-bottom: 2px solid rgba(107, 138, 253, 0.4);
    padding: 16px 20px;
    z-index: 1001;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(107, 138, 253, 0.2);
}

@media (min-width: 769px) {
    .announcement-bar {
        padding: 20px 24px;
    }
}

.announcement-bar.hidden {
    display: none;
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.announcement-left,
.announcement-center,
.announcement-right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    flex: 1;
}

.announcement-left {
    justify-content: flex-start;
    position: relative;
}

.announcement-left::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(180deg, #7c93ff 0%, #b298ff 100%);
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(124, 147, 255, 0.8);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 12px rgba(124, 147, 255, 0.4);
    }
}

.announcement-left #announcementLeft {
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    text-shadow: 0 0 10px rgba(124, 147, 255, 0.5);
}

.announcement-center {
    justify-content: center;
}

.announcement-right {
    justify-content: flex-end;
}

.announcement-center svg {
    width: 24px;
    height: auto;
    flex-shrink: 0;
}

.whop-reviews {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
}

.announcement-right span {
    font-weight: 700;
    font-size: 15px;
    background: linear-gradient(135deg, #7c93ff 0%, #b298ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(124, 147, 255, 0.3);
}

body.no-announcement {
    padding-top: 0;
}

@media (max-width: 768px) {
    .announcement-bar {
        padding: 12px 15px;
    }

    .announcement-content {
        gap: 15px;
    }

    .announcement-left,
    .announcement-center,
    .announcement-right {
        font-size: 12px;
    }

    .announcement-left {
        display: none;
    }

    .announcement-center {
        flex: 1;
        justify-content: center;
    }

    .announcement-center svg {
        width: 20px;
    }

    .announcement-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        padding: 10px 12px;
    }

    .announcement-content {
        gap: 8px;
    }

    .announcement-left {
        display: none;
    }

    .announcement-center {
        font-size: 11px;
        flex: 1;
        justify-content: center;
    }

    .announcement-right {
        display: none;
    }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    text-align: center;
}

.hero {
    padding-top: 10px;
    padding-bottom: 60px;
}

@media (min-width: 769px) {
    .hero {
        padding-top: 60px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 0px;
        padding-bottom: 40px;
        min-height: calc(100vh - 56px);
        display: flex;
        align-items: center;
    }

    .hero .container {
        width: 100%;
    }
}

.hero-icon, .footer-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.tagline {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.tagline .highlight {
    color: #6b8afd;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.main-title .blue {
    color: #6b8afd;
    text-shadow: 0 0 20px rgba(107, 138, 253, 0.8),
                 0 0 40px rgba(107, 138, 253, 0.5),
                 0 0 60px rgba(107, 138, 253, 0.3);
}

.main-title .white {
    color: #fff;
}

.main-title .purple {
    color: #a78bfa;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.8),
                 0 0 40px rgba(167, 139, 250, 0.5),
                 0 0 60px rgba(167, 139, 250, 0.3);
}

.subtitle {
    color: #888;
    font-size: 16px;
    margin-bottom: 40px;
}

.video-box {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    border: 2px solid #222;
    box-shadow: 0 20px 60px rgba(107, 138, 253, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-box:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(107, 138, 253, 0.25);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
}

.image-showcase {
    width: 100%;
    max-width: 574px;
    margin: 0 auto 30px;
    border: 2px solid rgba(200, 200, 200, 0.3);
    border-radius: 12px;
    background: #000;
    padding: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.image-showcase-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
}

.showcase-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.showcase-image.active {
    opacity: 1;
}

.email-input {
    display: none;
}

.cta-button {
    background: linear-gradient(135deg, #7c93ff 0%, #b298ff 100%);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 147, 255, 0.4);
}

.social-proof {
    color: #888;
    font-size: 14px;
    margin-top: 15px;
}

.social-proof .highlight {
    color: #fff;
    font-weight: 600;
}

.comparison {
    background: #000;
}

.comparison-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.comparison-title .white {
    color: #fff;
}

.comparison-title .blue {
    color: #6b8afd;
}

.comparison-subtitle {
    color: #888;
    font-size: 16px;
    margin-bottom: 60px;
}

.vs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.vs-side {
    flex: 0 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    border-radius: 16px;
}

.lab-side {
    background: linear-gradient(135deg, rgba(107, 138, 253, 0.1), rgba(178, 152, 255, 0.1));
    border: 2px solid rgba(107, 138, 253, 0.3);
    box-shadow: 0 0 40px rgba(107, 138, 253, 0.25),
                0 0 80px rgba(107, 138, 253, 0.1),
                inset 0 0 20px rgba(107, 138, 253, 0.05);
    animation: labGlow 3s ease-in-out infinite;
}

@keyframes labGlow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(107, 138, 253, 0.25),
                    0 0 80px rgba(107, 138, 253, 0.1),
                    inset 0 0 20px rgba(107, 138, 253, 0.05);
    }
    50% {
        box-shadow: 0 0 60px rgba(107, 138, 253, 0.35),
                    0 0 100px rgba(107, 138, 253, 0.15),
                    inset 0 0 30px rgba(107, 138, 253, 0.08);
    }
}

.cookie-side {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(80, 80, 80, 0.3);
    transform: scale(0.85);
    opacity: 0.75;
    position: relative;
}

.vs-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.lab-side .vs-icon {
    filter: drop-shadow(0 0 20px rgba(107, 138, 253, 0.5));
}

.cookie-side .vs-icon {
    width: 65px;
    height: 65px;
    opacity: 0.7;
}

.vs-side h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lab-side h3 {
    color: #fff;
    font-size: 20px;
    text-shadow: 0 0 20px rgba(107, 138, 253, 0.5);
}

.cookie-side h3 {
    color: #777;
    font-size: 16px;
}

.vs-side ul {
    list-style: none;
    text-align: center;
}

.vs-side li {
    font-size: 14px;
    margin-bottom: 8px;
}

.lab-side li {
    color: #fff;
    font-weight: 500;
}

.cookie-side li {
    color: #666;
    font-size: 13px;
}

.recycled-icon {
    width: 40px;
    height: 40px;
    margin-top: 15px;
    opacity: 0.5;
}

.vs-divider {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    margin: 0 -20px;
    align-self: center;
}

/* Pricing Section */
.pricing {
    background: #000;
    padding: 80px 0;
}

.pricing-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.pricing-title .white {
    color: #fff;
}

.pricing-title .blue {
    color: #6b8afd;
}

.pricing-subtitle {
    color: #888;
    font-size: 16px;
    margin-bottom: 60px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: #111;
    border: 2px solid #222;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.lab-card {
    background: linear-gradient(135deg, rgba(107, 138, 253, 0.08), rgba(178, 152, 255, 0.08));
    border: 2px solid rgba(107, 138, 253, 0.4);
    box-shadow: 0 0 40px rgba(107, 138, 253, 0.25),
                0 0 80px rgba(107, 138, 253, 0.1),
                inset 0 0 20px rgba(107, 138, 253, 0.05);
    animation: labCardGlow 3s ease-in-out infinite;
}

@keyframes labCardGlow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(107, 138, 253, 0.25),
                    0 0 80px rgba(107, 138, 253, 0.1),
                    inset 0 0 20px rgba(107, 138, 253, 0.05);
    }
    50% {
        box-shadow: 0 0 60px rgba(107, 138, 253, 0.35),
                    0 0 100px rgba(107, 138, 253, 0.15),
                    inset 0 0 30px rgba(107, 138, 253, 0.08);
    }
}

.chemists-card {
    transform: scale(0.95);
    opacity: 0.9;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7c93ff 0%, #b298ff 100%);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 1px;
}

.pricing-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pricing-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.pricing-badge-item.waitlist {
    background: rgba(107, 138, 253, 0.15);
    color: #6b8afd;
    border-color: rgba(107, 138, 253, 0.3);
}

.pricing-badge-item svg {
    width: 12px;
    height: 12px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.lab-card .price-amount {
    background: linear-gradient(135deg, #7c93ff 0%, #b298ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 18px;
    color: #888;
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    flex-shrink: 0;
    font-size: 16px;
    color: #22c55e;
}

.pricing-features li.unavailable {
    color: #666;
}

.pricing-features li.unavailable::before {
    color: #666;
    content: '—';
}

.lab-card .pricing-features li::before {
    color: #6b8afd;
}

.pricing-button {
    width: 100%;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.lab-button {
    background: linear-gradient(135deg, #7c93ff 0%, #b298ff 100%);
    color: #fff;
}

.lab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 147, 255, 0.4);
}

.chemists-button {
    background: transparent;
    color: #6b8afd;
    border: 1px solid rgba(107, 138, 253, 0.3);
}

.chemists-button:hover {
    background: rgba(107, 138, 253, 0.1);
    border-color: #6b8afd;
}

.pricing-trial {
    text-align: center;
    color: #6b8afd;
    font-size: 13px;
    margin-top: 15px;
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    background: #000;
    padding: 80px 0;
    overflow: hidden;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.reviews-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reviews-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(107, 138, 253, 0.1);
    border: 1px solid rgba(107, 138, 253, 0.3);
    border-radius: 20px;
    color: #6b8afd;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
}

.reviews-badge svg {
    width: 14px;
    height: 14px;
}

.reviews-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(180deg, #6b8afd 0%, #b298ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-stats-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(107, 138, 253, 0.08), rgba(178, 152, 255, 0.08));
    border: 1px solid rgba(107, 138, 253, 0.2);
    border-radius: 16px;
    flex-wrap: wrap;
}

.stats-rating {
    font-size: 36px;
    font-weight: 800;
}

.stats-info {
    font-size: 14px;
    color: #fff;
}

.stats-verified {
    color: #888;
    font-size: 13px;
}

.whop-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.whop-button:hover {
    opacity: 0.8;
}

.reviews-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    max-height: 600px;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.reviews-columns::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #000 0%, transparent 100%);
    pointer-events: none;
}

.reviews-column {
    overflow: hidden;
    min-height: 200px;
}

.reviews-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: scrollUp 30s linear infinite;
    animation-delay: 0.5s;
    animation-fill-mode: backwards;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.reviews-track.slower {
    animation-duration: 40s;
    animation-delay: 0.7s;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0) translateZ(0);
        -webkit-transform: translateY(0) translateZ(0);
    }
    100% {
        transform: translateY(-50%) translateZ(0);
        -webkit-transform: translateY(-50%) translateZ(0);
    }
}

@-webkit-keyframes scrollUp {
    0% {
        -webkit-transform: translateY(0) translateZ(0);
        transform: translateY(0) translateZ(0);
    }
    100% {
        -webkit-transform: translateY(-50%) translateZ(0);
        transform: translateY(-50%) translateZ(0);
    }
}

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

.review-item {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.review-item:hover {
    border-color: rgba(107, 138, 253, 0.3);
    box-shadow: 0 8px 32px rgba(107, 138, 253, 0.15);
}

.review-stars {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
    margin-bottom: 12px;
}

.review-stars .stars {
    color: #6b8afd;
    letter-spacing: 2px;
}

.review-text {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-author {
    color: #888;
    font-size: 13px;
}

.faq {
    background: #000;
}

@media (max-width: 968px) {
    .reviews-columns {
        grid-template-columns: repeat(2, 1fr);
        max-height: 500px;
    }
    
    .reviews-column:last-child {
        display: none;
    }
}

@media (max-width: 640px) {
    .reviews-container {
        padding: 0 20px;
    }
    
    .reviews-columns {
        grid-template-columns: 1fr;
        max-height: 400px;
    }
    
    .reviews-column:last-child {
        display: block;
    }
    
    .reviews-column:nth-child(2),
    .reviews-column:nth-child(3) {
        display: none;
    }
    
    .reviews-stats-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .whop-button {
        width: 100%;
    }
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-title .white {
    color: #fff;
}

.faq-title .blue {
    color: #6b8afd;
}

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

.faq-item {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: #333;
}

.faq-item.active {
    border-color: rgba(107, 138, 253, 0.3);
    box-shadow: 0 0 20px rgba(107, 138, 253, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 20px 25px;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question {
    padding-bottom: 15px;
}

.faq-toggle {
    font-size: 24px;
    color: #6b8afd;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    will-change: max-height, opacity;
}

.faq-answer-content {
    padding: 0 25px 0px;
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
    will-change: transform, padding;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
}

.faq-item.active .faq-answer-content {
    padding: 0 25px 20px;
    transform: translateY(0);
}

footer {
    background: #000;
    border-top: 1px solid #222;
    padding: 60px 0 30px;
}

@media (max-width: 640px) {
    footer {
        padding: 40px 0 20px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 30px; /* Align with section titles */
}

.footer-icon {
    width: 50px;
    height: 50px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    margin-top: -50px; /* Fine-tune alignment */
}

.footer-description {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    max-width: 400px;
}

.footer-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links-section .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #6b8afd;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-links a:hover {
    color: #6b8afd;
}

.footer-social-icon {
    width: 20px;
    height: auto; /* Changed from fixed height */
    opacity: 0.7;
    transition: opacity 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
}

.copyright {
    color: #666;
    font-size: 12px;
}

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

    .footer-brand h3 {
        font-size: 20px;
    }

    .footer-description {
        max-width: 100%;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.98);
    border-top: 1px solid rgba(107, 138, 253, 0.3);
    padding: 20px;
    z-index: 9999;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.cookie-text a {
    color: #6b8afd;
    text-decoration: none;
    font-size: 13px;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #7c93ff 0%, #b298ff 100%);
    color: #fff;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 147, 255, 0.4);
}

.cookie-btn.necessary {
    background: transparent;
    color: #888;
    border: 1px solid #444;
}

.cookie-btn.necessary:hover {
    border-color: #666;
    color: #fff;
}

.cookie-btn.manage {
    background: transparent;
    color: #6b8afd;
    border: 1px solid rgba(107, 138, 253, 0.3);
}

.cookie-btn.manage:hover {
    border-color: #6b8afd;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-header {
    padding: 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-settings-header h3 {
    color: #fff;
    font-size: 20px;
}

.close-settings {
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-settings:hover {
    color: #fff;
}

.cookie-settings-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #222;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category h4 {
    color: #fff;
    font-size: 16px;
}

.cookie-category p {
    color: #888;
    font-size: 13px;
    line-height: 1.5;
}

/* Cookie Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #444;
    transition: .3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .slider {
    background: linear-gradient(135deg, #7c93ff 0%, #b298ff 100%);
}

.cookie-switch input:checked + .slider:before {
    transform: translateX(24px);
}

.cookie-switch input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-settings-footer {
    padding: 20px;
    border-top: 1px solid #333;
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

.experience-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.experience-modal.active {
    display: block;
}

.experience-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.experience-modal-content {
    position: relative;
    max-width: 500px;
    margin: 80px auto;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 40px;
    z-index: 1001;
}

.experience-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.experience-modal-close:hover {
    background: #222;
    color: #fff;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
}

.modal-header h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.experience-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.experience-option {
    background: #1a1a1a;
    border: 2px solid #333;
    color: #fff;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.option-icon {
    font-size: 24px;
    line-height: 1;
}

.option-text {
    line-height: 1;
}

.experience-option:hover {
    background: #222;
    border-color: #6b8afd;
    transform: translateY(-2px);
}

.cta-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-option {
    background: #1a1a1a;
    border: 2px solid #333;
    padding: 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    order: 2;
    transform: scale(0.95);
    opacity: 0.85;
}

.cta-option.primary {
    border-color: #6b8afd;
    background: linear-gradient(135deg, rgba(124, 147, 255, 0.1) 0%, rgba(178, 152, 255, 0.1) 100%);
}

.cta-option:hover {
    transform: scale(0.95) translateY(-2px);
    border-color: #6b8afd;
}

.cta-option.primary:hover {
    background: linear-gradient(135deg, rgba(124, 147, 255, 0.2) 0%, rgba(178, 152, 255, 0.2) 100%);
}

.cta-option.recommended {
    background: linear-gradient(135deg, rgba(107, 138, 253, 0.15), rgba(178, 152, 255, 0.15));
    border: 2px solid rgba(107, 138, 253, 0.4);
    box-shadow: 0 0 30px rgba(107, 138, 253, 0.3),
                0 0 60px rgba(107, 138, 253, 0.15),
                inset 0 0 15px rgba(107, 138, 253, 0.08);
    animation: ctaGlow 3s ease-in-out infinite;
    order: 1;
    transform: scale(1);
    opacity: 1;
}

@keyframes ctaGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(107, 138, 253, 0.3),
                    0 0 60px rgba(107, 138, 253, 0.15),
                    inset 0 0 15px rgba(107, 138, 253, 0.08);
    }
    50% {
        box-shadow: 0 0 45px rgba(107, 138, 253, 0.4),
                    0 0 80px rgba(107, 138, 253, 0.2),
                    inset 0 0 20px rgba(107, 138, 253, 0.12);
    }
}

.cta-option.recommended:hover {
    background: linear-gradient(135deg, rgba(107, 138, 253, 0.2), rgba(178, 152, 255, 0.2));
    transform: translateY(-2px) scale(1.01);
}

.cta-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.cta-subtitle {
    display: block;
    font-size: 14px;
    color: #888;
}

.cta-trial {
    display: block;
    font-size: 12px;
    color: #6b8afd;
    margin-top: 8px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 36px;
    }

    .comparison-title, .faq-title, .reviews-title {
        font-size: 32px;
    }

    .reviews-columns {
        grid-template-columns: 1fr;
        max-height: 400px;
    }

    .reviews-stats-card {
        width: 100%;
        justify-content: center;
    }

    .reviews-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .vs-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .vs-side {
        flex: 0 1 auto;
        width: 100%;
        max-width: 350px;
    }

    .lab-side {
        transform: scale(1);
        margin-bottom: 10px;
    }

    .cookie-side {
        transform: scale(0.9);
        opacity: 0.7;
    }

    .vs-divider {
        display: none;
    }

    .pricing-title {
        font-size: 32px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-card {
        padding: 20px;
    }

    .lab-card {
        order: 1;
    }

    .chemists-card {
        order: 2;
        transform: scale(1);
        opacity: 0.95;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .price-amount {
        font-size: 40px;
    }

    .video-box {
        margin-bottom: 20px;
        border-radius: 12px;
        border-width: 1px;
    }

    .video-box:hover {
        transform: none;
    }

    .video-wrapper iframe {
        border-radius: 10px;
    }

    .image-showcase {
        margin-bottom: 20px;
        border-radius: 8px;
        padding: 0;
    }

    .image-showcase-inner {
        border-radius: 8px;
    }

    .form-box {
        padding: 30px 20px;
        min-height: 100px;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .experience-modal-content {
        margin: 40px 20px;
        padding: 30px 20px;
    }

    .modal-header h3 {
        font-size: 20px;
    }

    .experience-option {
        font-size: 16px;
        padding: 18px;
    }

    .cta-option {
        padding: 20px;
    }

    .cta-title {
        font-size: 16px;
    }
}

/* Desktop footer alignment fix */
@media (min-width: 769px) {
    .footer-grid {
        display: flex;
        justify-content: center;
        align-items: baseline;
        gap: 120px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 15px;
        flex: 0 0 auto;
    }

    .footer-icon {
        display: none;
    }

    .footer-brand h3 {
        margin: 0;
        line-height: 1;
        font-size: 24px;
    }

    .footer-section-title {
        line-height: 1;
        margin-bottom: 20px;
        font-size: 16px;
    }

    .footer-links-section,
    .footer-social-section {
        flex: 0 0 auto;
    }
}