/* ============================================
   BEESMARTCOM - Enterprise Landing Page
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Brand Colors */
    --color-primary: #FF8C00;
    --color-primary-dark: #E67E00;
    --color-primary-light: #FFA940;
    --color-secondary: #FFD700;
    --color-accent: #00B4D8;

    /* Neutrals */
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8F9FA;
    --color-bg-card: #FFFFFF;
    --color-bg-dark: #0F172A;
    --color-surface: #F1F5F9;

    /* Text */
    --color-text: #1E293B;
    --color-text-light: #64748B;
    --color-text-inverse: #F8FAFC;

    /* Effects */
    --color-border: #E2E8F0;
    --color-shadow: rgba(0, 0, 0, 0.08);
    --color-glow: rgba(255, 140, 0, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF8C00, #FFD700);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    --gradient-card: linear-gradient(145deg, var(--color-bg-card), var(--color-surface));

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;
}

/* --- Dark Theme --- */
[data-theme="dark"] {
    --color-bg: #0F172A;
    --color-bg-alt: #1E293B;
    --color-bg-card: #1E293B;
    --color-surface: #334155;
    --color-text: #F1F5F9;
    --color-text-light: #94A3B8;
    --color-border: #334155;
    --color-shadow: rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--color-primary);
    color: white;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

ul { list-style: none; }

/* --- Container --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(255, 140, 0, 0.1);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before { left: 100%; }

.btn--primary {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    color: white;
}

.btn--secondary {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn--secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border: none;
    padding: 8px 16px;
}

.btn--ghost:hover { color: var(--color-primary); }

.btn--sm { padding: 10px 20px; font-size: 0.8rem; }

.btn--lg { padding: 18px 36px; font-size: 1rem; }

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

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: var(--color-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px var(--color-shadow);
    padding: 10px 0;
}

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

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text);
}

.navbar__logo svg {
    flex-shrink: 0;
    animation: logoFloat 3s ease-in-out infinite;
}

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

.navbar__logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-text);
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar__link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-light);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
    border-radius: 1px;
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--color-text);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar__cart {
    position: relative;
    padding: 10px 14px;
    font-size: 1.1rem;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--color-primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* --- Theme Toggle --- */
.theme-toggle {
    background: var(--color-surface);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-text-light);
    transition: all var(--transition-normal);
}

.theme-toggle:hover {
    background: var(--color-border);
    color: var(--color-text);
}

.theme-toggle .fa-sun { display: none; }
.theme-toggle .fa-moon { display: block; }

[data-theme="dark"] .theme-toggle .fa-sun { display: block; }
[data-theme="dark"] .theme-toggle .fa-moon { display: none; }

/* --- Navbar Toggle (Mobile) --- */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.navbar__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.navbar__toggle.active .navbar__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active .navbar__toggle-bar:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active .navbar__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.hero__container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 24px;
}

.hero__content {
    max-width: 600px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 140, 0, 0.15);
    border: 1px solid rgba(255, 140, 0, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--color-secondary);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: var(--radius-full);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero__title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero__stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero__stat h3 {
    font-size: 2rem;
    color: white;
    font-family: var(--font-heading);
}

.hero__stat h3 span { color: var(--color-primary); }

.hero__stat p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* --- Hero Visual / Globe --- */
.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.hero__globe {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero__globe-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-full);
    animation: ringRotate 20s linear infinite;
}

.hero__globe-ring:nth-child(1) { width: 100%; height: 100%; }
.hero__globe-ring:nth-child(2) { width: 80%; height: 80%; animation-duration: 15s; animation-direction: reverse; border-color: rgba(255, 215, 0, 0.15); }
.hero__globe-ring:nth-child(3) { width: 60%; height: 60%; animation-duration: 10s; border-color: rgba(0, 180, 216, 0.15); }

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero__globe-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,140,0,0.3), transparent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__globe-center i {
    font-size: 3rem;
    color: var(--color-primary);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255,140,0,0.3)); }
    50% { filter: drop-shadow(0 0 30px rgba(255,140,0,0.6)); }
}

.hero__float-items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__float-item {
    position: absolute;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatItem 6s ease-in-out infinite;
}

.hero__float-item i { color: var(--color-primary); }

.hero__float-item:nth-child(1) { top: 10%; right: 10%; animation-delay: 0s; }
.hero__float-item:nth-child(2) { top: 40%; left: 5%; animation-delay: -2s; }
.hero__float-item:nth-child(3) { bottom: 20%; right: 15%; animation-delay: -4s; }

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

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- Hero Scroll Indicator --- */
.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 0.6s ease 0.8s both;
}

.hero__scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

/* ============================================
   CLIENTS / TRUSTED BY
   ============================================ */
.clients {
    padding: 60px 0;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
}

.clients__title {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.clients__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.5;
}

.clients__grid span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-text-light);
    transition: opacity var(--transition-fast);
    white-space: nowrap;
}

.clients__grid span:hover { opacity: 1; color: var(--color-text); }

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    padding: var(--section-padding);
    background: var(--color-bg);
}

.products__filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.products__filter-btn {
    padding: 8px 24px;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    color: var(--color-text-light);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.products__filter-btn:hover,
.products__filter-btn.active {
    border-color: var(--color-primary);
    background: rgba(255, 140, 0, 0.1);
    color: var(--color-primary);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

/* --- Product Card --- */
.product-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--color-shadow);
    border-color: var(--color-primary);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    transition: all var(--transition-normal);
}

.product-card:hover .product-card__icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.product-card__category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    font-weight: 600;
}

.product-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 8px 0 12px;
}

.product-card__desc {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-card__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.product-card__features li {
    font-size: 0.85rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card__features li i {
    color: #22C55E;
    font-size: 0.75rem;
}

.product-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-card__price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.product-card__price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-text-light);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: var(--section-padding);
    background: var(--color-bg-alt);
}

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

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px var(--color-shadow);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-card__icon {
    background: var(--gradient-primary);
    color: white;
    transform: rotateY(180deg);
}

.feature-card__title {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.feature-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--section-padding);
    background: var(--color-bg);
}

.testimonials__slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.testimonials__slider::-webkit-scrollbar { display: none; }

.testimonial-card {
    min-width: 350px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    box-shadow: 0 8px 25px var(--color-shadow);
}

.testimonial-card__stars {
    color: #FBBF24;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-card__role {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: var(--section-padding);
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 140, 0, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 50%);
    animation: ctaBgMove 20s ease-in-out infinite;
}

@keyframes ctaBgMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-2%, -2%); }
}

.cta .container { position: relative; z-index: 2; }

.cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 16px;
}

.cta__subtitle {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 36px;
}

.cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding);
    background: var(--color-bg-alt);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact__info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact__info-text h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact__info-text p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.contact__form {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--color-bg);
    color: var(--color-text);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group .error-message {
    font-size: 0.8rem;
    color: #EF4444;
    margin-top: 4px;
    display: none;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #EF4444;
}

.form-group.has-error .error-message {
    display: block;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 3rem;
    color: #22C55E;
    margin-bottom: 16px;
}

.form-success h3 {
    margin-bottom: 8px;
}

.form-success.show { display: block; }
.form-success.show ~ .form-fields { display: none; }

/* ============================================
   PAGE HEADER (for subpages)
   ============================================ */
.page-header {
    padding: 140px 0 60px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 12px;
}

.page-header__subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail {
    padding: var(--section-padding);
}

.product-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail__gallery {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-alt);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail__gallery i {
    font-size: 6rem;
    color: var(--color-primary);
    opacity: 0.3;
}

.product-detail__info h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.product-detail__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #FBBF24;
}

.product-detail__rating span {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

.product-detail__price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.product-detail__price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.product-detail__desc {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-detail__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.product-detail__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.product-detail__features li i {
    color: #22C55E;
    margin-top: 3px;
    flex-shrink: 0;
}

.product-detail__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   TRIAL PAGE
   ============================================ */
.trial {
    padding: var(--section-padding);
}

.trial__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.trial__benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.trial__benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trial__benefit h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.trial__benefit p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.trial__form {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.trial__form-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
    text-align: center;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout {
    padding: var(--section-padding);
}

.checkout__grid {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 40px;
    align-items: start;
}

.checkout__form-section {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}

.checkout__form-section h2 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* --- Order Summary --- */
.checkout__summary {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 100px;
}

.checkout__summary h2 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.checkout__summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.checkout__summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 0;
    margin-top: 16px;
    border-top: 2px solid var(--color-border);
    font-size: 1.2rem;
    font-weight: 700;
}

.checkout__summary-total span:last-child {
    color: var(--color-primary);
}

/* --- Payment Methods --- */
.payment-methods {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.payment-method {
    flex: 1;
    min-width: 120px;
    padding: 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--color-bg);
}

.payment-method:hover,
.payment-method.active {
    border-color: var(--color-primary);
    background: rgba(255, 140, 0, 0.05);
}

.payment-method i {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.payment-method.active i { color: var(--color-primary); }

.payment-method span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Loading Spinner --- */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Shimmer Loading --- */
.shimmer {
    background: linear-gradient(90deg, var(--color-surface) 25%, var(--color-bg-alt) 50%, var(--color-surface) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* --- Skeleton Loader --- */
.skeleton {
    background: var(--color-surface);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: skeletonShimmer 1.5s ease-in-out infinite;
}

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

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
    width: calc(100% - 40px);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: 0 10px 40px var(--color-shadow);
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 16px;
}

.cookie-consent.show { display: flex; }

.cookie-consent p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    flex: 1;
}

.cookie-consent__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 16px 24px;
    border-radius: var(--radius-md);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px var(--color-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    animation: toastIn 0.3s ease, toastOut 0.3s ease 3.7s forwards;
    max-width: 380px;
}

.toast--success { border-left: 4px solid #22C55E; }
.toast--error { border-left: 4px solid #EF4444; }
.toast--info { border-left: 4px solid var(--color-primary); }

.toast i { font-size: 1.2rem; }
.toast--success i { color: #22C55E; }
.toast--error i { color: #EF4444; }
.toast--info i { color: var(--color-primary); }

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

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

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

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

.modal {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.3s ease;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal__header h2 {
    font-size: 1.3rem;
}

.modal__close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--color-surface);
    color: var(--color-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    font-size: 1.1rem;
}

.modal__close:hover {
    background: var(--color-border);
    color: var(--color-text);
}

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

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 16px 0 12px;
}

.footer__brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.footer__social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.footer__col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}

.footer__col ul li {
    margin-bottom: 12px;
}

.footer__col ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer__col ul li a:hover {
    color: var(--color-primary);
}

.footer__col--contact ul li {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__col--contact ul li i {
    width: 16px;
    color: var(--color-primary);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

.footer__bottom p a {
    color: rgba(255,255,255,0.5);
}

.footer__bottom p a:hover { color: var(--color-primary); }

.footer__badges {
    display: flex;
    gap: 16px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.badge i { color: var(--color-primary); }

/* ============================================
   RESPONSIVE
   ============================================ */
/* --- Utility Classes --- */
.hide-mobile { display: inline; }
.hidden { display: none !important; }

@media (max-width: 1024px) {
    .hero__container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero__content { max-width: 100%; }
    .hero__actions { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__globe { width: 300px; height: 300px; }
    .product-detail__grid { grid-template-columns: 1fr; gap: 32px; }
    .checkout__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .contact__grid { grid-template-columns: 1fr; }
    .trial__grid { grid-template-columns: 1fr; }
}

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

    .navbar__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 16px;
        box-shadow: -10px 0 30px var(--color-shadow);
        transition: right var(--transition-normal);
        z-index: 999;
    }

    .navbar__links.open { right: 0; }

    .navbar__toggle { display: flex; }

    .hero__globe { width: 240px; height: 240px; }
    .hero__globe-center { width: 80px; height: 80px; }
    .hero__globe-center i { font-size: 2rem; }
    .hero__stats { flex-wrap: wrap; gap: 24px; }
    .hero__float-item { display: none; }

    .products__grid { grid-template-columns: 1fr; }
    .features__grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: 280px; }

    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; text-align: center; }

    .form-row { grid-template-columns: 1fr; }

    .page-header { padding: 120px 0 40px; }
    .hide-mobile { display: none; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__actions .btn { width: 100%; }
    .product-card__actions { flex-direction: column; }
    .cta__actions { flex-direction: column; align-items: center; }
    .cta__actions .btn { width: 100%; }
    .cookie-consent { flex-direction: column; text-align: center; }
}
