:root {
    --primary: #20C997;
    --primary-dark: #12b886;
    --primary-light: #e6fcf5;
    --secondary: #28a745;
    --dark: #0a0c10;
    --gray: #f8f9fa;
    --text: #1a1d23;
    --text-muted: #6b7280;
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

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

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes bubble {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-bubble {
    animation: bubble 4s ease-in-out infinite;
}

/* Inflatable Containers */
.inflatable-card {
    background: var(--white);
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.inflatable-card:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 40px 80px rgba(32, 201, 151, 0.1);
}

/* Navbar */
nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -1px;
    color: var(--dark);
    text-decoration: none;
}

.logo img {
    height: 32px;
}

.btn-pill {
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(32, 201, 151, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 160px 10% 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: radial-gradient(circle at 80% 20%, var(--primary-light) 0%, transparent 50%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -4px;
    margin-bottom: 32px;
    color: var(--dark);
}

h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.main-image {
    width: 100%;
    max-width: 700px;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.1));
    z-index: 2;
}

.blob-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    z-index: 1;
    opacity: 0.6;
    filter: blur(40px);
    animation: float 10s ease-in-out infinite;
}

/* Sections */
.section-padding {
    padding: 120px 10%;
}

.centered-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

/* Three Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.pillar-img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    margin-bottom: 32px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

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

    .hero-content p {
        margin: 0 auto 40px;
    }

    h1 {
        font-size: 3.5rem;
    }

    .hero-image {
        order: -1;
    }
}