@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

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

:root {
  --green: #1a6b3c;
  --green-light: #25a05a;
  --yellow: #f5c518;
  --bg: #0d0d0d;
  --surface: #1a1a1a;
  --surface2: #242424;
  --text: #ffffff;
  --text-muted: #888;
  --radius: 16px;
}

body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 40px; border-bottom: 1px solid #222; position: sticky; top: 0; background: rgba(13,13,13,0.95); backdrop-filter: blur(10px); z-index: 100; }
.logo { font-size: 22px; font-weight: 900; color: var(--text); }
.logo span { color: var(--yellow); }
nav ul { list-style: none; display: flex; gap: 32px; }
nav ul a { color: var(--text-muted); font-size: 14px; font-weight: 500; }
nav ul a:hover { color: var(--text); text-decoration: none; }

/* HERO */
.hero { text-align: center; padding: 100px 20px 80px; max-width: 800px; margin: 0 auto; }
.hero-badge { display: inline-block; background: rgba(26,107,60,0.2); border: 1px solid var(--green); color: var(--green-light); padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 24px; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero p { font-size: 18px; color: var(--text-muted); max-width: 560px; margin: 0 auto 40px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--green); color: #fff; padding: 16px 32px; border-radius: 12px; font-size: 16px; font-weight: 700; transition: background 0.2s; }
.btn-primary:hover { background: var(--green-light); text-decoration: none; }

/* PHONES MOCK */
.phones { display: flex; justify-content: center; gap: 16px; padding: 60px 20px; overflow: hidden; }
.phone-mock { width: 180px; height: 320px; border-radius: 24px; background: linear-gradient(135deg, #1a6b3c 0%, #0d2b1a 100%); border: 2px solid #333; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.phone-mock:nth-child(2) { transform: translateY(-20px); background: linear-gradient(135deg, #1a3a6b 0%, #0d1a2b 100%); }
.phone-mock:nth-child(3) { background: linear-gradient(135deg, #6b1a1a 0%, #2b0d0d 100%); }

/* FEATURES */
.features { padding: 80px 20px; max-width: 1100px; margin: 0 auto; }
.section-label { text-align: center; color: var(--green-light); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.section-title { text-align: center; font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 60px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.card { background: var(--surface); border: 1px solid #2a2a2a; border-radius: var(--radius); padding: 32px 24px; transition: border-color 0.2s; }
.card:hover { border-color: var(--green); }
.card-icon { width: 48px; height: 48px; background: rgba(26,107,60,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 14px; }

/* STATS */
.stats { background: var(--surface); border-top: 1px solid #222; border-bottom: 1px solid #222; padding: 60px 20px; }
.stats-inner { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-num { font-size: 48px; font-weight: 900; color: var(--yellow); }
.stat-label { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

/* CTA */
.cta { text-align: center; padding: 100px 20px; }
.cta h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; }
.cta p { color: var(--text-muted); font-size: 16px; margin-bottom: 40px; }

/* FOOTER */
footer { border-top: 1px solid #222; padding: 32px 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer .logo { font-size: 18px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); font-size: 13px; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--text-muted); font-size: 12px; }

/* INNER PAGES */
.page-content { max-width: 800px; margin: 0 auto; padding: 60px 20px; }
.page-content h1 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.page-content .subtitle { color: var(--text-muted); margin-bottom: 48px; }
.page-content h2 { font-size: 20px; font-weight: 700; margin: 36px 0 12px; }
.page-content p, .page-content li { color: #ccc; font-size: 15px; line-height: 1.8; }
.page-content ul { padding-left: 20px; }
.page-content ul li { margin-bottom: 6px; }

/* FORM */
.form-group { margin-bottom: 20px; }
label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
input, textarea { width: 100%; background: var(--surface); border: 1px solid #333; border-radius: 10px; padding: 12px 16px; color: var(--text); font-family: inherit; font-size: 15px; }
input:focus, textarea:focus { outline: none; border-color: var(--green); }
textarea { height: 120px; resize: vertical; }
.btn-submit { background: var(--green); color: #fff; border: none; padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; }
.btn-submit:hover { background: var(--green-light); }

@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  nav ul { display: none; }
  .stats-inner { grid-template-columns: 1fr; gap: 24px; }
  footer { flex-direction: column; align-items: flex-start; }
  .phones { gap: 8px; }
  .phone-mock { width: 130px; height: 240px; }
}
