:root {
  --primary: #a5c33c;
  --primary-dark: #8aa82e;
  --primary-light: #b8d45a;
  --on-primary: #1a2408;
  --bg: #121212;
  --bg-section: #1a1a1a;
  --bg-card: #222222;
  --text: #f8f8f8;
  --text-soft: #b8b8b8;
  --text-muted: #888888;
  --white: #ffffff;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  --font-hero: "TT Rounds Neue", "Roboto", "Open Sans", sans-serif;
}

@font-face {
  font-family: "TT Rounds Neue";
  src: url("fonts/TTRoundsNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Rounds Neue";
  src: url("fonts/TTRoundsNeue-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Rounds Neue";
  src: url("fonts/TTRoundsNeue-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.25;
}

a {
  color: var(--primary-light);
  transition: color 0.2s;
}

a:hover {
  color: var(--primary);
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--on-primary);
}

.brand:hover {
  color: var(--on-primary);
}

.brand-logo,
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.brand-name,
.brand > span {
  color: var(--on-primary);
  font-family: "Roboto", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.5rem;
}

.site-nav a {
  color: var(--on-primary);
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--on-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-nav .nav-home {
  font-family: "Roboto Mono", monospace;
  font-weight: 900;
  font-size: 0.75rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--on-primary);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/hero-bg.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 8, 0.45) 0%, rgba(8, 10, 8, 0.78) 60%, rgba(8, 10, 8, 0.92) 100%),
    radial-gradient(circle at 50% 40%, rgba(165, 195, 60, 0.12) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  margin: 0 0 1.5rem;
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.7);
}

.hero-lead {
  margin: 0 auto 1.25rem;
  max-width: 820px;
  font-family: var(--font-hero);
  font-weight: 400;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero-trial {
  margin: 0 auto 1.75rem;
  max-width: 820px;
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(165, 195, 60, 0.55);
  border-radius: 12px;
  background: rgba(20, 28, 12, 0.55);
  color: #e8f5c8;
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.trial-badge {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(165, 195, 60, 0.22);
  border: 1px solid rgba(165, 195, 60, 0.55);
  color: #dceb9a;
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 2.25rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--on-primary);
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s, background 0.2s;
}

.btn-primary:hover {
  background: var(--primary-light);
  color: var(--on-primary);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--primary);
  border-radius: 999px;
  background: transparent;
  color: var(--primary-light);
  font-family: "Roboto", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--on-primary);
}

/* Tagline strip */
.tagline-strip {
  padding: 2.5rem 0;
  background: var(--bg-section);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.tagline-strip p {
  margin: 0;
  font-family: "Roboto Mono", monospace;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-about,
.section-audience {
  background: var(--bg);
}

.section-how {
  background: var(--bg-section);
}

.section-kicker {
  margin: 0 0 0.75rem;
  font-family: "Roboto Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.section h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  letter-spacing: 0.02em;
}

.section-lead {
  max-width: 820px;
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  color: var(--text-soft);
}

/* Cards */
.cards {
  display: grid;
  gap: 1.5rem;
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-image .card-img {
  height: 200px;
  background-size: cover;
  background-position: center 28%;
}

.card-tall .card-img {
  height: 280px;
  background-position: center 22%;
}

.card-body {
  padding: 1.25rem 1.15rem 1.5rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--primary-light);
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

/* Steps */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.step-card {
  text-align: center;
}

.step-img {
  height: 200px;
  margin-bottom: 1.25rem;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.step-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  color: var(--primary-light);
}

.step-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 1.25rem;
  border-radius: 4px;
  background: var(--bg-card);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.feature-img {
  height: 140px;
  margin-bottom: 1rem;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}

.feature-card h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--primary-light);
}

.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* Care section */
.section-care {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.care-bg {
  position: absolute;
  inset: 0;
  background: url("images/care-bg.jpg") center center / cover no-repeat;
  background-attachment: fixed;
}

.care-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 8, 0.82);
}

.care-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}

.care-content h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.care-content p {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* CTA */
.section-cta {
  background: linear-gradient(135deg, #1a2210 0%, #2a3518 50%, #1a2210 100%);
  text-align: center;
}

.cta-inner h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.cta-inner p {
  max-width: 720px;
  margin: 0 auto 2rem;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.cta-pricing {
  max-width: 640px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(163, 201, 120, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.cta-price {
  margin: 0 0 0.65rem !important;
  color: #e8f0dc !important;
  font-size: 1.12rem !important;
  font-weight: 700;
  line-height: 1.45;
}

.cta-price-note {
  margin: 0 !important;
  color: var(--text-muted) !important;
  font-size: 0.95rem !important;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Subscribe page */
.subscribe-page {
  padding-top: 64px;
}

.subscribe-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.subscribe-hint {
  max-width: 560px;
  margin: 1.25rem auto 0 !important;
  font-size: 0.92rem !important;
  color: var(--text-muted) !important;
}

.subscribe-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.subscribe-phone-label {
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.subscribe-phone {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  padding: 0 1rem;
  font: inherit;
}

.subscribe-status {
  color: var(--primary-light) !important;
}

.subscribe-list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(26, 36, 8, 0.12);
  color: var(--on-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.btn-header:hover {
  color: var(--on-primary);
  background: rgba(26, 36, 8, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(163, 201, 120, 0.45);
  background: transparent;
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 700;
}

.cta-actions .btn-secondary,
.subscribe-form .btn-secondary {
  width: 100%;
}

.subscribe-form .btn-secondary {
  min-height: 48px;
}

.saved-card {
  text-align: left;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(163, 201, 120, 0.35);
  background: linear-gradient(145deg, rgba(42, 53, 24, 0.95), rgba(18, 22, 14, 0.95));
}

.saved-card-empty {
  border-style: dashed;
  opacity: 0.9;
}

.saved-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 700;
}

.saved-card-number {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #f3f7ea;
}

.saved-card-note {
  margin: 0 0 0.9rem !important;
  color: var(--text-muted) !important;
  font-size: 0.88rem !important;
}

.cabinet-form {
  max-width: 480px;
}

.cabinet-panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
  text-align: left;
}

.cabinet-card {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
}

.cabinet-label {
  margin: 0 0 0.35rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cabinet-value {
  margin: 0;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}

.cabinet-value-soft {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-soft);
}

.cabinet-meta {
  margin: 0.4rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.cabinet-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.cabinet-actions .btn-primary,
.cabinet-actions .btn-secondary {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Contacts */
.section-contacts {
  background: var(--bg-section);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-contacts h2 {
  margin-bottom: 1rem;
}

.operator {
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  background: #0e0e0e;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-soft);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-3,
  .steps-row,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1rem;
    background: var(--primary-dark);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s, opacity 0.22s;
  }

  .site-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.65rem 0.25rem;
  }

  .header-inner {
    position: relative;
  }

  .care-bg {
    background-attachment: scroll;
  }
}

@media (max-width: 560px) {
  .cards-4 {
    grid-template-columns: 1fr;
  }
}
