/* ===========================
   MAVORA — Main Stylesheet
   Colors: Green (#1B7A3E primary, #26A65B accent), White, Dark (#0D1117)
   =========================== */

:root {
  --green-dark: #1B7A3E;
  --green-mid: #26A65B;
  --green-light: #4CC47A;
  --green-pale: #E8F7EF;
  --white: #FFFFFF;
  --off-white: #F8FAF9;
  --gray-100: #F1F5F2;
  --gray-200: #E2EAE5;
  --gray-400: #8FA99A;
  --gray-600: #4A6456;
  --dark: #0D1117;
  --dark-2: #161D22;
  --text: #1A2E23;
  --text-muted: #4A6456;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Syne', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- UTILITIES ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(27,122,62,0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-nav {
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--green-mid); }

.accent { color: var(--green-light); }

/* ---- NAV ---- */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.logo-dot { color: var(--green-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.btn-lang {
  background: transparent;
  border: 1px solid rgba(76,196,122,0.4);
  color: var(--green-light);
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: var(--transition);
  font-family: var(--font-body);
  white-space: nowrap;
}
.btn-lang:hover {
  background: rgba(76,196,122,0.1);
  border-color: var(--green-light);
}

.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 12px;
}

body {
  transition: opacity 0.15s ease;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,122,62,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,122,62,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 24px 120px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,122,62,0.2);
  border: 1px solid rgba(27,122,62,0.4);
  color: var(--green-light);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-light);
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ---- STRIP ---- */
.strip {
  background: var(--green-dark);
  padding: 14px 0;
}
.strip-inner {
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- SECTIONS ---- */
.section {
  padding: 100px 0;
}
.section-alt {
  background: var(--off-white);
}
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.section-label.light { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
  text-align: center;
}
.section-title.left { text-align: left; }
.section-title.light { color: var(--white); text-align: center; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 60px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.section-sub.light { color: rgba(255,255,255,0.65); }

/* ---- HOW IT WORKS ---- */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-mid); }

.step-icon {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-pale);
  -webkit-text-stroke: 2px var(--green-dark);
  margin-bottom: 20px;
  line-height: 1;
}
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.step p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }

.step-arrow {
  font-size: 1.8rem;
  color: var(--green-mid);
  margin-top: 60px;
  flex-shrink: 0;
  font-weight: 700;
}

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-mid); }
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.service-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ---- WHY MAVORA ---- */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list strong { color: var(--text); font-weight: 700; }
.why-list div { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.why-card-mavora {
  background: var(--dark);
  border-color: var(--green-dark);
  box-shadow: 0 0 0 1px var(--green-dark), 0 8px 32px rgba(27,122,62,0.2);
}
.why-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.why-card-label.mavora { color: var(--green-light); }
.why-comparison {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-comparison li { font-size: 0.92rem; }
.why-comparison.old li { color: var(--text-muted); }
.why-comparison.new li { color: rgba(255,255,255,0.85); }

/* ---- CONTACT ---- */
.section-cta {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(27,122,62,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.contact-form {
  margin-top: 48px;
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { margin-bottom: 20px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(38,166,91,0.15);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
  margin-bottom: 16px;
}

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-brand .logo { font-size: 1.4rem; }
.footer-brand p {
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-right-mobile { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .section { padding: 72px 0; }
}
