@import url('/assets/fonts/inter.css');

:root {
  --navy:      #14234b;
  --lime:      #5ae284;
  --white:     #ffffff;
  --section-bg:#f6f7f8;
  --body:      #333333;
  --charcoal:  #222222;
  --muted:     #697077;
  --border:    #dde1e6;
  --card-r:    12px;
  --pill-r:    50px;
  --shadow-card: 0 2px 5px rgba(0,0,0,.06);
  --font: 'Inter', sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html,body { overflow-x: hidden; max-width: 100%; }
body { font-family: var(--font); font-size: 14px; line-height: 20px; color: var(--body); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
.navbar { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 64px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nav-logo a { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 32px; width: auto; }
.nav-logo span { display: none; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-size: 14px; font-weight: 400; color: var(--charcoal); padding: 20px 16px; transition: color .2s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.btn-primary { background: var(--lime); color: var(--navy); border: none; border-radius: var(--pill-r); padding: 10px 22px; font-size: 15px; font-weight: 500; cursor: pointer; transition: opacity .2s; display: inline-flex; align-items: center; justify-content: center; }
.btn-primary:hover { opacity: .88; }
.btn-secondary { background: var(--navy); color: var(--white) !important; border: 3px solid var(--navy); border-radius: var(--pill-r); padding: 7px 22px; font-size: 15px; font-weight: 500; cursor: pointer; transition: opacity .2s; display: inline-flex; align-items: center; justify-content: center; }
.btn-secondary:hover { opacity: .88; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); border-radius: var(--pill-r); padding: 10px 24px; font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; justify-content: center; transition: background .2s; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.nav-cta .btn-primary, .nav-cta .btn-secondary { padding: 7px 18px; font-size: 14px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--navy); padding: 4px; line-height: 1; }

/* Lang dropdown */
.lang-wrap { position: relative; }
.lang-btn { background: none; border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px; font-size: 13px; font-weight: 500; color: var(--charcoal); cursor: pointer; display: flex; align-items: center; gap: 4px; }
.lang-btn::after { content: '▾'; font-size: 10px; }
.lang-dropdown { display: none; position: absolute; top: calc(100% + 6px); right: 0; background: var(--white); border: 1px solid var(--border); border-radius: 8px; box-shadow: var(--shadow-card); min-width: 100px; overflow: hidden; z-index: 200; }
.lang-dropdown.open { display: block; }
.lang-dropdown a { display: block; padding: 10px 16px; font-size: 13px; color: var(--charcoal); transition: background .15s; }
.lang-dropdown a:hover, .lang-dropdown a.active { background: var(--section-bg); color: var(--navy); font-weight: 500; }

/* ── HERO ── */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; background: var(--navy) url('/assets/images/hero-bg.jpg') center/cover no-repeat; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(20,35,75,.72); }
.hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
.hero h1 { font-size: clamp(56px, 8vw, 120px); font-weight: 600; line-height: 1; color: var(--lime); margin-bottom: 24px; }
.hero p { font-size: 20px; font-weight: 400; line-height: 32px; color: var(--white); max-width: 560px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: var(--section-bg); }
.section-title { font-size: 36px; font-weight: 600; color: var(--navy); margin-bottom: 20px; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 600px; margin-bottom: 48px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── FEATURE GRID ── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border-radius: var(--card-r); box-shadow: var(--shadow-card); padding: 28px 24px; }
.feature-card .icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 20px; }

/* ── SPLIT SECTION ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split img { border-radius: var(--card-r); box-shadow: var(--shadow-card); }
.split h2 { font-size: 32px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.split p { font-size: 16px; color: var(--muted); line-height: 26px; margin-bottom: 24px; }
.split ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.split ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--body); }
.split ul li::before { content: '✓'; color: var(--lime); font-weight: 700; flex-shrink: 0; background: rgba(90,226,132,.15); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 1px; }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-item .num { font-size: 48px; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-item .label { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card { background: var(--white); border-radius: var(--card-r); box-shadow: var(--shadow-card); padding: 32px 28px; border: 2px solid transparent; }
.price-card.featured { border-color: var(--lime); position: relative; }
.price-card.featured::before { content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--lime); color: var(--navy); font-size: 12px; font-weight: 600; padding: 3px 14px; border-radius: 20px; white-space: nowrap; }
.price-card h3 { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.price-card .price { font-size: 40px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.price-card .price span { font-size: 16px; font-weight: 400; color: var(--muted); }
.price-card .period { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.price-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-card ul li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--body); }
.price-card ul li::before { content: '✓'; color: var(--lime); font-weight: 700; flex-shrink: 0; }
.price-card .btn-primary, .price-card .btn-secondary { width: 100%; text-align: center; display: block; }

/* ── PLATFORM BADGES ── */
.platform-row { display: flex; gap: 12px; flex-wrap: wrap; }
.platform-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--charcoal); color: var(--white); border-radius: 8px; padding: 10px 18px; font-size: 13px; font-weight: 500; transition: background .2s; }
.platform-badge:hover { background: var(--navy); }
.platform-badge .platform-icon { font-size: 18px; }

/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--card-r); box-shadow: var(--shadow-card); padding: 28px 24px; }
.testimonial-card .stars { color: var(--lime); font-size: 16px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; color: var(--body); line-height: 22px; margin-bottom: 16px; font-style: italic; }
.testimonial-card .author { font-size: 13px; font-weight: 600; color: var(--navy); }

/* ── INTEGRATIONS ── */
.integrations-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.integration-tag { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 8px 18px; font-size: 13px; font-weight: 500; color: var(--charcoal); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--navy); padding: 80px 0; text-align: center; }
.cta-banner h2 { font-size: 36px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 32px; }
.cta-banner .hero-btns { justify-content: center; }

/* ── DOWNLOAD PAGE ── */
.download-hero { background: var(--navy); padding: 80px 0; text-align: center; }
.download-hero h1 { font-size: 48px; font-weight: 600; color: var(--lime); margin-bottom: 16px; }
.download-hero p { font-size: 18px; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 40px; }
.download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.download-card { background: var(--white); border-radius: var(--card-r); box-shadow: var(--shadow-card); padding: 32px 28px; text-align: center; }
.download-card .platform-icon { font-size: 48px; margin-bottom: 16px; }
.download-card h3 { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.download-card p { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 20px; }

/* ── CONTACT / INNER PAGES ── */
.page-hero { background: var(--navy); padding: 60px 0; text-align: center; }
.page-hero h1 { font-size: 42px; font-weight: 600; color: var(--lime); margin-bottom: 20px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.7); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--muted); line-height: 24px; margin-bottom: 16px; }
.contact-item { display: flex; gap: 12px; margin-bottom: 20px; }
.contact-item .icon { font-size: 20px; color: var(--lime); flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--muted); margin: 0; }
.contact-form { background: var(--white); border-radius: var(--card-r); box-shadow: var(--shadow-card); padding: 36px 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 14px; font-family: var(--font); color: var(--body); background: var(--white); outline: none; transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── PROSE (privacy/terms) ── */
.prose { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.prose h1 { font-size: 36px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.prose .updated { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
.prose h2 { font-size: 22px; font-weight: 600; color: var(--navy); margin: 36px 0 12px; }
.prose p { font-size: 15px; color: var(--body); line-height: 26px; margin-bottom: 16px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { font-size: 15px; color: var(--body); line-height: 26px; margin-bottom: 6px; list-style: disc; }

/* ── FOOTER ── */
.footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 60px 0 32px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .footer-logo img { height: 28px; width: auto; filter: brightness(0) invert(1); }
.footer-brand .footer-logo span { font-size: 16px; font-weight: 600; color: var(--white); }
.footer-brand p { font-size: 14px; line-height: 22px; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-lang { display: flex; gap: 8px; }
.footer-lang a { font-size: 13px; color: rgba(255,255,255,.5); }
.footer-lang a:hover { color: var(--lime); }
.footer-lang a.active { color: var(--white); font-weight: 500; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; width: 100%; flex-direction: column; align-items: center; gap: 0; background: var(--white); padding: 16px 0 24px; z-index: 999; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; text-align: center; padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--section-bg); }
  .nav-links a:last-of-type { border-bottom: none; }
  .nav-cta { flex-direction: column; align-items: center; margin-top: 16px; gap: 12px; width: 100%; padding: 0 32px; }
  .nav-cta .btn-primary, .nav-cta .btn-secondary { width: 100%; padding: 10px 22px; font-size: 15px; }
  .lang-wrap { width: 100%; padding: 0 32px; margin-top: 8px; }
  .lang-btn { width: 100%; justify-content: center; }
  .lang-dropdown { position: static; box-shadow: none; border-radius: 8px; width: 100%; border: 1px solid var(--border); margin-top: 4px; }
  .nav-toggle { display: block; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .feature-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner .hero-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 479px) {
  .footer-content { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .section-title { font-size: 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
