/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --mint: #47D7AC;
  --dark: #101820;
  --forest: #173F35;
  --white: #ffffff;
  --grey: #f4f6f5;
  --text-muted: #5a6a78;
}

/* ── RESET ─────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); }

/* ── HEADER ────────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  border-bottom: 1px solid rgba(71,215,172,0.15);
}
header img.logo { height: 38px; }
nav { display: flex; gap: 36px; }
nav a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.03em;
  transition: color 0.2s; padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
nav a:hover { color: var(--mint); }
nav a.active { color: var(--mint); border-bottom-color: var(--mint); }
.btn-header {
  background: var(--mint); color: var(--dark);
  padding: 10px 22px; border-radius: 4px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.03em; transition: opacity 0.2s; white-space: nowrap;
}
.btn-header:hover { opacity: 0.88; }

/* ── HAMBURGER ─────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ─────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--dark); z-index: 150; flex-direction: column;
  padding: 24px 24px 120px; overflow-y: auto;
  border-top: 1px solid rgba(71,215,172,0.15);
}
.mobile-nav.open { display: flex; }
.mobile-nav > a {
  font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 600;
  text-transform: uppercase; color: rgba(255,255,255,0.85); text-decoration: none;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: 0.05em; transition: color 0.2s;
}
.mobile-nav > a:hover, .mobile-nav > a.active { color: var(--mint); }
.mobile-nav-footer {
  margin-top: auto; padding-top: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.btn-mobile-audit {
  display: block; text-align: center; background: var(--mint); color: var(--dark);
  font-weight: 700; font-size: 15px; padding: 14px; border-radius: 4px;
  text-decoration: none; letter-spacing: 0.02em; transition: opacity 0.2s;
}
.btn-mobile-audit:hover { opacity: 0.88; }
body.mobile-nav-open .mobile-cta { display: none; }

/* ── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  padding-top: 72px;
  background: var(--dark);
  min-height: 300px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(71,215,172,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { padding: 56px 48px; position: relative; z-index: 1; }
.page-hero .section-label { margin-bottom: 14px; }
.page-hero h1 {
  font-family: 'Oswald', sans-serif; font-size: 52px;
  font-weight: 700; text-transform: uppercase;
  color: var(--white); line-height: 1.05; margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px; color: rgba(255,255,255,0.6);
  max-width: 540px; line-height: 1.65;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  background: var(--mint); color: var(--dark);
  padding: 15px 32px; border-radius: 4px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.02em; transition: opacity 0.2s; display: inline-block;
}
.btn-primary:hover { opacity: 0.88; }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.45); color: var(--white);
  padding: 15px 32px; border-radius: 4px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  letter-spacing: 0.02em; transition: border-color 0.2s, color 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--mint); color: var(--mint); }
.btn-outline-dark {
  border: 2px solid rgba(16,24,32,0.3); color: var(--dark);
  padding: 15px 32px; border-radius: 4px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  letter-spacing: 0.02em; transition: border-color 0.2s; display: inline-block;
}
.btn-outline-dark:hover { border-color: var(--dark); }
.btn-dark {
  background: var(--dark); color: var(--white);
  padding: 16px 36px; border-radius: 4px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.03em; display: inline-block; transition: opacity 0.2s;
}
.btn-dark:hover { opacity: 0.85; }

/* ── SECTION BASE ──────────────────────────────────────── */
section { padding: 96px 48px; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--mint); margin-bottom: 14px;
}
.section-title {
  font-family: 'Oswald', sans-serif; font-size: 44px;
  font-weight: 700; text-transform: uppercase;
  line-height: 1.1; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-muted); line-height: 1.65;
  max-width: 600px; margin-bottom: 56px;
}

/* ── STATS BAR ─────────────────────────────────────────── */
.stats-bar {
  background: var(--forest);
  display: flex; justify-content: space-around;
  padding: 36px 48px; flex-wrap: wrap; gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Oswald', sans-serif; font-size: 38px;
  font-weight: 700; color: var(--mint); line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.65); font-size: 13px; margin-top: 6px; }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials { background: var(--dark); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 32px;
}
.testi-quote {
  font-size: 15px; color: rgba(255,255,255,0.75);
  line-height: 1.7; margin-bottom: 24px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--mint);
}
.testi-name { font-weight: 600; color: var(--white); font-size: 14px; }
.testi-role { font-size: 12px; color: var(--mint); margin-top: 2px; }
.testi-stars { color: var(--mint); font-size: 13px; margin-bottom: 16px; }
.testi-more-row { grid-column: span 3; display: flex; justify-content: center; margin-top: 8px; }
.testi-more { display: flex; gap: 24px; align-items: center; }
.testi-mini {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05); padding: 14px 20px;
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.08);
}
.testi-mini img {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--mint);
}
.testi-mini-name { font-weight: 600; color: var(--white); font-size: 13px; }
.testi-mini-role { font-size: 11px; color: var(--mint); margin-top: 1px; }

/* ── CTA BANNER ────────────────────────────────────────── */
.cta-banner { background: var(--mint); padding: 80px 48px; text-align: center; }
.cta-banner h2 {
  font-family: 'Oswald', sans-serif; font-size: 44px;
  font-weight: 700; text-transform: uppercase; color: var(--dark); margin-bottom: 14px;
}
.cta-banner p { font-size: 18px; color: var(--forest); margin-bottom: 36px; }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--dark); padding: 60px 48px 32px;
  border-top: 1px solid rgba(71,215,172,0.12);
}
.footer-top { display: flex; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 32px; }
footer img.logo { height: 36px; margin-bottom: 16px; display: block; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); max-width: 240px; line-height: 1.6; }
.footer-col h5 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mint); margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.6);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ── LANG / CURRENCY TOGGLE ───────────────────────────── */
.header-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; overflow: hidden;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
}
.lang-toggle a, .lang-toggle span {
  padding: 7px 12px; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.lang-toggle a + a, .lang-toggle span + a, .lang-toggle a + span {
  border-left: 1px solid rgba(255,255,255,0.15);
}
.lang-toggle .lt-active { background: var(--mint); color: var(--dark); }
.lang-toggle a:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* ── MOBILE STICKY CTA ─────────────────────────────────── */
.mobile-cta { display: none; }

/* ── MOCKUP BADGE ──────────────────────────────────────── */
.mockup-notice {
  position: fixed; bottom: 20px; right: 20px; z-index: 9999;
  background: #ff6b35; color: white; padding: 8px 16px;
  border-radius: 4px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
}

/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.62s ease-out, transform 0.62s ease-out;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.stat-num { transition: opacity 0.4s ease-out; }

/* ── RESPONSIVE: TABLET ────────────────────────────────── */
@media (max-width: 1024px) {
  header { padding: 0 28px; }
  nav { gap: 24px; }
  section { padding: 72px 28px; }
  .page-hero-inner { padding: 48px 28px; }
  .stats-bar { padding: 28px; gap: 16px; }
  .footer-top { gap: 24px; }
  .cta-banner { padding: 64px 28px; }
  footer { padding: 48px 28px 28px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-more-row { grid-column: span 2; }
}

/* ── RESPONSIVE: MOBILE ────────────────────────────────── */
@media (max-width: 768px) {
  header { padding: 0 20px; height: 64px; }
  header img.logo { height: 30px; }
  nav { display: none; }
  .btn-header { display: none; }
  .hamburger { display: flex; }
  .btn-header { padding: 9px 16px; font-size: 12px; }
  section { padding: 56px 20px; }
  .section-title { font-size: 32px; }
  .section-sub { font-size: 15px; margin-bottom: 36px; }
  .page-hero { min-height: 240px; }
  .page-hero-inner { padding: 40px 20px; }
  .page-hero h1 { font-size: 36px; }
  .page-hero p { font-size: 16px; }
  .stats-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 28px 20px; }
  .stat-num { font-size: 30px; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-more-row { grid-column: span 1; }
  .testi-more { flex-direction: column; gap: 16px; width: 100%; }
  .testi-card { max-width: 100% !important; }
  .cta-banner { padding: 56px 20px; }
  .cta-banner h2 { font-size: 30px; }
  .cta-banner p { font-size: 16px; }
  footer { padding: 48px 20px 24px; }
  body { padding-bottom: 58px; }
  .mobile-cta { display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--mint); padding: 15px 20px; text-align: center; box-shadow: 0 -2px 12px rgba(0,0,0,0.25); }
  .mobile-cta a { color: var(--dark); font-weight: 700; font-size: 15px; text-decoration: none; letter-spacing: 0.02em; display: block; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .footer-legal { justify-content: center; }
  .mockup-notice { bottom: 12px; right: 12px; font-size: 11px; padding: 6px 12px; }
}
