/* CSS Reset & Variables */
:root {
    --primary: #059669; /* Emerald */
    --primary-light: #34d399;
    --accent: #a7f3d0;
    --bg-dark: #064e3b;
    --text-main: #ffffff;
    --text-muted: #d1fae5;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Animated Gradient Background */
.animated-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: linear-gradient(45deg, #022c22, #064e3b, #047857, #0f4c3a);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: -2;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Particles Layer */
#particles {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(167,243,208,0.8) 0%, rgba(167,243,208,0) 70%);
    border-radius: 50%;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    20% { opacity: 0.5; }
    80% { opacity: 0.5; }
    100% { transform: translateY(-20vh) scale(1.5); opacity: 0; }
}

/* Container */
.container {
    width: 100%;
    max-width: 1000px;
    padding: 40px 20px;
    text-align: center;
    z-index: 1;
}

/* Logo Animation & Container */
.logo-container {
    display: inline-block;
    padding: 8px;
    background: #ffffff; /* White background to match the logo */
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 0 25px rgba(167, 243, 208, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.5);
}
.logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.floating {
    animation: floating 3.5s ease-in-out infinite;
}
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.pulsing-icon {
    color: var(--accent);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Typography */
h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.highlight-text {
    background: linear-gradient(to right, #6ee7b7, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
}
.cursor {
    animation: blink 1s step-end infinite;
    color: var(--accent);
}
@keyframes blink { 50% { opacity: 0; } }

/* Glassmorphism Cards */
.content-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 50px;
    perspective: 1000px;
}
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.5s;
}
.glass-card:hover::before {
    left: 150%;
}
.glass-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 25px 45px rgba(52, 211, 153, 0.2);
    background: rgba(255, 255, 255, 0.12);
}
.card-icon-wrapper {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 15px;
    display: flex; justify-content: center; align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(52, 211, 153, 0.3);
}
.icon-card {
    font-size: 1.5rem;
    color: white;
}
.glass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: white;
}
.glass-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Progress Bar */
.progress-container {
    max-width: 600px;
    margin: 0 auto 50px auto;
}
.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}
.glow-text {
    text-shadow: 0 0 10px rgba(167, 243, 208, 0.5);
}
.progress-bar-bg {
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
}
.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #10b981, #6ee7b7);
    border-radius: 20px;
    transition: width 2.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}
.progress-glow {
    position: absolute;
    top: 0; right: 0;
    width: 30px; height: 100%;
    background: rgba(255,255,255,0.8);
    filter: blur(5px);
}

/* Buttons */
.actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}
.glass-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-wa {
    background: rgba(37, 211, 102, 0.2);
    border: 1px solid rgba(37, 211, 102, 0.5);
}
.btn-wa:hover {
    background: rgba(37, 211, 102, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}
.btn-email {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}
.btn-email:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
.domain-link {
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 15px;
    background: var(--glass-bg);
    border-radius: 20px;
    transition: 0.3s;
}
.domain-link:hover {
    background: rgba(255,255,255,0.15);
}

/* Enter Animations */
.slide-down {
    opacity: 0; transform: translateY(-30px);
    animation: slideDown 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-in-up {
    opacity: 0; transform: translateY(30px);
    animation: fadeInUp 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
.delay-6 { animation-delay: 1.2s; }

@keyframes slideDown { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .highlight-text { font-size: 2.5rem; }
    .content-cards { grid-template-columns: 1fr; }
    .actions { flex-direction: column; }
    .glass-btn { justify-content: center; }
}
