* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, Arial, sans-serif; color: #1a1a1a; line-height: 1.6; background: #fff; }
a { text-decoration: none; color: inherit; }
:root { --pink: #f4b8c1; --pink-dark: #e08a96; --black: #111; --gray: #f7f7f7; --text: #333; }
.navbar { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid #eee; padding: 18px 40px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 22px; letter-spacing: -0.5px; }
.logo span { color: var(--pink-dark); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--pink-dark); }
.nav-cta { background: var(--black); color: #fff !important; padding: 10px 20px; border-radius: 6px; font-weight: 600; }
.hero { background: linear-gradient(135deg, #fff 0%, #fdf2f4 100%); padding: 100px 40px; text-align: center; }
.hero h1 { font-size: 56px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1.5px; }
.hero h1 span { color: var(--pink-dark); }
.hero p { font-size: 20px; max-width: 700px; margin: 0 auto 30px; color: var(--text); }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--black); color: #fff; padding: 16px 32px; border-radius: 8px; font-weight: 600; display: inline-block; transition: transform 0.2s; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { background: #fff; color: var(--black); border: 2px solid var(--black); padding: 14px 30px; border-radius: 8px; font-weight: 600; display: inline-block; }
.hero-trust { margin-top: 30px; display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; color: #666; font-size: 14px; }
.hero-trust span::before { content: "\2713  "; color: var(--pink-dark); font-weight: bold; }
section { padding: 80px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 40px; text-align: center; margin-bottom: 15px; font-weight: 800; letter-spacing: -1px; }
.section-subtitle { text-align: center; color: #666; font-size: 18px; margin-bottom: 50px; max-width: 600px; margin-left: auto; margin-right: auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.service-card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 30px; transition: all 0.3s; }
.service-card:hover { border-color: var(--pink); box-shadow: 0 10px 30px rgba(244,184,193,0.2); transform: translateY(-4px); }
.service-icon { width: 50px; height: 50px; background: var(--pink); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 15px; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.why-section { background: var(--gray); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; text-align: center; }
.why-item h3 { font-size: 36px; color: var(--pink-dark); margin-bottom: 8px; }
.why-item p { font-weight: 600; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; max-width: 800px; margin: 0 auto; }
.price-card { background: #fff; border: 2px solid #eee; border-radius: 16px; padding: 40px; text-align: center; }
.price-card.featured { border-color: var(--pink-dark); position: relative; }
.price-card.featured::before { content: "MOST POPULAR"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--pink-dark); color: #fff; padding: 4px 16px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.price { font-size: 48px; font-weight: 800; margin: 15px 0; }
.price span { font-size: 16px; color: #666; font-weight: 500; }
.price-card ul { list-style: none; margin: 25px 0; text-align: left; }
.price-card li { padding: 8px 0; }
.price-card li::before { content: "\2713  "; color: var(--pink-dark); font-weight: bold; margin-right: 8px; }
.about-section { background: linear-gradient(135deg, #fdf2f4 0%, #fff 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 40px; margin-bottom: 20px; letter-spacing: -1px; }
.about-text p { font-size: 17px; margin-bottom: 15px; color: var(--text); }
.about-tagline { font-style: italic; color: var(--pink-dark); font-weight: 600; font-size: 20px; }
.about-visual { background: var(--pink); border-radius: 16px; padding: 60px; text-align: center; font-size: 80px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; }
.value-card { background: #fff; border: 1px solid #eee; padding: 25px; border-radius: 12px; text-align: center; }
.value-card h4 { color: var(--pink-dark); margin-bottom: 8px; font-size: 18px; }
.contact-section { background: var(--black); color: #fff; }
.contact-section .section-title { color: #fff; }
.contact-section .section-subtitle { color: #ccc; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info p { margin-bottom: 15px; font-size: 17px; }
.contact-info strong { color: var(--pink); }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea, .contact-form select { padding: 14px; border-radius: 8px; border: none; font-size: 15px; font-family: inherit; }
.contact-form button { background: var(--pink-dark); color: #fff; padding: 16px; border: none; border-radius: 8px; font-weight: 700; font-size: 16px; cursor: pointer; }
.contact-form button:hover { background: var(--pink); color: var(--black); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.process-step { background: #fff; padding: 30px; border-radius: 12px; border: 1px solid #eee; }
.step-number { background: var(--pink-dark); color: #fff; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 15px; }
footer { background: #000; color: #aaa; text-align: center; padding: 30px; font-size: 14px; }
footer .tagline { color: var(--pink); font-style: italic; margin-bottom: 8px; font-size: 16px; }
@media(max-width: 768px) {
  .navbar { padding: 15px 20px; }
  .nav-links { display: none; }
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 36px; }
  section { padding: 60px 20px; }
  .section-title { font-size: 30px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
}
