:root {
  --bg-dark: #121212;
  --bg-light: #f8f6f2;
  --surface-white: #ffffff;
  --text-primary: #1e1e1e;
  --text-light: #f0f0f0;
  --accent-hemp: #4a6b3a;
  --accent-hemp-light: #6b8f5a;
  --accent-bronze: #b68b5c;
  --accent-gold: #d4a96a;
  --graphite: #2a2a2a;
  --border-light: #e0dcd5;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
  --font-main: 'Inter', -apple-system, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  --section-gap: clamp(4rem, 2vw, 7rem);
}

* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: var(--font-main);
  background: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(circle at 20% 10%, rgba(180,140,90,0.08) 0%, transparent 30%),
                    radial-gradient(circle at 80% 80%, rgba(74,107,58,0.06) 0%, transparent 40%);
  background-attachment: fixed;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

/* Language switch */
.lang-switch {
  display: flex; align-items: center; background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px); padding: 6px 14px; border-radius: 40px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
}
.lang-btn {
  background: none; border: none; font-family: var(--font-main); font-weight: 500;
  font-size: 0.95rem; color: var(--graphite); cursor: pointer; padding: 4px 8px; transition: 0.2s; text-transform: uppercase;
}
.lang-btn.active { color: var(--accent-hemp); font-weight: 700; }
.lang-divider { margin: 0 4px; color: #aaa; }
.lang-switch--mobile { display: none; }

/* Header */
.header {
  padding: 22px 0; background: rgba(255,255,255,0.7); backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; color: var(--graphite); letter-spacing: -0.02em; }
.header__lang { margin: 0 auto; }

.nav__list { display: flex; list-style: none; gap: 2.3rem; }
.nav__list a {
  text-decoration: none; color: var(--text-primary); font-weight: 500; font-size: 1rem;
  border-bottom: 2px solid transparent; padding-bottom: 4px; transition: 0.2s;
}
.nav__list a:hover { color: var(--accent-hemp); border-bottom-color: var(--accent-bronze); }

/* Burger */
.burger {
  display: none; flex-direction: column; justify-content: space-around;
  width: 28px; height: 22px; background: transparent; border: none; cursor: pointer; z-index: 200;
}
.burger span { width: 100%; height: 3px; background: var(--graphite); border-radius: 10px; transition: 0.3s; transform-origin: left; }
.burger.active span:nth-child(1) { transform: rotate(45deg); width: 30px; }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg); width: 30px; }

/* Hero */
.hero { padding: var(--section-gap) 0 3rem; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero__title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 4.5rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.03em; color: #1a1a1a; margin-bottom: 1.5rem;
}
.hero__highlight { color: var(--accent-hemp); position: relative; }
.hero__highlight::after {
  content: ''; position: absolute; bottom: 6px; left: 0; width: 100%; height: 8px;
  background: rgba(180,140,90,0.3); z-index: -1; border-radius: 4px;
}
.hero__subtitle { font-size: 1.25rem; color: #3a3a3a; margin-bottom: 1.8rem; max-width: 95%; }
.hero__usp { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.hero__usp-item {
  display: flex; align-items: baseline; gap: 10px; font-size: 1rem; color: #2a2a2a;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(4px); padding: 8px 14px;
  border-radius: 12px; max-width: fit-content;
}
.hero__usp-item span:first-child { font-size: 1.3rem; }
.hero__cta-group { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero__note { font-size: 0.95rem; color: var(--accent-hemp); font-weight: 600; background: rgba(74,107,58,0.08); padding: 8px 16px; border-radius: 30px; }
.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__image-placeholder {
  width: 100%; height: 360px; 
  border-radius: 32px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.hero__abstract-glow {
  position: absolute; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(180,140,90,0.5) 0%, transparent 70%);
  top: 20%; right: -10%; filter: blur(40px);
}
.hero__badge {
  position: relative; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
  color: white; background: var(--accent-hemp); padding: 12px 28px; border-radius: 40px; box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
  display: inline-block; padding: 15px 34px; border-radius: 40px; font-weight: 600;
  text-decoration: none; transition: all 0.25s; border: 1px solid transparent; cursor: pointer; font-size: 1rem; letter-spacing: 0.3px;
}
.btn--primary { background: var(--accent-hemp); color: white; border: none; box-shadow: 0 8px 18px rgba(74,107,58,0.25); }
.btn--primary:hover { background: var(--accent-hemp-light); transform: translateY(-3px); box-shadow: 0 14px 24px rgba(74,107,58,0.3); }

/* Sections */
.section { padding: var(--section-gap) 0; }
.section-title {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 1.2rem; color: #1e1e1e; border-left: 6px solid var(--accent-bronze); padding-left: 24px;
}
.section-subtitle { font-size: 1.2rem; color: #4a4a4a; margin-bottom: 2.5rem; }
.bg-light { background-color: rgba(255,255,255,0.5); backdrop-filter: blur(2px); }

/* Compare Table */
.compare__table-wrapper { overflow-x: auto; border-radius: 24px; box-shadow: var(--shadow-sm); background: white; padding: 2rem; margin-bottom: 2rem; }
.compare__table { width: 100%; border-collapse: collapse; }
.compare__table th, .compare__table td { padding: 16px 24px; text-align: left; border-bottom: 1px solid #ece4d8; }
.compare__table th { background: var(--graphite); color: white; font-weight: 600; }
.compare__table td { color: #2a2a2a; }
.highlight-col { background: rgba(74,107,58,0.04); font-weight: 600; color: var(--accent-hemp); }
.old-price { text-decoration: line-through; color: #888; font-weight: 400; font-size: 0.9rem; margin-left: 6px; }
.compare__price-note { text-align: center; font-size: 0.95rem; color: #666; margin-top: 1rem; }

/* Tech grid */
.tech__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 3rem; }
.tech__card { background: white; padding: 36px 28px; border-radius: 28px; box-shadow: var(--shadow-sm); transition: 0.3s; border: 1px solid rgba(0,0,0,0.03); }
.tech__card:hover { transform: translateY(-6px); box-shadow: 0 20px 30px rgba(0,0,0,0.08); }
.tech__icon { font-size: 2.8rem; margin-bottom: 18px; }
.tech__card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.tech__card p { color: #555; }

/* Video tabs */
.video-tabs { margin-top: 2rem; }
.tabs-nav { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.tab-btn {
  padding: 12px 24px; background: var(--surface-white); border: 1px solid var(--border-light);
  border-radius: 40px; font-family: var(--font-main); font-weight: 500; cursor: pointer;
  transition: 0.2s; color: var(--text-primary);
}
.tab-btn.active { background: var(--accent-hemp); color: white; border-color: var(--accent-hemp); }
.tab-content { display: none; animation: fadeIn 0.3s ease; }
.tab-content.active { display: block; }
.video-caption { margin-top: 12px; font-size: 0.95rem; color: #555; text-align: center; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Club */
.club { background: linear-gradient(180deg, #f8f6f2 0%, #fff 100%); }
.club__counter {
  text-align: center; margin-bottom: 40px; padding: 24px; background: white;
  border-radius: 24px; box-shadow: var(--shadow-sm); border: 1px solid rgba(180,140,90,0.2);
}
.club__counter-number { font-family: var(--font-display); font-size: 4rem; font-weight: 700; color: var(--accent-hemp); display: block; line-height: 1; }
.club__counter-text { font-size: 1.2rem; color: #555; }
.club__features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
.club__feature { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; background: white; padding: 18px 24px; border-radius: 16px; box-shadow: var(--shadow-sm); }

/* Waitlist form */
.waitlist-form { background: white; padding: 40px 36px; border-radius: 32px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 18px; font-family: var(--font-main); font-size: 1rem;
  border: 1px solid #d4cec4; border-radius: 14px; background: #faf9f7;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-hemp); box-shadow: 0 0 0 3px rgba(74,107,58,0.15); }
.form-group--checkbox { display: flex; align-items: center; gap: 12px; }
.form-group--checkbox input { width: 22px; height: 22px; accent-color: var(--accent-hemp); }
.form-feedback { margin-top: 24px; font-weight: 500; }

/* Footer */
.footer {
  background: var(--graphite);
  color: #d4d4d4;
  padding: 25px 0 0;      /* убрали нижний padding, его даст bottom */
  margin-top: 3rem;
  border-top: 4px solid var(--accent-bronze);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  padding-bottom: 24px;   /* отступ перед копирайтом */
}
.footer a {
  color: #d4d4d4;
  text-decoration: none;
  transition: 0.15s;
}
.footer a:hover {
  color: var(--accent-gold);
}
.footer__legal {
  font-size: 0.95rem;
  opacity: 0.9;
  text-align: right;      /* выровняли Reģ. Nr. вправо */
}

/* Нижняя строка копирайта – по центру */
.footer__bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.95rem;
  opacity: 0.8;
  color: #d4d4d4;
}
.footer__bottom p {
  margin: 0;
}

/* Animations */
.animate-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
  .header__lang { display: none; }
  .burger { display: flex; }
  .nav { display: none; }
  .nav.mobile-open {
    display: block; position: absolute; top: 100%; left: 0; width: 100%;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    padding: 28px 0; border-bottom: 1px solid var(--border-light);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); z-index: 99;
  }
  .nav.mobile-open .nav__list { flex-direction: column; align-items: center; gap: 1.8rem; }
  .lang-switch--mobile { display: flex; justify-content: center; margin-top: 28px; background: transparent; backdrop-filter: none; box-shadow: none; border: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__subtitle { max-width: 100%; }
  .tech__grid { grid-template-columns: 1fr; }
  .club__features { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr;  }
  .footer__legal { text-align: left;  }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .logo { font-size: 1.4rem; }
  .section-title { font-size: 2rem; }
  .compare__table-wrapper { padding: 1rem; }
  .compare__table th, .compare__table td { padding: 12px 14px; }
  .tabs-nav { flex-direction: column; }
  .tab-btn { width: 100%; text-align: center; }
}