/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito Sans', sans-serif; color: #1d1d1f; background: #fff; }

/* === VARIABLES === */
:root {
  --dark: #1d1d1f;
  --green: #6a9e6a;
  --green-dark: #4a7a4a;
  --gray-bg: #f5f5f7;
  --text-sec: #424245;
  --text-light: #6e6e73;
  --white: #ffffff;
  --border-solid: #e5e5ea;
  --radius: 24px;
  --radius-sm: 12px;
  --transition: 0.2s ease;
}

/* === NAV === */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 52px;
}
.nav-logo {
  font-size: 17px; font-weight: 800; color: #1d1d1f;
  text-decoration: none; letter-spacing: 0.3px;
  display: flex; align-items: center; gap: 6px;
}
.nav-logo span { color: #6a9e6a; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 13px; color: #424245; text-decoration: none;
  padding: 6px 12px; border-radius: 8px; transition: background 0.2s;
}
.nav-links a:hover { background: rgba(0,0,0,0.04); color: #1d1d1f; }
.nav-cta {
  background: #1d1d1f; color: #fff !important; font-size: 13px; font-weight: 500;
  padding: 8px 20px !important; border-radius: 980px !important; border: none; cursor: pointer;
  transition: background 0.2s; text-decoration: none;
  display: inline-flex; align-items: center;
}
.nav-cta:hover { background: #4a4a4a !important; color: #fff !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { width: 22px; height: 2px; background: #1d1d1f; border-radius: 2px; transition: all 0.2s; display: block; }

/* === HERO === */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.88) saturate(1.1);
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.10) 35%,
    rgba(255,252,248,0.68) 75%,
    rgba(255,252,248,1) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 820px; padding: 0 24px;
  margin-top: 52px;
}
.hero-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 24px;
  animation: heroFade 0.6s ease 0.1s both;
  background: linear-gradient(90deg, #ff6b35, #f59e0b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title {
  font-size: clamp(50px, 8vw, 88px); font-weight: 900;
  line-height: 1.0; letter-spacing: -2px; color: #1d1d1f; margin-bottom: 24px;
  animation: heroFade 0.6s ease 0.25s both;
}
.counter-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.65); backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 980px; padding: 10px 22px;
  font-size: 15px; color: #1d1d1f; margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  animation: heroFade 0.6s ease 0.38s both;
}
.counter-pill .dot { width: 8px; height: 8px; background: #6a9e6a; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.2)} }

.hero-sub {
  font-size: 19px; font-weight: 300; color: #424245;
  line-height: 1.6; max-width: 560px; margin: 0 auto 40px;
  animation: heroFade 0.6s ease 0.45s both;
}
.hero-sub strong { font-weight: 600; color: #1d1d1f; }
.hero-actions {
  display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap;
  animation: heroFade 0.6s ease 0.55s both;
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 980px;
  font-size: 16px; font-weight: 600; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none;
  font-family: 'Nunito Sans', sans-serif; white-space: nowrap;
}
.btn-hero {
  display: inline-block; padding: 17px 36px; border-radius: 980px;
  font-size: 17px; font-weight: 500; cursor: pointer; border: none;
  transition: all 0.2s; text-decoration: none; font-family: 'Nunito Sans', sans-serif;
}
.btn-hero-primary { background: #1d1d1f; color: #fff; }
.btn-hero-primary:hover { background: #4a4a4a; transform: scale(1.02); color: #fff; }
.btn-hero-ghost {
  background: rgba(255,255,255,0.6); backdrop-filter: blur(10px);
  color: #1d1d1f; border: 1px solid rgba(0,0,0,0.15);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.9); }

.btn-primary { background: #1d1d1f; color: #fff; }
.btn-primary:hover { background: #4a4a4a; transform: translateY(-1px); text-decoration: none; color: #fff; }
.btn-secondary { background: var(--gray-bg); color: #1d1d1f; border: 1px solid rgba(0,0,0,0.12); }
.btn-secondary:hover { background: #eaeaec; text-decoration: none; }
.btn-outline { background: transparent; color: #1d1d1f; border: 1px solid rgba(0,0,0,0.2); }
.btn-outline:hover { background: rgba(0,0,0,0.04); text-decoration: none; }
.btn-large { padding: 18px 44px; font-size: 18px; }
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }
.btn-full { width: 100%; justify-content: center; }

.btn-cta {
  display: inline-block; background: #fff; color: #1d1d1f;
  font-size: 17px; font-weight: 600; padding: 17px 44px;
  border-radius: 980px; border: none; cursor: pointer;
  transition: all 0.2s; text-decoration: none; font-family: 'Nunito Sans', sans-serif;
}
.btn-cta:hover { background: #f0f0f0; transform: scale(1.03); color: #1d1d1f; }

/* === FEATURES ROW === */
.features-wrap { background: #fff; padding: 0 24px 80px; }
.features-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
  max-width: 1200px; margin: 0 auto; border-radius: 24px;
  overflow: hidden; background: #e5e5ea;
}
.feature-tile {
  background: #fff; padding: 44px 32px;
  display: flex; flex-direction: column; gap: 16px; transition: background 0.2s;
}
.feature-tile:hover { background: #fafafa; }
.feature-icon { width: 100%; height: 160px; border-radius: 16px; overflow: hidden; flex-shrink: 0; margin-bottom: 4px; }
.feature-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-icon-placeholder {
  width: 100%; height: 160px; border-radius: 16px; flex-shrink: 0; margin-bottom: 4px;
  display: flex; align-items: center; justify-content: center; font-size: 56px;
}
.feature-title { font-size: 20px; font-weight: 800; color: #1d1d1f; }
.feature-desc { font-size: 14px; color: #6e6e73; line-height: 1.65; font-weight: 300; }
.feature-note { font-size: 13px; color: #6a9e6a; font-weight: 600; margin-top: auto; }

/* === SECTIONS === */
section.section { padding: 100px 24px; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: #6a9e6a; margin-bottom: 16px; }
.h2 { font-size: clamp(36px, 5vw, 60px); font-weight: 900; line-height: 1.05; color: #1d1d1f; letter-spacing: -1px; margin-bottom: 20px; }
.lead { font-size: 19px; font-weight: 300; color: #424245; line-height: 1.65; }

/* === STORY === */
.story-section { background: #fff; }
.story-card {
  background: linear-gradient(135deg,#f9f5ef,#f0ede8);
  border-radius: 28px; padding: 64px 72px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start;
}
.story-avatar-col { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.story-avatar { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; }
.story-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-name-block { text-align: center; }
.story-name { font-size: 18px; font-weight: 600; color: #1d1d1f; }
.story-role { font-size: 13px; color: #6e6e73; margin-top: 4px; }
.story-email-tag { font-size: 13px; color: #6a9e6a; margin-top: 12px; }
.story-text { font-size: 16px; line-height: 1.85; color: #424245; font-weight: 300; }
.story-text p { margin-bottom: 16px; }
.story-quote {
  border-left: 3px solid #6a9e6a; padding: 20px 24px;
  background: rgba(106,158,106,0.06); border-radius: 0 12px 12px 0;
  font-weight: 700; font-size: 17px; color: #1d1d1f;
  margin: 24px 0; line-height: 1.7;
}

/* === QUOTE SECTION === */
.quote-section { background: #f5f5f7; text-align: center; }
.big-quote {
  font-size: clamp(30px,5vw,52px); font-weight: 900;
  line-height: 1.1; color: #1d1d1f; max-width: 880px; margin: 0 auto 24px; letter-spacing: -1px;
}
.big-quote-sub { font-size: 21px; font-weight: 500; color: #1d1d1f; margin-bottom: 12px; }
.big-quote-tag { font-size: 19px; color: #6a9e6a; font-weight: 700; }

/* === HOW IT WORKS === */
.how-section { background: #fff; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  border-radius: 24px; overflow: hidden; background: #e5e5ea; margin-top: 60px;
}
.step-card { background: #fff; padding: 44px 36px; display: flex; flex-direction: column; gap: 20px; }
.step-num {
  font-size: 56px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg,#6a9e6a,#4a7a4a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step-title { font-size: 17px; font-weight: 600; color: #1d1d1f; }
.step-desc { font-size: 14px; color: #6e6e73; line-height: 1.7; font-weight: 300; }

/* === GOOD DEEDS === */
.good-deeds-strip {
  background: #1d1d1f; border-radius: 20px; padding: 44px 56px;
  display: flex; align-items: flex-start; gap: 48px; margin-top: 60px;
}
.good-deeds-icon {
  width: 72px; height: 72px; border-radius: 18px; overflow: hidden;
  flex-shrink: 0; font-size: 36px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
}
.good-deeds-title { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.good-deeds-text { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.good-deeds-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.good-deeds-list li { font-size: 14px; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 10px; }
.good-deeds-list li::before { content: '→'; color: #6a9e6a; }

/* === MARKETING CARDS === */
.mkt-section { background: #f5f5f7; }
.mkt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.mkt-card { background: #fff; border-radius: 24px; padding: 44px 36px; display: flex; flex-direction: column; gap: 20px; }
.mkt-icon { font-size: 36px; }
.mkt-title { font-size: 22px; font-weight: 800; color: #1d1d1f; }
.mkt-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.mkt-list li { font-size: 14px; color: #6e6e73; line-height: 1.6; display: flex; align-items: flex-start; gap: 8px; font-weight: 300; }
.mkt-list li::before { content: '→'; color: #6a9e6a; font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.mkt-note { font-size: 13px; color: #6e6e73; font-weight: 500; margin-top: auto; }

/* === BLACKLIST / APOLOGY === */
.blacklist-section { background: #fff; }
.blacklist-card {
  background: #f5f5f7; border-radius: 24px; padding: 52px 60px;
  display: flex; align-items: center; gap: 36px; max-width: 840px; margin: 0 auto;
}
.blacklist-icon {
  width: 80px; height: 80px; border-radius: 20px; overflow: hidden;
  flex-shrink: 0; background: #F5F0FF; display: flex; align-items: center;
  justify-content: center; font-size: 40px;
}
.bl-title { font-size: 26px; font-weight: 800; color: #1d1d1f; margin-bottom: 12px; }
.bl-text { font-size: 16px; color: #424245; line-height: 1.7; font-weight: 300; margin-bottom: 20px; }

/* === PRICING === */
.pricing-section { background: #f5f5f7; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
  max-width: 800px; margin: 60px auto 0;
}
.price-card { background: #fff; border-radius: 24px; padding: 44px 36px; position: relative; display: flex; flex-direction: column; }
.price-card.featured { background: #1d1d1f; }
.price-card .price-features { flex: 1; }
.price-badge {
  display: inline-block; background: #6a9e6a; color: #fff;
  padding: 5px 16px; border-radius: 980px; font-size: 12px; font-weight: 600; margin-bottom: 16px;
}
.price-card h3 { font-size: 22px; font-weight: 800; color: #1d1d1f; margin-bottom: 8px; }
.price-card.featured h3 { color: #fff; }
.price-amount { font-size: 56px; font-weight: 900; color: #1d1d1f; line-height: 1; margin: 12px 0 4px; }
.price-card.featured .price-amount { color: #fff; }
.price-per { color: #6e6e73; font-size: 15px; margin-bottom: 24px; }
.price-card.featured .price-per { color: rgba(255,255,255,0.5); }
.price-features { list-style: none; margin: 20px 0 28px; }
.price-features li {
  padding: 8px 0; color: #6e6e73; font-size: 14px;
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.05); font-weight: 300;
}
.price-card.featured .price-features li { color: rgba(255,255,255,0.65); border-bottom-color: rgba(255,255,255,0.08); }
.price-features li:last-child { border-bottom: none; }
.check { color: #6a9e6a; font-weight: bold; flex-shrink: 0; }

/* === CTA SECTION === */
.cta-section { background: #1d1d1f; text-align: center; padding: 120px 24px; }
.cta-title { font-size: clamp(40px,6vw,72px); font-weight: 900; color: #fff; margin-bottom: 20px; letter-spacing: -1.5px; }
.cta-sub { font-size: 19px; color: rgba(255,255,255,0.6); margin-bottom: 48px; font-weight: 300; }

/* === FOOTER === */
footer.site-footer {
  background: #f5f5f7; padding: 56px 48px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px;
}
.footer-logo { font-size: 20px; font-weight: 800; color: #1d1d1f; margin-bottom: 12px; }
.footer-logo span { color: #6a9e6a; }
.footer-tagline { font-size: 14px; color: #6e6e73; line-height: 1.7; margin-bottom: 16px; font-weight: 300; }
.footer-contact { font-size: 14px; color: #424245; margin-bottom: 4px; }
.footer-note { font-size: 12px; color: #6e6e73; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #1d1d1f; margin-bottom: 14px; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: #6e6e73; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #1d1d1f; }
.footer-legal-row {
  background: #ebebed; padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: #6e6e73;
}
.footer-legal-row a { color: #6e6e73; text-decoration: none; }
.footer-legal-row a:hover { color: #1d1d1f; }

/* === FORM / PAGE SHELL === */
.page-shell {
  min-height: 100vh; background: #f5f5f7;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 84px 24px 60px;
}
.page-card {
  background: #fff; border-radius: 28px;
  padding: 56px 60px; width: 100%; max-width: 560px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.07);
}
.page-card h1 { font-size: 32px; font-weight: 900; color: #1d1d1f; margin-bottom: 6px; letter-spacing: -0.5px; }
.page-card .subtitle { font-size: 14px; color: #6e6e73; margin-bottom: 36px; line-height: 1.5; }

/* === AUTH === */
.auth-shell {
  min-height: 100vh; background: #f5f5f7;
  display: flex; align-items: center; justify-content: center; padding: 40px 24px;
}
.auth-card {
  background: #fff; border-radius: 28px; padding: 56px 60px;
  width: 100%; max-width: 440px; box-shadow: 0 32px 80px rgba(0,0,0,0.07);
}
.auth-card h1 { font-size: 32px; font-weight: 900; text-align: center; margin-bottom: 6px; color: #1d1d1f; letter-spacing: -0.5px; }
.auth-card .subtitle { text-align: center; color: #6e6e73; font-size: 14px; margin-bottom: 36px; }
.auth-switch { text-align: center; margin-top: 24px; color: #6e6e73; font-size: 15px; }
.auth-switch a { color: #6a9e6a; text-decoration: none; font-weight: 600; }
.forgot-link { display: block; text-align: right; font-size: 13px; color: #6e6e73; margin-top: 6px; text-decoration: none; }
.forgot-link:hover { color: #6a9e6a; }

/* === FORMS === */
.form-group { margin-bottom: 20px; }
.form-label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: #6e6e73; display: block; margin-bottom: 8px;
}
.form-label span { color: #6a9e6a; }
.form-control {
  width: 100%; border: 1px solid #e5e5ea; border-radius: 12px;
  padding: 14px 16px; font-family: 'Nunito Sans', sans-serif; font-size: 15px;
  color: #1d1d1f; background: #fff; outline: none; transition: border-color 0.15s;
}
.form-control:focus { border-color: #6a9e6a; box-shadow: 0 0 0 3px rgba(106,158,106,0.12); }
.form-control::placeholder { color: #b5b5be; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-hint { color: #6e6e73; font-size: 12px; margin-top: 6px; }
.form-error { color: #c62828; font-size: 13px; margin-top: 6px; }
.form-divider { border: none; border-top: 1px solid #e5e5ea; margin: 24px 0; }

.payment-info {
  background: #f5f5f7; border-radius: 16px; padding: 20px 24px;
  margin-bottom: 24px; display: flex; justify-content: space-between; align-items: center;
}
.payment-amount { font-size: 40px; font-weight: 900; color: #1d1d1f; line-height: 1; }
.payment-desc { color: #6e6e73; font-size: 14px; margin-top: 4px; }

.checkbox-group {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: #f5f5f7; border-radius: 12px; margin-bottom: 16px;
}
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; accent-color: #6a9e6a; cursor: pointer; flex-shrink: 0; margin-top: 2px; }
.checkbox-label { font-size: 14px; color: #424245; cursor: pointer; line-height: 1.5; }
.checkbox-label a { color: #6a9e6a; }
.offer-link { text-align: center; margin-top: 16px; font-size: 12px; color: #6e6e73; line-height: 1.6; }
.offer-link a { color: #6a9e6a; }

/* === ALERT === */
.alert { padding: 14px 20px; border-radius: 12px; margin-bottom: 20px; font-size: 14px; display: none; }
.alert.show { display: block; }
.alert-success { background: rgba(106,158,106,0.1); color: #3a6e3a; border: 1px solid rgba(106,158,106,0.25); }
.alert-error { background: rgba(198,40,40,0.06); color: #b71c1c; border: 1px solid rgba(198,40,40,0.2); }

/* === SPINNER === */
.spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === SUCCESS PAGE === */
.success-shell {
  min-height: 100vh; background: #f5f5f7;
  display: flex; align-items: center; justify-content: center; padding: 40px 24px;
}
.success-card {
  background: #fff; border-radius: 28px; padding: 64px 56px;
  text-align: center; max-width: 540px; width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.07);
}
.success-icon { font-size: 72px; margin-bottom: 24px; display: block; }
.success-card h1 { font-size: 36px; font-weight: 900; color: #1d1d1f; margin-bottom: 16px; letter-spacing: -0.5px; }
.success-card p { color: #6e6e73; font-size: 16px; line-height: 1.8; margin-bottom: 16px; font-weight: 300; }

/* === CABINET === */
.cabinet-shell { background: #f5f5f7; min-height: 100vh; padding: 84px 24px 60px; }
.cabinet-inner { max-width: 960px; margin: 0 auto; }
.cabinet-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.cabinet-header h1 { font-size: 40px; font-weight: 900; color: #1d1d1f; letter-spacing: -1px; }
.cabinet-header p { font-size: 14px; color: #6e6e73; margin-top: 4px; }
.cabinet-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 24px; }
.stat-box { background: #fff; border-radius: 20px; padding: 28px 24px; text-align: center; }
.stat-num { font-size: 40px; font-weight: 900; color: #1d1d1f; line-height: 1; letter-spacing: -1px; }
.stat-label { color: #6e6e73; font-size: 13px; margin-top: 6px; }
.subscription-card {
  background: #1d1d1f; border-radius: 20px; padding: 28px 32px;
  margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.sub-info h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.sub-info p { font-size: 14px; color: rgba(255,255,255,0.55); }
.no-sub-card {
  background: #fff; border-radius: 20px; padding: 24px 32px;
  margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.no-sub-card p { color: #6e6e73; font-size: 15px; }
.table-wrap { background: #fff; border-radius: 20px; overflow: hidden; }
.table-head-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid #f0f0f0;
}
.table-head-row h2 { font-size: 20px; font-weight: 800; color: #1d1d1f; }
table { width: 100%; border-collapse: collapse; }
th {
  text-align: left; padding: 12px 20px; background: #fafafa;
  font-size: 11px; font-weight: 600; color: #6e6e73; text-transform: uppercase;
  letter-spacing: 0.08em; border-bottom: 1px solid #f0f0f0;
}
td { padding: 14px 20px; border-bottom: 1px solid #f9f9f9; font-size: 14px; color: #1d1d1f; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #fafafa; }
.status-badge { display: inline-block; padding: 4px 12px; border-radius: 980px; font-size: 12px; font-weight: 600; }
.status-paid { background: rgba(106,158,106,0.12); color: #4a7a4a; }
.status-pending { background: #fff8e1; color: #f57f17; }
.status-failed { background: rgba(198,40,40,0.08); color: #c62828; }
.status-active { background: rgba(106,158,106,0.12); color: #4a7a4a; }
.status-cancelled { background: #f5f5f7; color: #666; }

/* === NOTIFICATION === */
.notification {
  position: fixed; top: 72px; right: 20px; z-index: 1000;
  background: #fff; border-radius: 16px; padding: 16px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12); border-left: 3px solid #6a9e6a;
  max-width: 360px; transform: translateX(120%); transition: transform 0.3s ease;
  font-size: 14px; color: #1d1d1f;
}
.notification.show { transform: translateX(0); }
.notification.error { border-left-color: #c62828; }

/* === OFFER PAGE === */
.offer-page { max-width: 800px; margin: 84px auto 80px; padding: 0 24px; }
.offer-page h1 { font-size: 40px; font-weight: 900; color: #1d1d1f; margin-bottom: 8px; letter-spacing: -1px; }
.offer-page h2 { font-size: 22px; font-weight: 800; margin: 32px 0 12px; color: #1d1d1f; }
.offer-page h3 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; color: #1d1d1f; }
.offer-page p { color: #424245; margin-bottom: 12px; line-height: 1.8; font-size: 15px; font-weight: 300; }
.offer-page ul, .offer-page ol { margin: 12px 0 12px 24px; color: #424245; }
.offer-page li { margin-bottom: 8px; line-height: 1.7; font-size: 15px; font-weight: 300; }
.offer-date { color: #6e6e73; margin-bottom: 32px; font-size: 14px; }
.offer-meta { background: #f5f5f7; border-radius: 16px; padding: 20px 24px; margin: 32px 0; }

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* === HERO ANIMATIONS === */
@keyframes heroFade { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  nav.site-nav { padding: 0 24px; }
  .features-row { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .mkt-grid { grid-template-columns: 1fr; }
  .story-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
  .good-deeds-strip { flex-direction: column; padding: 36px 28px; gap: 24px; }
  .blacklist-card { flex-direction: column; padding: 36px 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  footer.site-footer { grid-template-columns: 1fr 1fr; padding: 40px 28px; }
  .footer-legal-row { padding: 20px 28px; }
  .cabinet-stats { grid-template-columns: repeat(2,1fr); }
  .subscription-card { flex-direction: column; align-items: flex-start; }
  .no-sub-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  nav.site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 52px; left: 0; right: 0;
    background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px; border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 99; align-items: stretch;
  }
  .nav-links.open a { padding: 12px 16px; font-size: 16px; border-radius: 12px; }
  .features-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .page-card, .auth-card { padding: 36px 24px; max-width: 100%; }
  .cabinet-stats { grid-template-columns: 1fr; }
  footer.site-footer { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-legal-row { padding: 16px 24px; flex-direction: column; text-align: center; }
  th, td { padding: 10px 14px; font-size: 13px; }
  .story-card { padding: 28px 20px; }
  .cabinet-header h1 { font-size: 30px; }
  .good-deeds-strip { padding: 28px 24px; }
}
