:root {
  --primary: #C0392B;
  --primary-hover: #A93226;
  --secondary: #1F2937;
  --bg: #F9FAFB;
  --card-bg: #FFFFFF;
  --text-main: #111827;
  --text-muted: #4B5563;
  --green: #10B981;
  --font-family: 'Outfit', 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); background-color: var(--bg); color: var(--text-main); line-height: 1.6; }

/* Typography */
h1, h2, h3 { color: var(--secondary); font-weight: 700; line-height: 1.2; }
h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-inline: auto; }
.section-tag { display: inline-block; padding: 5px 15px; background: rgba(192,57,43,0.1); color: var(--primary); border-radius: 20px; font-weight: 600; font-size: 0.9rem; margin-bottom: 15px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; gap: 8px; cursor: pointer; }
.btn-primary { background: var(--green); color: white; box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4); }
.btn-primary:hover { background: #059669; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5); }
.btn-full { width: 100%; }

/* Header */
.site-header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05); padding: 15px 0; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.5rem; color: var(--primary); }
.logo img { height: 40px; width: auto; }

/* Hero */
.hero { background: linear-gradient(135deg, #111827 0%, #1f2937 100%); color: white; padding: 100px 0; overflow: hidden; position: relative; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero h1 { color: white; }
.hero h1 em { color: var(--primary); font-style: normal; }
.hero-sub { font-size: 1.2rem; color: #D1D5DB; margin-bottom: 30px; }
.hero-btns { margin-bottom: 30px; display: flex; gap: 15px; }
.hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 20px; backdrop-filter: blur(10px); }
.hero-card img { border-radius: 8px; width: 100%; height: auto; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

/* Plans */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; justify-content: center; }
.plan-card { background: var(--card-bg); border-radius: 16px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #E5E7EB; position: relative; transition: transform 0.3s ease; display: flex; flex-direction: column; }
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.plan-card.featured { border: 2px solid var(--primary); box-shadow: 0 20px 40px rgba(192, 57, 43, 0.15); transform: scale(1.02); }
.plan-card.featured:hover { transform: scale(1.02) translateY(-5px); }
.plan-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.9rem; white-space: nowrap; }
.plan-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 5px; }
.plan-price { font-size: 3rem; font-weight: 900; color: var(--text-main); margin: 20px 0; display: flex; align-items: flex-start; }
.plan-price sup { font-size: 1.5rem; margin-top: 10px; margin-right: 5px; }
.plan-features { list-style: none; margin: 30px 0; flex-grow: 1; }
.plan-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-size: 1.05rem; }
.plan-features li svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

/* FAQ */
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--card-bg); border-radius: 12px; margin-bottom: 15px; padding: 25px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); border: 1px solid #E5E7EB; }
.faq-item h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--secondary); }
.faq-item p { color: var(--text-muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-btns { justify-content: center; flex-direction: column; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .plan-card.featured { transform: scale(1); }
  .plan-card.featured:hover { transform: translateY(-5px); }
}
