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

:root {
  --primary: #5dba2f;
  --primary-dark: #4a9a24;
  --primary-light: #7dd44e;
  --bg: #0a0a14;
  --bg-surface: #12121f;
  --surface: #1a1a2e;
  --surface-alt: #111120;
  --text: #ffffff;
  --text-muted: #a0a0b8;
  --text-dark: #ccccdd;
  --accent: #5dba2f;
  --border: #2a2a3e;
  --nav-bg: #0d0d1a;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-btn: 0 2px 12px rgba(93,186,47,0.35);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Header ── */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--nav-bg); border-bottom: 1px solid var(--border); }
.nav { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; height: 64px; display: flex; align-items: center; gap: 2rem; }
.brand { flex-shrink: 0; }
.logo { height: 36px; width: auto; max-width: 180px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; flex: 1; }
.nav-links li a { padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); color: var(--text-dark); font-size: 0.9rem; font-weight: 500; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.nav-links li a:hover { color: var(--primary); background: rgba(93,186,47,0.08); }
.nav-lang-mobile { display: none; }
.nav-right { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; padding: 0.25rem; }

/* ── Dropdown ── */
.dropdown { position: relative; }
.lang-btn { background: none; border: 1px solid var(--border); color: var(--text-dark); padding: 0.4rem 0.75rem; border-radius: var(--radius-sm); cursor: pointer; font-size: 0.85rem; font-weight: 500; white-space: nowrap; transition: border-color 0.2s; }
.lang-btn:hover { border-color: var(--primary); color: var(--primary); }
.dropdown-panel { position: absolute; top: 100%; right: 0; margin-top: 0; padding-top: 8px; display: none; min-width: 120px; z-index: 1000; }
.dropdown-panel-inner, .dropdown:hover .dropdown-panel > *, .dropdown.open .dropdown-panel { display: block; }
.dropdown:hover .dropdown-panel, .dropdown.open .dropdown-panel { display: block; }
.dropdown-panel a.lang-option { display: block; padding: 0.5rem 1rem; background: var(--surface); color: var(--text-dark); font-size: 0.85rem; white-space: nowrap; transition: background 0.2s, color 0.2s; }
.dropdown-panel a.lang-option:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.dropdown-panel a.lang-option:last-child { border-radius: 0 0 var(--radius-md) var(--radius-md); }
.dropdown-panel a.lang-option:hover { background: var(--primary); color: #fff; }

/* ── Buttons ── */
.btn-cta { display: inline-block; background: var(--primary); color: #fff; padding: 0.6rem 1.25rem; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.9rem; white-space: nowrap; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: var(--shadow-btn); }
.btn-cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(93,186,47,0.45); }
.btn-cta-lg { padding: 0.9rem 2rem; font-size: 1.05rem; border-radius: var(--radius-pill); }
.btn-cta-outline { display: inline-block; border: 2px solid var(--primary); color: var(--primary); padding: 0.6rem 1.25rem; border-radius: var(--radius-pill); font-weight: 600; transition: background 0.2s, color 0.2s; }
.btn-cta-outline:hover { background: var(--primary); color: #fff; }
.btn-secondary { display: inline-block; background: transparent; border: 2px solid rgba(255,255,255,0.3); color: #fff; padding: 0.75rem 1.75rem; border-radius: var(--radius-pill); font-weight: 600; transition: border-color 0.2s, background 0.2s; }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── Hero ── */
.hero { position: relative; min-height: 580px; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #0a0a14 0%, #0f1a0a 50%, #0a140f 100%); }
.hero-bg { position: absolute; inset: 0; background-image: url('/assets/images/hero-bg.jpg'); background-size: cover; background-position: center; opacity: 0.12; }
.hero-inner { position: relative; max-width: 1200px; margin: 0 auto; padding: var(--space-2xl) 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-badge { display: inline-block; background: rgba(93,186,47,0.15); border: 1px solid rgba(93,186,47,0.3); color: var(--primary-light); padding: 0.35rem 0.9rem; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.25rem; }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--primary); }
.hero-sub { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 2rem; max-width: 480px; text-align: center; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.hero-img img { width: 100%; display: block; }
.hero-trust { display: flex; gap: 2rem; margin-top: 2rem; }
.hero-trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--text-muted); }
.hero-trust-item .check { color: var(--primary); font-size: 1rem; }

/* ── Stats strip ── */
.stats-strip { background: var(--surface); padding: 3rem 1.5rem; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary); line-height: 1.1; }
.stat-label { margin-top: 12px; font-size: 0.9rem; color: var(--text-muted); }

/* ── Sections ── */
.section { padding: var(--space-2xl) 1.5rem; }
.section-alt { background: var(--surface-alt); }
.section-surface { background: var(--surface); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 1rem; }
.section-header p { color: var(--text-dark); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-badge { display: inline-block; background: rgba(93,186,47,0.1); color: var(--primary); padding: 0.3rem 0.85rem; border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem; }

/* ── Feature grid ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: border-color 0.2s, transform 0.2s; }
.feature-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.feature-icon { width: 48px; height: 48px; background: rgba(93,186,47,0.12); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.5rem; }
.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-dark); font-size: 0.93rem; line-height: 1.65; }

/* ── Split row ── */
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: var(--space-2xl) 1.5rem; }
.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }
.split-content .section-badge { display: inline-block; margin-bottom: 0.75rem; }
.split-content h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 1rem; }
.split-content p { color: var(--text-dark); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.7; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.split-img img { width: 100%; display: block; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--text-dark); font-size: 0.95rem; }
.check-list li::before { content: "✓"; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── Image strip ── */
.img-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.img-strip img { border-radius: var(--radius-md); width: 100%; height: 200px; object-fit: cover; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.pricing-card { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; position: relative; }
.pricing-card.popular { border-color: var(--primary); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 0.2rem 1rem; border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 700; white-space: nowrap; }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.pricing-price { font-size: 2.8rem; font-weight: 700; color: var(--text); line-height: 1.1; margin-bottom: 0.25rem; }
.pricing-price sup { font-size: 1.4rem; vertical-align: super; }
.pricing-price sub { font-size: 0.9rem; color: var(--text-muted); }
.pricing-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-features { text-align: left; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text-dark); }
.pricing-features li::before { content: "✓"; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.pricing-cta { display: block; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; padding: 1.1rem 1.25rem; text-align: left; color: var(--text); font-size: 0.98rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q .faq-arrow { color: var(--primary); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.25rem 1.1rem; color: var(--text-dark); font-size: 0.93rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── CTA banner ── */
.cta-banner { background: linear-gradient(135deg, #0d1f08, #0a140f); border: 1px solid rgba(93,186,47,0.2); border-radius: var(--radius-lg); padding: 3.5rem 2rem; text-align: center; max-width: 800px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.cta-banner p { color: var(--text-dark); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── Footer ── */
.site-footer { background: var(--surface-alt); border-top: 1px solid var(--border); padding: var(--space-xl) 1.5rem 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: var(--space-xl); }
.footer-logo { height: 32px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { color: var(--text-dark); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.25rem 0; text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }

/* ── Platform cards ── */
.platforms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.platform-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; transition: border-color 0.2s, transform 0.2s; }
.platform-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.platform-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.platform-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.platform-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ── Contact form ── */
.contact-form { max-width: 580px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.25rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--text-dark); }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 0.75rem 1rem; color: var(--text); font-family: inherit; font-size: 0.95rem; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { background: var(--primary); color: #fff; border: none; border-radius: var(--radius-pill); padding: 0.85rem 2.5rem; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--primary-dark); }

/* ── Utility ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.guarantee { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.85rem; margin-top: 1rem; }
.guarantee .shield { color: var(--primary); }

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav { position: relative; padding: 0 0.5rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: center;
    height: auto;
    max-height: none;
    overflow: visible;
    background: var(--nav-bg);
    box-shadow: 0 8px 16px rgba(0,0,0,.4);
    padding: 12px 0 20px;
    z-index: 999;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; width: 100%; text-align: center; padding: 14px 0; font-size: 1rem; }
  .nav-lang-mobile { display: flex; justify-content: center; margin-top: 8px; }
  .lang-switcher-mobile-row { display: flex; flex-direction: row; justify-content: center; gap: 0.5rem; margin-top: 8px; white-space: nowrap; }
  .lang-btn-flat { display: inline-block; padding: 0.35rem 0.9rem; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-dark); font-size: 0.85rem; font-weight: 500; background: none; white-space: nowrap; transition: background 0.2s, color 0.2s, border-color 0.2s; }
  .lang-btn-flat:hover, .lang-btn-flat.active { background: var(--primary); color: #fff; border-color: var(--primary); }
  .nav-right { display: none; }
  .nav-toggle { display: block; margin-left: auto; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-img { display: none; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; gap: 1rem; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .features-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }

  .split-row { grid-template-columns: 1fr; gap: 2rem; direction: ltr; padding: var(--space-xl) 1.5rem; }
  .split-row.reverse { direction: ltr; }
  .split-row > div[style] { display: block !important; }
  .split-img { display: none; }

  .img-strip { grid-template-columns: 1fr; }
  .img-strip img { height: 180px; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .btn-cta, .hero-cta, .cta-button, .btn-cta-lg { display: block; margin-left: auto; margin-right: auto; text-align: center; width: max-content; max-width: 90%; }
  .cta-wrap { display: flex; justify-content: center; width: 100%; }
}

/* ── FAQ JS ── */
