/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    background-color: #fff;
    max-width: 100%;
}

/* Responsive images */
img, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrolling Banner */
.scrolling-banner {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #cbd5e1 100%);
    color: white;
    padding: 4px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.banner-content {
    display: inline-flex;
    animation: scroll 60s linear infinite;
    width: 200%;
}

.banner-content span {
    display: inline-block;
    padding: 0 30px;
    font-size: 12px;
    font-weight: 500;
}

@keyframes scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Icon Styles */
.banner-check {
    width: 10px;
    height: 10px;
    margin-right: 6px;
    display: inline-block;
    vertical-align: middle;
}

.close-icon {
    width: 20px;
    height: 20px;
}

/* Navigation Links */
.nav-link, .mobile-nav-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link:hover, .mobile-nav-link:hover {
    color: #007bff;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Weight Loss Result Pulsing Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.weight-loss-result.pulsing {
    animation: pulse 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.weight-loss-result.pulsing:hover {
    transform: scale(1.08);
}

/* Guarantee Icons Styling */
.guarantee-icon {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    vertical-align: middle;
    display: inline-block;
    flex-shrink: 0;
}

.guarantee-icon[data-lucide="x"] {
    color: #ef4444;
    stroke-width: 2.5;
}

.guarantee-icon[data-lucide="check"] {
    color: #22c55e;
    stroke-width: 2.5;
}

/* Navigation */
.navbar {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.nav-logo img {
    max-width: 150px;
    height: auto;
    filter: none;
}

.nav-menu {
    display: none;
    gap: 30px;
    align-items: center;
}

.mobile-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 24px;
    height: 20px;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    display: none;
}

.mobile-menu-content {
    background: white;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 10px;
    line-height: 1;
    user-select: none;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.mobile-menu-close:hover {
    color: #666;
    background-color: rgba(0,0,0,0.05);
}

.mobile-menu-content span {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.nav-menu span {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
    font-weight: bold;
}

.nav-menu span:hover {
    color: #3b82f6;
}

.nav-cta {
    background: #1f2937;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.nav-cta:hover {
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    background: white;
    min-height: auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 20px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #cbd5e1 100%);
    border-radius: clamp(16px, 4vw, 36px);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
}

.logo img {
    max-width: 200px;
    margin: 0 auto 20px;
    filter: brightness(0) invert(1);
}

.rating {
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.stars {
    font-size: 20px;
    color: #ffd700;
    letter-spacing: 2px;
}

.rating span {
    font-size: 14px;
    opacity: 0.9;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.pricing {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: center;
    white-space: nowrap;
}

.price-label {
    font-size: 16px;
    opacity: 0.9;
    flex-shrink: 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.price-details {
    font-size: 14px;
    opacity: 0.8;
    flex-shrink: 0;
}

.features {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.feature .icon {
    font-size: 18px;
    flex-shrink: 0;
}

.feature .icon i {
    width: 18px;
    height: 18px;
    color: #1e40af;
}

.feature span:last-child {
    font-size: 14px;
    line-height: 1.4;
}

.cta-buttons {
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: #1f2937;
    color: white;
}

.btn-secondary {
    background: white;
    color: black;
    border: 2px solid white;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.guarantees {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 300px;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.2));
}

/* Mobile-specific styles */
@media (max-width: 767px) {
    .mobile-nav {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .nav-cta {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        display: block;
        padding: 0 15px;
    }
    
    .hero-content {
        position: relative;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-image--mobile {
        display: block;
        float: right;
        width: 110px;
        margin: -10px 10px 1px 15px;
    }
    
    .hero-image--mobile img {
        max-width: 110px;
        width: 100%;
        height: auto;
    }
    
    .rating {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 10px;
        font-size: 0.75rem;
        white-space: nowrap;
        width: 100%;
        overflow: visible;
    }
    
    .rating .stars {
        font-size: 0.9rem;
        flex: 0 0 auto;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        text-align: left;
        margin-bottom: 8px;
        white-space: normal;
        line-height: 1.2;
    }
    
    .subtitle {
        text-align: left;
        font-size: 1.1rem;
        margin-bottom: 8px;
        line-height: 1.3;
        clear: none;
    }
    
    .pricing {
        justify-content: flex-start;
        margin-bottom: 1px;
        white-space: normal;
        flex-direction: row;
        align-items: baseline;
        gap: 6px;
        clear: left;
        flex-wrap: wrap;
    }
    
    .price-label,
    .price {
        flex-shrink: 0;
    }
    
    .price-details {
        display: block;
        clear: right;
        font-size: 0.95rem;
        margin-top: 1px;
        margin-bottom: 12px;
        text-align: left;
        padding-right: 15px;
        word-break: normal;
    }
    
    .features {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .feature {
        font-size: 1.0rem;
    }
    
    .cta-buttons {
        justify-content: flex-start;
        margin-bottom: 15px;
        gap: 8px;
        clear: both;
    }
    
    .guarantees {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 1.0rem;
        clear: both;
        align-items: center;
    }
    
    .mobile-menu-overlay.is-open {
        display: block;
    }
    
    .mobile-menu-content {
        position: absolute;
        right: 0;
        width: 280px;
        box-shadow: -2px 0 8px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-overlay.is-open .mobile-menu-content {
        transform: translateX(0);
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* iPad and Small Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .banner-content span {
        font-size: 14px;
        padding: 0 30px;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .hero-section {
        padding: 25px 30px;
        min-height: auto;
    }
    
    .hero-section::before {
        inset: 15px 20px;
        border-radius: 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        max-width: 600px;
    }
    
    .hero-content {
        text-align: center;
        order: unset;
    }
    
    .hero-image {
        order: unset;
        display: block;
        margin: 0 auto;
    }
    
    .hero-image--mobile {
        display: none;
    }
    
    .rating {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .pricing {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .guarantees {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-image img {
        max-width: 280px;
    }
}

/* Large Tablet and Desktop Styles */
@media (min-width: 1024px) {
    .featured-logos--mobile {
        display: none !important;
    }

    .featured-logos--desktop {
        display: block !important;
    }

    .featured-title {
        font-size: 0.65rem;
    }
    
    .banner-content span {
        font-size: 14px;
        padding: 0 40px;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .hero-section {
        padding: 30px 40px;
        min-height: auto;
    }
    
    .hero-section::before {
        inset: 15px 30px;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .hero-content {
        text-align: left;
        order: unset;
    }
    
    .hero-image {
        order: unset;
        display: block;
    }
    
    .hero-image--mobile {
        display: none;
    }
    
    .rating {
        justify-content: flex-start;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .pricing {
        justify-content: flex-start;
    }
    
    .cta-buttons {
        justify-content: flex-start;
    }
    
    .guarantees {
        flex-direction: row;
        gap: 30px;
    }
    
    .hero-image img {
        max-width: 350px;
    }
}

/* Featured Section */
.featured-section {
    background: white;
    padding: 20px 20px 30px;
    text-align: center;
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.featured-title {
    font-size: 0.6rem;
    color: #888;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.featured-logos img {
    max-width: 100%;
    height: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.featured-logos img:hover {
    opacity: 0.8;
}

.featured-logos--mobile {
    display: block;
}

.featured-logos--desktop {
    display: none;
}

/* Weight Calculator Section */
.calculator-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

.calculator-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.transformation-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 100%;
}

.slider-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    height: 100%;
    pointer-events: auto;
    cursor: pointer;
}

.before-after {
    position: relative;
    width: 100%;
    height: 100%;
}

.before-img, .after-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.after-img {
    clip-path: inset(0 50% 0 0);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 10;
    pointer-events: auto;
}

.slider-line {
    width: 2px;
    height: 100%;
    background: white;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-size: 14px;
    color: #666;
}

.arrow-left {
    margin-right: 2px;
}

.arrow-right {
    margin-left: 2px;
}

.before-label, .after-label {
    position: absolute;
    top: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

.calculator-content {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calculator-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.weight-input-section {
    margin-bottom: 30px;
}

.weight-input-section label {
    display: block;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    font-weight: 500;
}

.weight-input {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 16px;
    width: 120px;
    background: white;
}

.weight-input:focus {
    outline: none;
    border-color: #2563eb;
}

.weight-slider-container {
    margin: 30px 0 40px;
}

.weight-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.weight-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.weight-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #888;
}

.weight-loss-result {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #e5e7eb);
    padding: 16px 24px;
    border-radius: 20px;
    display: inline-block;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.result-text {
    font-size: 0.9rem;
    margin-right: 8px;
}

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

/* Mobile Styles for Calculator */
@media (max-width: 1023px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        align-items: center;
    }
    
    .calculator-content {
        padding: 30px 25px;
        height: auto;
    }
    
    .calculator-content h2 {
        font-size: 1.8rem;
    }
    
    .transformation-slider {
        max-width: 400px;
        margin: 0 auto;
        height: auto;
    }
    
    .slider-container {
        aspect-ratio: 3/4;
        height: auto;
    }
}

@media (max-width: 767px) {
    .calculator-section {
        padding: 40px 20px;
    }
    
    .calculator-content {
        padding: 25px 20px;
    }
    
    .calculator-content h2 {
        font-size: 2.0rem;
    }
    
    .transformation-slider {
        max-width: 350px;
    }
}

/* Customer Testimonials Section */
.customer-testimonials-section {
    background: #f5f3f0;
    border-radius: 24px;
    margin: 40px 20px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    position: relative;
}

.testimonials-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.1;
}

.testimonials-content h2 em {
    font-style: italic;
    color: #4a90e2;
}

.testimonials-description {
    font-size: 18px;
    line-height: 1.4;
    color: #222;
    max-width: 600px;
    margin: 0 auto 25px;
    font-weight: 500;
}

.testimonials-intro {
    font-size: 18px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 500;
}

.arrow-down {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.bottle-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.main-bottle {
    display: none;
}

.bottle-left {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 140px;
    height: auto;
    opacity: 0.15;
    transform: rotate(-25deg);
}

.bottle-right {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 120px;
    height: auto;
    opacity: 0.15;
    transform: rotate(25deg);
}


@media (max-width: 768px) {
    .customer-testimonials-section {
        margin: 20px 20px;
        border-radius: 16px;
        min-height: 500px;
    }
    
    .testimonials-container {
        padding: 60px 20px;
    }
    
    .testimonials-content h2 {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .testimonials-description,
    .testimonials-intro {
        font-size: 16px;
    }
    
    .bottle-left {
        top: 10%;
        left: 3%;
        width: 100px;
    }
    
    .bottle-right {
        top: 12%;
        right: 3%;
        width: 85px;
    }
    
    .bottle-bottom-left {
        bottom: 8%;
        left: 5%;
        width: 70px;
    }
    
    .bottle-bottom-right {
        bottom: 12%;
        right: 5%;
        width: 75px;
    }
}

/* Customer Reviews Slider - Swiper */
.reviews-slider-container {
    margin-top: 60px;
    position: relative;
    padding: 0;
}

.reviews-swiper {
    padding: 20px 0 50px 0;
    overflow: visible;
}

.reviews-swiper .swiper-wrapper {
    align-items: center;
}

.reviews-swiper .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
}

.review-card {
    flex: 0 0 240px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: left;
}

.review-card .stars {
    font-size: 16px;
    margin-bottom: 12px;
}

.review-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.review-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 12px;
}

.review-card .reviewer {
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
}

/* Swiper Pagination */
.reviews-swiper .swiper-pagination {
    bottom: 10px;
    position: relative;
    margin-top: 20px;
}

.reviews-swiper .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.5;
    margin: 0 4px;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: #4a90e2;
    opacity: 1;
}

@media (max-width: 768px) {
    .reviews-slider-container {
        padding: 0 10px;
        margin-top: 40px;
    }
    
    .reviews-slider {
        gap: 25px;
    }
    
    .review-card {
        width: 220px;
        padding: 16px;
    }
    
    .reviews-swiper {
        padding: 20px 0 40px 0;
    }
}

/* Trust & Credibility Section */
.trust-section {
    background: white;
    padding: 40px 20px;
    text-align: center;
}

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

.trustpilot-rating {
    display: none;
}

.trust-badges-container {
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
}

/* Mobile ticker is hidden by default on desktop */
.trust-badges-ticker {
    display: none;
}

/* Compact CTA within testimonials */
.testimonials-cta {
    text-align: center;
    margin: 30px 0 20px 0;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.testimonials-cta h3 {
    font-size: 1.4rem;
    color: black;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.testimonials-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.testimonials-cta-primary {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.testimonials-cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.testimonials-cta-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 11px 30px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.testimonials-cta-secondary:hover {
    background: white;
    border-color: #333;
}

.testimonials-guarantees {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.testimonials-guarantee {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: black;
}

.testimonials-check-icon {
    color: #22c55e;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    stroke-width: 2.5;
}

.testimonials-trustpilot {
    display: flex;
    justify-content: center;
}

.testimonials-trustpilot img {
    max-width: 250px;
    height: auto;
}

/* Mobile styles for testimonials CTA */
@media (max-width: 768px) {
    .testimonials-cta {
        margin: 20px 0 15px 0;
        padding: 20px 15px;
    }
    
    .testimonials-cta h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .testimonials-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .testimonials-cta-primary, .testimonials-cta-secondary {
        width: 100%;
        max-width: 200px;
        padding: 12px 25px;
    }
    
    .testimonials-guarantees {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .testimonials-guarantee {
        font-size: 0.7rem;
    }
    
    .testimonials-trustpilot img {
        max-height: none;
    }
}

/* Why We're Better Section */
.why-better-section {
    background-color: white;
    padding: 80px 20px;
}

.why-better-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-better-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.why-better-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.why-better-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.4;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 500px;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
}

.timeline-step:last-child {
    border-bottom: none;
}

.timeline-marker {
    font-size: 0.7rem;
    color: #333;
    margin-top: 3px;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-main {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.3;
}

.timeline-time {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0;
}

.timeline-time.today {
    color: #007bff;
}

.timeline-time.within {
    color: #6f42c1;
}

.timeline-time.free {
    color: #28a745;
}

.timeline-time.ongoing {
    color: #fd7e14;
}

.why-better-phone {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: 100%;
}

.phone-mockup {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.phone-image {
    width: auto;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.phone-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 20px;
    padding: 60px 20px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Mobile styles for Why Better section */
@media (max-width: 768px) {
    .why-better-section {
        padding: 50px 20px;
    }
    
    .why-better-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        max-width: 100%;
    }
    
    .why-better-text h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .why-better-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .timeline {
        text-align: left;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .timeline-step {
        gap: 10px;
        padding: 12px 0;
    }
    
    .timeline-main {
        font-size: 1.0rem;
    }
    
    .timeline-time {
        font-size: 0.9rem;
    }
    
    .phone-mockup {
        max-width: 280px;
    }
}

/* Medications Section */
.medications-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.medications-container {
    max-width: 1200px;
    margin: 0 auto;
}

.medications-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 50px;
    font-weight: 600;
    line-height: 1.2;
}

.medications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.medication-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.medication-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.medication-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.3;
}

.medication-image {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.medication-vials {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.medication-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.stock-badge {
    background: linear-gradient(135deg, #007bff 0%, #00a8ff 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.discount-badge {
    background: linear-gradient(135deg, #007bff 0%, #00a8ff 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Medications Trust Badges */
.medications-trust-badges-container {
    margin-bottom: 40px;
}

/* Mobile ticker for medications */
.medications-trust-badges-ticker {
    display: none;
}

.medications-trust-badges-track {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    animation: badges-marquee 20s linear infinite;
}

/* Desktop static badges for medications */
@media (min-width: 769px) {
    .medications-trust-badges-ticker {
        display: none;
    }
}

@media (max-width: 768px) {
    .trust-badges-desktop {
        display: none;
    }
    
    .medications-trust-badges-ticker {
        display: block;
        overflow: hidden;
        width: 100%;
        white-space: nowrap;
    }
}

/* Medications CTA Buttons */
.medications-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.medications-cta-primary {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.medications-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.medications-cta-secondary {
    background: white;
    color: #333;
    border: 2px solid #ddd;
    padding: 13px 40px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.medications-cta-secondary:hover {
    border-color: #333;
    background-color: #f8f9fa;
}

/* Medications Guarantees */
.medications-guarantees {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.medications-trustpilot {
    display: flex;
    justify-content: center;
}

.medications-trustpilot img {
    max-width: 250px;
    height: auto;
}

/* Mobile styles for medications section */
@media (max-width: 768px) {
    .medications-section {
        padding: 50px 20px;
    }
    
    .medications-section h2 {
        font-size: 2.1rem;
        margin-bottom: 40px;
    }
    
    .medications-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .medication-card {
        padding: 30px 20px;
    }
    
    .medication-card h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .medication-vials {
        max-width: 150px;
    }
    
    .medications-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .medications-cta-primary, .medications-cta-secondary {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
    }
    
    .medications-guarantees {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-bottom: 25px;
    }
}

/* FAQ Section */
.faq-section {
    background-color: white;
    padding: 50px 20px;
}

.faq-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.faq-section h2 {
    font-size: 1.9rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.4;
}

.faq-list {
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 14px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background-color: #f8f9fa;
    padding-left: 12px;
    padding-right: 12px;
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 6px;
}

.faq-question::before {
    content: '';
    width: 3px;
    height: 3px;
    background: linear-gradient(135deg, #007bff 0%, #00a8ff 100%);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    opacity: 0.7;
}

.faq-avatar {
    display: none;
}

.avatar-circle {
    display: none;
}

.faq-text {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    flex-grow: 1;
    line-height: 1.3;
}

.faq-toggle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin-left: 12px;
    transition: transform 0.3s ease;
    width: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
    color: #007bff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-left: 18px;
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 160px;
    padding-bottom: 14px;
}

.faq-answer p {
    color: #666;
    line-height: 1.4;
    margin: 0;
    font-size: 0.8rem;
}

/* Mobile styles for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 35px 20px;
    }
    
    .faq-section h2 {
        font-size: 1.9rem;
        margin-bottom: 8px;
    }
    
    .faq-subtitle {
        font-size: 1.0rem;
        margin-bottom: 25px;
    }
    
    .faq-question {
        padding: 12px 0;
    }
    
    .faq-question::before {
        margin-right: 12px;
        width: 2px;
        height: 2px;
    }
    
    .faq-text {
        font-size: 1.0rem;
    }
    
    .faq-toggle {
        font-size: 1rem;
        margin-left: 10px;
    }
    
    .faq-answer {
        margin-left: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 12px;
    }
    
    .faq-answer p {
        font-size: 0.75rem;
    }
}

/* Footer CTA Section */
.footer-cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #cbd5e1 100%);
    padding: 80px 20px 8px;
    text-align: center;
    color: white;
}

.footer-cta-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-cta-content {
    max-width: 600px;
    margin: 0 auto 8px;
}

.footer-cta-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.footer-cta-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta-button {
    background: #000;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-cta-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer Content within Gradient */
.footer-content-gradient {
    text-align: left;
    padding-top: 4px;
}

.footer-brand-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3px;
}

.footer-brand {
    display: none;
}

.footer-logo {
    display: none;
}

.footer-links {
    display: flex;
    justify-content: center;
}

.footer-column h4 {
    display: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-column ul li {
    margin-bottom: 0;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.55rem;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom-gradient {
    padding-top: 4px;
}

.legitscript-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .legitscript-badge {
        text-align: center;
        margin: 0 auto 8px auto;
        width: 100%;
    }
}

.legitscript-badge img {
    transition: opacity 0.3s ease;
}

.legitscript-badge img:hover {
    opacity: 0.8;
}

.footer-copyright {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3px;
    font-weight: 500;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.45rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

.footer-disclaimer p {
    margin-bottom: 2px;
}

/* Mobile styles for footer */
@media (max-width: 768px) {
    .footer-cta-section {
        padding: 60px 20px 6px;
    }
    
    .footer-cta-content {
        margin-bottom: 6px;
    }
    
    .footer-cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .footer-cta-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .footer-cta-button {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
    }
    
    .footer-content-gradient {
        padding-top: 3px;
    }
    
    .footer-brand-links {
        justify-content: center;
        margin-bottom: 3px;
    }
    
    .footer-column ul {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }
    
    .footer-column ul li {
        white-space: nowrap;
    }
    
    .footer-column ul li a {
        font-size: 0.6rem;
        padding: 2px 3px;
        white-space: nowrap;
        display: inline-block;
    }
    
    .footer-bottom-gradient {
        padding-top: 2px;
    }
    
    .legitscript-badge img {
        width: 120px;
        height: auto;
    }
    
    .footer-copyright {
        font-size: 0.65rem;
    }
    
    .footer-disclaimer {
        font-size: 0.55rem;
    }
}

.trust-badges-swiper {
    overflow: visible;
    display: none;
}

.trust-badges-swiper .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badges-swiper .trust-badge {
    white-space: nowrap;
}


.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-icon {
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e67e22;
}

.badge-icon i {
    width: 20px;
    height: 20px;
    color: #e67e22;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.cta-primary {
    background: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.cta-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.cta-secondary {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.cta-secondary:hover {
    border-color: #333;
    transform: translateY(-2px);
}

.trust-guarantees {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #666;
}

.check-icon {
    color: #22c55e;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    stroke-width: 2.5;
}

.bottom-trustpilot {
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
}

.trustpilot-image {
    max-width: 250px;
    height: auto;
}

/* Mobile Styles for Trust Section */
@media (max-width: 767px) {
    .trust-section {
        padding: 30px 20px;
    }
    
    .trust-badges {
        display: none;
    }
    
    /* Hide desktop version on mobile */
    .trust-badges-desktop {
        display: none;
    }
    
    /* Show mobile ticker */
    .trust-badges-ticker {
        display: block;
        overflow: hidden;
        width: 100%;
        white-space: nowrap;
    }
    
    .trust-badges-track {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        animation: badges-marquee 20s linear infinite;
    }
    
    @keyframes badges-marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    .trust-badges-container {
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .trust-badge {
        font-size: 0.7rem;
        gap: 4px;
    }
    
    .badge-icon {
        font-size: 1rem;
        width: 20px;
        height: 20px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
    
    .trust-guarantees {
        gap: 20px;
    }
    
    .trustpilot-small {
        gap: 6px;
    }
}

@media (max-width: 1023px) {
    .trust-badges {
        gap: 25px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .scrolling-banner {
        padding: 6px 0;
    }
    
    .banner-content span {
        font-size: 14px;
        padding: 0 50px;
    }
    
    .hero-section {
        padding: 40px 60px;
        min-height: auto;
    }
    
    .hero-section::before {
        inset: 20px 40px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .features {
        gap: 10px;
    }
    
    .hero-image img {
        max-width: 400px;
    }
}