:root {
  --primary: #ce0909;
  --primary-light: #e01010;
  --accent: #ce0909;
  --dark: #494949;
  --text: #333;
  --muted: #6c757d;
  --light: #f8f9fa;
  --white: #fff;
  --red: #ce0909;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Header */
.site-header { background: var(--dark); color: var(--white); padding: 16px 24px; }
.site-header .brand { font-size: 26px; font-weight: 800; }
.site-header .brand span { color: #fff; }
.site-header .tagline { font-size: 12px; color: #adb5bd; margin-top: 2px; }
.site-header nav { margin-top: 8px; }
.site-header nav a { color: #adb5bd; text-decoration: none; font-size: 13px; margin-right: 16px; }
.site-header nav a:hover { color: var(--white); }

/* Hero */
.hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: var(--white); padding: 48px 24px; text-align: center; }
.hero h1 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.hero .subtitle { font-size: 18px; opacity: 0.9; margin-bottom: 24px; }
.hero .promo-badge { display: inline-block; background: var(--accent); color: var(--dark); font-weight: 700; padding: 8px 24px; border-radius: 6px; font-size: 18px; margin-bottom: 16px; }
.hero .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }

/* Buttons */
.btn { display: inline-block; padding: 16px 36px; border-radius: 6px; font-size: 18px; font-weight: 800; text-decoration: none; text-align: center; cursor: pointer; border: none; }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #b00808; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-green { background: var(--primary); color: var(--white); }
.btn-green:hover { background: var(--primary-light); }

/* Content */
.container { max-width: 800px; margin: 0 auto; padding: 32px 24px; }
.section { margin-bottom: 40px; }
.section h2 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--red); }
.section p { margin-bottom: 12px; color: #555; }

/* Pricing card */
.price-card { background: var(--white); border: 2px solid #dee2e6; border-radius: 12px; padding: 24px; margin-bottom: 16px; }
.price-card.featured { border-color: var(--primary); box-shadow: 0 4px 12px rgba(26,86,50,0.15); }
.price-card .size { font-size: 20px; font-weight: 700; color: var(--dark); }
.price-card .price { font-size: 28px; font-weight: 800; color: var(--primary); margin: 8px 0; }
.price-card .price .period { font-size: 14px; font-weight: 400; color: var(--muted); }
.price-card .promo { background: var(--red); color: var(--white); display: inline-block; padding: 4px 12px; border-radius: 4px; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.price-card .avail { font-size: 13px; color: var(--muted); }
.price-card .avail strong { color: var(--primary); }

/* FAQ */
.faq-item { margin-bottom: 16px; }
.faq-item h3 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.faq-item p { font-size: 14px; color: #555; }

/* Map */
.map-section { background: var(--light); padding: 32px 24px; text-align: center; }
.map-section iframe { width: 100%; max-width: 800px; height: 300px; border: 0; border-radius: 8px; }

/* Footer */
.site-footer { background: var(--dark); color: #adb5bd; padding: 24px; text-align: center; font-size: 13px; }
.site-footer a { color: var(--accent); text-decoration: none; }

/* Phone CTA bar */
.phone-bar { background: var(--accent); padding: 12px 24px; text-align: center; }
.phone-bar a { color: var(--dark); font-size: 18px; font-weight: 700; text-decoration: none; }

/* Responsive */
@media (max-width: 600px) {
  .hero h1 { font-size: 24px; }
  .hero .subtitle { font-size: 15px; }
  .container { padding: 24px 16px; }
  .price-card .price { font-size: 24px; }
}
