@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --blue: #1B7FE1;
  --blue-dark: #1265C0;
  --blue-light: #E8F2FD;
  --black: #0D0D0D;
  --gray-dark: #1C1C1C;
  --gray: #555;
  --gray-light: #F4F7FB;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow: 0 4px 24px rgba(27,127,225,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--black); background: var(--white); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* NAVBAR */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 2rem; }
.navbar-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.navbar-logo { display: flex; align-items: center; gap: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--black); }
.navbar-logo img { height: 36px; width: auto; }
.navbar-links { display: flex; align-items: center; gap: 0.15rem; }
.navbar-links a { padding: 0.45rem 0.9rem; border-radius: 8px; font-weight: 500; font-size: 0.92rem; color: var(--gray); transition: color 0.2s, background 0.2s; }
.navbar-links a:hover, .navbar-links a.active { color: var(--blue); background: var(--blue-light); }
.navbar-right { display: flex; align-items: center; gap: 0.75rem; }
.lang-toggle { display: flex; background: var(--gray-light); border-radius: 10px; padding: 3px; gap: 2px; }
.lang-btn { padding: 0.35rem 0.85rem; border-radius: 8px; font-size: 0.85rem; font-weight: 700; border: none; color: var(--gray); cursor: pointer; background: transparent; transition: all 0.2s; letter-spacing: 0.04em; }
.lang-btn.active { background: var(--blue); color: white; box-shadow: 0 2px 8px rgba(27,127,225,0.3); }
.lang-btn:not(.active):hover { color: var(--blue); background: rgba(27,127,225,0.1); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; flex-direction: column; padding: 1rem 2rem 1.5rem; border-top: 1px solid var(--border); gap: 0.4rem; }
.mobile-menu a, .mobile-menu button { padding: 0.65rem 0; font-weight: 500; color: var(--gray-dark); font-size: 1rem; border-bottom: 1px solid var(--border); background: none; border-left: none; border-right: none; border-top: none; text-align: left; cursor: pointer; font-family: inherit; }
.mobile-menu.open { display: flex; }
.mobile-lang-row { display: flex; gap: 0.75rem; padding: 0.65rem 0; border-bottom: 1px solid var(--border); }
.mobile-lang-btn { padding: 0.4rem 1.1rem; border-radius: 8px; font-size: 0.88rem; font-weight: 700; border: 2px solid var(--border); color: var(--gray); cursor: pointer; background: transparent; transition: all 0.2s; }
.mobile-lang-btn.active { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* HERO */
.hero { background: linear-gradient(135deg, #0D0D0D 0%, #1a2a3a 100%); color: white; padding: 5rem 2rem 4rem; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(27,127,225,0.25) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(27,127,225,0.15) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: rgba(27,127,225,0.2); border: 1px solid rgba(27,127,225,0.4); color: #7DBEF5; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem; color: white; }
.hero h1 span { color: var(--blue); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.75rem; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; border: none; text-decoration: none; font-family: 'DM Sans', sans-serif; }
.btn-primary { background: var(--blue); color: white; box-shadow: 0 4px 16px rgba(27,127,225,0.35); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,127,225,0.4); }
.btn-dark { background: var(--black); color: white; }
.btn-dark:hover { background: #222; transform: translateY(-2px); }
.btn-white { background: white; color: var(--black); }
.btn-white:hover { background: var(--gray-light); transform: translateY(-2px); }
.btn-danger { background: #DC2626; color: white; }
.btn-danger:hover { background: #B91C1C; transform: translateY(-2px); }

/* SECTIONS */
.section { padding: 5rem 2rem; }
.section-gray { background: var(--gray-light); }
.section-dark { background: var(--gray-dark); color: white; }
.section-blue { background: var(--blue); color: white; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; }
.section-title p { font-size: 1.05rem; color: var(--gray); max-width: 560px; margin: 0 auto; }

/* STATS */
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; max-width: 800px; margin: 0 auto; }
.stat-item { text-align: center; padding: 2rem 1.5rem; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border); }
.stat-number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--blue); display: block; }
.stat-label { font-size: 1.05rem; font-weight: 600; color: var(--gray-dark); margin-top: 0.5rem; }

/* FEATURES GRID */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.feature-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: all 0.25s; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.feature-icon { width: 48px; height: 48px; background: var(--blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.4rem; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.92rem; color: var(--gray); line-height: 1.6; }

/* FEATURE CARDS WITH IMAGES BESIDE */
.features-img-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.feature-img-row { display: flex; align-items: stretch; gap: 1.5rem; }
.feature-img-card { flex: 1; background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: all 0.25s; display: flex; flex-direction: column; justify-content: center; }
.feature-img-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.feature-img-card .feature-icon { width: 52px; height: 52px; background: var(--blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.5rem; }
.feature-img-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.65rem; }
.feature-img-card p { font-size: 1rem; color: var(--gray); line-height: 1.65; }
.feature-side-img { flex-shrink: 0; width: 420px; border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.14); display: block; }
@media (max-width: 560px) { .feature-img-row { flex-direction: column; align-items: flex-start; } .feature-side-img { width: 100%; align-self: center; } }

/* WHY GRID */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.why-card { background: white; border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: all 0.25s; display: flex; align-items: center; gap: 2rem; }
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-card-text { flex: 1; min-width: 0; }
.why-card-image { flex-shrink: 0; width: 130px; }
.why-card-image img { width: 130px; border-radius: 14px; box-shadow: 0 6px 24px rgba(0,0,0,0.12); display: block; }
.why-card .big-number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3rem; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 0.5rem; }
.why-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.why-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.65; }

/* TESTIMONIAL */
.testimonial { background: var(--blue); border-radius: var(--radius-lg); padding: 3rem; color: white; max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial blockquote { font-size: 1.2rem; line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; opacity: 0.95; }
.testimonial cite { font-style: normal; font-weight: 600; font-size: 0.95rem; opacity: 0.85; }

/* VIDEOS */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 2rem; }
.video-card { background: white; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.video-card .video-label { padding: 1.25rem 1.5rem 0; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--black); }
.video-desc { padding: 0.5rem 1.5rem 0; font-size: 0.9rem; color: var(--gray); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; margin: 1rem; border-radius: 10px; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; border-radius: 10px; }

/* PRICING — 3 cards */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.pricing-card { background: white; border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.75rem; text-align: center; transition: all 0.25s; position: relative; }
.pricing-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--blue); box-shadow: var(--shadow); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: white; font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.9rem; border-radius: 100px; white-space: nowrap; }
.pricing-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.75rem; }
.pricing-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.25rem; font-weight: 800; color: var(--blue); margin-bottom: 0.25rem; }
.pricing-price span { font-size: 0.95rem; font-weight: 400; color: var(--gray); }
.pricing-free-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--gray); margin-bottom: 0.25rem; }
.pricing-free-sub { font-size: 0.85rem; color: var(--gray); margin-bottom: 0.5rem; }
.pricing-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }
.pricing-card ul { display: flex; flex-direction: column; gap: 0.6rem; text-align: left; }
.pricing-card ul li { font-size: 0.9rem; color: var(--gray); padding-left: 1.35rem; position: relative; }
.pricing-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* CONTACT */
.contact-box { background: white; border-radius: var(--radius-lg); padding: 3rem; border: 1px solid var(--border); box-shadow: var(--shadow-lg); max-width: 560px; margin: 0 auto; text-align: center; }
.contact-box h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-box p { color: var(--gray); margin-bottom: 1.5rem; }
.contact-email { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1.1rem; font-weight: 600; color: var(--blue); padding: 0.85rem 1.75rem; background: var(--blue-light); border-radius: var(--radius); transition: all 0.2s; }
.contact-email:hover { background: var(--blue); color: white; }

/* FOOTER */
.footer { background: var(--black); color: rgba(255,255,255,0.65); padding: 2.5rem 2rem; text-align: center; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.1rem; color: white; margin-bottom: 1rem; display: block; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* LEGAL */
.legal-page { padding: 4rem 2rem; }
.legal-inner { max-width: 800px; margin: 0 auto; }
.legal-inner h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.legal-inner .last-updated { font-size: 0.88rem; color: var(--gray); margin-bottom: 2rem; }
.legal-inner h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.legal-inner h3 { font-size: 1.05rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-inner p { color: var(--gray-dark); margin-bottom: 0.75rem; font-size: 0.95rem; line-height: 1.75; }
.legal-inner ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 0.75rem; }
.legal-inner ul li { color: var(--gray-dark); font-size: 0.95rem; margin-bottom: 0.4rem; line-height: 1.65; }
.legal-inner strong { color: var(--black); }
.legal-inner a { color: var(--blue); text-decoration: underline; }
.legal-divider { height: 1px; background: var(--border); margin: 2rem 0; }

/* DELETE ACCOUNT */
.delete-page { padding: 5rem 2rem; min-height: 60vh; display: flex; align-items: center; }
.delete-box { max-width: 500px; margin: 0 auto; text-align: center; background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 3rem; box-shadow: var(--shadow-lg); }
.delete-box .warning-icon { font-size: 3rem; margin-bottom: 1rem; }
.delete-box h1 { font-size: 1.75rem; margin-bottom: 1rem; }
.delete-box p { color: var(--gray); margin-bottom: 1.5rem; line-height: 1.7; }

/* DEMOS PAGE CTA */
.demos-cta { background: linear-gradient(135deg, #0D0D0D 0%, #1a2a3a 100%); color: white; border-radius: var(--radius-lg); padding: 3.5rem 2rem; text-align: center; }
.demos-cta h2 { font-size: 2rem; margin-bottom: 0.75rem; color: white; }
.demos-cta p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1.05rem; }
.demos-cta .hero-buttons { justify-content: center; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-3 { animation-delay: 0.3s; opacity: 0; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-right .lang-toggle { display: none; }
  .hamburger { display: flex; }
  .stats-row { grid-template-columns: 1fr; max-width: 320px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { flex-direction: column; align-items: flex-start; }
  .why-card-image { width: 100%; display: flex; justify-content: center; }
  .why-card-image img { width: 160px; }
  .videos-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .section { padding: 3.5rem 1.5rem; }
  .testimonial { padding: 2rem 1.5rem; }
  .testimonial blockquote { font-size: 1rem; }
  .contact-box { padding: 2rem 1.5rem; }
  .legal-page { padding: 2.5rem 1.5rem; }
}
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
