:root {
    /* Sapphire Blue variants */
    --sapphire: #0F52BA;
    --sapphire-dark: #0A3D91;
    --sapphire-light: rgba(15, 82, 186, 0.1);
    
    /* Candy Red variants */
    --candy-red: #FF2A4D;
    --candy-red-hover: #E0193A;
    --candy-red-light: rgba(255, 42, 77, 0.1);
    
    /* Neutrals */
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Abstract Background Blobs */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--sapphire);
    opacity: 0.15;
}

.blob-2 {
    top: 20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: var(--candy-red);
    opacity: 0.1;
}

/* Header & Nav */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo h1 {
    font-size: 2rem;
    color: var(--sapphire);
    font-weight: 700;
}

/* Emphasis on "liz" */
.logo .highlight {
    color: var(--candy-red);
    font-style: italic;
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--candy-red);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--candy-red);
    color: var(--white);
    box-shadow: 0 10px 20px var(--candy-red-light);
}

.btn-primary:hover {
    background: var(--candy-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 42, 77, 0.3);
}

.btn-outline {
    border: 2px solid var(--sapphire);
    color: var(--sapphire);
    padding: 0.6rem 1.8rem;
}

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

.btn-play {
    color: var(--sapphire);
    background: transparent;
    padding: 0;
    border-radius: 50%;
    margin-right: -0.5rem;
}

.btn-play i {
    font-size: 3.5rem;
    color: var(--sapphire);
    transition: all 0.3s;
    box-shadow: 0 10px 20px var(--sapphire-light);
    border-radius: 50%;
    background: #fff;
}

.btn-play:hover i {
    color: var(--candy-red);
    transform: scale(1.05);
}

.play-text {
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
}

/* Hero Section */
#hero {
    padding: 5rem 5%;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
}

.badge {
    background: var(--sapphire-light);
    color: var(--sapphire);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-text h2 {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.text-sapphire {
    color: var(--sapphire);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

/* Stats */
.stats {
    display: flex;
    gap: 3rem;
}

.stat-item h4 {
    font-size: 2.2rem;
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Hero Image & Floating Elements */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-circle-bg {
    position: absolute;
    width: 480px;
    height: 480px;
    background: var(--sapphire);
    border-radius: 50%;
    z-index: -1;
    right: 5%;
    top: 5%;
    opacity: 0.08;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: 650px;
    border-radius: 250px 250px 20px 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 10%;
    left: -10%;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    animation: float 5s ease-in-out infinite;
}

.floating-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.floating-card h5 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

.floating-card .stars {
    font-size: 0.8rem;
}

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

/* Features Section */
.features-section {
    padding: 5rem 5%;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--sapphire);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 82, 186, 0.08);
    background: var(--white);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--candy-red-light);
    color: var(--candy-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s;
    transform: rotate(-10deg);
}

.feature-card:hover .icon-box {
    background: var(--candy-red);
    color: var(--white);
    transform: rotate(0deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: var(--sapphire);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 3.5rem;
    }

    .hero-text p {
        margin: 0 auto 2.5rem auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .floating-card {
        left: 5%;
        bottom: 5%;
    }
    
    header {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}
