:root {
  --bg: #050510;
  --surface: #0c0c1d;
  --card: #111128;
  --accent: #7c6aff;
  --accent2: #a594fd;
  --glow: rgba(124, 106, 255, 0.25);
  --orange: #f59e0b;
  --green: #10b981;
  --green2: #34d399;
  --red: #ef4444;
  --gold: #fbbf24;
  --white: #f1f1f6;
  --gray: #7b7b99;
  --light: #b4b4cc;
  --border: rgba(124, 106, 255, 0.12);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  padding-bottom: 70px;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Unbounded", sans-serif;
  line-height: 1.15;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.grad {
  background: linear-gradient(135deg, var(--accent2), var(--green2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section {
  padding: 100px 24px;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(22px, 4.5vw, 40px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--gray);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* TOP BAR */
.top-bar {
  background: linear-gradient(90deg, var(--red), #dc2626);
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 999;
}
.top-bar b {
  color: var(--gold);
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  padding: 0 16px 12px;
  background:
    radial-gradient(ellipse at 30% -10%, rgba(124, 106, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(245, 158, 11, 0.06) 0%, transparent 40%), var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  overflow: hidden;
}
.hero-text {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s infinite;
}
.hero h1 {
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 900;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--light);
  line-height: 1.6;
  margin-bottom: 12px;
}
.hero-discount {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), #dc2626);
  font-family: "Unbounded";
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  padding: 8px 28px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.3);
}
.hero-bonus {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-bonus em {
  color: var(--green2);
  font-style: normal;
}

/* HERO PHOTO (PNG без фону на градієнті) */
.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: visible;
  min-height: 400px;
}
.hero-photo-bg {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1030 0%, #0f1a2e 50%, #0a1628 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-photo-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 13px;
  padding: 40px;
  text-align: center;
}
.photo-placeholder .icon {
  font-size: 48px;
  opacity: 0.5;
}
.photo-placeholder .label {
  font-weight: 700;
  color: var(--accent2);
  font-size: 15px;
}
.hero-stat-float {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  backdrop-filter: blur(10px);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
.hero-stat-float.s1 {
  bottom: 25%;
  left: 0;
}
.hero-stat-float.s2 {
  top: 20%;
  right: 0;
  animation-delay: 0.5s;
}
.hero-stat-float.s3 {
  bottom: 55%;
  left: 0;
  animation-delay: 1s;
}
.hero-stat-float .num {
  font-family: "Unbounded";
  font-size: 20px;
  font-weight: 800;
  color: var(--accent2);
}
.hero-stat-float .lbl {
  font-size: 10px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* BUTTONS */
.cta-btn {
  display: inline-block;
  padding: 18px 48px;
  border-radius: 14px;
  font-family: "Unbounded";
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.cta-btn.red {
  background: linear-gradient(135deg, var(--red), #dc2626);
  box-shadow: 0 6px 30px rgba(239, 68, 68, 0.3);
}
.cta-btn.accent {
  background: linear-gradient(135deg, var(--accent), #9b8aff);
  box-shadow: 0 6px 35px var(--glow);
}
.cta-btn.green {
  background: linear-gradient(135deg, var(--green), #059669);
  box-shadow: 0 6px 30px rgba(16, 185, 129, 0.3);
}
.cta-btn.orange {
  background: linear-gradient(135deg, var(--orange), #d97706);
  box-shadow: 0 6px 30px rgba(245, 158, 11, 0.3);
}
.cta-btn:hover {
  transform: translateY(-3px);
}
.cta-small {
  font-size: 12px;
  color: var(--gray);
  margin-top: 10px;
}

/* COUNTDOWN */
.cd-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 20px 0 30px;
}
.cd-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 68px;
  padding: 12px 0;
  text-align: center;
}
.cd-num {
  font-family: "Unbounded";
  font-size: 24px;
  font-weight: 800;
  color: var(--accent2);
}
.cd-lbl {
  font-size: 10px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* OCEAN */
.ocean {
  background: var(--surface);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
  text-align: center;
}
.ocean h2 {
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 800;
  margin-bottom: 16px;
}
.ocean p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 14px;
}
.ocean .hl {
  font-family: "Unbounded";
  font-size: 18px;
  font-weight: 800;
  color: var(--green2);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  padding: 16px 28px;
  display: inline-block;
  margin-top: 12px;
}

/* WHOM */
.whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.whom-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.3s;
}
.whom-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.whom-card strong {
  color: var(--accent2);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.price-card:hover {
  transform: translateY(-6px);
}
.price-card.popular {
  border: 2px solid var(--accent);
  box-shadow: 0 0 60px rgba(124, 106, 255, 0.12);
  transform: scale(1.03);
}
.price-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
}
.price-card.vip {
  border-color: var(--orange);
}
.pop-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #9b8aff);
  padding: 7px 24px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.price-name {
  font-family: "Unbounded";
  font-size: 20px;
  font-weight: 800;
  margin: 12px 0 6px;
}
.price-desc {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}
.price-old {
  font-size: 20px;
  color: var(--gray);
  text-decoration: line-through;
  font-weight: 600;
}
.price-disc {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--red);
  padding: 3px 10px;
  border-radius: 6px;
}
.price-amount {
  font-family: "Unbounded";
  font-size: 46px;
  font-weight: 900;
  margin: 8px 0;
}
.price-split {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
}
.price-features {
  text-align: left;
  margin-bottom: 28px;
}
.price-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.price-feat:last-child {
  border-bottom: none;
}
.feat-y {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.feat-n {
  color: var(--gray);
  opacity: 0.3;
  flex-shrink: 0;
}
.price-btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-family: "Unbounded";
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s;
}
.btn-lite {
  background: linear-gradient(135deg, var(--green), #059669);
}
.btn-pro {
  background: linear-gradient(135deg, var(--accent), #9b8aff);
}
.btn-vip {
  background: linear-gradient(135deg, var(--orange), #d97706);
}
.price-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}
.pricing-note {
  text-align: center;
  color: var(--gray);
  font-size: 12px;
  margin-top: 24px;
}

/* FEATURES */
.fish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.fish-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.fish-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.fish-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.fish-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.fish-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* CASES */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.case-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.case-ava {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  overflow: hidden;
}
.case-name {
  font-weight: 700;
  font-size: 15px;
}
.case-niche {
  font-size: 12px;
  color: var(--gray);
}
.case-result {
  font-family: "Unbounded";
  font-size: 18px;
  font-weight: 800;
  color: var(--green2);
  margin-bottom: 10px;
}
.case-text {
  font-size: 13px;
  color: var(--light);
  line-height: 1.6;
  font-style: italic;
}

/* SPEAKER */
.speaker-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
}
.speaker-photo {
  width: 180px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.speaker-info h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}
.speaker-info .tag {
  font-size: 13px;
  color: var(--accent2);
  font-weight: 600;
  margin-bottom: 14px;
}
.speaker-info p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
.speaker-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.sp-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  min-width: 90px;
}
.sp-num {
  font-family: "Unbounded";
  font-size: 18px;
  font-weight: 800;
  color: var(--accent2);
}
.sp-lbl {
  font-size: 10px;
  color: var(--gray);
  margin-top: 2px;
}

/* FAQ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.faq-q {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s;
}
.faq-q:hover {
  color: var(--accent2);
}
.faq-q::after {
  content: "+";
  font-size: 22px;
  color: var(--accent2);
  transition: 0.3s;
  flex-shrink: 0;
  margin-left: 14px;
}
.faq-item.open .faq-q::after {
  content: "\2212";
}
.faq-a {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-a {
  display: block;
}

.final-cta {
  text-align: center;
  padding: 120px 24px 100px;
  background: radial-gradient(ellipse at 50% 100%, rgba(124, 106, 255, 0.12) 0%, transparent 50%);
}
.final-cta h2 {
  font-size: clamp(22px, 4.5vw, 38px);
  font-weight: 900;
  margin-bottom: 18px;
}
.final-cta p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
footer {
  text-align: center;
  padding: 32px;
  color: var(--gray);
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (min-width: 769px) {
  .hero {
    min-height: 100vh;
    padding: 80px 24px 60px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 0 !important;
    max-height: none;
    padding: 0 16px 12px;
    align-items: flex-start !important;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 6px;
  }
  .hero-photo-bg::after {
    display: none;
  }

  .hero-photo {
    order: -1;
    margin: -180px 0 0 0;
    padding: 0;
  }
  .hero-badge {
    margin-top: 0;
  }
  .hero-text {
    order: 2;
  }
  .hero-photo-bg {
    max-width: 180px;
    margin: 0 auto;
    aspect-ratio: auto;
    height: 200px;
    border-radius: 16px;
  }
  .hero-stat-float {
    display: none;
  }
  .hero-badge {
    margin-bottom: 8px;
    padding: 6px 14px;
    font-size: 10px;
  }
  .hero h1 {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .hero-sub {
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 1.4;
  }
  .hero-discount {
    font-size: 20px;
    padding: 6px 18px;
    margin-bottom: 12px;
  }
  .hero-bonus {
    padding: 10px 16px;
    font-size: 12px;
    margin-bottom: 16px;
  }
  .cd-wrap {
    margin: 6px 0 10px;
  }
  .cd-box {
    width: 52px;
    padding: 8px 0;
  }
  .cd-num {
    font-size: 18px;
  }
  .cta-btn {
    padding: 16px 36px;
    font-size: 14px;
    width: 100%;
  }
  .cta-small {
    font-size: 11px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.popular {
    transform: none;
  }
  .price-card.popular:hover {
    transform: translateY(-6px);
  }
  .speaker-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .speaker-photo {
    margin: 0 auto;
  }
  .speaker-stats {
    justify-content: center;
  }
}

@media (min-width: 769px) {
  .hero {
    min-height: 100vh;
    padding: 80px 24px 60px;
  }
}
@media (max-width: 768px) {
  .hero-discount {
    display: none;
  }
  .hero-bonus {
    display: none;
  }
  p[style*="чек-лист"] {
    display: none;
  }
}

/* POPUP FORM */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.show {
  display: flex;
}
.popup-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  color: #1a1a1a;
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  background: none;
  border: none;
  font-weight: 700;
}
.popup-close:hover {
  color: #333;
}
.popup-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}
.popup-emoji {
  font-size: 36px;
  margin-bottom: 12px;
}
.popup-label {
  font-size: 14px;
  color: #666;
  margin: 16px 0 8px;
  text-align: left;
}
.popup-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}
.popup-prefix {
  padding: 12px 14px;
  font-size: 15px;
  color: #333;
  font-weight: 600;
  border-right: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.popup-prefix img {
  width: 20px;
  height: 14px;
}
.popup-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px;
  font-size: 16px;
  outline: none;
  font-family: inherit;
}
.popup-btn {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: #38bdf8;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
}
.popup-btn:hover {
  background: #0ea5e9;
  transform: translateY(-1px);
}
.popup-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.popup-note {
  font-size: 11px;
  color: #999;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .price-card {
    padding: 20px 16px !important;
  }
  .price-name {
    font-size: 16px !important;
    margin: 8px 0 4px !important;
  }
  .price-sub {
    font-size: 11px !important;
  }
  .price-row {
    margin: 6px 0 !important;
  }
  .price-row .price-old {
    font-size: 14px !important;
  }
  .price-big {
    font-size: clamp(32px, 8vw, 40px) !important;
  }
  .price-split {
    font-size: 11px !important;
    margin-bottom: 10px !important;
  }
  .price-feat {
    padding: 6px 0 !important;
    font-size: 12px !important;
  }
  .price-feat b {
    font-size: 12px !important;
  }
  .price-btn {
    padding: 12px 20px !important;
    font-size: 13px !important;
    margin-top: 12px !important;
  }
  .pop-badge {
    font-size: 9px !important;
    padding: 5px 16px !important;
  }
  .pricing-grid {
    gap: 14px !important;
  }
}

/* STICKY CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  opacity: 0;
}
.sticky-cta.show {
  transform: translateY(0);
  opacity: 1;
}
.sticky-cta .sticky-text {
  font-size: 14px;
  color: var(--light);
  font-weight: 600;
}
.sticky-cta .sticky-text span {
  color: var(--green2);
  font-weight: 800;
}
.sticky-cta .sticky-btn {
  background: linear-gradient(135deg, var(--red), #dc2626);
  color: #fff;
  padding: 12px 32px;
  border-radius: 12px;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.sticky-cta .sticky-btn:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .sticky-cta {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
  }
  .sticky-cta .sticky-text {
    font-size: 12px;
  }
  .sticky-cta .sticky-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
}

fieldset.hidden-fields-container {
    opacity: 0;
}

.sticky-cta.show{
  min-height: 60px;
}