@charset "utf-8";

/* RESET & BASE -------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background: #020617;
  color: #e5e7eb;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* LAYOUT --------------------------------------------------------- */
.page-wrapper {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #0f766e, #020617 55%);
  color: #e5e7eb;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER --------------------------------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(2, 6, 23, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #020617;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #cbd5f5;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links span {
  cursor: default;
  opacity: 0.85;
}

/* main CTA button top */
.btn-buy-small {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #f97316, #fbbf24);
  color: #111827;
  box-shadow: 0 10px 30px rgba(251, 146, 60, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}

.btn-buy-small:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 16px 40px rgba(248, 113, 22, 0.6);
  filter: brightness(1.03);
}

/* HERO ----------------------------------------------------------- */
.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(15, 118, 110, 0.25);
  border: 1px solid rgba(45, 212, 191, 0.4);
  margin-bottom: 1rem;
}

.eyebrow span.badge-hot {
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #f97316;
  color: #111827;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-title span.highlight {
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #cbd5f5;
  max-width: 520px;
  margin-bottom: 1.75rem;
}

.hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.old-price {
  font-size: 0.85rem;
  color: #9ca3af;
  text-decoration: line-through;
  opacity: 0.85;
}

.new-price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.new-price strong {
  font-size: 1.8rem;
  color: #fbbf24;
}

.new-price span {
  font-size: 0.8rem;
  color: #9ca3af;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.btn-buy-main {
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #f97316, #fbbf24);
  color: #111827;
  box-shadow: 0 16px 45px rgba(248, 113, 22, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.btn-buy-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(255, 255, 255, 0.4),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn-buy-main:hover::after {
  opacity: 1;
}

.btn-buy-main:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-buy-main span.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #16a34a;
  position: relative;
}

.btn-buy-main span.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(22, 163, 74, 0.6);
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.hero-note {
  font-size: 0.8rem;
  color: #9ca3af;
  max-width: 280px;
}

/* HERO CARD ------------------------------------------------------ */
.hero-card {
  background: radial-gradient(circle at top, rgba(15, 118, 110, 0.85), #020617);
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.6rem 1.8rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.85);
  position: relative;
  overflow: hidden;
}

.hero-card-tag {
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  padding: 0.25rem 0.7rem;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-card-tag span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.hero-card-sub {
  font-size: 0.8rem;
  color: #d1fae5;
  margin-bottom: 1.2rem;
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.template-pill {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 14px;
  padding: 0.4rem 0.7rem;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.template-pill span.label {
  color: #e5e7eb;
}

.template-pill span.badge {
  font-size: 0.65rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.2);
  color: #bae6fd;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  color: #cbd5f5;
}

.hero-card-footer strong {
  color: #facc15;
}

/* SECTION: BENEFITS --------------------------------------------- */
.section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #a5b4fc;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e5e7eb;
}

.section-desc {
  font-size: 0.9rem;
  color: #9ca3af;
  max-width: 520px;
  margin: 0.4rem auto 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.6rem;
}

.benefit-card {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.benefit-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.benefit-title {
  font-size: 0.98rem;
  font-weight: 600;
}

.benefit-text {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* OFFER STRIP ---------------------------------------------------- */
.offer-strip {
  margin-top: 2rem;
  padding: 1.3rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(34, 197, 94, 0.1),
    rgba(14, 165, 233, 0.15)
  );
  border: 1px dashed rgba(74, 222, 128, 0.6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

.offer-strip strong {
  color: #bbf7d0;
}

.offer-strip .timer {
  font-weight: 600;
  color: #facc15;
}

/* FAQ ------------------------------------------------------------ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: flex-start;
}

.faq-item {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1rem 1.2rem;
  margin-bottom: 0.9rem;
}

.faq-q {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.faq-a {
  font-size: 0.84rem;
  color: #9ca3af;
}

.faq-side {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 18px;
  border: 1px solid rgba(250, 204, 21, 0.4);
  padding: 1.4rem 1.3rem;
}

.faq-side h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.faq-side p {
  font-size: 0.85rem;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.guarantee-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #bbf7d0;
  margin-top: 0.5rem;
}

.guarantee-line span.check {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* FOOTER --------------------------------------------------------- */
footer {
  padding: 2rem 0 2.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}

footer span {
  color: #9ca3af;
}

footer a {
  color: #a5b4fc;
}

/* SUCCESS CARD (DOWNLOAD PAGE) ---------------------------------- */
.card {
  max-width: 480px;
  margin: 1.75rem auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.27);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.12),
    transparent 60%
  );
  top: -90px;
  right: -100px;
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.badge-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}

h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
}

.subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 18px;
}

.amount-box {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1f5f9;
  font-weight: 600;
  color: #0f172a;
  font-size: 14px;
  margin-bottom: 22px;
}

.amount-box span.amount {
  font-size: 18px;
  color: #0ea5e9;
}

.order-info {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 18px;
}

.order-info span {
  color: #0f172a;
  font-weight: 500;
}

.btn-download {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #14b8a6);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  font-size: 13px;
  margin-bottom: 14px;
}

.btn-download span.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.12);
  font-size: 14px;
}

.btn-download:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.45);
}

.btn-download:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.35);
}

.helper-links {
  font-size: 12px;
  color: #94a3b8;
}

.helper-links a {
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 500;
}

.helper-links a:hover {
  text-decoration: underline;
}

@media (min-width: 600px) {
  .card {
    padding: 32px 34px 28px;
  }

  h1 {
    font-size: 26px;
  }
}

/* RESPONSIVE TWEAKS --------------------------------------------- */

/* Medium screens */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero {
    padding: 3.25rem 0 2.5rem;
  }

  .hero-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablets & small mobiles */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .nav {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-end;
    font-size: 0.82rem;
    gap: 1rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-price-row {
    justify-content: center;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-note {
    max-width: 100%;
    text-align: center;
  }

  .hero-grid > div:first-child {
    text-align: center;
  }

  .hero-subtitle,
  .hero-price-row,
  .hero-cta-row {
    margin-left: auto;
    margin-right: auto;
  }

  .offer-strip {
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Small mobiles */
@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .btn-buy-small {
    display: none;
  }

  .btn-buy-main {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.6rem;
  }

  .hero {
    padding-top: 3rem;
  }
}

/* Extra small mobiles */
@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-card {
    padding: 1.4rem 1.3rem;
  }

  .nav-links {
    justify-content: center;
  }

  .page-wrapper {
    padding-bottom: 1rem;
  }

  .card {
    margin: 1.25rem 0.75rem 2rem;
  }
}
