/* Vaktinde Premium Design System */
:root {
    --primary-purple: #4A148C;
    --dark-purple: #2D0063;
    --deep-purple: #1A0033;
    --moon-gold: #FFD700;
    --moon-gold-dark: #B8860B;
    --text-light: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dark: #1A1A1A;
    --bg-light: #F8F9FA;
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(45, 0, 99, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--moon-gold);
}

.nav-cta {
    background: var(--moon-gold);
    color: var(--dark-purple) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700 !important;
    opacity: 1 !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 160px 8% 80px;
    background: radial-gradient(circle at top right, var(--dark-purple), var(--deep-purple));
    color: white;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.highlight {
    background: linear-gradient(135deg, white, var(--moon-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.15);
    color: var(--moon-gold);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.primary-btn,
.secondary-btn,
.gold-btn {
    padding: 15px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

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

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gold-btn {
    background: var(--moon-gold);
    color: var(--dark-purple);
}

.primary-btn:hover,
.secondary-btn:hover,
.gold-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-mockup {
    position: relative;
}

.hero-mockup img {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--primary-purple);
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
}

/* Features Section */
.features {
    padding: 100px 8%;
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-purple);
    margin-bottom: 15px;
}

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

.feature-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
}

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

.feature-card i {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 8%;
    text-align: center;
}

.cta-inner {
    background: linear-gradient(135deg, var(--dark-purple), var(--deep-purple));
    padding: 80px 40px;
    border-radius: 40px;
    color: white;
}

.cta-inner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-inner p {
    margin-bottom: 40px;
    font-size: 1.2rem;
    opacity: 0.8;
}

.cta-inner .gold-btn {
    display: inline-flex;
}

/* Footer */
footer {
    background: #0a001a;
    color: white;
    padding: 80px 8% 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-info .logo {
    margin-bottom: 15px;
    font-size: 2rem;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--moon-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

/* Animations */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .hero-mockup img {
        max-width: 300px;
    }
}