:root {
    --ig-magenta: #dc2743;
    --ig-purple: #cc2366;
    --ig-blue: #bc1888;
    --bg-main: #fcf8ff;
    --bg-card: #ffffff;
    --text-main: #2d1b36;
    --text-muted: #857291;
    --border-color: #f0e6f7;
    --shadow-soft: 0 10px 30px rgba(220, 39, 67, 0.08);
    --shadow-hover: 0 15px 40px rgba(204, 35, 102, 0.15);
    --gradient: linear-gradient(135deg, #fce5ef, #f6f0ff);
    --gradient-text: linear-gradient(45deg, #dc2743, #bc1888);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
body { background: var(--bg-main); color: var(--text-main); line-height: 1.6; position: relative; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Dreamy Background Elements */
.bg-blobs { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; filter: blur(80px); opacity: 0.4; border-radius: 50%; animation: float 15s infinite alternate ease-in-out; }
.blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: #ffb3d9; }
.blob-2 { bottom: -20%; right: -10%; width: 600px; height: 600px; background: #d9b3ff; animation-delay: -5s; }
@keyframes float { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(50px, 50px) scale(1.1); } }

/* Dreamy Nav */
.nav { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; height: 70px; }
.nav-brand { font-size: 24px; font-weight: 800; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.nav-links a:hover, .nav-links a.active { color: var(--ig-purple); }
.nav-btn { background: var(--gradient-text); color: white !important; padding: 8px 22px; border-radius: 30px; box-shadow: 0 4px 15px rgba(220,39,67,0.3); }
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,39,67,0.5); }

/* Soft Hero */
.hero { padding: 100px 20px 80px; text-align: center; max-width: 900px; margin: 0 auto; position: relative; }
.hero-tag { display: inline-block; padding: 8px 24px; background: rgba(255,255,255,0.8); border: 1px solid var(--border-color); border-radius: 30px; font-size: 12px; font-weight: 700; color: var(--ig-purple); margin-bottom: 30px; box-shadow: var(--shadow-soft); letter-spacing: 2px; }
.hero h1 { font-size: 56px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 25px; color: var(--text-main); }
.hero h1 span { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; font-weight: 400; line-height: 1.8; }
.btn-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn { padding: 16px 36px; border-radius: 30px; font-size: 15px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
.btn-primary { background: var(--gradient-text); color: white; box-shadow: 0 8px 20px rgba(204,35,102,0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(204,35,102,0.5); }
.btn-secondary { background: var(--bg-card); color: var(--ig-purple); box-shadow: var(--shadow-soft); }
.btn-secondary:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

/* Floating Stats */
.stats { display: flex; justify-content: center; gap: 30px; padding: 0 20px 80px; flex-wrap: wrap; }
.stat-box { background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); padding: 30px; border-radius: 20px; text-align: center; min-width: 200px; box-shadow: var(--shadow-soft); border: 1px solid white; transition: 0.3s; }
.stat-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.stat-box h3 { font-size: 32px; font-weight: 800; margin-bottom: 5px; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-box p { font-size: 13px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Container */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px 80px; }
.section-title { font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 60px; color: var(--text-main); }
.section-title span { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Soft Glass About */
.about-box { background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); border: 1px solid white; border-radius: 24px; padding: 60px; margin-bottom: 80px; text-align: center; box-shadow: var(--shadow-soft); }
.about-box p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.about-box p:last-child { margin-bottom: 0; }

/* Dreamy Grid Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 80px; }
.card { background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); border: 1px solid white; border-radius: 20px; padding: 40px 30px; box-shadow: var(--shadow-soft); transition: 0.4s; text-align: center; }
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.card-icon { font-size: 40px; margin-bottom: 20px; }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text-main); }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Images */
.showcase-img { width: 100%; border-radius: 24px; box-shadow: var(--shadow-hover); margin-bottom: 80px; border: 4px solid white; }

/* Soft List */
.list-wrapper { max-width: 800px; margin: 0 auto 80px; }
.list-item { background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); border: 1px solid white; border-radius: 20px; padding: 30px; margin-bottom: 20px; box-shadow: var(--shadow-soft); display: flex; gap: 25px; transition: 0.3s; align-items: center; }
.list-item:hover { transform: translateX(10px); box-shadow: var(--shadow-hover); }
.list-icon { width: 50px; height: 50px; border-radius: 15px; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--ig-purple); font-weight: bold; flex-shrink: 0; }
.list-text h3 { font-size: 18px; font-weight: 700; margin-bottom: 5px; color: var(--text-main); }
.list-text p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* Footer */
.footer { background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); border-top: 1px solid white; padding: 60px 20px; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 14px; font-weight: 600; }
.footer-links a:hover { color: var(--ig-purple); }
.footer p { color: #a093a8; font-size: 12px; }