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

:root {
  --bg: #f4f5f7;
  --card: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --primary: #e53e3e;
  --primary-hover: #dc2626;
  --dark: #0f172a;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
  --shadow-lg: 0 4px 24px rgba(0,0,0,.08);
}

body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header { background: var(--card); border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; z-index: 100; }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text); font-weight: 800; font-size: 18px; letter-spacing: -0.5px; }
.logo-icon { font-size: 24px; }
.nav { display: flex; gap: 24px; }
.nav-link { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-link:hover { color: var(--text); }
.burger { display: none; background: none; border: none; cursor: pointer; width: 28px; flex-direction: column; gap: 5px; }
.burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all .2s; font-family: inherit; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn-outline { background: transparent; color: var(--text); border-color: #d1d5db; }
.btn-outline:hover { border-color: var(--text); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* Hero */
.hero { padding: 80px 0 60px; background: linear-gradient(135deg, #fef2f2 0%, #fff 50%, #f4f5f7 100%); }
.hero-content { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center; }
.hero-badge { display: inline-block; background: var(--primary); color: #fff; padding: 4px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.hero h1 { font-size: 48px; font-weight: 900; line-height: 1.1; margin-bottom: 16px; letter-spacing: -1px; }
.accent { color: var(--primary); }
.hero-sub { font-size: 17px; color: var(--muted); margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; }
.stat-num { font-size: 32px; font-weight: 800; color: var(--text); }
.stat-label { font-size: 13px; color: var(--muted); }
.hero-photo-inner { width: 380px; height: 460px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-photo-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Section */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.section-header p { font-size: 17px; color: var(--muted); }
section { padding: 80px 0; }

/* About */
.about { background: var(--card); }
.about-grid { display: grid; grid-template-columns: 400px 1fr; gap: 48px; align-items: start; }
.about-photo { border-radius: var(--radius); overflow: hidden; height: 500px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-info h3 { font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.about-info p { font-size: 16px; color: var(--muted); margin-bottom: 24px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.badge { background: #f3f4f6; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 500; }
.about-list { list-style: none; }
.about-list li { padding: 8px 0; padding-left: 28px; position: relative; font-size: 15px; }
.about-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--card); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 40px; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Pricing */
.pricing { background: var(--card); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { background: var(--bg); border-radius: var(--radius); padding: 36px; text-align: center; position: relative; box-shadow: var(--shadow); }
.price-card.popular { background: var(--text); color: #fff; }
.popular-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 4px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.price-label { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.price-value { font-size: 40px; font-weight: 900; margin-bottom: 4px; }
.price-desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.price-card.popular .price-desc { color: #9ca3af; }
.price-features { list-style: none; text-align: left; margin-bottom: 24px; }
.price-features li { padding: 6px 0; font-size: 14px; }
.price-features li::before { content: '• '; color: var(--primary); font-weight: 700; }
.price-card.popular .price-features li::before { color: var(--primary); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--card); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.review-stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 600; font-size: 14px; }
.review-role { font-size: 12px; color: var(--muted); }

/* Contact */
.contact { background: var(--card); }
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.contact-form-wrap { background: var(--bg); border-radius: var(--radius); padding: 40px; }
.form-row { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-input { width: 100%; padding: 12px 16px; border: 2px solid #e5e7eb; border-radius: 8px; font-size: 15px; font-family: inherit; transition: border-color .2s; background: #fff; }
.form-input:focus { outline: none; border-color: var(--primary); }
.form-textarea { min-height: 100px; resize: vertical; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon { font-size: 24px; }
.contact-title { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.contact-item div:last-child { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Footer */
.footer { background: var(--dark); color: #9ca3af; padding: 48px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: #9ca3af; text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 8px; }
.social-link { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 8px; background: rgba(255,255,255,.08); color: #fff; text-decoration: none; font-size: 12px; font-weight: 700; transition: background .2s; }
.social-link:hover { background: rgba(255,255,255,.15); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; font-size: 13px; text-align: center; }

/* Mobile */
.mobile-menu { display: none; position: fixed; inset: 0; background: #fff; z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 16px; font-size: 20px; font-weight: 600; }
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--text); }

@media (max-width: 768px) {
  .nav, .header .btn { display: none; }
  .burger { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 32px; }
  .hero-sub { margin: 0 auto 24px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-photo-inner { width: 100%; max-width: 340px; height: 340px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { height: 300px; }
  .services-grid, .pricing-grid, .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 28px; }
}
