/* ===================================
   UNIQUE HOME PAGE - MODERN DESIGN
   =================================== */

:root {
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

/* ==========================
   CREATIVE HEADER DESIGN
   ========================== */

.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 131, 69, 0.9) 0%, 
        rgba(229, 107, 44, 0.95) 50%,
        rgba(255, 131, 69, 0.9) 100%);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.modern-header.scrolled .header-wrapper::before {
    opacity: 0;
}

.modern-header.scrolled .header-wrapper {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 3rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
    position: relative;
}

/* Header Decorative Lines */
.header-decoration {
    display: none;
}

/* ==========================
   SPLIT NAVIGATION DESIGN
   ========================== */

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.desktop-nav-link {
    position: relative;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.link-number {
    display: none;
}

.link-label {
    position: relative;
}

.desktop-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.desktop-nav-link:hover {
    color: #ffffff;
}

.desktop-nav-link:hover::after {
    width: 100%;
}

.desktop-nav-link.active {
    color: #ffffff;
    font-weight: 600;
}

.desktop-nav-link.active::after {
    width: 100%;
    background: var(--primary-color);
    height: 2px;
    box-shadow: 0 0 10px var(--primary-color);
}

/* Scrolled State */
.modern-header.scrolled .desktop-nav-link {
    color: var(--text-secondary);
}

.modern-header.scrolled .desktop-nav-link:hover {
    color: var(--primary-color);
}

.modern-header.scrolled .desktop-nav-link::after {
    background: var(--primary-color);
}

.modern-header.scrolled .desktop-nav-link.active {
    color: var(--primary-color);
}

/* ==========================
   MOBILE MENU BUTTON
   ========================== */

.circular-menu-trigger {
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-header.scrolled .circular-menu-trigger {
    background: var(--primary-color);
}

.circular-menu-trigger::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-header.scrolled .circular-menu-trigger::before {
    opacity: 0;
}

.circular-menu-trigger:hover::before {
    opacity: 1;
}

.circular-menu-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 131, 69, 0.3);
}

.menu-line {
    width: 22px;
    height: 2.5px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.modern-header.scrolled .menu-line {
    background: #ffffff;
}

.circular-menu-trigger:hover .menu-line {
    background: #ffffff;
}

.circular-menu-trigger.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.circular-menu-trigger.active .menu-line:nth-child(2) {
    opacity: 0;
}

.circular-menu-trigger.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================
   FULLSCREEN NAVIGATION
   ========================== */

.fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0612, #130a28, #0d0818);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.fullscreen-nav.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.nav-overlay::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.nav-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.nav-links-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.nav-link-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    padding: 0.35rem 0;
}

.nav-link-modern:hover {
    color: #ffffff;
    transform: translateX(15px);
}

.link-number {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
}

.link-icon {
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.4s ease;
    color: #ff8345;
    font-size: 1.2rem;
}

.nav-link-modern:hover .link-icon {
    opacity: 1;
    transform: translateX(0);
}

.nav-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.nav-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.nav-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.nav-social a:hover {
    background: #ff8345;
    transform: translateY(-5px);
}

.nav-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* ==========================
   FLOATING LOGO
   ========================== */

/* ==========================
   CENTER LOGO DESIGN
   ========================== */

.floating-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-hexagon {
    width: 140px;
    height: auto;
    transition: all 0.3s ease;
}

.logo-hexagon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.modern-header.scrolled .logo-hexagon img {
    filter: none;
    background: none !important;
    box-shadow: none !important;
}

.floating-logo:hover {
    transform: translateY(-2px);
}

.logo-text {
    display: none;
}


/* ==========================
   HERO SECTION - Creative Layout
   ========================== */

.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    z-index: 1;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 131, 69, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(229, 107, 44, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Animated Background Shapes */
.hero-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 131, 69, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatShape 20s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    50% { 
        transform: translate(-100px, 100px) scale(1.1);
    }
}

.hero-split-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 6rem 6rem;
    position: relative;
    z-index: 2;
}

.hero-split-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    width: 4px;
    height: 200px;
    background: linear-gradient(180deg, 
        transparent, 
        var(--primary-color), 
        transparent);
    border-radius: 10px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 131, 69, 0.1);
    border: 1px solid rgba(255, 131, 69, 0.3);
    border-radius: 50px;
    width: fit-content;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.hero-title-modern {
    font-size: 7rem;
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 2.5rem;
    color: #ffffff;
    position: relative;
}

.title-line {
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.title-line:nth-child(1) {
    animation: slideInLeft 1s ease-out;
}

.title-line:nth-child(2) {
    animation: slideInLeft 1s ease-out 0.2s backwards;
}

.title-line:nth-child(3) {
    animation: slideInLeft 1s ease-out 0.4s backwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffffff 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle-modern {
    font-size: 1.3rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3.5rem;
    max-width: 600px;
    position: relative;
    padding-left: 2rem;
}

.hero-subtitle-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: calc(100% - 1rem);
    background: linear-gradient(180deg, var(--primary-color), transparent);
    border-radius: 10px;
}

.hero-cta-modern {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-modern-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-color);
    overflow: hidden;
    z-index: 1;
}

.btn-modern-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.btn-modern-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 131, 69, 0.3);
    border-color: var(--primary-color);
}

.btn-modern-primary i {
    transition: transform 0.3s ease;
}

.btn-modern-primary:hover i {
    transform: translateX(5px);
}

.btn-modern-play {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-modern-play:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.play-icon {
    display: none;
}

.play-text {
    transition: all 0.3s ease;
}

.scroll-indicator-modern {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    border-radius: 10px;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { 
        transform: scaleY(0.3);
        opacity: 0.3;
    }
    50% { 
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Hero Right Side - Creative Image Layout */
.hero-split-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 30px;
    transform: rotate(-3deg);
    z-index: 0;
    opacity: 0.3;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary-color);
    border-radius: 30px;
    transform: rotate(3deg);
    z-index: 0;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    z-index: 1;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    50% { 
        transform: translateY(-20px) rotate(2deg);
    }
}

/* ==========================
   DIAGONAL STATS SECTION
   ========================== */

.diagonal-section {
    position: relative;
    padding: 6rem 0;
    overflow: visible;
    background: transparent;
}

.diagonal-section::before,
.diagonal-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 150px;
    z-index: 0;
}

.diagonal-section::before {
    top: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ff8345' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    transform: rotate(180deg);
}

.diagonal-section::after {
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23e56b2c' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

.diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff8345 0%, #e56b2c 100%);
    z-index: 0;
}

.stats-modern {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-modern {
    text-align: center;
    color: #ffffff;
}

.stat-number-modern {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.stat-divider {
    display: block;
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto 1rem;
}

.stat-label-modern {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* ==========================
   3D CAROUSEL PRODUCTS
   ========================== */

.products-carousel-section {
    position: relative;
    padding: 10rem 0;
    background: #2d2d2d;
    overflow: hidden;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #2d2d2d 100%);
}

.carousel-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.orb-left {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff8345 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: orbFloat 25s ease-in-out infinite;
}

.orb-right {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #e56b2c 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: orbFloat 30s ease-in-out infinite reverse;
}

.section-header-carousel {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-header-carousel .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-header-carousel .tag-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ff8345, #e56b2c);
}

.section-header-carousel .tag-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header-carousel .section-title-modern {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header-carousel .section-title-modern .word {
    display: inline-block;
    margin: 0 0.5rem;
}

.carousel-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Carousel Container */
.vitamin-carousel {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 2000px;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.vitamin-slide {
    min-width: 100%;
    padding: 0 2rem;
}

.slide-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem 3rem 2rem;
    transition: all 0.4s ease;
}

.slide-inner:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 131, 69, 0.2);
}

.slide-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

.slide-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff8345 0%, #e56b2c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 131, 69, 0.3);
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.slide-content {
    color: #ffffff;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.slide-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 131, 69, 0.9);
    margin-bottom: 1rem;
}

.slide-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.slide-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.slide-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.slide-btn:hover {
    background: linear-gradient(135deg, #ff8345 0%, #e56b2c 100%);
    border-color: transparent;
    transform: translateY(-2px);
}

.slide-letter {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    font-size: 10rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
}

/* Navigation Dots */
.carousel-dots {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

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

.carousel-dot.active {
    background: linear-gradient(135deg, #ff8345 0%, #e56b2c 100%);
    width: 40px;
    border-radius: 10px;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: linear-gradient(135deg, #ff8345 0%, #e56b2c 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 131, 69, 0.4);
}

.arrow-prev {
    left: -80px;
}

.arrow-next {
    right: -80px;
}

/* Progress Bar */
.carousel-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 3rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff8345 0%, #e56b2c 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

/* ==========================
   WHY MODERN SECTION
   ========================== */

.why-modern-section {
    padding: 8rem 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.why-grid-modern {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 6rem;
    align-items: center;
}

.why-left {
    padding-right: 2rem;
}

.why-text-modern {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 2rem 0 3rem;
}

.btn-modern-outline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    border: 2px solid #ff8345;
    color: #ff8345;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-modern-outline:hover {
    background: #ff8345;
    color: #ffffff;
    transform: translateX(10px);
}

.why-right {
    position: relative;
}

.features-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-item-new {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 131, 69, 0.05) 0%, rgba(229, 107, 44, 0.05) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 131, 69, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #ff8345 0%, #e56b2c 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.feature-item-new:hover::before {
    transform: scaleY(1);
}

.feature-item-new:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 40px rgba(255, 131, 69, 0.15);
    transform: translateX(10px);
    border-color: rgba(255, 131, 69, 0.2);
}

.feature-icon-wrap {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #ff8345 0%, #e56b2c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(255, 131, 69, 0.3);
}

.feature-item-new:hover .feature-icon-wrap {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 131, 69, 0.4);
}

.feature-content-new {
    flex: 1;
}

.feature-content-new h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.feature-item-new:hover .feature-content-new h4 {
    color: #ff8345;
}

.feature-content-new p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* ==========================
   CTA MODERN SECTION
   ========================== */

.cta-modern-section {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
    background: #2d2d2d;
}

.cta-bg-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #2d2d2d 100%);
}

.cta-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: #ff8345;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.cta-title-modern {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-text-modern {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.cta-buttons-modern {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    background: linear-gradient(135deg, #ff8345 0%, #e56b2c 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(255, 131, 69, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 131, 69, 0.6);
}

.btn-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-cta-secondary {
    padding: 1rem 2.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.orb-1-cta {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff8345 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-2-cta {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #e56b2c 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

/* ==========================
   ANIMATIONS
   ========================== */

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* ==========================
   RESPONSIVE
   ========================== */

@media (max-width: 1200px) {
    .hero-modern {
        flex-direction: column;
        padding-top: 6rem;
        min-height: auto;
        padding-bottom: 2rem;
    }
    
    .hero-split-left {
        padding: 3rem 3rem 2rem;
        text-align: center;
        align-items: center;
        min-height: auto;
    }
    
    .hero-split-left::before {
        display: none;
    }
    
    .hero-subtitle-modern {
        padding-left: 0;
        max-width: 600px;
        margin: 0 auto 3.5rem;
    }
    
    .hero-subtitle-modern::before {
        display: none;
    }
    
    .hero-split-right {
        padding: 0 2rem 2rem;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    .hero-image-container {
        max-width: 500px;
        height: 400px;
        margin: 0 auto;
    }
    
    .hero-title-modern {
        font-size: 4.5rem;
    }
    
    .scroll-indicator-modern {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 3rem;
    }
}

@media (max-width: 1200px) {
    .header-container {
        padding: 1rem 2rem;
    }
    
    .desktop-nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        grid-template-columns: 1fr auto;
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .nav-left,
    .nav-right {
        display: none;
    }
    
    .circular-menu-trigger {
        display: flex;
    }
    
    .floating-logo {
        justify-content: flex-start;
    }
    
    .logo-hexagon {
        width: 100px;
    }
    
    .hero-title-modern {
        font-size: 3rem;
    }
    
    .hero-split-left {
        padding: 3rem 2rem 2rem;
    }
    
    .hero-split-right {
        padding: 0 2rem 2rem;
        width: 100%;
        position: relative;
        z-index: 1;
    }
    
    .hero-image-container {
        height: 350px;
        max-width: 100%;
    }
    
    .hero-cta-modern {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .btn-modern-primary,
    .btn-modern-play {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .nav-link-modern {
        font-size: 1.75rem;
        gap: 1.25rem;
        padding: 0.3rem 0;
    }
    
    .link-number {
        display: none;
    }
    
    .link-icon {
        font-size: 0.95rem;
    }
    
    .nav-links-modern {
        gap: 1.5rem;
        padding-top: 3rem;
    }
    
    .stats-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .section-title-modern {
        font-size: 2.5rem;
    }
    
    .section-header-carousel .section-title-modern {
        font-size: 2.5rem;
    }
    
    .carousel-subtitle {
        font-size: 1rem;
    }
    
    .vitamin-slide {
        padding: 0 1rem;
    }
    
    .slide-inner {
        padding: 2rem 1.5rem;
    }
    
    .slide-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
    }
    
    .slide-description {
        font-size: 0.95rem;
    }
    
    .slide-stats {
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .slide-letter {
        font-size: 7rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .diagonal-section {
        padding: 5rem 0;
    }
    
    .diagonal-section::before,
    .diagonal-section::after {
        height: 100px;
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .arrow-prev {
        left: 10px;
    }
    
    .arrow-next {
        right: 10px;
    }
    
    .why-grid-modern {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .why-modern-section {
        padding: 5rem 0;
    }
    
    .features-grid-new {
        gap: 1.25rem;
    }
    
    .feature-item-new {
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    .feature-icon-wrap {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
    }
    
    .feature-content-new h4 {
        font-size: 1.2rem;
    }
    
    .feature-content-new p {
        font-size: 0.9rem;
    }
    
    .cta-title-modern {
        font-size: 2.5rem;
    }
    
    .cta-buttons-modern {
        flex-wrap: wrap;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2.2rem;
    }
    
    .hero-split-left {
        padding: 3rem 1.5rem 2rem;
    }
    
    .hero-split-right {
        padding: 0 1.5rem 2rem;
        position: relative;
        z-index: 1;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    .hero-cta-modern {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-modern-primary,
    .btn-modern-play {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .why-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-modern-section {
        padding: 4rem 0;
    }
    
    .nav-link-modern {
        font-size: 1.4rem;
        gap: 1rem;
        padding: 0.25rem 0;
    }
    
    .link-number {
        display: none;
    }
    
    .link-icon {
        font-size: 0.85rem;
    }
    
    .nav-links-modern {
        gap: 1.25rem;
        padding-top: 4rem;
    }
    
    .feature-item-new {
        padding: 1.25rem;
        gap: 1rem;
        flex-direction: row;
    }
    
    .feature-icon-wrap {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 1.3rem;
    }
    
    .feature-content-new h4 {
        font-size: 1.05rem;
    }
    
    .feature-content-new p {
        font-size: 0.85rem;
    }
    
    .section-header-carousel .section-title-modern {
        font-size: 2rem;
    }
    
    .slide-inner {
        padding: 2rem 1.5rem;
    }
    
    .slide-title {
        font-size: 1.75rem;
    }
    
    .slide-number {
        font-size: 0.8rem;
    }
    
    .slide-icon-large {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .slide-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .slide-letter {
        font-size: 5rem;
    }
    
    .slide-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .diagonal-section {
        padding: 4rem 0;
    }
    
    .diagonal-section::before,
    .diagonal-section::after {
        height: 80px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .cta-title-modern {
        font-size: 2rem;
    }
    
    .feature-card-modern {
        width: 200px !important;
        padding: 1.5rem;
    }
}
