        :root {
            --bg-primary: #e5e7eb;
            --bg-secondary: #f3f4f6;
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.8);
            --text-primary: #0f172a;
            --text-secondary: #64748b;
            --text-light: #cbd5e1;
            --accent-dark: #0f172a;
            --shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
            --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html {
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.5;
            overflow-x: hidden;
            min-height: 100vh;
            letter-spacing: -0.01em;
            padding-top: 60px;
        }

        /* Top Navigation */
        .top-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10000;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .hamburger-menu {
            width: 32px;
            height: 32px;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            padding: 0;
        }

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

        .hamburger-menu:active {
            transform: scale(0.95);
        }

        .logo-doza {
            display: flex;
            align-items: center;
        }

        /* Fullscreen Glass Menu */
        .fullscreen-menu {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 11000;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fullscreen-menu.open {
            visibility: visible;
            opacity: 1;
        }

        .glass-menu-content {
            width: 100%;
            height: 100%;
            background: rgba(242, 242, 247, 0.65);
            backdrop-filter: blur(50px) saturate(200%);
            -webkit-backdrop-filter: blur(50px) saturate(200%);
            padding: 80px 32px 40px;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow-y: auto;
        }

        .glass-menu-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.8) 50%,
                rgba(255, 255, 255, 0) 100%);
        }

        .glass-menu-content::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.1) 50%,
                rgba(0, 0, 0, 0) 100%);
        }

        .close-menu {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            font-size: 28px;
            color: #0A0A0A;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .close-menu:active {
            transform: scale(0.95);
            background: rgba(255, 255, 255, 0.6);
        }

        .menu-nav {
            display: flex;
            flex-direction: column;
            gap: 2px;
            flex: 1;
            padding: 8px 0;
        }

        .menu-category {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #999;
            padding: 12px 20px 4px;
            margin-top: 8px;
        }

        .menu-category:first-child {
            margin-top: 0;
        }

        .menu-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            text-decoration: none;
            color: #0A0A0A;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: -0.01em;
            border-radius: 10px;
            background: transparent;
            transition: all 0.2s ease;
        }

        .menu-item:active {
            background: rgba(255, 255, 255, 0.3);
        }

        .menu-item.expandable::after {
            content: '›';
            font-size: 20px;
            color: #999;
            transition: transform 0.3s ease;
        }

        .menu-item.expandable.active::after {
            transform: rotate(90deg);
        }

        .submenu {
            display: none;
            flex-direction: column;
            gap: 0;
            padding: 4px 0 8px 12px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .submenu.active {
            display: flex;
            max-height: 500px;
        }

        .submenu-item {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            text-decoration: none;
            color: #666;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: -0.01em;
            border-radius: 8px;
            background: transparent;
            transition: all 0.2s ease;
        }

        .submenu-item:active {
            background: rgba(255, 255, 255, 0.25);
            color: #0A0A0A;
        }

        .menu-footer {
            margin-top: auto;
            padding-top: 24px;
        }

        .menu-contact {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px 24px;
            text-decoration: none;
            color: #0088cc;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: -0.01em;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 136, 204, 0.2);
            transition: all 0.2s ease;
        }

        .menu-contact:active {
            background: rgba(255, 255, 255, 0.7);
        }

        .app-container {
            max-width: 428px;
            margin: 0 auto;
            min-height: 100vh;
            padding-bottom: calc(100px + env(safe-area-inset-bottom));
            overflow-x: hidden;
            width: 100%;
        }

        /* Welcome Screen */
        .app-header {
            padding: 0;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .welcome-screen {
            width: 100%;
            padding: 20px 24px 40px;
        }

        .welcome-content {
            text-align: center;
            position: relative;
        }
        
        /* Hide any floating scroll buttons in welcome content */
        .welcome-content > button,
        .welcome-content > .scroll-btn,
        .welcome-content [class*="scroll"][class*="button"] {
            display: none !important;
        }

        .welcome-title {
            font-size: 32px;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
            margin-top: 0;
            color: var(--text-primary);
            position: relative;
        }

        .title-big {
            font-size: 32px;
            font-weight: 700;
            display: block;
            margin-bottom: 4px;
            opacity: 0;
            animation: gentleSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 0.3s;
        }

        .title-thin {
            font-size: 18px;
            font-weight: 300;
            opacity: 0;
            animation: gentleSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 0.7s;
        }

        .title-accent {
            font-size: 22px;
            font-weight: 700;
            color: #0A0A0A;
            opacity: 0;
            animation: gentleSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 0.7s;
        }

        .question-text {
            font-size: 13px;
            font-weight: 500;
            color: #666;
            margin-top: 8px;
            margin-bottom: 10px;
            text-align: center;
            opacity: 0;
            animation: fadeIn 1s ease forwards;
            animation-delay: 1.5s;
        }

        .start-btn-large {
            display: block;
            width: 100%;
            max-width: 340px;
            margin: 0 auto 16px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            padding: 22px 40px;
            font-size: 19px;
            font-weight: 600;
            color: #0A0A0A;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            animation: gentleSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 2.0s;
        }

        .start-btn-large:active {
            transform: scale(0.98);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .telegram-btn-large {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            max-width: 340px;
            margin: 0 auto 32px;
            background: #0088cc;
            color: white;
            border: none;
            border-radius: 20px;
            padding: 20px 40px;
            font-size: 17px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 8px 32px rgba(0, 136, 204, 0.25);
            transition: all 0.3s ease;
            opacity: 0;
            animation: gentleSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 2.3s;
        }

        .telegram-btn-large:active {
            transform: scale(0.98);
            box-shadow: 0 4px 16px rgba(0, 136, 204, 0.2);
        }

        .big-question-header {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            font-size: 28px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.03em;
            color: rgba(15, 23, 42, 0.025);
            text-align: center;
            margin-top: 20px;
            margin-bottom: -30px;
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
            animation-delay: 1.8s;
        }

        .welcome-reassurance {
            font-size: 14px;
            color: #666666;
            font-weight: 500;
            margin-bottom: 28px;
            opacity: 1;
        }

        /* Premium Header Styles */
        .premium-title {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            font-size: 32px;
            font-weight: 600;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            color: #0A0A0A;
            margin-bottom: 24px;
        }

        .success-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 24px;
            padding: 28px 24px;
            margin-top: 0;
            margin-bottom: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            text-align: center;
            position: relative;
            opacity: 0;
            animation: gentleSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 0.9s;
        }
        
        /* Hide any arrow/button after success card */
        .success-card + button,
        .success-card + .scroll-button,
        .success-card::after {
            display: none !important;
        }

        .success-icon {
            font-size: 40px;
            margin-bottom: 12px;
        }

        .success-title {
            font-size: 19px;
            font-weight: 600;
            color: #1A1A1A;
            margin-bottom: 8px;
        }

        .success-text {
            font-size: 16px;
            font-weight: 500;
            color: #1A1A1A;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .success-stats {
            font-size: 13px;
            font-weight: 400;
            color: #666666;
        }

        .premium-cta-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 18px 28px;
            background: linear-gradient(135deg, rgba(44, 44, 44, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            text-decoration: none;
            transition: all 0.2s ease;
            position: relative;
            opacity: 0;
            animation: gentleSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 1.7s;
            z-index: 10;
        }
        
        /* Hide scroll arrow button */
        .premium-cta-button::before,
        .welcome-content > button[onclick*="scroll"],
        .welcome-content .scroll-arrow {
            display: none !important;
        }

        .premium-cta-button:active {
            transform: scale(0.98);
        }

        .cta-emoji {
            font-size: 18px;
        }

        .cta-text-bold {
            font-size: 13px;
            font-weight: 600;
            color: #FFFFFF;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .secondary-link {
            display: inline-block;
            margin-top: 12px;
            font-size: 12px;
            color: #666666;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .secondary-link:hover {
            color: #1A1A1A;
        }

        /* CTA Button */
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #007aff, #0056d2);
            color: white;
            font-size: 17px;
            font-weight: 600;
            border-radius: 24px;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(0, 122, 255, 0.35);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 122, 255, 0.45);
        }

        .cta-button:active {
            transform: translateY(0);
            box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
        }

        .cta-icon {
            font-size: 22px;
        }

        .cta-text {
            letter-spacing: -0.3px;
        }

        /* Login Form */
        .login-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 32px 24px;
            box-shadow: var(--shadow-lg);
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .form-input {
            width: 100%;
            padding: 16px;
            font-size: 16px;
            border: 2px solid rgba(15, 23, 42, 0.1);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--text-primary);
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent-dark);
            background: white;
        }

        .form-input::placeholder {
            color: var(--text-light);
        }

        .start-button {
            width: 100%;
            background: var(--accent-dark);
            color: white;
            border: none;
            border-radius: 14px;
            padding: 18px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
            margin-top: 8px;
        }

        .start-button:active {
            transform: scale(0.98);
        }

        .form-hint {
            font-size: 13px;
            color: var(--text-secondary);
            text-align: center;
            margin-top: 16px;
            line-height: 1.5;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes gentleSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes gentleGlowPulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            }
            50% {
                transform: scale(1.02);
                box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4),
                            0 0 40px rgba(102, 126, 234, 0.2);
            }
        }

        @keyframes instructionBounce {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            }
            25% {
                transform: scale(1.08);
                box-shadow: 0 12px 48px rgba(102, 126, 234, 0.5);
            }
            50% {
                transform: scale(0.98);
                box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
            }
            75% {
                transform: scale(1.04);
                box-shadow: 0 10px 40px rgba(102, 126, 234, 0.45);
            }
        }

        .feature-card.bounce-hint {
            animation: gentleGlowPulse 3s ease-in-out 3.5s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
            }
            50% {
                box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(4px);
            }
        }

        /* Horizontal Scroll Cards */
        .cards-section {
            margin-bottom: 32px;
        }

        .cards-scroll-wrapper {
            position: relative;
            padding: 0 24px;
        }

        .cards-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 16px;
        }

        .cards-scroll::-webkit-scrollbar {
            display: none;
        }

        .feature-card {
            flex: 0 0 280px;
            min-height: 240px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 32px 28px;
            scroll-snap-align: start;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .feature-card:active {
            transform: scale(0.98);
        }

        .card-number {
            font-size: 120px;
            font-weight: 300;
            color: var(--text-light);
            line-height: 1;
            position: absolute;
            bottom: 20px;
            right: 24px;
            z-index: 0;
        }

        .card-content {
            position: relative;
            z-index: 1;
        }

        .card-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .card-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Navigation Arrows */
        .nav-arrows {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 16px;
        }

        .nav-arrow {
            width: 44px;
            height: 44px;
            border: 1px solid rgba(15, 23, 42, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .nav-arrow:active {
            transform: scale(0.95);
        }

        .nav-arrow svg {
            width: 20px;
            height: 20px;
            stroke: var(--text-primary);
            stroke-width: 2;
        }

        /* Quick Actions */
        .quick-actions {
            padding: 0 24px;
            margin-bottom: 32px;
        }

        .section-title {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        .action-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .action-item {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
            color: inherit;
            box-shadow: var(--shadow);
            transition: all 0.2s ease;
        }

        .action-item:active {
            transform: scale(0.98);
        }

        .action-icon {
            font-size: 24px;
        }

        .action-text {
            flex: 1;
        }

        .action-title {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .action-subtitle {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .action-arrow {
            color: var(--text-secondary);
            font-size: 20px;
        }

        /* Premium Results Carousel */
        .big-question {
            text-align: center;
            padding: 10px 0 5px;
        }

        .big-question h2 {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            font-size: 48px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.04em;
            color: rgba(200, 200, 200, 0.6);
            margin: 0;
        }

        .results-carousel-section {
            padding: 0 0 20px 0;
            margin-bottom: 24px;
            background: #F5F5F5;
            margin-left: -24px;
            margin-right: -24px;
            padding-left: 24px;
            padding-right: 24px;
            padding-top: 16px;
        }

        .premium-section-title {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #999999;
            margin-bottom: 20px;
            padding-left: 0;
        }

        .carousel-wrapper {
            position: relative;
            margin-bottom: 20px;
        }

        .results-carousel {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 16px;
        }

        .results-carousel::-webkit-scrollbar {
            display: none;
        }

        @keyframes slideFromRight {
            0% {
                opacity: 0;
                transform: translateX(120px) scale(0.8);
            }
            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }
        
        @keyframes bounceInstructions {
            0% {
                opacity: 0;
                transform: translateX(120px) scale(0.8);
            }
            50% {
                opacity: 1;
                transform: translateX(0) scale(1.08);
                box-shadow: 0 12px 48px rgba(102, 126, 234, 0.4);
            }
            70% {
                transform: translateX(0) scale(0.98);
            }
            85% {
                transform: translateX(0) scale(1.02);
                box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
            }
            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
                box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
            }
        }
        
        @keyframes phoneSlideIn {
            0% {
                opacity: 0;
                transform: translateX(150px) translateY(-20px) scale(0.85) rotateZ(-5deg);
            }
            60% {
                opacity: 1;
                transform: translateX(0) translateY(0) scale(1.05) rotateZ(0deg);
            }
            100% {
                opacity: 1;
                transform: translateX(0) translateY(0) scale(1) rotateZ(0deg);
            }
        }
        
        @keyframes phoneFloat {
            0%, 100% {
                transform: translateY(0px) rotateZ(0deg);
            }
            25% {
                transform: translateY(-3px) rotateZ(0.5deg);
            }
            50% {
                transform: translateY(0px) rotateZ(0deg);
            }
            75% {
                transform: translateY(-3px) rotateZ(-0.5deg);
            }
        }

        .testimonial-card-premium {
            flex: 0 0 280px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            padding: 0;
            scroll-snap-align: start;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.2s ease;
            overflow: visible;
            opacity: 0;
        }
        
        .testimonial-card-premium.animate-in {
            animation: slideFromRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }
        
        .testimonial-card-premium.animate-in:nth-child(1) {
            animation: bounceInstructions 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            animation-delay: 0s;
        }
        
        .testimonial-card-premium.animate-in:nth-child(2) {
            animation-delay: 0.1s;
        }
        
        .testimonial-card-premium.animate-in:nth-child(3) {
            animation-delay: 0.2s;
        }
        
        .testimonial-card-premium.animate-in:nth-child(4) {
            animation-delay: 0.3s;
        }
        
        .testimonial-card-premium.animate-in:nth-child(5) {
            animation-delay: 0.4s;
        }

        .testimonial-card-premium:active {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .testimonial-photo {
            width: 100%;
            min-height: auto;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            margin-top: 0;
            position: relative;
            z-index: 2;
        }
        
        .testimonial-photo > div {
            opacity: 0;
        }
        
        .testimonial-card-premium.animate-in .testimonial-photo > div {
            animation: phoneSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, phoneFloat 3s ease-in-out infinite;
            transform-origin: center center;
        }
        
        .testimonial-card-premium.animate-in:nth-child(1) .testimonial-photo > div {
            animation-delay: 0.3s, 1.4s;
        }
        
        .testimonial-card-premium.animate-in:nth-child(2) .testimonial-photo > div {
            animation-delay: 0.45s, 1.6s;
        }
        
        .testimonial-card-premium.animate-in:nth-child(3) .testimonial-photo > div {
            animation-delay: 0.6s, 1.8s;
        }
        
        .testimonial-card-premium.animate-in:nth-child(4) .testimonial-photo > div {
            animation-delay: 0.75s, 2.0s;
        }
        
        .testimonial-card-premium.animate-in:nth-child(5) .testimonial-photo > div {
            animation-delay: 0.9s, 2.2s;
        }

        .bw-filter {
            filter: grayscale(100%);
        }

        .photo-placeholder {
            font-size: 80px;
            opacity: 0.3;
        }

        .testimonial-name {
            font-size: 14px;
            font-weight: 600;
            color: #0A0A0A;
            text-align: center;
            padding: 0 12px;
            margin-bottom: 4px;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        .testimonial-result {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: #000000;
            text-align: center;
            margin-bottom: 0;
            letter-spacing: -0.03em;
            font-variant-numeric: tabular-nums;
        }

        .testimonial-duration {
            font-size: 12px;
            color: #666666;
            text-align: center;
            margin-bottom: 4px;
            font-weight: 500;
        }

        .testimonial-quote {
            font-size: 12px;
            font-style: italic;
            color: #666666;
            text-align: center;
            line-height: 1.4;
            padding: 0 12px 8px 12px;
            font-weight: 400;
        }

        .carousel-scroll-indicator {
            text-align: center;
            font-size: 12px;
            color: #999999;
            margin-top: 12px;
        }

        .show-more-link {
            display: block;
            text-align: center;
            font-size: 14px;
            color: #4A90E2;
            text-decoration: none;
            font-weight: 500;
            margin-top: 16px;
        }

        .show-more-link:hover {
            color: #3A7BC8;
        }

        /* Peptide Upsell Card */
        .peptide-upsell-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 24px;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }

        .peptide-upsell-card:active {
            transform: scale(0.98);
        }

        .upsell-icon {
            font-size: 32px;
            margin-bottom: 12px;
        }

        .upsell-content {
            text-align: left;
        }

        .upsell-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .upsell-desc {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .upsell-benefits {
            list-style: none;
            padding: 0;
            margin: 0 0 16px 0;
        }

        .upsell-benefits li {
            font-size: 13px;
            color: #2C2C2C;
            margin-bottom: 8px;
        }

        .upsell-link {
            display: inline-block;
            font-size: 14px;
            color: #4A90E2;
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 12px;
        }

        .upsell-social {
            font-size: 12px;
            color: var(--text-light);
            font-style: italic;
        }

        /* Timeline Section */
        .timeline-section {
            background: #F5F5F5;
            margin-left: -24px;
            margin-right: -24px;
            padding: 32px 24px;
        }

        .timeline-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .timeline-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .timeline-marker {
            flex: 0 0 48px;
            height: 48px;
            background: rgba(44, 44, 44, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'SF Mono', 'Menlo', monospace;
            font-size: 14px;
            font-weight: 700;
            color: #FFFFFF;
        }

        .timeline-content {
            flex: 1;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            padding: 16px;
        }

        .timeline-title {
            font-size: 16px;
            font-weight: 600;
            color: #1A1A1A;
            margin-bottom: 8px;
        }

        .timeline-text {
            font-size: 14px;
            color: #666666;
            line-height: 1.5;
        }

        /* FAQ Section */
        .faq-section {
            margin-top: 32px;
        }

        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            width: 100%;
            padding: 20px;
            background: none;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            font-weight: 600;
            color: #1A1A1A;
            text-align: left;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .faq-question:active {
            background: rgba(0, 0, 0, 0.02);
        }

        .faq-icon {
            font-size: 12px;
            color: #666666;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer p {
            padding: 0 20px 20px 20px;
            font-size: 14px;
            color: #666666;
            line-height: 1.6;
        }

        /* Premium Modal Container */
        .promo-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            width: 90%;
            max-width: 400px;
            max-height: 85vh;
            background: transparent;
            padding: 0;
            opacity: 0;
            visibility: hidden;
            z-index: 10000;
            overflow: visible;
            
            /* Start from button position (right: 20px, bottom: 100px) */
            transform-origin: calc(100% - 50px) calc(100vh - 130px);
            transform: translate(-50%, -50%) scale(0);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .promo-modal.show {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
            visibility: visible;
        }
        
        /* Premium Dark Overlay */
        .footer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 9999;
        }
        
        .footer-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        /* Promo Carousel */
        .promo-carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 32px 24px 24px;
        }

        .promo-slides {
            display: flex;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .promo-slide {
            min-width: 100%;
            padding: 0 8px;
        }

        .promo-card {
            background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.98));
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: none;
            border-radius: 28px;
            padding: 32px 24px 24px;
            text-align: center;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6),
                        0 8px 24px rgba(0, 0, 0, 0.4);
            height: 520px;
            display: flex;
            flex-direction: column;
        }
        
        .promo-card-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .promo-icon {
            font-size: 56px;
            margin: 0 auto 24px;
            text-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
        }

        .promo-title {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 16px;
            line-height: 1.3;
            text-align: center;
        }

        .promo-description {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            font-size: 15px;
            font-weight: 400;
            color: #B8B8B8;
            line-height: 1.5;
            margin-bottom: 24px;
            text-align: center;
        }

        .promo-value {
            font-family: 'SF Mono', 'Menlo', monospace;
            font-size: 42px;
            font-weight: 700;
            color: #FFB800;
            margin-bottom: 8px;
            text-align: center;
            letter-spacing: -0.02em;
            font-variant-numeric: tabular-nums;
        }

        .promo-cta {
            display: block;
            width: 100%;
            padding: 16px 32px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: #1A1A1A;
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            font-size: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border-radius: 14px;
            text-decoration: none;
            transition: all 0.2s ease;
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
            margin-top: auto;
            text-align: center;
        }

        .promo-cta:active {
            transform: scale(0.95);
        }

        /* Carousel Navigation */
        .carousel-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 6px;
            padding: 8px 0;
            margin-top: 8px;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            width: 8px;
            height: 8px;
            background: #FFFFFF;
            border-radius: 50%;
        }

        /* Swipe Hint */
        .swipe-hint {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            animation: fade-hint 2s ease-in-out infinite;
            pointer-events: none;
        }

        .swipe-hint.hidden {
            display: none;
        }

        @keyframes fade-hint {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        .swipe-arrows {
            display: flex;
            gap: 16px;
            font-size: 18px;
            animation: pulse-arrows 1.5s ease-in-out infinite;
        }

        @keyframes pulse-arrows {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(4px); }
        }

        /* Slide Counter */
        .slide-counter {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'SF Mono', 'Menlo', monospace;
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 12px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }



        /* Floating Notification Button */
        .floating-notification-btn {
            position: fixed;
            right: 20px;
            bottom: 100px;
            width: 60px;
            height: 60px;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            cursor: pointer;
            z-index: 10001;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 1;
            transform: scale(1);
        }

        .floating-notification-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        }

        .floating-notification-btn:active {
            transform: scale(0.95);
        }

        /* Minimalist envelope icon */
        .notification-badge {
            position: absolute;
            top: 4px;
            right: 4px;
            width: 12px;
            height: 12px;
            background: #FF3B30;
            border-radius: 50%;
            border: 2px solid rgba(26, 26, 26, 0.95);
            animation: pulse-badge 2s ease-in-out infinite;
        }

        @keyframes pulse-badge {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.8;
            }
        }

        .sticky-footer-content {
            max-width: 640px;
            margin: 0 auto;
            position: relative;
        }



        .offer-badge {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            font-size: 11px;
            font-weight: 600;
            color: #C0C0C0;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
            text-align: center;
        }

        .offer-title {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 12px;
            text-align: center;
        }

        .price-container {
            margin-bottom: 16px;
        }

        .price-old {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .price-old .price-label {
            font-size: 13px;
            color: #999999;
        }

        .price-old .price-value {
            font-family: 'SF Mono', 'Menlo', monospace;
            font-size: 14px;
            color: #999999;
            text-decoration: line-through;
        }

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

        .price-new .price-label {
            font-size: 13px;
            color: #FFFFFF;
        }

        .price-new .price-value {
            font-family: 'SF Mono', 'Menlo', monospace;
            font-size: 18px;
            font-weight: 700;
            color: #FFFFFF;
        }

        .sticky-cta-button {
            display: block;
            width: 100%;
            padding: 14px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: #1A1A1A;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-align: center;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
            transition: all 0.2s ease;
            margin-bottom: 12px;
        }

        .sticky-cta-button:active {
            transform: scale(0.98);
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            color: #C0C0C0;
        }

        .countdown-value {
            font-family: 'SF Mono', 'Menlo', monospace;
            font-weight: 600;
        }

        .close-footer {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            font-size: 20px;
            color: #FFFFFF;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            z-index: 10001;
        }

        .close-footer:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
        }

        .close-footer:active {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(0.95);
        }

        /* Testimonials */
        .section-subtitle {
            text-align: center;
            font-size: 14px;
            color: var(--text-secondary);
            margin: -12px 0 24px 0;
            padding: 0 24px;
            line-height: 1.5;
        }

        .testimonial-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 20px;
            margin: 0 24px 16px;
            box-shadow: var(--shadow);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, rgba(0, 122, 255, 0.15), rgba(0, 122, 255, 0.08));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2px;
        }

        .testimonial-rating {
            font-size: 12px;
        }

        .testimonial-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .testimonial-result {
            display: inline-block;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
            color: #0f172a;
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
        }

        .trust-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin: 24px 24px 0;
        }

        .stat-item {
            text-align: center;
            padding: 16px 8px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
        }

        .stat-number {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #007aff 0%, #0056d2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 11px;
            color: var(--text-secondary);
            line-height: 1.3;
        }

        /* CTA Button */
        .cta-section {
            padding: 0 24px;
            margin-bottom: 32px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
            color: #FFFFFF;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            text-decoration: none;
            letter-spacing: 0.02em;
        }

        .cta-button:active {
            transform: scale(0.98);
            background: #1A1A1A;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
        }

        .cta-icon {
            font-size: 20px;
        }

        .cta-text {
            font-weight: 600;
        }

        /* Bottom Navigation - Liquid Glass Effect */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(249, 250, 251, 0.72);
            backdrop-filter: blur(40px) saturate(180%);
            -webkit-backdrop-filter: blur(40px) saturate(180%);
            border-top: 0.5px solid rgba(0, 0, 0, 0.04);
            padding: 8px 0 8px 0;
            padding-bottom: max(8px, env(safe-area-inset-bottom));
            z-index: 9999;
            box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.04);
        }

        .bottom-nav-container {
            max-width: 640px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 0 16px;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #8e8e93;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: -0.2px;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 4px 12px;
            border-radius: 12px;
            min-width: 60px;
        }

        .nav-item:active {
            transform: scale(0.95);
            background: rgba(0, 0, 0, 0.04);
        }

        .nav-item.active {
            color: #007aff;
        }

        .nav-item-icon {
            width: 26px;
            height: 26px;
            margin-bottom: 2px;
            transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            stroke-width: 2;
        }

        .nav-item.active .nav-item-icon {
            transform: scale(1.08);
        }

        .nav-item-label {
            font-size: 10px;
        }

        /* Decorative Diamond */
        .diamond {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--accent-dark);
            transform: rotate(45deg);
            margin: 0 8px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .feature-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .feature-card:nth-child(1) { animation-delay: 0s; }
        .feature-card:nth-child(2) { animation-delay: 0.1s; }
        .feature-card:nth-child(3) { animation-delay: 0.2s; }
        .feature-card:nth-child(4) { animation-delay: 0.3s; }
        .feature-card:nth-child(5) { animation-delay: 0.4s; }
        .feature-card:nth-child(6) { animation-delay: 0.5s; }

        /* Primary Card (CTA Order) */
        .feature-card-primary {
            background: linear-gradient(135deg, rgba(0, 122, 255, 0.15), rgba(0, 122, 255, 0.08));
            border-color: rgba(0, 122, 255, 0.4);
            box-shadow: 0 8px 24px rgba(0, 122, 255, 0.15);
        }

        .feature-card-primary:hover {
            box-shadow: 0 12px 32px rgba(0, 122, 255, 0.25);
            transform: translateY(-4px);
        }

        .feature-card-primary .card-title {
            color: #007aff;
            font-weight: 600;
        }

        /* Warning Card */
        .feature-card-warning {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
            border-color: rgba(239, 68, 68, 0.3);
        }

        .feature-card-warning .card-number {
            font-size: 80px;
        }

        /* Link Card */
        .feature-card-link {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.03));
        }

        .feature-card-link .card-number {
            font-size: 100px;
        }

        /* Parallax Effect */
        .parallax-layer {
            will-change: transform;
            transition: transform 0.1s ease-out;
        }
    </style>
<style>
    .site-footer {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-bottom: none;
        color: #1A1A1A;
        margin-top: 40px;
        border-radius: 24px 24px 0 0;
        font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
        box-shadow: 0 -4px 20px rgba(31, 38, 135, 0.1);
        padding-bottom: 80px;
    }

    .footer-container {
        max-width: 640px;
        margin: 0 auto;
        padding: 24px 20px 0;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 0 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        margin-bottom: 20px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-logo svg {
        display: block;
    }

    .footer-logo-text {
        font-size: 18px;
        font-weight: 600;
        color: #1A1A1A;
        letter-spacing: -0.02em;
    }

    .footer-search {
        position: relative;
        width: 100%;
        max-width: 280px;
    }

    .footer-search-input {
        width: 100%;
        padding: 10px 40px 10px 16px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        color: #1A1A1A;
        font-size: 13px;
        font-family: "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
        outline: none;
        transition: all 0.2s ease;
    }

    .footer-search-input:focus {
        border-color: #667eea;
        background: rgba(255, 255, 255, 0.7);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    }

    .footer-search-input::placeholder {
        color: #999999;
    }

    .footer-search-icon {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #666666;
        pointer-events: none;
    }

    .footer-desktop {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
        padding: 0 0 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .footer-title {
        font-size: 14px;
        line-height: 1.4;
        font-weight: 600;
        letter-spacing: -0.01em;
        margin: 0 0 12px;
        color: #1A1A1A;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links li a {
        color: #666666;
        text-decoration: none;
        font-size: 13px;
        line-height: 1.5;
        font-weight: 400;
        letter-spacing: -0.01em;
        transition: color 0.2s ease;
    }

    .footer-links li a:hover {
        color: #667eea;
    }

    .footer-links li .disabled-link,
    .footer-accordion-links li .disabled-link,
    .footer-links-inline .disabled-link {
        color: #999999;
        cursor: default;
        font-size: 13px;
        line-height: 1.5;
        font-weight: 400;
        letter-spacing: -0.01em;
    }

    .footer-mobile {
        display: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .footer-accordion {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .footer-accordion-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
        cursor: pointer;
        font-size: 14px;
        line-height: 1.4;
        font-weight: 600;
        letter-spacing: -0.01em;
        color: #1A1A1A;
        list-style: none;
    }

    .footer-accordion-title::-webkit-details-marker {
        display: none;
    }

    .footer-accordion-title::after {
        content: '+';
        font-size: 24px;
        font-weight: 300;
        color: #666666;
        transition: transform 0.3s ease;
    }

    .footer-accordion[open] .footer-accordion-title::after {
        content: '−';
    }

    .footer-accordion-links {
        list-style: none;
        padding: 0 0 14px;
        margin: 0;
    }

    .footer-accordion-links li {
        margin-bottom: 10px;
    }

    .footer-accordion-links li a {
        color: #666666;
        text-decoration: none;
        font-size: 13px;
        line-height: 1.5;
        font-weight: 400;
        letter-spacing: -0.01em;
    }

    .footer-accordion-links li a:hover {
        color: #667eea;
    }

    .footer-info {
        padding: 16px 0;
        font-size: 13px;
        line-height: 1.5;
        color: #999999;
        text-align: center;
    }

    .footer-info p {
        margin: 0;
    }

    .footer-bottom {
        padding: 16px 0 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-legal {
        font-size: 12px;
        line-height: 1.5;
        color: #999999;
        margin: 0;
        text-align: center;
    }

    .footer-links-inline a {
        color: #666666;
        text-decoration: none;
        margin: 0 5px;
    }

    .footer-links-inline a:hover {
        color: #667eea;
    }

    .footer-country {
        font-size: 12px;
        line-height: 1.5;
        color: #999999;
        margin: 0;
    }

    @media (max-width: 640px) {
        .site-footer {
            border-radius: 20px 20px 0 0;
            margin-top: 20px;
        }

        .footer-container {
            padding: 20px 20px 0;
        }

        .footer-top {
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
        }

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

        .footer-desktop {
            display: none;
        }

        .footer-mobile {
            display: block;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 8px;
        }

        .footer-legal {
            font-size: 11px;
        }

        .footer-country {
            order: -1;
        }
    }

/* =================================
   PEPTIDES PAGE STYLES
   ================================= */
    /* Peptides Page Variables */
    .peptides-page {
        --glass-white: rgba(255, 255, 255, 0.7);
        --glass-border: rgba(255, 255, 255, 0.3);
        --text-display: #0A0A0A;
        --text-primary: #1A1A1A;
        --text-secondary: #666666;
        --text-tertiary: #999999;
        --btn-dark-from: rgba(44, 44, 44, 0.95);
        --btn-dark-to: rgba(26, 26, 26, 0.95);
    }

    /* Hero Section */
    .peptides-hero {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 24px;
        padding: 32px 24px;
        margin-bottom: 20px;
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.12);
    }

    .peptides-hero-title {
        font-size: 24px;
        font-weight: 600;
        color: #0A0A0A;
        text-transform: uppercase;
        letter-spacing: -0.03em;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .peptides-hero-subtitle {
        font-size: 16px;
        color: #666666;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .peptides-proof-bar {
        display: flex;
        justify-content: space-around;
        gap: 12px;
        margin-bottom: 24px;
        padding: 16px;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        border-radius: 16px;
    }

    .peptides-proof-item {
        text-align: center;
        flex: 1;
    }

    .peptides-proof-number {
        font-size: 20px;
        font-weight: 800;
        color: #1A1A1A;
        margin-bottom: 4px;
    }

    .peptides-proof-label {
        font-size: 11px;
        color: #666666;
    }

    .peptides-hero-cta {
        display: block;
        width: 100%;
        padding: 16px 24px;
        background: linear-gradient(135deg, rgba(44, 44, 44, 0.95), rgba(26, 26, 26, 0.95));
        border-radius: 14px;
        color: #FFFFFF;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    /* Results Carousel */
    .peptides-results-section {
        margin: 24px 0;
    }

    .peptides-results-title {
        text-align: center;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin-bottom: 20px;
        color: #1A1A1A;
        text-transform: uppercase;
    }

    .peptides-results-carousel {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 0 16px 0;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .peptides-results-carousel::-webkit-scrollbar {
        display: none;
    }

    .peptides-testimonial-card {
        flex: 0 0 280px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 16px;
        padding: 0;
        scroll-snap-align: start;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    .peptides-testimonial-phone {
        width: 100%;
        min-height: 340px;
        background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
        padding: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .peptides-testimonial-info {
        padding: 16px;
        text-align: center;
    }

    .peptides-testimonial-name {
        font-size: 14px;
        font-weight: 500;
        color: #1A1A1A;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .peptides-testimonial-result {
        font-size: 32px;
        font-weight: 600;
        color: #0A0A0A;
        margin-bottom: 4px;
    }

    .peptides-testimonial-duration {
        font-size: 12px;
        color: #666;
        margin-bottom: 8px;
    }

    .peptides-testimonial-quote {
        font-size: 13px;
        font-style: italic;
        color: #444;
        line-height: 1.4;
    }

    .peptides-swipe-hint {
        text-align: center;
        font-size: 13px;
        color: #999;
        margin-top: 12px;
    }

    /* Why It Works */
    .peptides-why-section {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 24px;
        padding: 24px 20px;
        margin: 24px 0;
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.12);
    }

    .peptides-why-title {
        font-size: 20px;
        font-weight: 700;
        color: #0A0A0A;
        text-transform: uppercase;
        margin-bottom: 8px;
        text-align: center;
    }

    .peptides-why-subtitle {
        font-size: 14px;
        color: #666;
        text-align: center;
        margin-bottom: 20px;
    }

    .peptides-synergy-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }

    .peptides-synergy-card {
        background: rgba(255, 255, 255, 0.6);
        border-radius: 16px;
        padding: 16px;
        text-align: center;
    }

    .peptides-synergy-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .peptides-synergy-label {
        font-size: 13px;
        font-weight: 600;
        color: #1A1A1A;
        margin-bottom: 4px;
    }

    .peptides-synergy-desc {
        font-size: 11px;
        color: #666;
        line-height: 1.4;
    }

    .peptides-stats-box {
        background: rgba(255, 255, 255, 0.5);
        border-radius: 16px;
        padding: 16px;
    }

    .peptides-stats-title {
        font-size: 13px;
        font-weight: 600;
        color: #1A1A1A;
        margin-bottom: 8px;
    }

    .peptides-stats-text {
        font-size: 12px;
        color: #666;
        line-height: 1.6;
    }

    /* Duration Selector */
    .peptides-duration-wrapper {
        text-align: center;
        margin: 32px 0;
    }

    .peptides-duration-title {
        font-size: 11px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: rgba(0, 0, 0, 0.4);
        margin-bottom: 12px;
    }

    .peptides-duration-selector {
        display: inline-flex;
        gap: 4px;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 24px;
        padding: 4px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .peptides-duration-btn {
        padding: 12px 28px;
        background: transparent;
        border: none;
        border-radius: 20px;
        font-weight: 500;
        font-size: 13px;
        cursor: pointer;
        transition: all 0.3s ease;
        color: rgba(0, 0, 0, 0.5);
    }

    .peptides-duration-btn.active {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        color: #1a1a1a;
    }

    /* Bundle Cards */
    .peptides-bundles-header {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #999;
        margin: 24px 0 16px;
        text-align: center;
    }

    .peptides-bundles-grid {
        display: grid;
        gap: 16px;
    }

    .peptides-bundle-card {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
        position: relative;
    }

    .peptides-bundle-badge {
        position: absolute;
        top: -10px;
        right: 16px;
        color: #FFFFFF;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 6px 12px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .peptides-bundle-duration-badge {
        position: absolute;
        top: 16px;
        right: 16px;
        background: #1a1a1a;
        color: white;
        font-size: 10px;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 6px;
    }

    .peptides-bundle-title {
        font-size: 18px;
        font-weight: 700;
        color: #1A1A1A;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .peptides-bundle-subtitle {
        font-size: 13px;
        color: #666;
        margin-bottom: 16px;
    }

    .peptides-bundle-list {
        list-style: none;
        margin: 0 0 16px 0;
        padding: 0;
    }

    .peptides-bundle-list li {
        font-size: 14px;
        color: #1A1A1A;
        padding: 6px 0;
        padding-left: 16px;
        position: relative;
    }

    .peptides-bundle-list li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #999;
    }

    .peptides-bundle-effects {
        background: rgba(255, 255, 255, 0.5);
        border-radius: 12px;
        padding: 12px;
        margin-bottom: 16px;
    }

    .peptides-bundle-effects-title {
        font-size: 11px;
        color: #666;
        margin-bottom: 6px;
    }

    .peptides-bundle-effects-list {
        font-size: 13px;
        color: #1A1A1A;
        line-height: 1.6;
    }

    .peptides-bundle-price {
        font-size: 28px;
        font-weight: 700;
        color: #1A1A1A;
        margin-bottom: 4px;
    }

    .peptides-bundle-price-period {
        font-size: 14px;
        color: #999;
        font-weight: 400;
    }

    .peptides-bundle-savings {
        font-size: 12px;
        color: #666;
        margin-bottom: 16px;
    }

    .peptides-bundle-cta {
        display: block;
        width: 100%;
        padding: 14px 24px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-align: center;
        text-decoration: none;
        border: none;
        cursor: pointer;
    }

    .peptides-bundle-cta.primary {
        background: linear-gradient(135deg, rgba(44, 44, 44, 0.95), rgba(26, 26, 26, 0.95));
        color: #FFFFFF;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .peptides-bundle-cta.secondary {
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(0, 0, 0, 0.1);
        color: #1A1A1A;
    }

    /* Upsell Hint */
    .peptides-upsell-hint {
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 16px;
        padding: 20px;
        margin: 24px 0;
        text-align: center;
        display: none;
    }

    .peptides-upsell-hint.active {
        display: block;
    }

    .peptides-upsell-hint p {
        font-size: 14px;
        color: #1A1A1A;
        margin-bottom: 12px;
    }

    .peptides-upsell-hint button {
        background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
    }

    /* Peptides Catalog Carousel */
    .peptides-catalog-section {
        margin: 24px 0;
    }

    .peptides-catalog-title {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #999;
        margin-bottom: 16px;
        text-align: center;
    }

    .peptides-catalog-carousel {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding: 0 0 16px 0;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .peptides-catalog-carousel::-webkit-scrollbar {
        display: none;
    }

    .peptides-catalog-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
        display: flex;
        flex-direction: column;
        min-height: 480px;
    }

    .peptides-catalog-image {
        width: 100%;
        height: 140px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 16px;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }

    .peptides-catalog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .peptides-catalog-bestseller {
        position: absolute;
        top: 8px;
        right: 8px;
        background: linear-gradient(135deg, #FF6B6B, #FF8E53);
        color: white;
        padding: 4px 10px;
        border-radius: 10px;
        font-size: 10px;
        font-weight: 700;
    }

    .peptides-catalog-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .peptides-catalog-icon {
        font-size: 28px;
    }

    .peptides-catalog-name {
        font-size: 16px;
        font-weight: 600;
        color: #1A1A1A;
    }

    .peptides-catalog-desc {
        font-size: 13px;
        color: #666;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .peptides-catalog-benefits {
        font-size: 12px;
        color: #666;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .peptides-catalog-course {
        font-size: 12px;
        color: #666;
        padding: 10px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        margin-bottom: 12px;
    }

    .peptides-catalog-prices {
        display: flex;
        gap: 8px;
        margin-bottom: 12px;
        margin-top: auto;
    }

    .peptides-catalog-price-box {
        flex: 1;
        background: rgba(255, 255, 255, 0.6);
        padding: 8px;
        border-radius: 8px;
        text-align: center;
    }

    .peptides-catalog-price-label {
        font-size: 10px;
        color: #666;
        margin-bottom: 4px;
    }

    .peptides-catalog-price-value {
        font-size: 14px;
        font-weight: 600;
        color: #1A1A1A;
    }

    .peptides-catalog-buttons {
        display: flex;
        gap: 8px;
    }

    .peptides-catalog-btn {
        flex: 1;
        padding: 10px 12px;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        border: none;
        cursor: pointer;
    }

    .peptides-catalog-btn.secondary {
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(0, 0, 0, 0.1);
        color: #1A1A1A;
    }

    .peptides-catalog-btn.primary {
        background: linear-gradient(135deg, rgba(44, 44, 44, 0.95), rgba(26, 26, 26, 0.95));
        color: white;
    }

    /* FAQ Section */
    .peptides-faq-section {
        margin: 24px 0;
    }

    .peptides-faq-title {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #999;
        margin-bottom: 16px;
        text-align: center;
    }

    .peptides-faq-item {
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 16px;
        padding: 16px;
        margin-bottom: 10px;
        box-shadow: 0 4px 16px rgba(31, 38, 135, 0.08);
    }

    .peptides-faq-question {
        font-size: 14px;
        font-weight: 600;
        color: #1A1A1A;
        margin-bottom: 8px;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .peptides-faq-icon {
        color: #999;
    }

    .peptides-faq-answer {
        font-size: 13px;
        color: #666;
        line-height: 1.6;
        padding-left: 24px;
    }

    /* Final CTA */
    .peptides-final-cta {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 24px;
        padding: 32px 24px;
        margin: 24px 0;
        text-align: center;
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.12);
    }

    .peptides-urgency-badge {
        display: inline-block;
        background: rgba(255, 50, 50, 0.1);
        color: #dc2626;
        padding: 8px 16px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .peptides-final-title {
        font-size: 22px;
        font-weight: 700;
        color: #0A0A0A;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .peptides-final-subtitle {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .peptides-final-button {
        display: block;
        width: 100%;
        padding: 18px 24px;
        background: linear-gradient(135deg, rgba(44, 44, 44, 0.95), rgba(26, 26, 26, 0.95));
        color: #FFFFFF;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-align: center;
        text-decoration: none;
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .peptides-final-note {
        font-size: 12px;
        color: #999;
        margin-top: 12px;
    }

    /* Modal */
    .peptides-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        padding: 20px;
    }

    .peptides-modal-overlay.show {
        display: flex;
    }

    .peptides-modal-content {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(40px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 24px;
        max-width: 400px;
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
        position: relative;
    }

    .peptides-modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
        background: rgba(0, 0, 0, 0.1);
        border: none;
        border-radius: 50%;
        font-size: 20px;
        color: #1A1A1A;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .peptides-modal-header {
        padding: 24px 24px 16px;
    }

    .peptides-modal-image {
        width: 100%;
        height: 180px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 16px;
        margin-bottom: 16px;
        overflow: hidden;
    }

    .peptides-modal-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .peptides-modal-title-group {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .peptides-modal-icon {
        font-size: 40px;
    }

    .peptides-modal-title {
        font-size: 22px;
        font-weight: 700;
        color: #0A0A0A;
    }

    .peptides-modal-body {
        padding: 0 24px 24px;
    }

    .peptides-modal-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .peptides-modal-details {
        background: rgba(255, 255, 255, 0.5);
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 16px;
    }

    .peptides-modal-details-title {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        color: #999;
        margin-bottom: 8px;
    }

    .peptides-modal-details-text {
        font-size: 13px;
        color: #1A1A1A;
        line-height: 1.6;
    }

    .peptides-modal-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        margin-bottom: 16px;
    }

    .peptides-modal-course {
        font-size: 13px;
        color: #666;
    }

    .peptides-modal-price {
        font-size: 24px;
        font-weight: 700;
        color: #1A1A1A;
    }

    .peptides-modal-price span {
        font-size: 14px;
        color: #999;
    }

    .peptides-modal-cta {
        display: block;
        width: 100%;
        padding: 16px;
        background: linear-gradient(135deg, rgba(44, 44, 44, 0.95), rgba(26, 26, 26, 0.95));
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
        text-decoration: none;
        border-radius: 12px;
    }

/* ================================= 
   PEPTIDES MODAL - FULL VERSION
   ================================= */

.peptides-modal-full {
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
}

.peptides-modal-hero {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 24px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border-radius: 20px 20px 0 0;
}

.peptides-modal-icon-large {
    font-size: 48px;
    line-height: 1;
}

.peptides-modal-hero-right {
    flex: 1;
}

.peptides-modal-full .peptides-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 4px;
    display: inline;
}

.peptides-modal-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
}

.peptides-modal-subtitle {
    font-size: 15px;
    color: #666;
    margin-top: 8px;
    line-height: 1.5;
}

.peptides-modal-benefits-box {
    background: rgba(0, 0, 0, 0.03);
    margin: 0 24px;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    color: #1A1A1A;
    line-height: 1.6;
}

.peptides-modal-price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    gap: 16px;
}

.peptides-modal-price-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.peptides-modal-price-value {
    font-size: 28px;
    font-weight: 700;
    color: #0A0A0A;
}

.peptides-modal-price-value span {
    font-size: 16px;
    font-weight: 400;
}

.peptides-modal-full .peptides-modal-course {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.peptides-modal-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.peptides-modal-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.peptides-modal-section {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.peptides-modal-section:last-of-type {
    border-bottom: none;
}

.peptides-modal-section-title {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.peptides-modal-section-content {
    background: rgba(255, 255, 255, 0.8);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.peptides-modal-section-content p {
    font-size: 14px;
    color: #1A1A1A;
    line-height: 1.7;
    margin: 0;
}

.peptides-modal-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.peptides-modal-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.8);
    padding: 14px 16px;
    border-radius: 12px;
    border-left: 3px solid #667eea;
}

.peptides-modal-benefit-item:nth-child(2) {
    border-left-color: #84FAB0;
}

.peptides-modal-benefit-item:nth-child(3) {
    border-left-color: #FFB800;
}

.peptides-modal-benefit-icon {
    font-size: 20px;
}

.peptides-modal-benefit-text {
    flex: 1;
}

.peptides-modal-benefit-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 2px;
}

.peptides-modal-benefit-text span {
    font-size: 13px;
    color: #666;
}

.peptides-modal-synergy-intro {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.peptides-modal-synergy-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.peptides-modal-synergy-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 16px;
    border-radius: 12px;
    border-left: 3px solid #764ba2;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.peptides-modal-synergy-item:hover {
    transform: translateX(4px);
}

.peptides-modal-synergy-icon {
    font-size: 24px;
}

.peptides-modal-synergy-info {
    flex: 1;
}

.peptides-modal-synergy-name {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
}

.peptides-modal-synergy-desc {
    font-size: 12px;
    color: #666;
}

.peptides-modal-synergy-price {
    font-size: 14px;
    font-weight: 600;
    color: #0A0A0A;
}

.peptides-modal-final-cta {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 0 0 20px 20px;
}

.peptides-modal-cta-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.peptides-modal-final-cta h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0A0A0A;
    margin-bottom: 8px;
}

.peptides-modal-final-cta p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.peptides-modal-consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.peptides-modal-consult-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

/* Modal scrollbar */
.peptides-modal-full::-webkit-scrollbar {
    width: 6px;
}

.peptides-modal-full::-webkit-scrollbar-track {
    background: transparent;
}

.peptides-modal-full::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

/* Order button before synergy */
.peptides-modal-order-section {
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.peptides-modal-order-btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.peptides-modal-order-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Carousel Navigation Buttons */
.peptides-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.peptides-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    font-size: 24px;
    font-weight: 300;
    color: #1A1A1A;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.peptides-carousel-btn:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.peptides-carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.peptides-carousel-prev {
    left: -12px;
}

.peptides-carousel-next {
    right: -12px;
}

/* Adjust carousels to work with wrapper */
.peptides-carousel-wrapper .peptides-results-carousel,
.peptides-carousel-wrapper .peptides-catalog-carousel {
    flex: 1;
    margin: 0;
}

/* Hide buttons on mobile, show swipe hint instead */
@media (max-width: 640px) {
    .peptides-carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .peptides-carousel-prev {
        left: -6px;
    }
    
    .peptides-carousel-next {
        right: -6px;
    }
}

/* Carousel Navigation - Centered Below */
.peptides-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.peptides-carousel-nav .peptides-carousel-btn {
    position: static;
    transform: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    font-weight: 300;
    color: #1A1A1A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.peptides-carousel-nav .peptides-carousel-btn:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.08);
}

.peptides-carousel-nav .peptides-carousel-btn:active {
    transform: scale(0.95);
}

/* Remove old wrapper styles */
.peptides-carousel-wrapper {
    position: static;
    display: block;
}

/* Hide swipe hint since we have buttons now */
.peptides-swipe-hint {
    display: none;
}

/* ============================================
   RESEARCH PAGE - GLP-1 COMPARISON STYLES
   ============================================ */

/* Hero Section */
.research-hero-card {
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
}

.research-hero-title {
    font-size: 28px;
    font-weight: 700;
    color: #0A0A0A;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.research-hero-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.research-hero-drugs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.drug-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.drug-ozempic {
    background: rgba(72, 187, 120, 0.15);
    color: #276749;
}

.drug-mounjaro {
    background: rgba(118, 75, 162, 0.15);
    color: #553C9A;
}

.drug-retatrutide {
    background: rgba(66, 153, 225, 0.15);
    color: #2B6CB0;
}

.drug-biopatid {
    background: rgba(245, 101, 101, 0.15);
    color: #C53030;
}

.research-hero-date {
    font-size: 13px;
    color: #999;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.comparison-table th,
.comparison-table td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

.comparison-table th:first-child {
    border-radius: 12px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 12px 0 0;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: #fafafa;
}

.col-ozempic { color: #276749; }
.col-mounjaro { color: #553C9A; }
.col-retatrutide { color: #2B6CB0; }
.col-biopatid { color: #C53030; }

.status-approved {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(72, 187, 120, 0.15);
    color: #276749;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-trial {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(66, 153, 225, 0.15);
    color: #2B6CB0;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-denied {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(245, 101, 101, 0.15);
    color: #C53030;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Drug Cards */
.drug-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid #ddd;
}

.drug-card-ozempic {
    border-left-color: #48BB78;
}

.drug-card-mounjaro {
    border-left-color: #764ba2;
}

.drug-card-retatrutide {
    border-left-color: #4299E1;
}

.drug-card-biopatid {
    border-left-color: #F56565;
    background: linear-gradient(135deg, #fff, rgba(245, 101, 101, 0.03));
}

.drug-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.drug-card-icon {
    font-size: 32px;
    line-height: 1;
}

.drug-card-title-block {
    flex: 1;
}

.drug-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0A0A0A;
    margin: 0 0 6px 0;
}

.drug-card-status {
    font-size: 12px;
}

/* Drug Card Info */
.drug-card-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
}

.info-row {
    display: flex;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #666;
    font-size: 13px;
    min-width: 100px;
}

.info-value {
    color: #333;
    font-size: 13px;
    flex: 1;
}

.info-warning {
    color: #C53030;
    font-weight: 600;
}

/* Country Accordion */
.country-accordion {
    margin-bottom: 16px;
}

.accordion-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s ease;
}

.accordion-toggle:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
}

.accordion-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
    border-radius: 0 0 10px 10px;
}

.accordion-content.accordion-open {
    max-height: 500px;
    padding: 12px 16px;
}

.country-item {
    padding: 8px 0;
    font-size: 13px;
    color: #444;
    border-bottom: 1px solid #eee;
}

.country-item:last-child {
    border-bottom: none;
}

.country-more {
    color: #888;
    font-style: italic;
}

.country-note {
    background: rgba(102, 126, 234, 0.08);
    padding: 10px;
    border-radius: 8px;
    margin-top: 8px;
}

.country-denied {
    color: #C53030;
}

.country-unknown {
    color: #D69E2E;
}

/* Documents Section */
.documents-section {
    margin-bottom: 16px;
}

.documents-title,
.trials-title,
.results-title,
.safety-title,
.risks-title,
.recommendation-title,
.sources-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.document-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    transition: all 0.2s ease;
}

.document-link:hover {
    background: #eef2ff;
    transform: translateX(4px);
}

.doc-icon {
    font-size: 16px;
}

.doc-text {
    flex: 1;
}

.doc-arrow {
    color: #667eea;
    font-weight: 600;
}

/* Clinical Trials */
.trials-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trial-link {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 14px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    border-left: 3px solid #667eea;
}

.trial-link:hover {
    background: #eef2ff;
    transform: translateX(4px);
}

.trial-name {
    font-weight: 700;
    color: #667eea;
    font-size: 13px;
}

.trial-nct {
    font-size: 11px;
    color: #888;
    background: #e2e8f0;
    padding: 2px 8px;
    border-radius: 10px;
}

.trial-desc {
    width: 100%;
    font-size: 12px;
    color: #666;
}

/* Results Grid */
.results-section {
    margin-bottom: 16px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

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

.result-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.result-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.result-value {
    font-size: 22px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 4px;
}

.result-label {
    font-size: 11px;
    color: #666;
}

/* Safety Section */
.safety-section {
    margin-bottom: 16px;
}

.safety-list {
    background: #fff8e5;
    border-radius: 10px;
    padding: 14px;
}

.safety-item {
    font-size: 13px;
    color: #666;
    padding: 6px 0;
}

.safety-warning {
    color: #C53030;
    font-weight: 500;
}

/* Critical Warning (Biopatid) */
.critical-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(245, 101, 101, 0.15), rgba(245, 101, 101, 0.08));
    border: 1px solid rgba(245, 101, 101, 0.3);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.critical-icon {
    font-size: 24px;
}

.critical-text {
    font-size: 14px;
    font-weight: 700;
    color: #C53030;
}

/* No Documents */
.documents-empty .no-documents {
    background: #fef2f2;
    border-radius: 10px;
    padding: 14px;
}

.no-doc-item {
    font-size: 13px;
    color: #C53030;
    padding: 6px 0;
}

/* Risks Section */
.risks-section {
    margin-bottom: 16px;
}

.risks-list {
    background: #fef2f2;
    border-radius: 10px;
    padding: 14px;
}

.risk-item {
    font-size: 13px;
    color: #C53030;
    padding: 6px 0;
    border-bottom: 1px solid rgba(245, 101, 101, 0.2);
}

.risk-item:last-child {
    border-bottom: none;
}

/* Recommendation Section */
.recommendation-section {
    margin-bottom: 16px;
}

.recommendation-list {
    background: #f0fff4;
    border-radius: 10px;
    padding: 14px;
}

.rec-item {
    font-size: 13px;
    color: #276749;
    padding: 6px 0;
}

/* Sources Note */
.sources-section {
    margin-bottom: 0;
}

.sources-note {
    font-size: 12px;
    color: #888;
    font-style: italic;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
}

/* Statistics Cards */
.stat-card-ozempic {
    border-left: 4px solid #48BB78;
}

.stat-card-mounjaro {
    border-left: 4px solid #764ba2;
}

.stat-card-retatrutide {
    border-left: 4px solid #4299E1;
}

.stat-card-cv {
    border-left: 4px solid #F56565;
}

.stat-drug {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.stat-extra {
    font-size: 11px;
    color: #999;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
}

/* Sources Grid */
.sources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

.source-category {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
}

.source-category-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.source-link {
    display: block;
    font-size: 13px;
    color: #667eea;
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.2s ease;
}

.source-link:last-child {
    border-bottom: none;
}

.source-link:hover {
    color: #764ba2;
}

/* Disclaimer Block */
.disclaimer-block {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.03));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 20px;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.disclaimer-icon {
    font-size: 28px;
}

.disclaimer-title {
    font-size: 16px;
    font-weight: 700;
    color: #92400E;
    margin: 0;
}

.disclaimer-content {
    margin-bottom: 16px;
}

.disclaimer-main {
    font-size: 14px;
    color: #78350F;
    margin-bottom: 12px;
    line-height: 1.6;
}

.disclaimer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disclaimer-list li {
    font-size: 13px;
    color: #666;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

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

.disclaimer-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #F59E0B;
    font-weight: bold;
}

.disclaimer-footer {
    text-align: right;
}

.disclaimer-date {
    font-size: 12px;
    color: #999;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .research-hero-title {
        font-size: 22px;
    }
    
    .drug-card-title {
        font-size: 16px;
    }
    
    .info-row {
        flex-direction: column;
        gap: 2px;
    }
    
    .info-label {
        min-width: auto;
    }
    
    .result-value {
        font-size: 18px;
    }
    
    .stat-value {
        font-size: 28px;
    }
}

/* ============================================
   COMPARISON CAROUSEL STYLES
   ============================================ */

.comparison-carousel-wrapper {
    position: relative;
    margin: 0 -16px;
    padding: 0 16px;
}

.comparison-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 4px 16px 4px;
}

.comparison-carousel::-webkit-scrollbar {
    display: none;
}

.comparison-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.comparison-card-ozempic {
    border-top-color: #48BB78;
}

.comparison-card-mounjaro {
    border-top-color: #764ba2;
}

.comparison-card-retatrutide {
    border-top-color: #4299E1;
}

.comparison-card-biopatid {
    border-top-color: #F56565;
    background: linear-gradient(180deg, rgba(254, 242, 242, 0.5), #fff);
}

.comparison-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.comparison-card-icon {
    font-size: 28px;
}

.comparison-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #0A0A0A;
    margin: 0 0 4px 0;
}

.comparison-card-subtitle {
    font-size: 13px;
    color: #888;
    margin: 0 0 16px 0;
}

.comparison-card-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.comparison-stat {
    flex: 1;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
}

.comparison-stat-warning {
    background: linear-gradient(135deg, rgba(245, 101, 101, 0.1), rgba(245, 101, 101, 0.05));
}

.comparison-stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 2px;
}

.comparison-stat-warning .comparison-stat-value {
    color: #C53030;
}

.comparison-stat-label {
    display: block;
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.comparison-card-info {
    margin-bottom: 16px;
}

.comparison-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-info-row:last-child {
    border-bottom: none;
}

.comparison-info-icon {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.comparison-card-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.comparison-card-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.comparison-card-btn-warning {
    background: linear-gradient(135deg, #F56565, #C53030);
}

.comparison-card-btn-warning:hover {
    box-shadow: 0 4px 12px rgba(245, 101, 101, 0.4);
}

/* Carousel Navigation */
.comparison-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.comparison-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 24px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.comparison-carousel-btn:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
}

.comparison-carousel-btn:active {
    transform: scale(0.95);
}

/* Desktop adjustments */
@media (min-width: 1200px) {
    .comparison-card {
        flex: 0 0 280px;
    }
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .comparison-card {
        flex: 0 0 260px;
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .comparison-card {
        flex: 0 0 calc(100vw - 64px);
    }
    
    .comparison-card-title {
        font-size: 20px;
    }
    
    .comparison-stat-value {
        font-size: 18px;
    }
}

/* ============================================
   STATS CAROUSEL STYLES
   ============================================ */

.stats-carousel-wrapper {
    position: relative;
    margin: 0 -16px;
    padding: 0 16px;
}

.stats-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 4px 16px 4px;
}

.stats-carousel::-webkit-scrollbar {
    display: none;
}

.stats-carousel .feature-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    min-width: 200px;
}

@media (max-width: 480px) {
    .stats-carousel .feature-card {
        flex: 0 0 calc(100vw - 80px);
        min-width: calc(100vw - 80px);
    }
}
