:root {
  --primary: #F2546B;
  --primary-dark: #D94458;
  --secondary: #2D2D2D;
  --accent: #FF8A65;
  --bg-light: #FAFAFA;
  --bg-white: #FFFFFF;
  --text-main: #333333;
  --text-muted: #777777;
  --border: #E8E8E8;
  --success: #4CAF50;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  line-height: 1.7;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  background: var(--bg-white);
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 72px;
}
.site-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.site-logo span { color: var(--secondary); }
.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a {
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger svg { width: 28px; height: 28px; color: var(--secondary); }
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg-white);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.mobile-nav a {
  display: block; padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--secondary); font-weight: 500; font-size: 1.1rem;
}
.mobile-nav.active { display: flex; }

/* Hero Section */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FFF5F6 0%, #FDE8EB 100%);
  overflow: hidden;
}
.hero-content { flex: 1; padding: 60px 0; z-index: 2; }
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--primary); }
.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-image { flex: 1; text-align: right; }
.hero-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-height: 400px;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(242,84,107,0.3);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Section Styles */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--secondary);
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-image {
  height: 220px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.card:hover .card-image img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary);
}
.card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.card-link {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature-item {
  text-align: center;
  padding: 32px 20px;
}
.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #FFF0F2, #FDE0E4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--primary); }
.feature-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secondary);
}
.feature-item p { color: var(--text-muted); font-size: 0.9rem; }

/* Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item h3 { font-size: 2.5rem; font-weight: 800; margin-bottom: 8px; }
.stat-item p { font-size: 0.95rem; opacity: 0.9; }

/* Two Column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary);
}
.two-col-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.two-col-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  background: var(--bg-white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.testimonial p {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.testimonial-author {
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.9rem;
}
.testimonial-stars { color: #FFB800; margin-bottom: 12px; }

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, #2D2D2D, #1A1A1A);
  padding: 60px 0;
  color: #fff;
  text-align: center;
}
.newsletter h2 { color: #fff; margin-bottom: 12px; font-size: 1.8rem; }
.newsletter p { opacity: 0.8; margin-bottom: 32px; }
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 12px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
}
.newsletter-form button { white-space: nowrap; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-question {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--secondary);
  font-size: 1.05rem;
}
.faq-question svg { width: 20px; height: 20px; transition: var(--transition); color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.faq-item.active .faq-answer { max-height: 200px; padding-top: 12px; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }

/* Footer */
.site-footer {
  background: var(--secondary);
  color: #ccc;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 { color: #fff; font-size: 1.1rem; margin-bottom: 20px; }
.footer-col p { font-size: 0.9rem; line-height: 1.8; }
.footer-col a { display: block; color: #aaa; font-size: 0.9rem; padding: 4px 0; }
.footer-col a:hover { color: var(--primary); }
.footer-about { font-size: 0.9rem; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

/* Page Content */
.page-header {
  background: linear-gradient(135deg, #FFF5F6, #FDE8EB);
  padding: 60px 0;
  text-align: center;
}
.page-header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--secondary);
}
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}
.page-content h2 { font-size: 1.6rem; font-weight: 700; margin: 32px 0 16px; color: var(--secondary); }
.page-content h3 { font-size: 1.3rem; font-weight: 600; margin: 24px 0 12px; color: var(--secondary); }
.page-content p { margin-bottom: 16px; color: var(--text-main); }
.page-content ul, .page-content ol { margin: 0 0 16px 24px; }
.page-content li { margin-bottom: 8px; color: var(--text-main); }

/* Article */
.article-meta {
  display: flex;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.article-hero {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 32px;
}

/* Contact Form */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--secondary);
  font-size: 0.95rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(242,84,107,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: #fff;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.cookie-banner p { font-size: 0.9rem; margin-bottom: 16px; line-height: 1.6; }
.cookie-options { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.cookie-option { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; }
.cookie-option input[type="checkbox"] { accent-color: var(--primary); }
.cookie-buttons { display: flex; gap: 12px; }
.cookie-buttons button {
  padding: 10px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
}
.cookie-accept-all { background: var(--primary); color: #fff; }
.cookie-accept-selected { background: rgba(255,255,255,0.15); color: #fff; }

/* Responsive */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .hero { flex-direction: column; min-height: auto; padding: 40px 0; }
  .hero-content h1 { font-size: 2rem; }
  .hero-image { text-align: center; margin-top: 32px; }
  .cards-grid, .features-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .section { padding: 48px 0; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .cookie-buttons { flex-direction: column; }
}
