:root {
    --primary-pink: #ff80ab;
    --primary-purple: #7c4dff;
    --deep-purple: #2a0036;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --gradient-main: linear-gradient(135deg, #2a0036 0%, #121212 100%);
    --gradient-accent: linear-gradient(45deg, #ff80ab, #7c4dff);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* Header */
header {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--text-white);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-accent);
    transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-accent);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 77, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--text-white);
    padding: 8px 23px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: rgba(124, 77, 255, 0.1);
}

/* Hero */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    background: radial-gradient(circle at top right, #2a0036, transparent 40%),
        radial-gradient(circle at bottom left, #1a0020, transparent 40%);
    position: relative;
}

.hero-content {
    max-width: 50%;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #b0b0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-image {
    max-width: 45%;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.floating-card {
    position: absolute;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Sections */
.section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(124, 77, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 60px 10%;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-gray);
}

/* Forms */
input,
textarea,
select {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    margin-bottom: 20px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-purple);
}

/* Badges */
.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.love {
    background: rgba(255, 128, 171, 0.2);
    color: #ff80ab;
}

.badge.life {
    background: rgba(0, 188, 212, 0.2);
    color: #00bcd4;
}

.badge.struggle {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.badge.business {
    background: rgba(124, 77, 255, 0.2);
    color: #7c4dff;
}