/* ============================================
   ARORA MAIL - PREMIUM 3D ANIMATED DESIGN
   Glassmorphism | Fluid Animations | Modern UI
   ============================================ */

/* Enhanced CSS Variables with 3D Effects - DARK MODE (Default) */
:root {
    /* Primary Colors - Vibrant Gradient Palette */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0ea5e9;
    --accent: #f43f5e;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #f1f5f9;

    /* Background colors */
    --bg-primary: #0a0a1a;
    --bg-secondary: #0f172a;
    --bg-card: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* 3D Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f43f5e 100%);
    --gradient-secondary: linear-gradient(135deg, #0ea5e9 0%, #6366f1 50%, #a855f7 100%);
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(270, 70%, 60%, 0.3) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 0.3) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(355, 100%, 65%, 0.2) 0px, transparent 50%);

    /* 3D Shadows */
    --shadow-3d: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.4);
    --shadow-neon: 0 0 40px rgba(244, 63, 94, 0.3), 0 0 80px rgba(99, 102, 241, 0.2);
    --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.15);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-blur: blur(20px);

    /* Spacing & Borders */
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ============================================
   GLOBAL ANIMATIONS
   ============================================ */

@keyframes float3D {

    0%,
    100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }

    25% {
        transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
    }

    50% {
        transform: translateY(-20px) rotateX(-2deg) rotateY(2deg);
    }

    75% {
        transform: translateY(-10px) rotateX(1deg) rotateY(-1deg);
    }
}

@keyframes pulse3D {

    0%,
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-glow);
    }

    50% {
        transform: scale(1.02);
        box-shadow: var(--shadow-neon);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes morphBg {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    50% {
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
    }

    75% {
        border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%;
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp3D {
    0% {
        opacity: 0;
        transform: translateY(60px) rotateX(10deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotateY(20deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(99, 102, 241, 0.3);
    }

    50% {
        border-color: rgba(244, 63, 94, 0.5);
    }
}

/* ============================================
   BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animated Background Mesh */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    z-index: -1;
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography with Gradient Text */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp3D 0.8s ease-out;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, #fff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(244, 63, 94, 0.5);
}

/* ============================================
   GLASSMORPHISM BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.6);
}

.btn-outline {
    background: var(--glass-bg);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   3D GLASSMORPHISM NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: var(--shadow-3d);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    background: linear-gradient(135deg, #667eea 0%, #f43f5e 100%);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    animation: pulse3D 3s ease-in-out infinite;
}

.logo-text {
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    background: none;
    border: none;
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #f43f5e);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown - Glassmorphism */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    min-width: 220px;
    box-shadow: var(--shadow-3d);
    border-radius: var(--border-radius);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) rotateX(-10deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px) rotateX(0);
}

.dropdown-content a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(99, 102, 241, 0.2);
    color: white;
    padding-left: 2rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* ============================================
   HERO SECTION - 3D IMMERSIVE
   ============================================ */

.hero {
    padding: 10rem 0 8rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

/* Animated 3D Background Orbs */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float3D 8s ease-in-out infinite, morphBg 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float3D 10s ease-in-out infinite reverse, morphBg 20s ease-in-out infinite reverse;
}

/* Additional Floating Particles */
.hero .container::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 40%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: float3D 12s ease-in-out infinite 2s;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Badge - Glowing Pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.4);
    backdrop-filter: blur(10px);
    animation: fadeInUp3D 0.6s ease-out, borderGlow 3s ease-in-out infinite;
}

.hero-badge i {
    color: #10b981;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 30%, #f472b6 60%, #fb923c 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp3D 0.8s ease-out, gradientShift 5s ease infinite;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: fadeInUp3D 1s ease-out;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp3D 1.2s ease-out;
}

/* Hero Stats - Glassmorphism Cards */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp3D 1.4s ease-out;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.stat:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

/* ============================================
   3D PHONE MOCKUP
   ============================================ */

.hero-visual {
    animation: slideInLeft 1s ease-out 0.3s backwards;
}

.phone-mockup {
    position: relative;
    perspective: 1500px;
    margin: 0 auto;
}

.phone-screen {
    width: 300px;
    height: 600px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 40px;
    padding: 15px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotateY(-15deg) rotateX(5deg) translateZ(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float3D 6s ease-in-out infinite;
}

.phone-mockup:hover .phone-screen {
    transform: rotateY(0) rotateX(0) translateZ(80px) scale(1.05);
    box-shadow:
        0 80px 160px rgba(99, 102, 241, 0.3),
        0 0 0 2px rgba(99, 102, 241, 0.5),
        0 0 100px rgba(99, 102, 241, 0.2);
}

.bot-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #0f172a;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bot-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bot-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bot-info h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

.bot-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.bot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.message {
    margin-bottom: 1rem;
    max-width: 85%;
    padding: 0.875rem 1.25rem;
    border-radius: 20px;
    position: relative;
    animation: scaleIn 0.3s ease-out;
}

.message.incoming {
    background: rgba(99, 102, 241, 0.2);
    color: white;
    border-top-left-radius: 4px;
    margin-right: auto;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.message.outgoing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-top-right-radius: 4px;
    margin-left: auto;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.bot-keyboard {
    background: rgba(15, 23, 42, 0.95);
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.keyboard-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.keyboard-row button {
    flex: 1;
    padding: 0.875rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.keyboard-row button:hover {
    background: rgba(99, 102, 241, 0.4);
    transform: scale(1.05);
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.wave-divider path {
    fill: rgba(15, 23, 42, 0.5);
}

/* ============================================
   FEATURES SECTION - 3D CARDS
   ============================================ */

.features {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #f43f5e, #667eea);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    animation: gradientShift 3s ease infinite;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow:
        0 30px 60px rgba(99, 102, 241, 0.2),
        0 0 0 1px rgba(99, 102, 241, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.feature-icon.primary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.1) 100%);
    color: #818cf8;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.feature-icon.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: #34d399;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
}

.feature-icon.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
    color: #fbbf24;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

.feature-icon.info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #60a5fa;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.feature-icon.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%);
    color: #c084fc;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.2);
}

.feature-icon.orange {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2) 0%, rgba(244, 63, 94, 0.1) 100%);
    color: #fb7185;
    box-shadow: 0 10px 40px rgba(244, 63, 94, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(10deg);
}

.feature-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ============================================
   HOW IT WORKS - ANIMATED STEPS
   ============================================ */

.how-it-works {
    padding: 8rem 0;
    background: linear-gradient(180deg, #1e1b4b 0%, #0f172a 100%);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.step:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
}

.step-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #818cf8;
    margin-left: auto;
}

/* CTA Box */
.cta-box {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(244, 63, 94, 0.15) 100%);
    border-radius: var(--border-radius-xl);
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(20px);
}

.cta-box h2 {
    color: white;
    margin-bottom: 1rem;
    -webkit-text-fill-color: white;
    background: none;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* ============================================
   PRICING SECTION - GLASSMORPHISM CARDS
   ============================================ */

.pricing {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.4);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #f43f5e);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #f43f5e 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-period {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li i {
    font-size: 0.9rem;
}

.plan-features li i.fa-check {
    color: #10b981;
}

.plan-features li i.fa-times {
    color: #ef4444;
}

/* ============================================
   FOOTER - GLASSMORPHISM
   ============================================ */

.footer {
    padding: 4rem 0 2rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 1rem;
}

.payment-methods i {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: white;
    transform: scale(1.2);
}

/* ============================================
   FLOATING LAUNCH BUTTON - 3D EFFECT
   ============================================ */

.floating-launch-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow:
        0 10px 40px rgba(102, 126, 234, 0.4),
        0 0 0 0 rgba(102, 126, 234, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse3D 2s ease-in-out infinite;
}

.floating-launch-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 20px 60px rgba(102, 126, 234, 0.5),
        0 0 0 10px rgba(102, 126, 234, 0.1);
    color: white;
}

.floating-launch-btn i {
    font-size: 1.25rem;
}

/* ============================================
   LEGAL PAGES STYLING
   ============================================ */

.legal-page {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header h1 {
    margin-bottom: 1rem;
}

.legal-update {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    -webkit-text-fill-color: white;
    background: none;
}

.legal-section h3 {
    color: rgba(255, 255, 255, 0.9);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.15rem;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
    padding-left: 1rem;
}

.legal-section li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #a78bfa;
}

.legal-section a {
    color: #818cf8;
}

.legal-acknowledgment {
    background: rgba(99, 102, 241, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.company-info {
    background: rgba(99, 102, 241, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.highlight-box {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Tables */
.legal-section table,
.data-table,
.refund-table,
.delivery-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.legal-section table th,
.legal-section table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section table th {
    background: rgba(99, 102, 241, 0.2);
    color: white;
    font-weight: 600;
}

.legal-section table td {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .phone-screen {
        transform: rotateY(0) rotateX(0);
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-200%);
        opacity: 0;
        transition: all 0.4s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .menu-toggle {
        display: block;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-icon {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .phone-screen {
        width: 260px;
        height: 520px;
    }

    .features-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .floating-launch-btn span {
        display: none;
    }

    .floating-launch-btn {
        padding: 1rem;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .stat {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   ADDITIONAL POLISH
   ============================================ */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #f43f5e 100%);
}

/* Selection color */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: white;
}

/* Focus states for accessibility */
*:focus-visible {
    outline: 2px solid #818cf8;
    outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
button,
a,
input,
textarea,
select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Secondary button style */
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Nav actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.launch-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
}

/* ============================================
   ADD-ONS SECTION - GLASSMORPHISM CARDS
   ============================================ */

.addons-section {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.addons-section h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.addon {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.addon:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.addon h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.addon .price {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.addon .btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.addon .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* ============================================
   PAYMENT MODAL - GLASSMORPHISM
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(30px);
    border-radius: var(--border-radius-xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: white;
    font-size: 1.25rem;
    margin: 0;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(244, 63, 94, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

/* Payment Summary */
.payment-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.payment-summary h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(99, 102, 241, 0.3);
}

.summary-total span:first-child {
    color: white;
    font-weight: 600;
}

.summary-total .total {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Payment Methods */
.modal-body .payment-methods {
    margin-top: 1.5rem;
}

.modal-body .payment-methods h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.method-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.method-btn i {
    font-size: 1.25rem;
}

.method-btn span {
    font-size: 0.75rem;
    font-weight: 500;
}

.method-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    color: white;
}

.method-btn.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
    border-color: rgba(99, 102, 241, 0.6);
    color: white;
}

/* Payment Details */
.payment-details {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.qr-container {
    text-align: center;
}

.qr-code {
    background: white;
    width: 180px;
    height: 180px;
    border-radius: 16px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder {
    text-align: center;
    color: #333;
}

.qr-placeholder i {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.qr-placeholder p {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
}

.upi-info {
    text-align: center;
}

.upi-id {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.upi-id label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.upi-id code {
    background: rgba(99, 102, 241, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: #a78bfa;
    font-weight: 600;
}

.copy-btn {
    background: rgba(99, 102, 241, 0.3);
    border: none;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(99, 102, 241, 0.5);
}

.upi-info .note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.secure-badge i {
    color: #10b981;
}

/* Form Styles in Modal */
.modal .form-group {
    margin-bottom: 1.25rem;
}

.modal .form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.modal .form-group input,
.modal .form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal .form-group input:focus,
.modal .form-group select:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.modal .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.modal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Business Plans Grid */
.business-plans {
    margin-top: 2rem;
}

/* Responsive for modals */
@media (max-width: 768px) {
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-content {
        margin: 1rem;
        max-height: 85vh;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .addons-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .addons-grid {
        grid-template-columns: 1fr;
    }

    .modal .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NAVBAR BUTTONS - ENHANCED STYLING
   ============================================ */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-actions .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 10px;
    white-space: nowrap;
}

.nav-actions .btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.nav-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-actions .btn-secondary {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: white;
}

.nav-actions .btn-secondary:hover {
    background: rgba(99, 102, 241, 0.4);
}

.nav-actions .launch-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Mobile responsive navbar */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        margin-left: 0;
        transform: translateY(-200%);
        opacity: 0;
        transition: all 0.4s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 10px;
        color: white;
        font-size: 1.25rem;
        cursor: pointer;
    }

    .nav-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .nav-actions .btn span {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        gap: 0.5rem;
    }

    .nav-actions .btn-outline,
    .nav-actions .btn-secondary {
        display: none;
    }
}

/* ============================================
   FAQ SECTION - ACCORDION STYLE
   ============================================ */

.faq {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item.active .faq-question {
    background: rgba(99, 102, 241, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #818cf8;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 1.5rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.faq-answer a {
    color: #818cf8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.25rem 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }
}

/* ============================================
   MOBILE AUTH BUTTONS (Login/Signup in menu)
   ============================================ */

/* ALWAYS hide on desktop (992px+) */
.mobile-auth-buttons {
    display: none !important;
}

/* Only show on mobile/tablet when nav-menu is active */
@media (max-width: 992px) {
    .nav-menu.active .mobile-auth-buttons {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 0;
        margin-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .mobile-auth-btn {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    /* Hide desktop nav-actions buttons on mobile */
    .nav-actions .btn-outline,
    .nav-actions .btn-secondary,
    .nav-actions .launch-btn {
        display: none !important;
    }

    /* Keep only hamburger button */
    .nav-actions {
        justify-content: flex-end;
    }
}

/* Ensure desktop nav buttons are visible on large screens */
@media (min-width: 993px) {

    .nav-actions .btn-outline,
    .nav-actions .btn-secondary,
    .nav-actions .launch-btn {
        display: inline-flex !important;
    }

    .mobile-auth-buttons {
        display: none !important;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Mobile-first approach with all breakpoints
   ============================================ */

/* ===== MOBILE PHONES (320px - 480px) ===== */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Hero Section */
    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }

    /* PERFORMANCE FIX: Disable heavy animations on mobile */
    .hero *,
    .hero::before,
    .hero::after,
    .hero .container::before,
    .features-section *,
    .pricing-section *,
    .faq-section *,
    body::before {
        animation: none !important;
    }

    .hero::before,
    .hero::after,
    .hero .container::before {
        display: none !important;
    }

    .pricing-card,
    .feature-card,
    .stat {
        transform: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        width: 100%;
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* Hide phone mockup on very small screens */
    .hero-visual {
        display: none;
    }

    /* Pricing Cards */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .pricing-card {
        padding: 1.5rem;
        margin: 0;
    }

    .plan-price .amount {
        font-size: 2rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* Section Headers */
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Buttons */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 1rem 1.75rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* How it Works Steps */
    .steps {
        flex-direction: column;
    }

    .step {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    /* Navbar */
    .logo-text {
        font-size: 1rem;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    /* Floating button */
    .floating-launch-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .floating-launch-btn span {
        display: none;
    }
}

/* ===== TABLETS (481px - 768px) ===== */
@media (min-width: 481px) and (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Hero */
    .hero {
        padding: 7rem 0 5rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        justify-content: center;
    }

    /* Pricing */
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pricing-cards.business-plans {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Steps */
    .steps {
        flex-wrap: wrap;
        justify-content: center;
    }

    .step {
        width: 45%;
    }
}

/* ===== SMALL DESKTOPS / LARGE TABLETS (769px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero .container {
        grid-template-columns: 1fr 0.8fr;
        gap: 2rem;
    }

    .phone-screen {
        width: 250px;
        height: 500px;
    }

    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== NAVIGATION - ALL MOBILE/TABLET ===== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #0f172a !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        margin: 0;
        padding: 5rem 2rem 2rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        z-index: 9999 !important;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .nav-link {
        font-size: 1.25rem;
        padding: 1rem;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        z-index: 1001;
    }

    .dropdown-content {
        position: static;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: none;
        background: rgba(0, 0, 0, 0.3);
        box-shadow: none;
        border: none;
        border-radius: 12px;
        padding: 0;
        margin-top: 0.5rem;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    }

    .dropdown.active .dropdown-content,
    .dropdown:focus-within .dropdown-content {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
        padding: 0.5rem 0;
    }

    .dropdown-content a {
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
    }

    .dropdown-toggle .fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-toggle .fa-chevron-down {
        transform: rotate(180deg);
    }
}

/* ===== LARGE DESKTOPS (1025px+) ===== */
@media (min-width: 1025px) {
    .container {
        max-width: 1200px;
    }

    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Show all nav items */
    .nav-menu {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {

    /* Larger touch targets */
    .btn {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Remove hover effects that don't work on touch */
    .btn:hover::before {
        left: -100%;
    }

    .pricing-card:hover {
        transform: none;
    }

    .feature-card:hover {
        transform: none;
    }

    /* Add active states instead */
    .btn:active {
        transform: scale(0.98);
    }

    .pricing-card:active {
        transform: scale(0.99);
    }
}

/* ===== REDUCE MOTION FOR ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== DARK MODE PREFERENCE (already dark, but ensure consistency) ===== */
@media (prefers-color-scheme: dark) {
    body {
        color-scheme: dark;
    }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 5rem 0 3rem;
        min-height: auto;
    }

    .hero-visual {
        display: none;
    }

    .nav-menu {
        padding: 1rem 0;
        gap: 1rem;
    }

    .nav-link {
        padding: 0.5rem;
        font-size: 1rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {

    .navbar,
    .floating-launch-btn,
    .nav-menu,
    .hero-visual {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero {
        padding: 1rem 0;
    }
}