/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6; color: #333; background: linear-gradient(135deg, #fff5f8 0%, #fce4ec 100%);
  min-height: 100vh;
}

/* Container */
.container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(233, 30, 99, 0.1);
  padding: 15px 0;
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 24px; font-weight: 700; color: #e91e63; text-decoration: none;
}
.logo img { width: 42px; height: 42px; }
nav { display: flex; gap: 30px; align-items: center; }
nav a {
  color: #555; text-decoration: none; font-weight: 500; font-size: 15px;
  transition: color 0.2s;
}
nav a:hover { color: #e91e63; }
.mobile-menu-btn {
  display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: #e91e63;
}

/* Hero */
.hero {
  padding: 100px 0 80px; text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(233,30,99,0.08) 100%);
}
.hero h1 {
  font-size: 52px; font-weight: 800; line-height: 1.1; margin-bottom: 24px;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p {
  font-size: 20px; color: #666; max-width: 700px; margin: 0 auto 40px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 40px; font-size: 16px; font-weight: 600; color: white;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  border: none; border-radius: 50px; cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35); text-decoration: none;
}
.cta-btn:hover {
  transform: translateY(-3px); box-shadow: 0 12px 32px rgba(233, 30, 99, 0.45);
}
.cta-floating {
  position: fixed; bottom: 30px; right: 30px;
  padding: 18px 36px; font-size: 16px; font-weight: 700;
  border-radius: 50px; z-index: 999;
  box-shadow: 0 8px 30px rgba(233, 30, 99, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.submit-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 40px; font-size: 16px; font-weight: 600; color: white;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  border: none; border-radius: 50px; cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35); text-decoration: none;
}
.submit-btn:hover {
  transform: translateY(-3px); box-shadow: 0 12px 32px rgba(233, 30, 99, 0.45);
}

/* Sections */
section { padding: 80px 0; }
.section-title {
  font-size: 38px; font-weight: 700; text-align: center; margin-bottom: 20px; color: #333;
}
.section-subtitle {
  text-align: center; color: #777; font-size: 18px; max-width: 700px; margin: 0 auto 50px;
}

/* Features */
.features { background: white; border-radius: 24px; padding: 60px; margin: 40px 0; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 40px;
}
.feature-card {
  padding: 32px; background: linear-gradient(180deg, #fff5f8 0%, #fff 100%);
  border-radius: 20px; text-align: center; transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-8px); }
.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 20px; fill: #e91e63;
}
.feature-card h3 { font-size: 22px; margin-bottom: 14px; color: #333; }
.feature-card p { color: #444; font-size: 16px; }

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%); color: white;
  padding: 70px; border-radius: 24px; text-align: center; margin: 60px 0;
  box-shadow: 0 20px 60px rgba(233, 30, 99, 0.35);
}
.cta-box h2 { font-size: 36px; margin-bottom: 16px; }
.cta-box p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-box .cta-btn { background: white; color: #e91e63; }

/* Footer */
footer {
  background: #1a1a1a; color: #ccc; padding: 60px 0 30px; margin-top: 100px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px;
}
.footer-col h4 { color: white; font-size: 18px; margin-bottom: 20px; }
.footer-col a { display: block; color: #aaa; text-decoration: none; margin-bottom: 12px; font-size: 15px; transition: color 0.2s; }
.footer-col a:hover { color: #e91e63; }
.footer-bottom {
  border-top: 1px solid #333; padding-top: 30px; text-align: center; font-size: 14px; color: #888;
}

/* Blog */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 40px;
}
.blog-card {
  background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card-img {
  width: 100%; height: 200px; object-fit: cover; fill: #e91e63;
}
.blog-card-body { padding: 28px; }
.blog-card h3 { font-size: 22px; margin-bottom: 12px; color: #333; }
.blog-card p { color: #666; font-size: 16px; line-height: 1.7; }
.blog-link {
  display: inline-block; margin-top: 16px; color: #e91e63; font-weight: 600;
  text-decoration: none; transition: transform 0.2s;
}
.blog-link:hover { transform: translateX(4px); }

/* Article */
.article { background: white; border-radius: 24px; padding: 50px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.article h1 { font-size: 40px; margin-bottom: 24px; color: #333; }
.article-meta { color: #999; font-size: 14px; margin-bottom: 30px; }
.article p { margin-bottom: 24px; font-size: 17px; line-height: 1.8; color: #444; }
.article h2 { font-size: 28px; margin: 40px 0 20px; color: #333; }
.article ul { margin-bottom: 24px; padding-left: 24px; }
.article li { margin-bottom: 12px; font-size: 17px; line-height: 1.7; color: #444; }

/* Forms */
.contact-form {
  max-width: 600px; margin: 0 auto; background: white; padding: 40px; border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 2px solid #eee; border-radius: 12px;
  font-size: 16px; transition: border-color 0.2s; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #e91e63; }
.form-group textarea { resize: vertical; min-height: 140px; }

/* FAQ */
.faq-item {
  background: white; border-radius: 14px; margin-bottom: 16px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.faq-question {
  width: 100%; padding: 22px 28px; font-size: 17px; font-weight: 600; color: #333;
  text-align: left; background: none; border: none; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; transition: background 0.2s;
}
.faq-question:hover { background: #fff5f8; }
.faq-question::after {
  content: '+'; font-size: 24px; color: #e91e63; transition: transform 0.3s;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 28px;
}
.faq-item.active .faq-answer { max-height: 1000px; padding: 0 28px 24px; }

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 17px; }
  .mobile-menu-btn { display: block; }
  nav {
    position: fixed; top: 80px; left: 0; right: 0; background: white;
    flex-direction: column; padding: 30px; gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-100vh); transition: transform 0.3s;
  }
  nav.active { transform: translateY(0); }
  .features { padding: 30px; }
  .article { padding: 24px; }
  .cta-floating { bottom: 20px; right: 20px; padding: 14px 24px; font-size: 14px; }
  .section-title { font-size: 28px; }
}

/* Utility */
.text-center { text-align: center; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 40px; }
.mt-6 { margin-top: 60px; }
.mt-3 { margin-top: 16px; }
.text-muted { color: #aaa; font-size: 15px; }
.link-primary { color: #e91e63; text-decoration: none; }
.link-primary:hover { text-decoration: underline; }
.quote { font-style: italic; margin-bottom: 16px; }
.step-number { font-size: 36px; font-weight: 800; color: #e91e63; margin-bottom: 20px; }
.step-number-lg { font-size: 28px; font-weight: 800; color: #e91e63; margin-bottom: 16px; }
.feature-pad { padding: 50px 30px; }
.w-full { width: 100%; }
.blog-title-link { color: inherit; text-decoration: none; }
.testimonial-author { color: #e91e63; font-weight: 600; }