:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --text: #334155;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text); line-height: 1.6; background: var(--bg); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }
.bg-light { background: var(--bg-alt); }

/* Typography */
h1, h2, h3, h4 { color: var(--text-dark); font-weight: 700; line-height: 1.2; }
.section-label { color: var(--accent); font-weight: 700; text-transform: uppercase; font-size: 0.875rem; letter-spacing: 0.05em; margin-bottom: 0.5rem; text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 1.5rem; text-align: center; }
.section-desc { max-width: 700px; margin: 0 auto 3rem; text-align: center; color: var(--text-light); font-size: 1.125rem; }

/* Navbar */
nav { position: fixed; top: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); z-index: 1000; height: 80px; display: flex; align-items: center; }
.nav-inner { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { background: var(--primary); color: white; width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; }
.brand-main { display: block; font-weight: 800; font-size: 1.25rem; color: var(--primary); }
.brand-sub { display: block; font-size: 0.75rem; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--accent); }

/* Language Switcher */
.lang-switcher { display: flex; align-items: center; gap: 0.5rem; background: var(--bg-alt); padding: 0.25rem 0.5rem; border-radius: 99px; border: 1px solid var(--border); }
.lang-btn { background: none; border: none; cursor: pointer; font-size: 1.2rem; padding: 0.25rem; border-radius: 4px; transition: 0.2s; opacity: 0.6; }
.lang-btn.active { opacity: 1; transform: scale(1.1); }
.lang-sep { color: var(--border); font-size: 0.8rem; }
.more-langs-wrap { position: relative; }
.more-langs-btn { background: none; border: none; cursor: pointer; color: var(--text-light); font-size: 0.8rem; padding: 0 0.25rem; }
.more-langs-menu { position: absolute; top: calc(100% + 10px); right: 0; background: white; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); padding: 0.5rem; min-width: 150px; display: none; flex-direction: column; gap: 0.25rem; }
.more-langs-menu.show { display: flex; }
.more-langs-menu button { background: none; border: none; text-align: left; padding: 0.5rem 0.75rem; border-radius: 6px; cursor: pointer; font-size: 0.9rem; transition: 0.2s; }
.more-langs-menu button:hover { background: var(--bg-alt); color: var(--accent); }

.btn-nav-cta { background: var(--primary); color: white !important; padding: 0.6rem 1.25rem; border-radius: 8px; font-weight: 600 !important; }
.btn-nav-cta:hover { background: var(--accent); }

/* Hero */
.hero { background: radial-gradient(circle at top right, #f1f5f9 0%, #ffffff 100%); padding: 10rem 0 7rem; }
.hero-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.hero-badge { display: inline-block; background: #dbeafe; color: #1e40af; padding: 0.5rem 1rem; border-radius: 99px; font-size: 0.875rem; font-weight: 600; margin-bottom: 2rem; }
.hero h1 { font-size: 4rem; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.hero .accent { color: var(--accent); }
.hero p { font-size: 1.25rem; color: var(--text-light); margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.btn { padding: 0.85rem 2rem; border-radius: 10px; font-weight: 600; transition: 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; border: none; cursor: pointer; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn-outline { background: white; border: 1px solid var(--border); color: var(--primary); }
.btn-outline:hover { background: var(--bg-alt); border-color: var(--accent); }
.hero-regions { display: flex; gap: 1.5rem; justify-content: center; }
.region-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 500; color: var(--text-light); }
.dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; }

/* Stats */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: white; padding: 2rem 0; }
.stats-inner { display: flex; justify-content: space-between; align-items: center; }
.stat { text-align: center; display: flex; flex-direction: column; }
.stat strong { font-size: 2rem; color: var(--primary); margin-bottom: 0.25rem; }
.stat span { font-size: 0.875rem; color: var(--text-light); font-weight: 500; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.service-card { background: white; padding: 2.5rem; border-radius: 20px; border: 1px solid var(--border); transition: 0.3s; display: flex; flex-direction: column; }
.service-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow); }
.svc-icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: block; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.service-card p { color: var(--text-light); margin-bottom: 1.5rem; flex-grow: 1; }
.svc-lead { font-size: 0.9rem; font-weight: 600; color: var(--primary); margin-bottom: 1rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag { font-size: 0.75rem; background: var(--bg-alt); padding: 0.25rem 0.75rem; border-radius: 6px; font-weight: 500; color: var(--text-light); border: 1px solid var(--border); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.team-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--border); text-align: center; }
.avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.5rem; }
.t-role { color: var(--accent); font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; }
.t-bio { font-size: 0.95rem; color: var(--text-light); margin-bottom: 1.5rem; }
.t-link { font-size: 0.875rem; font-weight: 600; color: var(--primary); }

/* Regions Map */
.regions-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.region-text h4 { font-size: 1.25rem; margin-bottom: 0.75rem; margin-top: 2rem; }
.region-text p { color: var(--text-light); }
.region-map-placeholder { height: 400px; background: var(--bg-alt); border-radius: 30px; border: 1px dashed var(--border); position: relative; overflow: hidden; }
.map-point { position: absolute; width: 12px; height: 12px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2); }
.p-de { top: 30%; left: 45%; }
.p-ke { top: 65%; left: 60%; }
.map-line { position: absolute; top: 30%; left: 45%; width: 15%; height: 35%; border-left: 2px dashed var(--accent); border-bottom: 2px dashed var(--accent); border-bottom-left-radius: 50px; opacity: 0.3; }

/* PayPal / CTA */
.cta-block { background: var(--primary); color: white; text-align: center; padding: 6rem 0; }
.cta-block h2 { color: white; font-size: 3rem; margin-bottom: 1rem; }
.cta-block p { color: #94a3b8; font-size: 1.25rem; margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; }
.btn-paypal { background: #ffc439; color: #111; }
.btn-paypal:hover { background: #f2ba36; }
.pp-icon { background: #003087; color: white; width: 24px; height: 24px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; }

/* Footer */
footer { padding: 4rem 0 2rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand p { margin-top: 1.5rem; color: var(--text-light); max-width: 300px; }
.footer-links h5, .footer-contact h5 { margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-links a, .footer-contact p { display: block; margin-bottom: 0.75rem; color: var(--text-light); font-size: 0.95rem; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; text-align: center; color: var(--text-light); font-size: 0.875rem; }

/* Mobile */
@media (max-width: 968px) {
  .hero h1 { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .regions-content { grid-template-columns: 1fr; }
}
