* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, 'PingFang SC', sans-serif; line-height: 1.7; color: #333; background: #fffaf5; overflow-x: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.blob { position: fixed; border-radius: 50%; filter: blur(80px); opacity: 0.3; z-index: 0; }
.blob-1 { width: 400px; height: 400px; background: #ff6b6b; top: -100px; right: -100px; }
.blob-2 { width: 350px; height: 350px; background: #feca57; bottom: 10%; left: -80px; }
.header { position: fixed; top: 0; width: 100%; z-index: 100; background: rgba(255,250,245,0.9); backdrop-filter: blur(15px); }
.nav { display: flex; justify-content: space-between; align-items: center; height: 68px; }
.logo { font-size: 1.3rem; font-weight: 800; background: linear-gradient(135deg, #ff6b6b, #ff8e53); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-links a { text-decoration: none; color: #555; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: #ff6b6b; }
.nav-cta { background: linear-gradient(135deg, #ff6b6b, #ff8e53); color: #fff !important; padding: 8px 20px; border-radius: 20px; }
.hero { padding: 150px 0 100px; text-align: center; position: relative; z-index: 1; }
.hero-tag { display: inline-block; background: linear-gradient(135deg, #ff6b6b, #ff8e53); color: #fff; padding: 6px 18px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; }
.hero h1 { font-size: 3rem; font-weight: 800; color: #2d3436; margin-bottom: 16px; }
.slogan { font-size: 1.2rem; color: #666; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 36px; border-radius: 30px; text-decoration: none; font-weight: 700; transition: all 0.3s; }
.btn-primary { background: linear-gradient(135deg, #ff6b6b, #ff8e53); color: #fff; box-shadow: 0 4px 20px rgba(255,107,107,0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,107,107,0.4); }
.btn-outline { border: 2px solid #ff6b6b; color: #ff6b6b; }
.btn-outline:hover { background: #ff6b6b; color: #fff; }
section { padding: 80px 0; position: relative; z-index: 1; }
section h2 { text-align: center; font-size: 2.2rem; margin-bottom: 50px; color: #2d3436; }
.about p { max-width: 750px; margin: 0 auto; font-size: 1.05rem; color: #555; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card { background: #fff; padding: 36px 28px; border-radius: 20px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.3s; border: 2px solid transparent; }
.service-card:hover { transform: translateY(-6px); border-color: #ff6b6b; box-shadow: 0 12px 40px rgba(255,107,107,0.15); }
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 12px; color: #2d3436; }
.service-card p { color: #888; font-size: 0.95rem; }
.contact { background: linear-gradient(135deg, #ff6b6b, #ff8e53); color: #fff; }
.contact h2 { color: #fff; }
.contact-cards { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.contact-card { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 28px 32px; border-radius: 16px; text-align: center; min-width: 180px; }
.cc-icon { font-size: 1.8rem; margin-bottom: 10px; }
.contact-card p { font-size: 0.95rem; }
.footer { background: #2d3436; color: #aaa; text-align: center; padding: 35px 0; font-size: 0.9rem; position: relative; z-index: 1; }
@media (max-width: 768px) { .nav-links { display: none; } .hero h1 { font-size: 2rem; } .hero { padding: 120px 0 70px; } section { padding: 55px 0; } }