/* ========================================
   Corporate Professional Design System
   Complete CSS with Modern & Clean Effects
   ======================================== */

/* CSS Variables - Ayurvedic Modern */
:root {
    --primary-green: #1b4332;
    --secondary-green: #2d6a4f;
    --accent-green: #40916c;
    --light-green: #d8f3dc;
    --primary-light: #fdfbf7;
    --white: #ffffff;
    --black: #081c15;
    --gray-900: #1a202c;
    --gray-700: #2d3748;
    --gray-600: #4a5568;
    --gray-500: #718096;
    --gray-400: #a0aec0;
    --gray-300: #cbd5e0;
    --gray-200: #e2e8f0;
    --gray-100: #f0f4f1;
    --red: #e53e3e;
    --gold: #d4af37;
    --gold-light: #f4e4bc;
    --deep-forest: #081c15;
    --emerald-vibrant: #2dc653;
    --ayurvedic-cream: #fdfaf5;

    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);

    --ease-corporate: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--ayurvedic-cream);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231b4332' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6zM36 4V0h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-corporate);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: all 0.3s var(--ease-corporate);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Modern Section Utilities */
.section-padding {
    padding: 5rem 0;
}

.inner-hero-modern {
    background: var(--primary-light);
    padding: 8rem 0 4rem;
    text-align: center;
}

.section-eyebrow-modern {
    color: var(--secondary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1rem;
}

.section-title-modern {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 900;
}

/* ========================================
   Floating Elements (Vectors)
   ======================================== */
.floating-leaf {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    animation: floatLeaf 10s ease-in-out infinite;
}

@keyframes floatLeaf {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(15deg); }
    66% { transform: translate(-20px, -30px) rotate(-10deg); }
}

@keyframes sparkFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

.leaf-1 { top: 10%; left: 5%; width: 120px; animation-duration: 15s; }
.leaf-2 { top: 60%; right: 5%; width: 150px; animation-duration: 20s; animation-delay: -5s; }
.leaf-3 { bottom: 10%; left: 10%; width: 100px; animation-duration: 12s; animation-delay: -2s; }

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-corporate);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s var(--ease-corporate);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s var(--ease-corporate);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   Glass Effects - Ayurvedic Modern
   ======================================== */

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s var(--ease-corporate);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(31, 38, 135, 0.12);
    border-color: var(--secondary-green);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
}

/* ========================================
   Buttons
   ======================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(27, 67, 50, 0.2);
    transition: all 0.3s var(--ease-corporate);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 67, 50, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-green);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(4px);
    transition: all 0.3s var(--ease-corporate);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-green);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--white);
    color: var(--primary-green);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s var(--ease-corporate);
}

.btn-white:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ayurvedic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--emerald-vibrant) 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.03em;
    border: none;
    box-shadow: 0 10px 25px rgba(45, 106, 79, 0.3);
    transition: all 0.4s var(--ease-corporate);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-ayurvedic::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s var(--ease-corporate);
    z-index: -1;
}

.btn-ayurvedic:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(45, 106, 79, 0.4);
    color: var(--white);
}

.btn-ayurvedic:hover::after {
    transform: scale(1);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #f4e4bc 100%);
    color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.btn-ayurvedic-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    box-shadow: none;
}

.btn-ayurvedic-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* ========================================
   Section Styles
   ======================================== */

.section-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary-green);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--accent-green);
    transform: translateY(-50%);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 0;
    line-height: 1.7;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    gap: 2rem;
}

.section-header.center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-header.light .section-title,
.section-header.light .section-desc {
    color: var(--white);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-green);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    transition: gap 0.3s var(--ease-corporate);
}

.link-arrow:hover {
    gap: 1rem;
    color: var(--secondary-green);
}

/* ========================================
   Header
   ======================================== */

.header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    z-index: 1000;
    padding: 0.6rem 0;
    transition: all 0.4s var(--ease-corporate);
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    padding: 0.6rem 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: none !important;
    outline: none !important;
    text-decoration: none !important;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: -0.04em;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

.nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    position: relative;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transform: translateX(-50%);
    transition: width 0.3s var(--ease-corporate);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--primary-green);
    background: var(--light-green);
    transition: all 0.3s;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s var(--ease-corporate);
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(8px);
}

.mobile-menu-panel {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 400px;
    background: var(--white);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-corporate);
    box-shadow: var(--shadow-2xl);
}

.mobile-menu.active .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.mobile-nav-link {
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--accent-blue);
    padding-left: 0.5rem;
}

/* ========================================
   Hero Section - Ayurvedic Light
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 10rem 0 6rem;
    background: var(--primary-light);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(216, 243, 220, 0.4) 0%, transparent 70%);
    z-index: 2;
}

.hero-gradient {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(64, 145, 108, 0.1) 0%, transparent 70%);
    z-index: 3;
    filter: blur(80px);
}

.hero-grid {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-grid {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

.hero-content {
    max-width: 640px;
    color: var(--gray-700);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--light-green);
    border: 1px solid var(--accent-green);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-green);
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.1);
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    font-family: 'Playfair Display', serif;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .hero-buttons {
        justify-content: center;
    }
}

/* CTA Section */
.cta-section {
    padding: 10rem 0;
    background: var(--white);
}

.cta-card {
    position: relative;
    background: var(--primary-dark);
    border-radius: 40px;
    padding: 6rem 4rem;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.2), transparent);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-weight: 700;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.visual-badge {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge-top {
    top: -2rem;
    right: -2rem;
    animation-delay: 0.5s;
}

.badge-bottom {
    bottom: 2rem;
    left: -4rem;
    animation-delay: 0s;
}

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

.badge-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.badge-label {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.9375rem;
    white-space: nowrap;
}

.visual-image-wrap {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: #ffffff !important;
    aspect-ratio: 4/5;
    border: 8px solid rgba(255, 255, 255, 0.1);
}

.visual-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3rem;
    transition: transform 0.6s var(--ease-corporate);
}

.visual-container:hover .visual-image {
    transform: scale(1.05);
}

.visual-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

.hero-product {
    display: none;
}

.product-orbit {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.orbit-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: orbit 25s linear infinite;
}

.badge-1 {
    animation-delay: 0s;
}

.badge-2 {
    animation-delay: -8.33s;
}

.badge-3 {
    animation-delay: -16.67s;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(180px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(180px) rotate(-360deg);
    }
}

.badge-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.bg-amber {
    background: var(--amber);
}

.bg-blue {
    background: var(--blue);
}

.bg-green {
    background: var(--accent-blue);
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    backdrop-filter: blur(10px);
}

.product-float {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: productFloat 6s ease-in-out infinite;
}

@keyframes productFloat {

    0%,
    100% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(15px);
    }
}

.product-image {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s var(--ease-corporate);
}

.product-image:hover {
    transform: scale(1.05);
}

.product-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 104, 69, 0.3);
    border-radius: 50%;
    filter: blur(60px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--white), transparent);
}

/* ========================================
   Features Section - Glass Grid
   ======================================== */

.features {
    padding: 10rem 0;
    background: var(--primary-light);
}

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

.feature-item {
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease-corporate);
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.05);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: 0 20px 40px rgba(45, 106, 79, 0.1);
    transform: translateY(-10px);
    border-color: var(--accent-green);
}

.feature-icon-wrap {
    width: 4.5rem;
    height: 4.5rem;
    background: var(--light-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    transition: all 0.3s;
}

.feature-item:hover .feature-icon-wrap {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-family: 'Playfair Display', serif;
}

.feature-desc {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* ========================================
   About Section - Modern Blend
   ======================================== */

.about {
    padding: 12rem 0;
    background: var(--white);
    overflow: hidden;
}

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

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

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--shadow-2xl);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px solid var(--light-green);
    border-radius: 40px;
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--gray-200);
}

.about-badge .badge-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-badge .badge-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-badge .badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content {
    position: relative;
    z-index: 10;
}

.about-text {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-top: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.about-stat .stat-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   Custom Modal System (Ayurvedic Glass)
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background: rgba(18, 54, 41, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-dialog {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 1.75rem auto;
    pointer-events: none;
    transform: translateY(-20px);
    transition: transform 0.4s var(--ease-corporate);
}

.modal.show .modal-dialog {
    transform: translateY(0);
    pointer-events: auto;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--white);
    background-clip: padding-box;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    outline: 0;
    box-shadow: var(--shadow-xl);
    max-height: 90vh;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-100);
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-green);
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
    background: transparent;
    border: 0;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-400);
    transition: color 0.3s;
}

.modal-header .close:hover {
    color: var(--red);
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 2rem;
    overflow-y: auto;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--gray-100);
}

/* Counter Widgets Styling */
.stat, .about-stat {
    background: white;
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s var(--ease-corporate);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat:hover, .about-stat:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-green);
    box-shadow: var(--shadow-md);
}

.stat-value, .stat-number {
    display: block;
    font-size: 2rem !important;
    font-weight: 900 !important;
    color: var(--primary-green) !important;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem !important;
    color: var(--gray-500) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   Products Section
   ======================================== */

.featured-products {
    padding: 8rem 0;
    background: var(--white);
}

.new-products {
    padding: 8rem 0;
    background: var(--primary-dark);
    color: var(--white);
}

/* ========================================
   Products Section - Glass Grid
   ======================================== */

.featured-products {
    padding: 10rem 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.4s var(--ease-corporate);
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.05);
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(45, 106, 79, 0.1);
    transform: translateY(-10px);
    border-color: var(--accent-green);
    background: var(--white);
}

.product-image-wrap {
    position: relative;
    display: block;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--light-green), var(--white));
    overflow: hidden;
    margin: 1rem;
    border-radius: 16px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform 0.6s var(--ease-corporate);
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.quick-add {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s var(--ease-corporate);
}

.product-card:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}

.btn-quick-add {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-quick-add:hover {
    background: var(--secondary-green);
    box-shadow: 0 4px 15px rgba(27, 67, 50, 0.2);
}

.product-info {
    padding: 1.5rem;
    padding-top: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.rating-count {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-left: 0.25rem;
}

.product-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s;
}

.product-name:hover {
    color: var(--secondary-green);
}

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

.current-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-green);
}

.product-bv {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    background: var(--accent-green);
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
}

/* ========================================
   Categories Section
   ======================================== */

.categories {
    padding: 8rem 0;
    background: var(--white);
}

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

.category-card {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.category-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-corporate);
}

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9), transparent);
    transition: opacity 0.3s;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--white);
}

.category-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.category-desc {
    font-size: 0.875rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   Achievers Section
   ======================================== */

.achievers {
    padding: 8rem 0;
    background: var(--primary-light);
}

.achievers-track-container {
    padding: 2rem 0;
    overflow: hidden;
}

.achievers-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.achiever-card {
    width: 300px;
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease-corporate);
}

.achiever-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.achiever-image, .achiever-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gray-100);
    flex-shrink: 0;
}

.achiever-placeholder {
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.achiever-name {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.achiever-rank {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.achiever-location {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

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

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials {
    padding: 8rem 0;
    background: var(--white);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.testimonial-card {
    display: none;
    animation: fadeIn 0.5s var(--ease-corporate);
}

.testimonial-card.active {
    display: block;
}

.testimonial-avatar, .avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 2.5rem;
    border: 4px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.avatar-placeholder {
    background: var(--accent-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
}

.testimonial-text blockquote {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
}

.author-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all 0.3s;
}

.testimonial-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.dot.active {
    background: var(--accent-blue);
    transform: scale(1.5);
}

/* ========================================
   Inner Pages Shared Styles
   ======================================== */

.inner-hero {
    padding: 12rem 0 8rem;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(49, 130, 206, 0.1) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    line-height: 1.6;
}

/* Stats Section (Inner) */
.stats-section {
    padding: 4rem 0;
    background: var(--white);
    margin-top: -4rem;
    position: relative;
    z-index: 20;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    transition: transform 0.3s var(--ease-corporate);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* About Grid (Inner) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 8rem 0;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-2xl);
}

.about-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border: 1px solid var(--gray-100);
}

.badge-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
}

.badge-text {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
}

/* Vision/Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

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

/* Values Section */
.values-section {
    padding: 8rem 0;
    background: var(--primary-light);
}

/* Legal Grid */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.legal-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid var(--gray-100);
}

.legal-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.legal-image-wrap {
    display: block;
    aspect-ratio: 1/1.4;
    background: var(--gray-50);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.legal-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.legal-card:hover .legal-image-wrap img {
    transform: scale(1.05);
}

.legal-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(0, 104, 69, 0.3);
    border-radius: 50%;
    transition: all 0.3s;
}

.dot.active {
    width: 2rem;
    background: var(--accent-blue);
    border-radius: 9999px;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    position: relative;
    background: var(--primary-dark);
    color: var(--white);
    padding: 8rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    padding-bottom: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}



.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s var(--ease-root-growth);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.2);
}

.footer-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

footer.footer .footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #ffffff !important;
    font-weight: 700 !important;
    display: block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: all 0.3s;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid var(--white);
    opacity: 0;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    margin-right: 0.5rem;
}

.newsletter-form {
    margin-bottom: 1.5rem;
}

.newsletter-input {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    color: var(--white);
    font-size: 0.875rem;
}

.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input button {
    padding: 0.75rem 1.25rem;
    background: var(--white);
    color: var(--accent-blue);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.newsletter-input button:hover {
    background: var(--primary-light);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ========================================
   Products Page Styles
   ======================================== */

.products-filter {
    padding: 3rem 0;
    margin-top: -3.5rem;
    position: relative;
    z-index: 50;
}

.filter-bar {
    background: var(--white);
    padding: 1.5rem 2.5rem;
    border-radius: 99px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 3rem;
    border: 1px solid var(--gray-100);
}

@media (max-width: 992px) {
    .filter-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 2rem;
        gap: 1.5rem;
    }
}

.search-box {
    flex: 1;
    position: relative;
    max-width: 400px;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.search-box input {
    width: 100%;
    padding: 0.875rem 1.25rem 0.875rem 3.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 99px;
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    background: var(--white);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.1);
}

.category-list {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}

.category-list::-webkit-scrollbar { display: none; }

.category-tab {
    padding: 0.625rem 1.5rem;
    background: var(--gray-50);
    color: var(--gray-600);
    border-radius: 99px;
    font-size: 0.8125rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.category-tab:hover {
    background: var(--gray-100);
    color: var(--primary-blue);
}

.category-tab.active {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(26, 54, 93, 0.2);
}

/* Product Grid (List Page) */
.products-list-section {
    padding: 4rem 0 8rem;
}

.list-header {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-count {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.results-count span {
    color: var(--gray-400);
    font-weight: 500;
    margin-left: 0.5rem;
}

/* Product Card (Listing) */
.product-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid var(--gray-100);
    transition: all 0.4s var(--ease-corporate);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-blue);
}

.product-image-wrap {
    background: var(--gray-50);
    border-radius: 12px;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s var(--ease-corporate);
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-blue);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 10;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s;
}

.product-card:hover .product-name {
    color: var(--primary-blue);
}

.product-meta {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.product-bv {
    background: var(--primary-light);
    color: var(--primary-blue);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
}

/* Pagination */
.pagination {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.page-link {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.page-link:hover, .page-link.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 15px -3px rgba(26, 54, 93, 0.2);
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 8rem 0;
}

.empty-icon {
    color: var(--gray-200);
    margin-bottom: 2rem;
}

/* ========================================
   Testimonials Section - Glass Carousel
   ======================================== */

.testimonials {
    padding: 12rem 0;
    background: var(--primary-light);
    overflow: hidden;
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 5rem 4rem;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(45, 106, 79, 0.08);
    display: none;
    animation: fadeIn 0.6s ease;
}

.testimonial-card.active {
    display: block;
}

.testimonial-quote {
    font-size: 1.75rem;
    color: var(--primary-green);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 3rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    opacity: 0.1;
    color: var(--primary-green);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.author-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-green);
}

.author-role {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   CTA Section - Nature Banner
   ======================================== */

.cta-banner {
    padding: 8rem 0;
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(147, 172, 14, 0.3) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
}

.cta-desc {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

/* ========================================
   Footer - Dark Green Elegant
   ======================================== */

.footer {
    padding: 10rem 0 4rem;
    background: #081c15;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 1rem;
}

.footer-link a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.footer-link a:hover {
    color: var(--accent-green);
    padding-left: 0.5rem;
}

.footer-bottom {
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    color: #64748b;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

    .hero-product {
        display: block;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   Elite Product Catalog System
   ======================================== */
.product-card-elite {
    background: var(--white);
    border-radius: 24px;
    padding: 1.25rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(18, 54, 41, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
}

.product-card-elite:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(18, 54, 41, 0.12);
    border-color: rgba(147, 172, 14, 0.3);
}

.product-card-elite .image-container {
    aspect-ratio: 1;
    border-radius: 18px;
    background: #f8fafc;
    margin-bottom: 1.25rem;
    overflow: hidden;
    position: relative;
}

.product-card-elite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card-elite:hover img {
    transform: scale(1.1);
}

.product-card-elite .glass-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary-green);
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card-elite .product-info-wrap {
    padding: 0 0.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-elite .product-category {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--secondary-green);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    display: block;
}

.product-card-elite .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s;
}

.product-card-elite:hover .product-name {
    color: var(--secondary-green);
}

.product-card-elite .price-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-light);
    padding: 0.75rem 1rem;
    border-radius: 14px;
    margin-top: auto;
    transition: all 0.3s;
}

.product-card-elite:hover .price-pill {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(18, 54, 41, 0.05);
}

.product-card-elite .price {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--primary-green);
}

.product-card-elite .pv-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--secondary-green);
    background: rgba(147, 172, 14, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

/* ========================================
   Auth Pages Styles (Login/Register)
   ======================================== */

.auth-page {
    min-height: 100vh;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
}

.auth-container {
    width: 100%;
    max-width: 600px;
}

.register-card {
    max-width: 800px;
}

.auth-card {
    background: var(--white);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-100);
}

.auth-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.auth-logo {
    display: inline-block;
    margin-bottom: 2rem;
}

.auth-logo img {
    height: 60px;
}

.auth-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.auth-subtitle {
    color: var(--gray-500);
    font-size: 1rem;
}

.form-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: block;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 0.75rem;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.input-with-icon .form-control {
    padding-left: 3.5rem;
}

.corporate-radios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.radio-option {
    position: relative;
    cursor: pointer;
}

.radio-option input {
    position: absolute;
    opacity: 0;
}

.radio-box {
    display: block;
    padding: 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: all 0.3s;
}

.radio-option input:checked + .radio-box {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 15px -3px rgba(26, 54, 93, 0.2);
}

.checkbox-option {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.auth-switch {
    margin-top: 2rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.primary-link {
    color: var(--accent-blue);
    font-weight: 700;
    text-decoration: none;
}

.primary-link:hover {
    text-decoration: underline;
}

.feedback-text {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
}

.success-msg { color: #059669; font-weight: 600; }
.error-msg { color: #dc2626; font-weight: 600; }

.rich-alert {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-align: center;
}

.rich-alert.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fee2e2;
}

.rich-alert.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #d1fae5;
}

/* ========================================
   Product Details Page Styles
   ======================================== */

.pd-main-section {
    padding: 8rem 0;
    background: var(--gray-50);
}

.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 500;
}

.pd-breadcrumb a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.pd-breadcrumb a:hover {
    color: var(--primary-blue);
}

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

@media (max-width: 992px) {
    .pd-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.pd-image-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-image-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pd-bv-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-weight: 800;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(26, 54, 93, 0.2);
}

.pd-info-card {
    padding: 1rem 0;
}

.pd-category {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: block;
}

.pd-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.pd-price-row {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.pd-price-wrap {
    display: flex;
    flex-direction: column;
}

.pd-price-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.pd-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.pd-status-pill {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pd-status-pill.success {
    background: #ecfdf5;
    color: #059669;
}

.pd-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 3.5rem;
}

.pd-cta-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 576px) {
    .pd-cta-row {
        flex-direction: column;
    }
}

.pd-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-light);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.trust-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-900);
    text-transform: uppercase;
}

/* Tabs */
.pd-details-container {
    margin-top: 8rem;
}

.pd-tabs-nav {
    display: flex;
    gap: 3rem;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 4rem;
}

.pd-tab-btn {
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-400);
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.pd-tab-btn.active {
    color: var(--primary-blue);
}

.pd-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
}

.pd-tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.pd-tab-panel.active {
    display: block;
}

.panel-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.prose {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-600);
    max-width: 800px;
}

.spec-list {
    margin-top: 2.5rem;
    display: grid;
    gap: 1rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.spec-row span {
    color: var(--gray-400);
    font-weight: 500;
}

.spec-row strong {
    color: var(--gray-900);
    font-weight: 700;
}

/* ========================================
   Business Plan Page Styles
   ======================================== */

.inner-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--gray-900));
    position: relative;
    overflow: hidden;
}

.inner-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.15), transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 700px;
    margin: 0 auto;
}

.plan-overview {
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.income-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.income-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.income-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
}

.card-icon {
    width: 4.5rem;
    height: 4.5rem;
    background: var(--primary-light);
    color: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.income-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0.5rem 0;
    line-height: 1;
}

.detail-section {
    overflow: hidden;
}

.section-eyebrow {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.performance-table {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
}

.table-row {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--gray-50);
}

.table-row .label {
    font-weight: 500;
    color: var(--gray-500);
}

.table-row .value {
    font-weight: 700;
    color: var(--gray-900);
}

.table-row.highlight {
    background: var(--primary-blue);
    color: var(--white);
    border-bottom: none;
}

.table-row.highlight .label,
.table-row.highlight .value {
    color: var(--white);
}

.corporate-illustration {
    background: var(--gray-100);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
}

.network-analyzer {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    text-align: center;
}

.analyzer-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 2.5rem;
}

.node {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8125rem;
    display: inline-block;
    color: var(--primary-blue);
}

.node.head {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

/* Pagination Elite */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.page-link {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.4s var(--ease-corporate);
    background: var(--white);
    color: var(--primary-green);
    border: 1px solid var(--glass-border);
}

.page-link:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(18, 54, 41, 0.05);
}

.page-link.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    box-shadow: 0 15px 30px rgba(18, 54, 41, 0.2);
}

.page-link svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* Category Tabs */
.category-tab {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s var(--ease-corporate);
    background: var(--white);
    color: var(--gray-600);
    border: 1px solid var(--glass-border);
}

.category-tab:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 54, 41, 0.05);
}

.category-tab.active {
    background: var(--primary-green) !important;
    color: white !important;
    border-color: var(--primary-green) !important;
    box-shadow: 0 10px 20px rgba(18, 54, 41, 0.2) !important;
}

.node-row {
    margin-top: 3.5rem;
    position: relative;
}

.node-row::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2rem;
    border-left: 2px solid var(--gray-200);
    border-right: 2px solid var(--gray-200);
    border-top: 2px solid var(--gray-200);
}

.node-bv {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-500);
}

.analyzer-footer {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--gray-900);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.analyzer-footer .val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-blue);
}

.plan-cta {
    background: linear-gradient(135deg, var(--primary-blue), #1e3a8a);
    color: var(--white);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

/* ========================================
   Legal & Compliance Page Styles
   ======================================== */

.legal-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: flex-start;
}

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

.legal-sidebar {
    position: sticky;
    top: 6rem;
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.legal-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    color: var(--gray-600);
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.3s;
    text-decoration: none;
}

.legal-nav-link:hover {
    background: var(--gray-50);
    color: var(--primary-blue);
    transform: translateX(5px);
}

.legal-nav-link.active {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.legal-content-card {
    background: var(--white);
    padding: 5rem;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

@media (max-width: 768px) {
    .legal-content-card {
        padding: 2.5rem;
    }
}

.legal-content-section {
    scroll-margin-top: 8rem;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.content-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 2.5rem 0 1.25rem;
}

.content-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.content-list {
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}

.content-list li {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-600);
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.25rem;
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.75rem;
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
}

.section-divider {
    height: 1px;
    background: var(--gray-100);
    border: none;
    margin: 5rem 0;
}

/* ========================================
   FAQ Page Styles
   ======================================== */

.faq-category-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.faq-tab-btn {
    padding: 0.875rem 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-weight: 700;
    color: var(--gray-600);
    transition: all 0.3s;
    cursor: pointer;
}

.faq-tab-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.faq-tab-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.faq-category-group {
    display: none;
}

.faq-category-group.active {
    display: block;
}

.faq-accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
}

.faq-accordion-item.active {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1.5rem;
}

.faq-q-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.4;
}

.faq-toggle-icon {
    color: var(--accent-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-item.active .faq-panel {
    max-height: 1000px;
}

.faq-panel-inner {
    padding: 0 2rem 2rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ========================================
   News & Insights Page Styles
   ======================================== */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.news-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-100);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-200);
}

.news-img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--accent-blue);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.news-body {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.news-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    font-weight: 800;
    color: var(--primary-blue);
    transition: color 0.3s;
}

.news-card:hover .news-title {
    color: var(--accent-blue);
}

.news-text {
    color: var(--gray-500);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-text-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-text-icon:hover {
    color: var(--accent-blue);
    gap: 1rem;
}

/* ========================================
   Downloads & Resources Page Styles
   ======================================== */

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

.download-corporate-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.download-corporate-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.file-status-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s;
}

.download-corporate-card:hover .file-status-indicator {
    opacity: 1;
}

.file-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.file-extension-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gray-400);
    background: var(--gray-50);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.download-info {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.download-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.download-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-500);
}

.download-action-footer {
    border-top: 1px solid var(--gray-50);
    padding-top: 1.5rem;
}

.btn-download-premium {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border-radius: 14px;
    color: var(--primary-blue);
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-download-premium:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.02);
}

.btn-icon {
    transition: transform 0.3s;
}

.btn-download-premium:hover .btn-icon {
    transform: translateY(2px);
}

/* ========================================
   Animation Utilities
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-corporate);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive & Mobile Optimization
   ======================================== */

/* Tablet Optimization (Up to 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 4rem !important;
        text-align: center;
    }

    .hero-content {
        max-width: 100% !important;
    }

    .hero-buttons {
        justify-content: center !important;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 4rem !important;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .section-header-modern {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .nav {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }
}

/* Mobile Optimization (Up to 768px) */
@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-title, 
    .section-title-modern {
        font-size: 2.5rem !important;
    }

    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 2.5rem;
    }

    .hero-stats, 
    .about-stats {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .products-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-input {
        flex-direction: column;
    }

    .newsletter-input button {
        width: 100%;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 32px;
    }

    /* Registration Form Fixes */
    .form-grid {
        grid-template-columns: 1fr !important;
    }

    .reg-container-modern {
        padding: 2rem 1.25rem !important;
    }
}

/* Small Phones (Up to 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem !important;
    }

    .btn-ayurvedic {
        width: 100%;
        padding: 1rem 1.5rem;
    }

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

    .stat-value {
        font-size: 2rem !important;
    }
}

/* ========================================
   Elite Design Toolkit - Refined
   ======================================== */

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.btn-ayurvedic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--secondary-green);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    transition: all 0.4s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(27, 67, 50, 0.2);
}

.btn-ayurvedic:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(27, 67, 50, 0.3);
    filter: brightness(1.1);
    color: white;
}

.glass-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
}

/* ========================================
   Achievers Section
   ======================================== */

.achievers {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--white), var(--primary-light));
    overflow: hidden;
}

.achievers-track-container {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    overflow: hidden;
    padding: 2rem 0;
}

.achievers-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee 25s linear infinite;
}

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

.achiever-card {
    position: relative;
    width: 280px;
    background: var(--white);
    border-radius: 1.5rem;
    padding: 0;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-corporate);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 104, 69, 0.08);
}

.achiever-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.achiever-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
}

.achiever-info {
    padding: 1.5rem;
    text-align: center;
    width: 100%;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.achiever-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.achiever-rank {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-light);
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

.achiever-location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 1rem));
        /* Adjust based on track content duplication */
    }
}


/* ========================================
   Plan Page Revamp Styles
   ======================================== */

.plan-body {
    background-color: #f8fafc;
    overflow-x: hidden;
}

/* Premium Hero */
.plan-hero-revamp {
    position: relative;
    padding: 10rem 0 8rem;
    background: radial-gradient(circle at 50% 50%, #004d33 0%, #002b1c 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.plan-hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 0;
}

.plan-hero-content {
    position: relative;
    z-index: 2;
}

.plan-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fbbf24;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.plan-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #a7f3d0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass Cards */
.glass-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: -5rem;
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
    padding: 3rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-blue), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 60px -15px rgba(0, 104, 69, 0.15);
}

.glass-card:hover::before {
    opacity: 1;
}

.card-icon-box {
    width: 80px;
    height: 80px;
    background: #ecfdf5;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--accent-blue);
    font-size: 2rem;
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.glass-card:hover .card-icon-box {
    transform: rotate(0deg) scale(1.1);
    background: var(--accent-blue);
    color: var(--white);
}

/* Content Sections */
.plan-section {
    padding: 8rem 0;
    position: relative;
}

.plan-section.alt {
    background-color: var(--primary-light);
}

.content-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.content-row.reverse {
    flex-direction: row-reverse;
}

.text-col {
    flex: 1;
}

.visual-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Network Tree Visualization */
.tree-container {
    padding: 2rem;
    background: var(--white);
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
}

.tree-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    color: var(--white);
    font-size: 0.8rem;
}

.tree-node.root {
    width: 80px;
    height: 80px;
    background: var(--accent-blue);
    color: var(--white);
    font-size: 1rem;
    border: 4px solid #a7f3d0;
    margin-bottom: 2rem;
}

.tree-level {
    display: flex;
    justify-content: space-around;
    position: relative;
    margin-top: 2rem;
}

/* Connectors */
.connector-lines {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 25px;
    border: 2px solid #d1d5db;
    border-bottom: none;
    z-index: 1;
}

.connector-vertical {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 25px;
    background: #d1d5db;
    z-index: 1;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Product Details Optimization */
.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.pd-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pd-tabs-nav {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-card {
    padding: 4rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 8rem;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.elite-header-layout {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 5rem;
}

.income-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.plan-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .content-row,
    .content-row.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .plan-hero-revamp {
        padding: 8rem 0 6rem;
    }

    .pd-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .pd-title {
        font-size: 2.8rem !important;
    }
}

@media (max-width: 768px) {
    .pd-trust-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .pd-price-row {
        width: 100% !important;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 1rem !important;
    }

    .pd-cta-row {
        flex-direction: column;
        width: 100%;
    }

    .pd-cta-row a {
        width: 100%;
        justify-content: center;
    }

    .pd-tab-content {
        padding: 2rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .contact-main-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .contact-info-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-form-card {
        padding: 2rem !important;
    }

    .stats-grid,
    .about-grid,
    .vision-mission-grid,
    .legal-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .about-image {
        margin-top: 3rem;
    }

    .elite-header-layout {
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center;
    }

    .elite-header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .income-grid,
    .plan-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .visual-block {
        margin-top: 3rem;
        order: 2;
    }

    .text-block {
        order: 1;
    }
}

/* ========================================
   Mobile Functionality Fixes (Header)
   ======================================== */
@media (max-width: 1024px) {
    .nav {
        display: none;
        /* Hide desktop nav on tablet/mobile */
    }

    .menu-toggle {
        display: flex;
        /* Show hamburger on tablet/mobile */
        z-index: 1002;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.2rem;
        line-height: 1.2;
        max-width: none;
        /* Allow full width since buttons are gone */
    }

    .header .container {
        padding: 0 1rem;
    }

    /* Hide Login and Join buttons on mobile */
    #loginHeaderBtn,
    .header-actions .btn-primary {
        display: none !important;
    }

    .header-actions {
        gap: 1rem;
    }

    .logo-img {
        height: 32px;
    }

    /* Smallest phones optimization */
    @media (max-width: 380px) {

        .pd-title,
        .hero-title {
            font-size: 2.2rem;
        }

        .hero-stats {
            gap: 1rem;
        }

        .stat-value {
            font-size: 1.5rem;
        }
    }

    .mobile-menu-panel {
        width: 280px;
    }
}
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       E l i t e   D e s i g n   T o o l k i t   E x t e n s i o n s 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . r e v e a l - u p   { 
         o p a c i t y :   0 ; 
         t r a n s f o r m :   t r a n s l a t e Y ( 3 0 p x ) ; 
         t r a n s i t i o n :   a l l   0 . 8 s   c u b i c - b e z i e r ( 0 . 2 ,   1 ,   0 . 3 ,   1 ) ; 
 } 
 
 . r e v e a l - u p . a c t i v e   { 
         o p a c i t y :   1 ; 
         t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ; 
 } 
 
 . b t n - a y u r v e d i c   { 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         p a d d i n g :   1 r e m   2 . 5 r e m ; 
         b a c k g r o u n d :   v a r ( - - p r i m a r y - g r e e n ) ; 
         c o l o r :   w h i t e ; 
         f o n t - w e i g h t :   7 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 1 e m ; 
         b o r d e r - r a d i u s :   1 0 0 p x ; 
         t r a n s i t i o n :   a l l   0 . 4 s ; 
         b o r d e r :   n o n e ; 
         c u r s o r :   p o i n t e r ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         b o x - s h a d o w :   0   1 0 p x   2 0 p x   r g b a ( 1 4 7 ,   1 7 2 ,   1 4 ,   0 . 2 ) ; 
 } 
 
 . b t n - a y u r v e d i c : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
         b o x - s h a d o w :   0   1 5 p x   3 0 p x   r g b a ( 1 4 7 ,   1 7 2 ,   1 4 ,   0 . 4 ) ; 
         f i l t e r :   b r i g h t n e s s ( 1 . 1 ) ; 
         c o l o r :   w h i t e ; 
 } 
 
 / *   G l a s s   B a d g e   f o r   P r o d u c t s   * / 
 . g l a s s - b a d g e   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   1 r e m ; 
         l e f t :   1 r e m ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ; 
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ; 
         p a d d i n g :   0 . 5 r e m   1 r e m ; 
         b o r d e r - r a d i u s :   5 0 p x ; 
         f o n t - s i z e :   0 . 7 5 r e m ; 
         f o n t - w e i g h t :   8 0 0 ; 
         c o l o r :   w h i t e ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 1 e m ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 3 ) ; 
         z - i n d e x :   2 ; 
 }  
 