@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800;900&family=Source+Serif+4:ital,wght@0,400;1,400&display=swap');
:root {
  --bg: #f7f8f5;
  --bg2: #eef0eb;
  --surface: #ffffff;
  --surface2: #f0f2ed;
  --bg-light: #f0f2ed;
  --bg-white: #ffffff;
  --ink: #1a2412;
  --muted: #5a6650;
  --border: #d4daca;
  --border-dark: rgba(26,36,18,0.1);
  --accent: #e07520;
  --accent-dark: #c05e10;
  --accent-bg: #fff3e8;
  --green: #2a7c3f;
  --green-bg: #edfbf2;
  --radius: 14px;
  --shadow: 0 2px 8px rgba(13,31,60,0.08), 0 8px 24px rgba(13,31,60,0.1);
  --shadow-lg: 0 4px 6px rgba(13,31,60,0.05), 0 20px 60px rgba(13,31,60,0.16);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Sora', -apple-system, sans-serif; color: var(--ink); line-height: 1.65; background: var(--bg); }
.container { max-width: 600px; margin: 0 auto; padding: 0 20px; }

nav { background: var(--surface); border-bottom: 1px solid var(--border-dark); padding: 14px 0; }
nav .container { max-width: 600px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 36px; border-radius: 6px; }
.logo-text { font-size: 12px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.nav-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--green); background: rgba(42,124,63,0.1); border: 1px solid rgba(42,124,63,0.2); padding: 4px 10px; border-radius: 20px; white-space: nowrap; }

.hero { background: var(--bg); padding: 36px 0 40px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% -10%, rgba(224,117,32,0.1) 0%, transparent 55%); pointer-events: none; }
.hero .container { position: relative; }

.eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 14px; }
.eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--accent); border-radius: 1px; }

h1 { font-size: clamp(24px, 7vw, 38px); font-weight: 900; color: var(--ink); line-height: 1.1; margin-bottom: 14px; letter-spacing: -1px; }
h1 em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 15px; color: rgba(26,36,18,0.65); margin-bottom: 22px; line-height: 1.7; }

.hero-problem { background: rgba(224,117,32,0.07); border: 1px solid rgba(224,117,32,0.18); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 24px; }
.hero-problem p { font-size: 13.5px; color: rgba(26,36,18,0.68); line-height: 1.7; }
.hero-problem strong { color: var(--ink); }

.benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.benefit { display: flex; align-items: center; gap: 12px; }
.benefit-icon { width: 32px; height: 32px; background: rgba(224,117,32,0.12); border: 1px solid rgba(224,117,32,0.22); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-icon svg { width: 14px; height: 14px; }
.benefit-body { font-size: 13.5px; font-weight: 600; color: var(--ink); }

.testimonial { background: rgba(42,124,63,0.06); border-radius: var(--radius); padding: 16px 18px; border-left: 3px solid var(--green); margin-bottom: 32px; }
.testimonial blockquote { font-family: 'Source Serif 4', Georgia, serif; font-size: 13.5px; color: rgba(26,36,18,0.75); line-height: 1.65; margin-bottom: 8px; font-style: italic; }
.testimonial cite { font-size: 11px; font-style: normal; font-weight: 700; color: var(--green); }
.testimonial cite span { font-weight: 400; color: var(--muted); }

.form-card { background: var(--bg-white); border-radius: 18px; padding: 28px 24px; box-shadow: var(--shadow-lg); }
.form-card h2 { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 5px; letter-spacing: -0.3px; }
.form-card .form-sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.55; }
.form-card .form-sub strong { color: var(--green); }

.field { margin-bottom: 11px; }
.field label { display: block; font-size: 10.5px; font-weight: 700; color: var(--muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.field input { width: 100%; padding: 12px 14px; background: var(--bg-light); border: 1.5px solid var(--border); border-radius: 10px; font-size: 15px; color: var(--ink); font-family: 'Sora', sans-serif; transition: border-color 0.2s, box-shadow 0.2s; }
.field input:focus { outline: none; border-color: var(--accent); background: var(--bg-white); box-shadow: 0 0 0 3px var(--accent-bg); }

.btn-claim { width: 100%; padding: 15px; background: var(--accent); color: #fff; border: none; border-radius: 12px; font-size: 15.5px; font-weight: 700; cursor: pointer; margin-top: 6px; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; font-family: 'Sora', sans-serif; letter-spacing: -0.2px; }
.btn-claim:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,110,245,0.38); }
.form-disclaimer { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 9px; line-height: 1.5; }
.spots-badge { display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--green-bg); border: 1px solid #bbf7d0; border-radius: 10px; padding: 9px 12px; margin-top: 11px; font-size: 12px; font-weight: 600; color: var(--green); }
.spots-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: blink 1.5s infinite; flex-shrink: 0; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.proof-band { background: var(--surface); border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); padding: 18px 0; }
.proof-band .container { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; justify-content: center; }
.proof-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); width: 100%; text-align: center; margin-bottom: 4px; }
.proof-item { font-size: 11px; font-weight: 600; color: var(--ink); background: rgba(42,124,63,0.08); border: 1px solid rgba(42,124,63,0.2); padding: 4px 12px; border-radius: 20px; }

.pain-section { background: var(--surface); padding: 40px 0; }
.section-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 12px; }
.pain-section h2 { font-size: clamp(20px, 5.5vw, 28px); font-weight: 800; color: var(--ink); line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.5px; }
.pain-section p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.pain-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink); line-height: 1.55; }
.pain-list li::before { content: ''; width: 6px; height: 6px; background: #ef4444; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.pain-result { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); border-radius: 10px; padding: 13px 16px; font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.pain-result strong { color: #fca5a5; }

.solution-section { background: var(--bg2); padding: 40px 0; }
.solution-section h2 { font-size: clamp(20px, 5.5vw, 28px); font-weight: 800; color: var(--ink); line-height: 1.2; margin-bottom: 10px; letter-spacing: -0.5px; }
.solution-section .solution-intro { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; line-height: 1.7; }
.solution-cards { display: flex; flex-direction: column; gap: 10px; }
.sol-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; display: flex; align-items: flex-start; gap: 14px; }
.sol-icon { width: 38px; height: 38px; background: rgba(224,117,32,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sol-icon svg { width: 18px; height: 18px; }
.sol-card h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.sol-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

.countdown-section { background: var(--accent); padding: 32px 0; text-align: center; }
.countdown-section h3 { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 18px; line-height: 1.5; }
.countdown-section h3 strong { color: #fff; display: block; font-size: 18px; margin-bottom: 4px; }
.countdown-wrap { display: flex; justify-content: center; gap: 12px; margin-bottom: 22px; }
.cd-block { text-align: center; min-width: 60px; }
.cd-digit { font-size: 36px; font-weight: 900; color: #fff; line-height: 1; display: block; background: rgba(0,0,0,0.2); border-radius: 10px; padding: 8px 6px; }
.cd-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.7); margin-top: 5px; display: block; }
.btn-countdown { display: block; width: 100%; padding: 16px; background: #fff; color: var(--accent); border: none; border-radius: 12px; font-size: 15px; font-weight: 800; cursor: pointer; font-family: 'Sora', sans-serif; text-decoration: none; transition: transform 0.15s, box-shadow 0.2s; }
.btn-countdown:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.countdown-sub { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 10px; }

.how { background: var(--surface); padding: 40px 0; }
.how h2 { font-size: clamp(20px, 5.5vw, 28px); font-weight: 800; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.5px; }
.how .section-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 28px; }
.steps { display: flex; flex-direction: column; gap: 12px; }
.step { display: flex; align-items: flex-start; gap: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.step-num { width: 32px; height: 32px; background: var(--accent); border-radius: 50%; font-size: 13px; font-weight: 800; color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.step p { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

.who-section { background: var(--bg2); padding: 40px 0; }
.who-section h2 { font-size: clamp(18px, 5vw, 24px); font-weight: 800; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.4px; }
.who-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.who-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink); font-weight: 600; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 13px 16px; }
.who-list li::before { content: ''; width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

.about-section { background: var(--surface); padding: 40px 0; }
.about-section h2 { font-size: clamp(18px, 5vw, 24px); font-weight: 800; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.4px; }
.about-section p { font-size: 13.5px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.about-section p:last-child { margin-bottom: 0; }

.cta-final { background: var(--bg); padding: 48px 0; text-align: center; }
.cta-final h2 { font-size: clamp(20px, 6vw, 30px); font-weight: 900; color: #fff; margin-bottom: 10px; letter-spacing: -0.6px; line-height: 1.15; }
.cta-final p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.7; }
.btn-final { display: block; width: 100%; padding: 17px; background: var(--accent); color: #fff; border: none; border-radius: 12px; font-size: 16px; font-weight: 800; text-decoration: none; cursor: pointer; font-family: 'Sora', sans-serif; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; }
.btn-final:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(26,110,245,0.45); }
.cta-reassure { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 12px; }
.cta-unsub { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 6px; }

footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 20px 0; text-align: center; font-size: 11.5px; color: var(--muted); }
footer a { color: inherit; text-decoration: none; }
footer a:hover { color: rgba(255,255,255,0.55); }

/* HERO PHOTO REDESIGN */

.hero::after { display: none; }

@media (max-width: 767px) {
  
}

</style>
<style id="htmlpub-breakpoint-visibility">@media (max-width: 767px) { .hp-hide-mobile { display: none !important; } }
@media (min-width: 768px) and (max-width: 1199px) { .hp-hide-tablet { display: none !important; } }
@media (min-width: 1200px) { .hp-hide-desktop { display: none !important; } }</style><style>#htmlpub-link-input::placeholder{color:rgba(0,0,0,0.40);}ul,ol{padding:20px;}</style><style id="hero-premium">
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800;900&display=swap');

/* ── HERO RESET ── */
section.hero {
  background: var(--bg) !important;
  padding: 0 !important;
  overflow: visible !important;
}
section.hero::before { display: none !important; }
section.hero > .container {
  max-width: 1100px !important;
  display: grid;
  grid-template-columns: 65fr 35fr;
  align-items: center;
  gap: 0;
  min-height: 580px;
  padding: 0 !important;
}

/* ── LEFT COL ── */
.hero-left {
  padding: 56px 48px 56px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* social proof badge */
.hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-stars .stars { color: #f5a623; font-size: 15px; letter-spacing: 1px; }
.hero-stars .count { color: var(--muted); font-weight: 600; }

/* headline */
.hero-left h1 {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero-left h1 .hl {
  background: #fff176;
  color: var(--ink);
  padding: 0 4px;
  border-radius: 4px;
  font-style: normal;
}

/* sub */
.hero-left .sub {
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--muted);
  line-height: 1.65;
  max-width: 42ch;
  margin-bottom: 32px;
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-ctas .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.hero-ctas .btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.hero-ctas .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.hero-ctas .btn-secondary:hover { border-color: var(--accent); background: var(--accent-bg); }

/* mini benefits row */
.hero-mini-benefits {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hero-mini-benefits .mb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.mb-check {
  width: 20px; height: 20px;
  background: var(--green-bg);
  border: 1px solid rgba(42,124,63,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mb-check svg { width: 10px; height: 10px; }

/* ── RIGHT COL (image) ── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px 40px 0;
}
.hero-right img {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(13,31,60,0.14);
}

/* ── TRUST STRIP under hero ── */
.hero-trust {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-trust .trust-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  white-space: nowrap;
  margin-right: 16px;
}
.hero-trust .trust-item {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  padding: 5px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
}

/* ── MOBILE FIRST ── */
@media (max-width: 767px) {
  section.hero > .container {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .hero-right {
    order: -1;
    border-radius: 0 !important;
    width: 100%;
    max-height: 260px;
    overflow: hidden;
  }
  .hero-right img {
    min-height: 260px;
    max-height: 260px;
    object-position: center 20%;
  }
  .hero-left {
    padding: 24px 20px 32px !important;
    gap: 0;
  }
  .hero-left h1 { font-size: clamp(26px, 8vw, 34px) !important; margin-bottom: 12px; }
  .hero-left .sub { font-size: 14px !important; margin-bottom: 20px; }
  .hero-ctas { flex-direction: column !important; gap: 10px !important; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary {
    width: 100% !important;
    justify-content: center;
    padding: 15px 20px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
  }
  .hero-trust { flex-wrap: wrap; padding: 12px 20px; gap: 6px; }
}

@media (min-width: 768px) and (max-width: 1099px) {
  section.hero > .container { min-height: 460px; }
  .hero-left { padding: 40px 32px 40px 28px; }
  .hero-left h1 { font-size: clamp(24px, 3vw, 36px); }
}
#htmlpub-link-input::placeholder{color:rgba(0,0,0,0.40);}ul,ol{padding:20px;}</style><style id="nova-responsive-styles">@media (min-width: 768px) and (max-width: 1199px){
[data-nova-id="n-uj4631c"]{width:1000px!important;height:29px!important}
}
#htmlpub-link-input::placeholder{color:rgba(0,0,0,0.40);}ul,ol{padding:20px;}</style><style id="popup-premium">
/* ── OVERLAY ── */
#popup-telegram-join {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 14, 8, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#popup-telegram-join.open {
  display: flex;
  animation: overlayIn 0.25s ease;
}
@keyframes overlayIn { from { opacity:0 } to { opacity:1 } }

/* ── CARD ── */
.pop-card {
  background: rgba(255,255,255,0.97);
  border-radius: 24px;
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,255,255,0.6);
  animation: cardIn 0.32s cubic-bezier(0.16,1,0.3,1);
  scrollbar-width: thin;
}
@keyframes cardIn { from { opacity:0; transform:translateY(28px) scale(0.97) } to { opacity:1; transform:none } }

.pop-header {
  padding: 28px 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.pop-header-text h2 {
  font-size: 18px;
  font-weight: 800;
  color: #1a2412;
  line-height: 1.25;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.pop-header-text p {
  font-size: 13px;
  color: #5a6650;
  line-height: 1.6;
  max-width: 38ch;
}
.pop-close {
  width: 32px; height: 32px;
  background: #f0f2ed;
  border: none; border-radius: 50%;
  font-size: 18px; color: #5a6650;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
  line-height: 1;
}
.pop-close:hover { background: #e07520; color: #fff; }

.pop-body { padding: 20px 28px 28px; }

/* ── FORM ── */
.pop-form { display: flex; flex-direction: column; gap: 14px; }

.pop-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.pop-field { display: flex; flex-direction: column; gap: 5px; }
.pop-field label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.6px; color: #5a6650;
}
.pop-field input,
.pop-field select {
  width: 100%; padding: 12px 14px;
  background: #f7f8f5;
  border: 1.5px solid #d4daca;
  border-radius: 10px;
  font-size: 14px; color: #1a2412;
  font-family: 'Sora', sans-serif;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  outline: none;
  -webkit-appearance: none; appearance: none;
}
.pop-field input:focus,
.pop-field select:focus {
  border-color: #e07520;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(224,117,32,0.12);
}
.pop-field input.invalid { border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,0.1); }
.pop-field .err { font-size: 11px; color: #e53e3e; margin-top: 2px; display: none; }
.pop-field.has-error .err { display: block; }

/* phone row */
.phone-wrap {
  display: flex; gap: 0; border: 1.5px solid #d4daca; border-radius: 10px;
  overflow: hidden; background: #f7f8f5; transition: border-color 0.18s, box-shadow 0.18s;
}
.phone-wrap:focus-within {
  border-color: #e07520; background: #fff;
  box-shadow: 0 0 0 3px rgba(224,117,32,0.12);
}
.phone-code {
  display: flex; align-items: center; gap: 6px;
  padding: 0 10px; cursor: pointer;
  border-right: 1.5px solid #d4daca;
  background: #f0f2ed; white-space: nowrap;
  font-size: 13px; font-weight: 600; color: #1a2412;
  position: relative; min-width: 92px;
  user-select: none;
}
.phone-code select {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
  border: none; width: 100%; font-size: 14px;
}
.phone-flag { font-size: 16px; }
.phone-dial { font-size: 13px; font-weight: 700; }
.phone-caret { font-size: 9px; color: #5a6650; margin-left: 2px; }
.phone-num {
  flex: 1; border: none; outline: none;
  padding: 12px 14px; font-size: 14px; color: #1a2412;
  font-family: 'Sora', sans-serif; background: transparent;
}

/* select arrow */
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾'; position: absolute; right: 13px; top: 50%;
  transform: translateY(-50%); font-size: 12px; color: #5a6650;
  pointer-events: none;
}
.select-wrap select { padding-right: 32px; cursor: pointer; }

/* CTA */
.pop-cta {
  width: 100%; padding: 15px 20px;
  background: #1a2412; color: #fff;
  border: none; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: 'Sora', sans-serif;
  letter-spacing: -0.2px;
  transition: background 0.18s, transform 0.15s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pop-cta:hover {
  background: #e07520; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,117,32,0.35);
}
.pop-cta.loading { opacity: 0.7; pointer-events: none; }

.pop-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 12px; flex-wrap: wrap;
}
.pop-trust span {
  font-size: 11px; color: #5a6650;
  display: flex; align-items: center; gap: 5px;
}
.pop-trust svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ── SUCCESS STATE ── */
.pop-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  gap: 0;
}
.pop-success.show { display: flex; animation: cardIn 0.3s cubic-bezier(0.16,1,0.3,1); }
.pop-success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #2a7c3f, #38a057);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(42,124,63,0.28);
}
.pop-success-icon svg { width: 30px; height: 30px; }
.pop-success h3 { font-size: 20px; font-weight: 800; color: #1a2412; margin-bottom: 8px; letter-spacing: -0.3px; }
.pop-success p { font-size: 13.5px; color: #5a6650; line-height: 1.65; margin-bottom: 24px; max-width: 34ch; }
.pop-success .tg-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px 24px;
  background: #0088cc; color: #fff;
  border-radius: 12px; text-decoration: none;
  font-size: 15px; font-weight: 700; font-family: 'Sora', sans-serif;
  transition: background 0.18s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 20px;
}
.pop-success .tg-btn:hover {
  background: #006faa; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,136,204,0.35);
}
.pop-success-perks { display: flex; flex-direction: column; gap: 8px; width: 100%; margin-bottom: 20px; }
.pop-success-perks .pk {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: #1a2412; text-align: left;
  background: #edfbf2; border-radius: 8px; padding: 9px 13px;
}
.pop-success-perks .pk svg { width: 14px; height: 14px; flex-shrink: 0; }
.pop-success-footer { font-size: 11px; color: #5a6650; line-height: 1.5; }

/* ── MOBILE ── */
@media (max-width: 560px) {
  .pop-card { border-radius: 20px 20px 0 0; max-height: 95vh; }
  #popup-telegram-join { align-items: flex-end; padding: 0; }
  .pop-header { padding: 22px 20px 0; }
  .pop-body { padding: 16px 20px 24px; }
  .pop-row { grid-template-columns: 1fr; gap: 10px; }
  .pop-trust { gap: 10px; }
}
</style><style>#htmlpub-link-input::placeholder{color:rgba(0,0,0,0.40);}ul,ol{padding:20px;}