:root {
    --coral: #FF6B6B;
    --coral-dark: #FF5252;
    --coral-light: rgba(255, 107, 107, 0.1);
    --navy: #1C2434;
    --navy-light: #2A364F;
    --gray: #F8FAFC;
    --text: #475569;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--gray); font-size: 16px; position: relative; overflow-x: hidden; }
h1, h2, h3, h4, .logo, .badget { font-family: 'Poppins', sans-serif; font-weight: 800; color: var(--navy); }
a { text-decoration: none; transition: 0.3s; }
.mt-20 { margin-top: 20px;} .mt-40 { margin-top: 40px;} .mb-20 { margin-bottom: 20px;}
.py-120 { padding: 120px 0; }
.text-center { text-align: center; }
.text-coral { color: var(--coral); }
.text-muted { color: #94A3B8; }
.block { display: block; width: 100%; text-align: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* Soft background blobs */
.blob-bg { position: absolute; border-radius: 50%; filter: blur(80px); z-index: -1; opacity: 0.5;}
.blob-1 { width: 500px; height: 500px; background: #FFD166; top: -100px; right: -100px; animation: move 10s infinite alternate ease-in-out;}
.blob-2 { width: 600px; height: 600px; background: #FF9ECC; top: 40%; left: -200px; animation: move 15s infinite alternate-reverse ease-in-out;}
@keyframes move { 100% { transform: translateY(100px) translateX(50px) scale(1.1); } }

/* Buttons */
.btn-coral { background: var(--coral); color: var(--white); padding: 14px 30px; border-radius: 50px; font-weight: 700; font-family: 'Poppins'; display: inline-block; cursor: pointer; border: none; transition: 0.3s;}
.shadow-coral { box-shadow: 0 10px 25px rgba(255,107,107,0.4); }
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-3px); box-shadow: 0 15px 35px rgba(255,107,107,0.5); }
.btn-outline-coral { background: var(--white); color: var(--coral); padding: 14px 30px; border-radius: 50px; font-weight: 700; font-family: 'Poppins'; border: 2px solid var(--coral); display: inline-flex; align-items: center; gap: 8px; cursor: pointer; transition: 0.3s;}
.btn-outline-coral:hover { background: var(--coral-light); }
.btn-lg { padding: 18px 40px; font-size: 18px; }

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 25px 0; transition: 0.4s; }
.navbar-content { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 15px 30px; border-radius: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid rgba(255,255,255,0.4);}
.logo { font-size: 1.6rem; letter-spacing: -0.5px; display: flex; align-items: center; gap: 5px;}
.logo span { color: var(--coral); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-family: 'Poppins'; font-weight: 600; font-size: 14px; color: var(--navy); }
.nav-links a:hover { color: var(--coral); }
.nav-links .btn-coral { color: var(--white); padding: 10px 24px;}
.menu-toggle { display: none; font-size: 24px; color: var(--navy); }

/* Hero */
.hero { padding: 180px 0 100px; display: flex; align-items: center; min-height: 100vh;}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.badget { background: var(--white); color: var(--coral); padding: 8px 16px; border-radius: 20px; font-size: 11px; display: inline-block; margin-bottom: 25px; box-shadow: 0 4px 10px rgba(255,107,107,0.15); letter-spacing: 1px;}
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--coral); position: relative; z-index: 1;}
.hero h1 span::after { content:''; position: absolute; left: 0; bottom: 8px; width: 100%; height: 12px; background: #FFD166; z-index: -1; border-radius: 10px; transform: rotate(-2deg);}
.hero p { font-size: 1.25rem; }
.hero-btns { display: flex; gap: 20px; align-items: center; }

.avatars-group { display: flex; align-items: center; gap: 15px; }
.avatars { display: flex; }
.avatars img { width: 45px; height: 45px; border-radius: 50%; border: 3px solid var(--white); margin-left: -15px; object-fit: cover; }
.avatars img:first-child { margin-left: 0; }
.a-text { font-size: 14px; line-height: 1.3; font-family: 'Nunito'; color: var(--navy);}

.hero-image { position: relative; }
.blob-shape { width: 90%; height: 500px; margin-left: auto; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 8px solid var(--white);}
.blob-shape img { width: 100%; height: 100%; object-fit: cover; }
.float-tag { position: absolute; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 15px 20px; border-radius: 16px; font-family: 'Poppins'; font-weight: 700; font-size: 14px; color: var(--navy); box-shadow: 0 15px 30px rgba(0,0,0,0.08); display: flex; align-items: center; gap: 10px;}
.f-top { top: 10%; right: -5%; animation: floatY 4s infinite ease-in-out;}
.f-bot { bottom: 15%; left: 0%; animation: floatY 5s infinite ease-in-out alternate-reverse;}
@keyframes floatY { 0% { transform: translateY(0); } 100% { transform: translateY(-15px); } }

/* Features Grid */
.bg-glass { background: rgba(255,255,255,0.4); backdrop-filter: blur(15px); border-top: 1px solid rgba(255,255,255,0.5); padding: 100px 0;}
.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-title p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.grid-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; }
.f-card { background: var(--white); padding: 40px 30px; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); text-align: center; transition: 0.3s; border: 1px solid rgba(0,0,0,0.02);}
.f-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.f-icon { width: 70px; height: 70px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 25px; transform: rotate(-5deg); transition: 0.3s;}
.f-card:hover .f-icon { transform: rotate(0deg) scale(1.1); }
.cl-1 { background: rgba(255, 107, 107, 0.1); color: var(--coral); }
.cl-2 { background: rgba(255, 209, 102, 0.2); color: #F8961E; }
.cl-3 { background: rgba(77, 144, 142, 0.1); color: #4D908E; }
.cl-4 { background: rgba(131, 56, 236, 0.1); color: #8338EC; }
.f-card h3 { font-size: 1.2rem; margin-bottom: 15px; }
.f-card p { font-size: 14px; }

/* Banner */
.cta-banner { background: var(--navy); border-radius: 40px; padding: 60px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 30px 60px rgba(28, 36, 52, 0.2);}
.cta-banner h2 { color: var(--white); font-size: 3rem; margin-bottom: 20px; position: relative; z-index: 2;}
.cta-banner p { color: #CBD5E1; font-size: 1.2rem; max-width: 700px; margin: 0 auto; position: relative; z-index: 2;}

/* Pricing */
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 800px; margin: 60px auto 0; }
.p-card { background: var(--white); border-radius: 30px; padding: 50px 40px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
.p-card h3 { font-size: 1.6rem; margin-bottom: 10px; }
.p-card .price { font-family: 'Poppins'; font-size: 3rem; font-weight: 800; color: var(--navy); margin-bottom: 15px;}
.p-card .price span { font-size: 1rem; color: var(--text); font-weight: 400; font-family: 'Nunito';}
.p-card ul { list-style: none; margin-top: 30px; border-top: 1px dashed #E2E8F0; padding-top: 30px;}
.p-card ul li { margin-bottom: 15px; font-weight: 600; font-family: 'Poppins'; font-size: 14px; display: flex; align-items: flex-start; gap: 12px; color: var(--navy);}
.p-card ul li i { color: var(--coral); background: var(--coral-light); padding: 5px; border-radius: 50%; font-size: 12px;}
.p-card.featured { border: 3px solid var(--coral); position: relative; transform: scale(1.05); }
.p-card .badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--coral); color: var(--white); font-size: 11px; font-weight: 800; padding: 6px 18px; border-radius: 20px; font-family: 'Poppins'; letter-spacing: 1px;}

/* Contact */
.grid-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.c-left h2 { font-size: 3.5rem; line-height: 1.1; }
.block-quote { font-size: 1.3rem; font-weight: 600; color: var(--navy); border-left: 4px solid var(--coral); padding-left: 20px; line-height: 1.5;}
.c-item { font-family: 'Poppins'; font-size: 18px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 15px;}
.c-item i { color: var(--coral); font-size: 24px;}
.custom-form-bg { background: var(--white); padding: 50px; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.f-group { margin-bottom: 25px; }
.f-group label { display: block; font-family: 'Poppins'; font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px;}
.f-group input, .f-group select, .f-group textarea { width: 100%; padding: 15px 20px; border-radius: 12px; border: 2px solid #E2E8F0; font-family: 'Nunito'; font-size: 16px; outline: none; transition: 0.3s; background: var(--gray);}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--coral); background: var(--white);}

/* Footer & Modal */
.socials a { color: var(--navy); font-size: 20px; margin-left: 15px; }
.socials a:hover { color: var(--coral); }
.border-top { border-top: 1px solid rgba(0,0,0,0.05); }
.modal { position: fixed; inset: 0; background: rgba(26,42,58,0.8); backdrop-filter: blur(5px); z-index: 2000; display: none; align-items: center; justify-content: center; opacity: 0; transition: 0.3s;}
.modal.open { display: flex; opacity: 1; }
.modal-box { background: var(--white); width: 90%; max-width: 700px; border-radius: 20px; padding: 20px; position: relative; transform: scale(0.9); transition: 0.3s;}
.modal.open .modal-box { transform: scale(1); }
.close-modal { position: absolute; right: 25px; top: 20px; font-size: 30px; color: var(--navy); cursor: pointer; z-index: 10;}

/* Premium Footer */
.footer-grid-premium { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-top: 40px; text-align: left;}
.social-icons { display: flex; gap: 15px;}
.social-icons a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--white); color: var(--navy); border: 1px solid rgba(0,0,0,0.05); transition: 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.02);}
.social-icons a:hover { background: var(--coral); color: var(--white); transform: translateY(-3px);}
.footer-links li a:hover { color: var(--coral) !important; padding-left: 5px;}
.footer-links li a { transition: 0.3s; display: inline-block; }

@media(max-width: 992px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 3rem; }
    .hero-btns { justify-content: center; }
    .avatars-group { justify-content: center; }
    .blob-shape { width: 100%; border-radius: 30px; }
    .grid-features { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    .p-card.featured { transform: scale(1); }
    .grid-contact { grid-template-columns: 1fr; }
    .footer-grid-premium { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .flex-between.pb-20 { flex-direction: column; gap: 15px; }
    .social-icons { justify-content: center; }
}
