* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --secondary-color: #0ea5e9;
    --secondary-dark: #0284c7;
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --bg-color: #0f172a;
    --bg-light: #1e293b;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-light: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --glow-primary: 0 0 20px rgba(124, 58, 237, 0.3);
    --glow-secondary: 0 0 30px rgba(14, 165, 233, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-primary);
    background: #0a0f1e;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed, #0ea5e9, #f59e0b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    letter-spacing: -0.5px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(124, 58, 237, 0.1);
}

.nav-link::after {
    display: none;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 0;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #0a0f1e 0%, #1a1a2e 50%, #0a0f1e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.brand-name {
    background: linear-gradient(135deg, #7c3aed 0%, #0ea5e9 50%, #f59e0b 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

.tagline {
    color: var(--text-secondary);
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 90%;
}

/* Phone Illustration */
.phone-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-image {
    max-width: 420px;
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(124, 58, 237, 0.3));
    position: relative;
    z-index: 2;
}

.hero-phone-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    z-index: -1;
    animation: pulse-glow 3s ease-in-out infinite;
}

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

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

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(124, 58, 237, 0.05) 50%, transparent 100%),
        linear-gradient(45deg, transparent 0%, rgba(14, 165, 233, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #0ea5e9 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #0ea5e9, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
    border-color: rgba(124, 58, 237, 0.3);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(14, 165, 233, 0.2));
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

/* Start in minutes Icon - Phone with checkmark */
.start-minutes-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(14, 165, 233, 0.3));
}

.start-minutes-icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    animation: phone-appear 2s ease-in-out infinite;
}

.start-minutes-icon::after {
    content: '✓';
    position: absolute;
    font-size: 1.5rem;
    color: #10b981;
    font-weight: 900;
    top: -5px;
    right: -5px;
    background: #10b981;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.5);
    animation: check-pulse 2s ease-in-out infinite;
}

@keyframes phone-appear {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* Save Icon - Diamond/Gem */
.save-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(139, 92, 246, 0.3));
}

.save-icon::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    transform: rotate(45deg);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    animation: gem-shine 3s ease-in-out infinite;
}

.save-icon::after {
    content: '$';
    position: absolute;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(124, 58, 237, 0.5);
    animation: dollar-pop 2s ease-in-out infinite;
}

@keyframes gem-shine {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.8; filter: brightness(1.3); }
}

@keyframes dollar-pop {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* Borderless transfers Icon - Globe with arrows */
.borderless-icon {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(16, 185, 129, 0.3));
}

.borderless-icon::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid #0ea5e9;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.borderless-icon::after {
    content: '→';
    position: absolute;
    font-size: 2rem;
    color: #10b981;
    font-weight: 900;
    animation: arrow-move 2s ease-in-out infinite;
}

@keyframes arrow-move {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(5px); opacity: 0.7; }
}

/* Loyalty Icon - Gift box */
.loyalty-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(245, 158, 11, 0.3));
}

.loyalty-icon::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
}

.loyalty-icon::after {
    content: '🎁';
    position: absolute;
    font-size: 2rem;
    animation: gift-bounce 2s ease-in-out infinite;
}

@keyframes gift-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

/* Marketplace Icon - Shopping cart */
.marketplace-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(14, 165, 233, 0.3));
}

.marketplace-icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 35px;
    background: linear-gradient(135deg, #8b5cf6, #0ea5e9);
    border-radius: 0 0 8px 8px;
    bottom: 0;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}

.marketplace-icon::after {
    content: '🛒';
    position: absolute;
    font-size: 2rem;
    animation: cart-shake 2.5s ease-in-out infinite;
}

@keyframes cart-shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Hover effects for all feature icons */
.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-visual {
    margin-top: 1.5rem;
}

.illustration-box {
    height: 180px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.illustration-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.phone-icon-small, .id-card-icon {
    font-size: 3rem;
    opacity: 0.6;
}

.growth-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
}

.bar {
    width: 30px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px 4px 0 0;
}

.bar-1 { height: 40%; }
.bar-2 { height: 60%; }
.bar-3 { height: 80%; }
.bar-4 { height: 100%; }

.world-map {
    position: relative;
    width: 100%;
    height: 100px;
}

.map-point {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
}

.point-1 { top: 20%; left: 20%; }
.point-2 { top: 50%; right: 20%; }
.point-3 { bottom: 20%; left: 50%; }

.connection-line {
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent, var(--secondary-color));
    opacity: 0.3;
}

.rewards-badges,
.marketplace-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge,
.m-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.badge::before,
.m-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    transition: opacity 0.3s;
}

.badge:hover::before,
.m-icon:hover::before {
    opacity: 0.3;
}

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

/* Coffee Icon */
.coffee-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
}

.coffee-icon::after {
    content: '☕';
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Game Icon */
.game-icon {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
}

.game-icon::after {
    content: '🎮';
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Plane Icon */
.plane-icon {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.3);
}

.plane-icon::after {
    content: '✈';
    font-size: 2rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Music Icon */
.music-icon {
    background: linear-gradient(135deg, #ec4899, #be185d);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.3);
}

.music-icon::after {
    content: '♫';
    font-size: 3rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* TV Icon */
.tv-icon {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
}

.tv-icon::after {
    content: '📺';
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Book Icon */
.book-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}

.book-icon::after {
    content: '📖';
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Hover effects */
.coffee-icon:hover,
.game-icon:hover,
.plane-icon:hover,
.music-icon:hover,
.tv-icon:hover,
.book-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
}

/* Team Section */
.team {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #16213e 50%, #0f172a 100%);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(14, 165, 233, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
    border-color: rgba(124, 58, 237, 0.4);
}

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

.team-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(14, 165, 233, 0.2));
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
}

/* Fintech Icon - Bank with coins */
.fintech-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(14, 165, 233, 0.3));
}

.fintech-icon::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #7c3aed, #0ea5e9);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    transform: perspective(100px) rotateX(15deg);
}

.fintech-icon::after {
    content: '$';
    position: absolute;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(124, 58, 237, 0.5);
    animation: coin-rotate 3s ease-in-out infinite;
}

@keyframes coin-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(360deg) scale(1.1); }
}

/* UX Icon - Design/Art */
.ux-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(139, 92, 246, 0.3));
    position: relative;
}

.ux-icon::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
}

.ux-icon::after {
    content: '⚡';
    position: absolute;
    font-size: 2.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.2) rotate(180deg); }
}

/* Professional Icon - Team/Group */
.professional-icon {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(16, 185, 129, 0.3));
}

.professional-icon::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0ea5e9, #10b981);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}

.professional-icon::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: team-pulse 2.5s ease-in-out infinite;
}

@keyframes team-pulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-50%) scale(1.3);
        opacity: 1;
    }
}

/* Hover effects for all team icons */
.team-icon:hover {
    transform: scale(1.1) rotate(5deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 50px rgba(124, 58, 237, 0.5);
}

.team-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.team-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0f1e 0%, #1a1a2e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.animated-phone-icon {
    width: 80px;
    height: 140px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(14, 165, 233, 0.2));
    border-radius: 20px;
    border: 3px solid rgba(124, 58, 237, 0.4);
    position: relative;
    animation: phone-glow 3s ease-in-out infinite;
}

.animated-phone-icon::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.animated-phone-icon::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 35%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.5), transparent);
    border-radius: 50%;
    animation: pulse-button 2s ease-in-out infinite;
}

@keyframes phone-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.3), 
                    0 0 40px rgba(14, 165, 233, 0.2);
        transform: translateY(0);
    }
    50% { 
        box-shadow: 0 0 40px rgba(124, 58, 237, 0.6), 
                    0 0 80px rgba(14, 165, 233, 0.4);
        transform: translateY(-10px);
    }
}

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

.cta-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.cta-visual {
    margin-top: 3rem;
}

.neon-city {
    position: relative;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
}

.building {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.4), rgba(14, 165, 233, 0.4));
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.b1 { width: 30px; height: 120px; }
.b2 { width: 35px; height: 160px; animation: delay 0.3s; }
.b3 { width: 40px; height: 200px; animation: delay 0.6s; }
.b4 { width: 30px; height: 100px; animation: delay 0.9s; }

@keyframes delay {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.phone-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.5), transparent);
    border-radius: 50%;
    animation: glow-pulse 2s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.phone-simple {
    position: relative;
    z-index: 1;
    font-size: 5rem;
    animation: float 3s ease-in-out infinite;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: #0a0f1e;
    color: var(--text-light);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .nav-menu {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .hero-phone-image {
        max-width: 280px;
    }
}

