/* ========================================
   ALPHA LIBRA LLC - Premium Corporate Website
   Innovation Across Industries
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Official Alpha Libra Navy Blue Theme */
    --primary: #1a365d;
    --primary-dark: #0f2744;
    --primary-light: #2c5282;
    --accent: #1a365d;
    --accent-light: #2c5282;
    --accent-dark: #0f2744;
    
    /* GOLD & SILVER PREMIUM ACCENTS - Official Brand Colors */
    --gold: #d4af37;
    --gold-light: #f5d061;
    --gold-dark: #b8860b;
    --gold-shimmer: #ffd700;
    --silver: #9ca3af;
    --silver-light: #d1d5db;
    --silver-dark: #6b7280;
    --platinum: #e5e7eb;
    
    /* ENHANCED Gradients - Official Alpha Libra Navy */
    --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2c5282 40%, #3b82f6 70%, #1a365d 100%);
    --gradient-hero: linear-gradient(135deg, #0f2744 0%, #1a365d 30%, #0f2744 60%, #1a365d 100%);
    --gradient-dark: linear-gradient(135deg, #0f2744 0%, #1a365d 50%, #0f2744 100%);
    --gradient-accent: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #3b82f6 100%);
    --gradient-gold: linear-gradient(135deg, #b8860b 0%, #d4af37 30%, #ffd700 50%, #d4af37 70%, #b8860b 100%);
    --gradient-silver: linear-gradient(135deg, #6b7280 0%, #9ca3af 30%, #d1d5db 50%, #9ca3af 70%, #6b7280 100%);
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.08) 100%);
    --gradient-premium: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #1a365d 100%);
    --gradient-glow: linear-gradient(135deg, rgba(26, 54, 93, 0.4) 0%, rgba(44, 82, 130, 0.2) 100%);
    --gradient-gold-text: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
    --gradient-luxury: linear-gradient(135deg, #0f2744 0%, #1a365d 25%, #0f2744 50%, #1a365d 75%, #0f2744 100%);
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #f8fafc;
    --light-gray: #f1f5f9;
    --gray: #94a3b8;
    --dark-gray: #475569;
    --darker: #1a365d;
    --black: #0f2744;
    
    /* Brand Colors - More Vibrant */
    --tech-color: #0ea5e9;
    --fashion-color: #ec4899;
    --home-color: #10b981;
    --wellness-color: #8b5cf6;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1400px;
    
    /* Enhanced Shadows - More Depth */
    --shadow-sm: 0 2px 8px rgba(10, 14, 39, 0.1);
    --shadow-md: 0 8px 30px rgba(10, 14, 39, 0.15);
    --shadow-lg: 0 25px 50px rgba(10, 14, 39, 0.2);
    --shadow-xl: 0 35px 60px rgba(10, 14, 39, 0.25);
    --shadow-glow: 0 0 40px rgba(110, 66, 193, 0.4);
    --shadow-glow-accent: 0 0 60px rgba(139, 92, 246, 0.3);
    --shadow-glow-gold: 0 0 40px rgba(212, 175, 55, 0.4);
    --shadow-premium: 0 20px 50px rgba(110, 66, 193, 0.3), 0 0 80px rgba(139, 92, 246, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*, *::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(--dark-gray);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   CELESTIAL EFFECTS - FLOATING PARTICLES
   ======================================== */
.celestial-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
}

.star:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.star:nth-child(2) { top: 25%; left: 80%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 40%; left: 15%; animation-delay: 1s; }
.star:nth-child(4) { top: 55%; left: 70%; animation-delay: 1.5s; }
.star:nth-child(5) { top: 70%; left: 30%; animation-delay: 2s; }
.star:nth-child(6) { top: 85%; left: 85%; animation-delay: 2.5s; }
.star:nth-child(7) { top: 15%; left: 50%; animation-delay: 0.3s; }
.star:nth-child(8) { top: 60%; left: 45%; animation-delay: 1.2s; }
.star:nth-child(9) { top: 35%; left: 90%; animation-delay: 0.8s; }
.star:nth-child(10) { top: 90%; left: 10%; animation-delay: 1.8s; }

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

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.12), transparent);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108,240,255,0.08), transparent);
    top: 50%;
    right: -5%;
    animation-delay: -7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(26,54,93,0.15), transparent);
    bottom: 10%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 30px) rotate(3deg); }
}

/* Float Stat Animation for Orbs */
@keyframes float-stat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Aurora Effect */
.aurora {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        linear-gradient(120deg, transparent 30%, rgba(212,175,55,0.04) 50%, transparent 70%),
        linear-gradient(240deg, transparent 30%, rgba(26,54,93,0.06) 50%, transparent 70%);
    animation: aurora-shift 15s ease-in-out infinite;
}

@keyframes aurora-shift {
    0%, 100% { transform: translateX(-30%) skewX(-5deg); opacity: 0.5; }
    50% { transform: translateX(30%) skewX(5deg); opacity: 0.8; }
}

/* Shooting Star */
.shooting-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(90deg, white, transparent);
    border-radius: 50%;
    animation: shoot 8s linear infinite;
    opacity: 0;
}

.shooting-star:nth-child(14) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shooting-star:nth-child(15) {
    top: 40%;
    left: 70%;
    animation-delay: 3s;
}

.shooting-star:nth-child(16) {
    top: 60%;
    left: 40%;
    animation-delay: 6s;
}

@keyframes shoot {
    0% { transform: translateX(0) translateY(0); opacity: 0; }
    5% { opacity: 1; }
    15% { transform: translateX(300px) translateY(150px); opacity: 0; }
    100% { transform: translateX(300px) translateY(150px); opacity: 0; }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: var(--white);
}

.logo-spinner {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.logo-spinner .alpha {
    color: var(--white);
}

.logo-spinner .libra {
    color: var(--accent);
}

.loader p {
    font-size: 1rem;
    opacity: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

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

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

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

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-accent {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-normal);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge i {
    color: var(--accent);
    font-size: 1rem;
}

.hero-badge span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
}

.title-line.accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 1.2rem;
}

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

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

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* ========================================
   STATS SECTION
   ======================================== */
.stats {
    position: relative;
    padding: 0;
    margin-top: -80px;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Camouflage Pattern Stat Cards - Blue/Purple Gradient Theme */
.stat-card {
    background-color: #0f172a;
    background-image: 
        /* Large camo blobs - blue/purple tones */
        radial-gradient(ellipse 90px 70px at 15% 25%, rgba(96, 165, 250, 0.45) 0%, transparent 70%),
        radial-gradient(ellipse 110px 90px at 80% 15%, rgba(139, 92, 246, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 100px 80px at 45% 75%, rgba(59, 130, 246, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 80px 60px at 90% 70%, rgba(167, 139, 250, 0.45) 0%, transparent 70%),
        radial-gradient(ellipse 70px 90px at 5% 85%, rgba(96, 165, 250, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 85px 65px at 35% 15%, rgba(139, 92, 246, 0.4) 0%, transparent 70%),
        /* Medium camo patches */
        radial-gradient(ellipse 60px 50px at 65% 45%, rgba(59, 130, 246, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 55px 65px at 20% 60%, rgba(167, 139, 250, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 50px 40px at 75% 35%, rgba(96, 165, 250, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 45px 55px at 50% 50%, rgba(139, 92, 246, 0.35) 0%, transparent 60%),
        /* Small accent spots */
        radial-gradient(circle 25px at 10% 10%, rgba(96, 165, 250, 0.5) 0%, transparent 70%),
        radial-gradient(circle 20px at 85% 85%, rgba(167, 139, 250, 0.45) 0%, transparent 70%),
        radial-gradient(circle 30px at 40% 35%, rgba(59, 130, 246, 0.4) 0%, transparent 70%),
        radial-gradient(circle 22px at 70% 20%, rgba(139, 92, 246, 0.5) 0%, transparent 70%),
        radial-gradient(circle 18px at 25% 80%, rgba(96, 165, 250, 0.45) 0%, transparent 70%),
        radial-gradient(circle 28px at 60% 70%, rgba(167, 139, 250, 0.4) 0%, transparent 70%),
        /* Extra density spots */
        radial-gradient(circle 15px at 55% 25%, rgba(59, 130, 246, 0.5) 0%, transparent 70%),
        radial-gradient(circle 20px at 30% 45%, rgba(139, 92, 246, 0.45) 0%, transparent 70%),
        radial-gradient(circle 25px at 80% 55%, rgba(96, 165, 250, 0.4) 0%, transparent 70%),
        /* Base gradient */
        linear-gradient(135deg, #1e1b4b 0%, #0f172a 40%, #1e3a5f 70%, #0f172a 100%);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(96, 165, 250, 0.15),
        0 0 60px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(96, 165, 250, 0.4);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa, #60a5fa);
    background-size: 200% 100%;
    animation: shimmerBar 3s ease-in-out infinite;
}

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

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(96, 165, 250, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(96, 165, 250, 0.25),
        0 0 80px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.6);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.3), rgba(139, 92, 246, 0.2));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(96, 165, 250, 0.4);
    position: relative;
    z-index: 1;
}

.stat-icon i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.6));
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        0 0 25px rgba(96, 165, 250, 0.8),
        0 0 50px rgba(139, 92, 246, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

/* Rolling Number Animation */
.stat-number.counting {
    animation: numberGlow 0.5s ease-out;
}

@keyframes numberGlow {
    0% { 
        transform: scale(1.1);
        text-shadow: 0 0 40px rgba(96, 165, 250, 1), 0 0 80px rgba(139, 92, 246, 0.8);
    }
    100% { 
        transform: scale(1);
        text-shadow: 0 0 25px rgba(96, 165, 250, 0.8), 0 0 50px rgba(139, 92, 246, 0.5), 0 2px 4px rgba(0, 0, 0, 0.5);
    }
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Static text stat number (for non-numeric values like SOC 2) */
.stat-number-text {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        0 0 25px rgba(96, 165, 250, 0.8),
        0 0 50px rgba(139, 92, 246, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

/* Tech page stats grid */
.tech-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .tech-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

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

.section-tag {
    display: inline-block;
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title.left {
    text-align: left;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   BRANDS SECTION
   ======================================== */
.brands {
    padding: var(--section-padding);
    background: var(--off-white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.brand-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

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

.brand-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.brand-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.brand-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.brand-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--light-gray);
}

.brand-card[data-brand="tech"] .brand-icon { background: rgba(59, 130, 246, 0.1); }
.brand-card[data-brand="tech"] .brand-icon i { color: var(--tech-color); }
.brand-card[data-brand="fashion"] .brand-icon { background: rgba(236, 72, 153, 0.1); }
.brand-card[data-brand="fashion"] .brand-icon i { color: var(--fashion-color); }
.brand-card[data-brand="home"] .brand-icon { background: rgba(16, 185, 129, 0.1); }
.brand-card[data-brand="home"] .brand-icon i { color: var(--home-color); }
.brand-card[data-brand="wellness"] .brand-icon { background: rgba(139, 92, 246, 0.1); }
.brand-card[data-brand="wellness"] .brand-icon i { color: var(--wellness-color); }

.brand-icon i {
    font-size: 1.5rem;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.brand-category {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.brand-desc {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.brand-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.brand-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.brand-features i {
    color: var(--primary);
    font-size: 0.75rem;
}

.brand-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    width: fit-content;
}

.brand-btn:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
}

/* ========================================
   SAAS PLATFORMS PREVIEW SECTION
   ======================================== */
.platforms-preview {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.platforms-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 30%, #0d1b2a 70%, #1b263b 100%);
    z-index: 0;
}

.platforms-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(110, 66, 193, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.1) 0%, transparent 40%);
    animation: bgShift 10s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.platforms-preview .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.platforms-preview .section-tag {
    color: var(--accent);
}

.platforms-preview .section-title {
    color: var(--white);
    background: linear-gradient(135deg, #fff 0%, #a8edea 50%, #fed6e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platforms-preview .section-subtitle {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.platforms-compact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.platform-compact {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.platform-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #a8edea);
    opacity: 0;
    transition: var(--transition-normal);
}

.platform-compact:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(110, 66, 193, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(110, 66, 193, 0.2);
}

.platform-compact:hover::before {
    opacity: 1;
}

.platform-compact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.platform-compact-logo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    transition: var(--transition-normal);
}

.platform-compact:hover .platform-compact-logo {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.platform-compact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(110, 66, 193, 0.3), rgba(0, 212, 170, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.platform-compact-icon i {
    font-size: 1.3rem;
    color: var(--accent);
}

.platform-compact:hover .platform-compact-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(110, 66, 193, 0.5), rgba(0, 212, 170, 0.3));
}

.platform-compact h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin: 8px 0 4px;
}

.platform-compact p {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-compact-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 10px;
}

.platform-compact-status.live {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.platform-compact-status.dev {
    background: rgba(110, 66, 193, 0.2);
    color: var(--accent);
    border: 1px solid rgba(110, 66, 193, 0.3);
}

.platforms-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.platforms-cta .btn-primary {
    background: linear-gradient(135deg, var(--accent), #00d4aa);
    border: none;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(110, 66, 193, 0.3);
}

.platforms-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(110, 66, 193, 0.4);
}

/* Responsive for compact platforms */
@media (max-width: 1024px) {
    .platforms-compact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .platforms-compact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .platform-compact {
        padding: 20px 14px;
    }
    
    .platform-compact-logo,
    .platform-compact-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .platforms-compact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .platform-compact h4 {
        font-size: 0.85rem;
    }
}

/* ========================================
   LEGACY PLATFORMS (Full Section)
   ======================================== */
.platforms {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    position: relative;
}

.platforms .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.platforms .section-tag {
    color: var(--accent);
}

.platforms .section-title {
    color: var(--white);
}

.platforms .section-subtitle {
    color: var(--gray);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 35px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-normal);
}

.platform-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.platform-card.active::before {
    opacity: 1;
    background: linear-gradient(90deg, #10b981, #34d399);
}

.platform-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--gray);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray);
}

.status-dot.active {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.status-dot.dev {
    background: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.platform-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.platform-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.platform-category {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.platform-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    background: transparent;
}

.platform-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}

.platform-card.active .platform-btn {
    background: #10b981;
    border-color: #10b981;
}

.platform-card.active .platform-btn:hover {
    background: #059669;
    border-color: #059669;
}

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

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

.feature-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
    background: var(--white);
    border: 1px solid var(--light-gray);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ========================================
   ABOUT PREVIEW SECTION
   ======================================== */
.about-preview {
    padding: var(--section-padding);
    background: var(--off-white);
}

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

.about-images {
    position: relative;
}

.about-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img.main {
    width: 100%;
    height: 500px;
}

.about-img.secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 60%;
    height: 300px;
    border: 6px solid var(--white);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    font-size: 2rem;
}

.badge-text {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

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

.highlight i {
    color: var(--primary);
    font-size: 1.2rem;
}

.highlight span {
    font-weight: 500;
    color: var(--black);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--gradient-hero);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent);
    font-size: 1rem;
    margin-right: 4px;
}

.testimonial-text {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.author-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

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

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo .accent {
    color: var(--accent);
}

.footer-desc {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 1rem;
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray);
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 4px;
}

.footer-contact a {
    color: var(--gray);
}

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

.footer-bottom {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--gray);
    font-size: 0.9rem;
}

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

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .title-line {
        font-size: 3.5rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-img.secondary {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -100px;
        margin-left: auto;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        padding: 100px 40px;
        gap: 24px;
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats {
        margin-top: -40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .brand-content {
        padding: 30px;
    }
}

/* ========================================
   PREMIUM GOLD & SILVER ACCENTS
   ======================================== */

/* Gold Text */
.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Silver Text */
.silver-text {
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold Shimmer Animation */
@keyframes goldShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.gold-shimmer {
    background: linear-gradient(90deg, 
        var(--gold-dark) 0%, 
        var(--gold) 25%, 
        var(--gold-shimmer) 50%, 
        var(--gold) 75%, 
        var(--gold-dark) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

/* Gold Border */
.gold-border {
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.gold-border:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* Gold Glow Effect */
.gold-glow {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), 
                0 0 60px rgba(212, 175, 55, 0.2),
                inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

/* Premium Gold Button */
.btn-gold {
    background: var(--gradient-gold);
    color: var(--black);
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* Premium Silver Button */
.btn-silver {
    background: var(--gradient-silver);
    color: var(--black);
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 20px rgba(192, 192, 192, 0.4);
}

.btn-silver:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.5);
}

/* Gold Underline */
.gold-underline {
    position: relative;
}

.gold-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Premium Card with Gold Accent */
.premium-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(212, 175, 55, 0.15);
}

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

/* Luxury Section */
.luxury-section {
    background: var(--gradient-luxury);
    position: relative;
    overflow: hidden;
}

.luxury-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(192, 192, 192, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* HD Glow Effects */
.hd-glow-purple {
    box-shadow: 
        0 0 20px rgba(110, 66, 193, 0.3),
        0 0 40px rgba(110, 66, 193, 0.2),
        0 0 60px rgba(110, 66, 193, 0.1);
}

.hd-glow-blue {
    box-shadow: 
        0 0 20px rgba(59, 130, 246, 0.3),
        0 0 40px rgba(59, 130, 246, 0.2),
        0 0 60px rgba(59, 130, 246, 0.1);
}

.hd-glow-gold {
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(212, 175, 55, 0.2),
        0 0 60px rgba(212, 175, 55, 0.1);
}

/* Animated Border Gradient */
@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-border {
    position: relative;
    background: transparent;
}

.animated-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        var(--primary), var(--accent), var(--gold), var(--primary));
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    animation: borderRotate 4s ease infinite;
}

.animated-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    border-radius: inherit;
    z-index: -1;
}

/* Floating Animation */
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.float-animation {
    animation: floatUpDown 4s ease-in-out infinite;
}

/* Pulse Glow */
@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% { 
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

.pulse-gold {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-gold);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.premium-badge i {
    font-size: 0.8rem;
}

/* Glass Effect with Gold */
.glass-gold {
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

/* Section Divider with Gold */
.section-divider-gold {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold) 50%, 
        transparent 100%);
    margin: 60px 0;
}

/* ========================================
   PREMIUM HD EFFECTS & ANIMATIONS
   Enhanced Visual Experience
   ======================================== */

/* Advanced Keyframe Animations */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes scaleIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes slideInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

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

@keyframes slideInRight {
    0% { transform: translateX(30px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes rotateIn {
    0% { transform: rotate(-10deg) scale(0.9); opacity: 0; }
    100% { transform: rotate(0) scale(1); opacity: 1; }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.3); }
}

@keyframes textReveal {
    0% { clip-path: inset(0 100% 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}

@keyframes borderDance {
    0%, 100% { border-image-source: linear-gradient(0deg, var(--gold), var(--silver), var(--gold)); }
    25% { border-image-source: linear-gradient(90deg, var(--gold), var(--silver), var(--gold)); }
    50% { border-image-source: linear-gradient(180deg, var(--gold), var(--silver), var(--gold)); }
    75% { border-image-source: linear-gradient(270deg, var(--gold), var(--silver), var(--gold)); }
}

@keyframes morphGlow {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

/* Premium Shimmer Text Effect */
.shimmer-text {
    background: linear-gradient(
        90deg, 
        var(--gold-dark) 0%, 
        var(--gold-shimmer) 25%, 
        var(--gold) 50%, 
        var(--gold-shimmer) 75%, 
        var(--gold-dark) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Flowing Gradient Background */
.flowing-gradient {
    background: linear-gradient(-45deg, var(--primary), var(--accent), var(--gold), var(--primary-light));
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
}

/* 3D Card Tilt Effect */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateZ(20px);
}

/* Premium Glass Morphism */
.glass-premium {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Neon Glow Effect */
.neon-gold {
    text-shadow: 
        0 0 10px var(--gold),
        0 0 20px var(--gold),
        0 0 30px var(--gold),
        0 0 40px var(--gold-dark);
}

.neon-blue {
    text-shadow: 
        0 0 10px var(--primary-light),
        0 0 20px var(--primary-light),
        0 0 30px var(--primary),
        0 0 40px var(--primary-dark);
}

/* Animated Border */
.animated-border {
    position: relative;
    overflow: hidden;
}

.animated-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        var(--angle, 0deg),
        var(--gold),
        var(--silver),
        var(--primary-light),
        var(--gold)
    );
    z-index: -1;
    animation: borderRotate 4s linear infinite;
    border-radius: inherit;
}

.animated-border::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--darker);
    border-radius: inherit;
    z-index: -1;
}

/* Reveal Animation Classes */
.reveal-up {
    animation: slideInUp 0.8s ease-out forwards;
}

.reveal-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.reveal-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.reveal-scale {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Staggered Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Morphing Shape */
.morph-shape {
    animation: morphGlow 8s ease-in-out infinite;
}

/* HD Image Container with Effects */
.hd-image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.hd-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(1) contrast(1.05) saturate(1.1);
}

.hd-image-container:hover img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.1) saturate(1.15);
}

.hd-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(212, 175, 55, 0.1) 50%,
        transparent 60%
    );
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hd-image-container:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

/* Premium Button Styles */
.btn-premium {
    position: relative;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--black);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 15px rgba(212, 175, 55, 0.3),
        0 8px 30px rgba(0, 0, 0, 0.2);
}

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

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.3);
}

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

/* Luxury Card Effect */
.luxury-card {
    position: relative;
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.luxury-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 50%,
        rgba(192, 192, 192, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(212, 175, 55, 0.1);
}

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

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

/* Enhanced Focus States */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* Selection styling */
::selection {
    background: var(--gold);
    color: var(--black);
}

::-moz-selection {
    background: var(--gold);
    color: var(--black);
}
