:root {
  --bg: #f8fafc;
  --surface: rgba(255, 255, 255, 0.85);
  --panel: #ffffff;
  --soft: #f0fdf4;
  --card: rgba(255, 255, 255, 0.9);
  --text: #064e3b;
  --muted: #4b5563;
  --muted2: #6b7280;
  --brand: #10b981;
  --brand-dark: #059669;
  --brand-light: #6ee7b7;
  --accent: #84cc16;
  --ok: #10b981;
  --warn: #f59e0b;
  --danger: #ef4444;
  --ring: rgba(16, 185, 129, 0.3);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow2: 0 8px 20px rgba(0, 0, 0, 0.05);
  --glass: blur(12px) saturate(180%);
  --radius: 20px;
  --radius2: 32px;
  --max: 1200px;
  --pad: 24px;
  --font: 'Outfit', ui-sans-serif, system-ui, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: 0.2s ease; }
img { max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: var(--glass);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.header--scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

@media (max-width: 991px) {
  .header__inner {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
}


.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: 12px;
  color: white;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
}

.brand__text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.brand__sub {
  font-size: 0.8rem;
  color: var(--muted2);
  font-weight: 500;
}

@media (max-width: 480px) {
  .brand { gap: 8px; }
  .brand__mark { width: 36px; height: 36px; border-radius: 10px; }
  .brand__mark svg { width: 18px; height: 18px; }
  .brand__text strong { font-size: 0.95rem; }
  .brand__sub { font-size: 0.7rem; }
}


.nav {
  display: none;
  gap: 32px;
  align-items: center;
}

.nav a {
  font-weight: 600;
  color: var(--text);
  opacity: 0.8;
}

.nav a:hover {
  opacity: 1;
  color: var(--brand);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--soft);
  padding: 10px;
  border-radius: 10px;
}

@media (max-width: 480px) {
  .header__inner { padding-left: var(--pad); padding-right: var(--pad); }
  .nav-toggle { padding: 8px; gap: 5px; }
  .nav-toggle span { width: 20px; }
  .brand { gap: 10px; }
}




.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

/* Mobile Nav */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  box-shadow: var(--shadow);
  padding: 24px 0;
  z-index: 999;
}

.mobile-nav__inner {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px;
  padding: 0 var(--pad);
}

.mobile-nav a {
  display: block !important;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  width: 100%;
  text-align: left;
}


.mobile-nav a:last-child {
  border-bottom: none;
}




/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: url('/assets/hero_bg.png') no-repeat center center/cover;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.95) 30%, rgba(255,255,255,0.2) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 650px;
}

.pill {
  display: inline-flex;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--brand-dark);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 24px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero__accent {
  color: var(--brand);
  display: block;
}

.lead {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

@media (min-width: 768px) {
  .hero__facts {
    grid-template-columns: repeat(5, 1fr);
  }
}

.fact {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.fact__k {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  color: var(--brand-dark);
}

.fact__v {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

.fine {
  font-size: 0.9rem;
  color: var(--muted2);
  margin-top: 24px;
}

.btn {
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.btn--ghost {
  border: 2px solid var(--brand);
  color: var(--brand);
}

.btn--ghost:hover {
  background: var(--soft);
}

/* Cards & Grid */
.section { padding: 100px 0; }
.section--soft { background-color: var(--soft); }

.section__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: var(--panel);
  padding: 40px;
  border-radius: var(--radius2);
  border: 1px solid rgba(16, 185, 129, 0.1);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-10px); }

.card--featured {
  background: linear-gradient(145deg, #ffffff, #f0fdf4);
  border: 2px solid var(--brand-light);
  position: relative;
  overflow: hidden;
}

.ribbon {
  position: absolute;
  top: 20px; right: -30px;
  background: var(--accent);
  color: white;
  padding: 8px 40px;
  transform: rotate(45deg);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 24px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-weight: 600;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--brand-light);
  color: var(--brand-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.mini-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 32px;
}

.mini {
  background: var(--panel);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 185, 129, 0.1);
  box-shadow: var(--shadow2);
}

.mini strong {
  display: block;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.mini span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.note {
  display: flex;
  gap: 16px;
  background: var(--soft);
  padding: 24px;
  border-radius: var(--radius);
  margin-top: 32px;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.note__icon {
  width: 24px;
  height: 24px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: var(--text);
  color: white;
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer__muted {
  color: #a7f3d0;
}

.footer__links a {
  display: block;
  margin-bottom: 12px;
  opacity: 0.7;
}

.footer__links a:hover { opacity: 1; text-decoration: underline; }

/* Obfuscation styles */
.myMobile:after { content: attr(data-first) "" attr(data-second); }
.blue { color: var(--brand-light); font-weight: bold; }

/* Responsive */
@media (min-width: 992px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  .hero { text-align: center; }
  .hero::before {
    background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
  }
  .hero__cta { justify-content: center; }
}
