:root {
  --bg: #fff7fb;
  --bg-2: #f5f0ff;
  --primary: #7c3aed;
  --primary-2: #ec4899;
  --primary-3: #06b6d4;
  --gold: #f4b740;
  --dark: #21162f;
  --muted: #6b6178;
  --white: #ffffff;
  --line: rgba(124, 58, 237, .14);
  --shadow: 0 24px 70px rgba(42, 20, 66, .15);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--dark);
  background:
    radial-gradient(circle at 0 0, rgba(236, 72, 153, .18), transparent 34rem),
    radial-gradient(circle at 100% 0, rgba(6, 182, 212, .13), transparent 30rem),
    linear-gradient(180deg, var(--bg), #fff);
  line-height: 1.68;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1160px, calc(100% - 34px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.sparkle-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-2), var(--gold));
  opacity: .2;
  animation: sparkleFloat 9s ease-in-out infinite;
}

.sparkle:nth-child(1) { left: 7%; top: 17%; animation-delay: 0s; }
.sparkle:nth-child(2) { left: 78%; top: 15%; animation-delay: 1.4s; width: 16px; height: 16px; }
.sparkle:nth-child(3) { left: 88%; top: 62%; animation-delay: 2.6s; }
.sparkle:nth-child(4) { left: 14%; top: 76%; animation-delay: 3.8s; width: 18px; height: 18px; }
.sparkle:nth-child(5) { left: 52%; top: 42%; animation-delay: 5s; width: 12px; height: 12px; }

@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: .18; }
  50% { transform: translateY(-28px) scale(1.45); opacity: .42; }
}

.navbar-wrap {
  position: sticky;
  top: 14px;
  z-index: 30;
  padding: 14px 0 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(124, 58, 237, .11);
  box-shadow: 0 14px 34px rgba(44, 22, 71, .10);
  backdrop-filter: blur(18px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo img,
.site-logo-img {
  width: auto;
  height: 48px;
  max-width: 185px;
  object-fit: contain;
}

.logo-text strong {
  display: block;
  line-height: 1.05;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.logo-text span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #5e536d;
  font-weight: 800;
  font-size: .88rem;
  padding: 9px 11px;
  border-radius: 999px;
  transition: .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: #f2eaff;
}

.nav-cta {
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-2)) !important;
  box-shadow: 0 12px 26px rgba(124, 58, 237, .24);
}

.hero {
  padding: 88px 0 70px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-weight: 900;
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(44, 22, 71, .07);
}

.hero h1,
.legal-hero h1 {
  margin: 18px 0;
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.075em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-2), var(--primary-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p,
.legal-hero p {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 650px;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 34px rgba(124, 58, 237, .25);
}

.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-3px);
}

.btn-ghost {
  color: var(--primary);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 12px 25px rgba(44, 22, 71, .07);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: #5e536d;
  font-weight: 800;
  font-size: .92rem;
}

.hero-points span {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.phone {
  width: min(330px, 82vw);
  border-radius: 42px;
  padding: 13px;
  background: #23172f;
  box-shadow: 0 30px 80px rgba(44, 22, 71, .30);
  transform: rotate(-4deg);
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-16px) rotate(-1.5deg); }
}

.phone-screen {
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #fff3f9);
  min-height: 560px;
}

.invite-cover {
  height: 228px;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.55), transparent 26%),
    linear-gradient(135deg, #6d28d9, #ec4899 58%, #f4b740);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.invite-cover::before,
.invite-cover::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, .30);
  border-radius: 50%;
}

.invite-cover::before { left: -60px; top: -50px; }
.invite-cover::after { right: -70px; bottom: -70px; }

.invite-cover small {
  display: block;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: .9;
}

.invite-cover h3 {
  margin: 10px 0;
  font-family: Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
}

.screen-body {
  padding: 18px;
}

.mini-card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(124, 58, 237, .10);
  box-shadow: 0 12px 24px rgba(44, 22, 71, .08);
  padding: 14px;
  margin-bottom: 12px;
}

.progress-line {
  height: 10px;
  border-radius: 999px;
  background: #f0e7ff;
  overflow: hidden;
  margin-top: 10px;
}

.progress-line span {
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: 999px;
  animation: fillLine 2.8s ease infinite alternate;
}

@keyframes fillLine {
  from { width: 42%; }
  to { width: 86%; }
}

.floating-panel {
  position: absolute;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 20px 45px rgba(44, 22, 71, .16);
  backdrop-filter: blur(14px);
  animation: panelFloat 5s ease-in-out infinite;
}

.panel-a {
  top: 58px;
  left: 0;
  width: 190px;
}

.panel-b {
  right: 0;
  bottom: 90px;
  width: 210px;
  animation-delay: 1.2s;
}

@keyframes panelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.floating-panel strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
}

.floating-panel span {
  color: var(--muted);
  font-size: .9rem;
}

section {
  padding: 76px 0;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}

.section-head .mini {
  color: var(--primary);
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
}

.section-head h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.features-grid,
.why-grid,
.step-wrap,
.payments-grid,
.testimonials-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.why-grid,
.step-wrap,
.payments-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.faq-grid {
  grid-template-columns: 1fr 1fr;
}

.feature-card,
.why-card,
.step,
.template-card,
.payment-card,
.testimonial-card,
.faq-item,
.legal-card {
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(44, 22, 71, .08);
  backdrop-filter: blur(14px);
}

.feature-card,
.why-card,
.testimonial-card,
.faq-item {
  padding: 24px;
}

.feature-card,
.why-card,
.template-card,
.payment-card {
  transition: .25s ease;
}

.feature-card:hover,
.why-card:hover,
.template-card:hover,
.payment-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 55px rgba(44, 22, 71, .14);
}

.icon,
.step-icon {
  width: 54px;
  height: 54px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f5edff, #fff0f7);
  color: var(--primary);
  font-size: 1.55rem;
  margin-bottom: 16px;
}

.step {
  position: relative;
  padding: 28px 24px;
  overflow: hidden;
  counter-increment: step;
}

.step-wrap {
  counter-reset: step;
}

.step::before {
  content: counter(step);
  position: absolute;
  right: 18px;
  top: 10px;
  font-size: 5rem;
  line-height: 1;
  font-weight: 950;
  color: rgba(124, 58, 237, .08);
}

.step-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 14px 26px rgba(124, 58, 237, .20);
}

.feature-card h3,
.why-card h3,
.step h3,
.template-card h3,
.payment-card h3,
.testimonial-card h3,
.faq-item h3 {
  margin: 0 0 8px;
  letter-spacing: -.025em;
  font-size: 1.1rem;
}

.feature-card p,
.why-card p,
.step p,
.template-card p,
.payment-card p,
.testimonial-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}

.template-box {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 26px;
  align-items: center;
}

.template-card {
  padding: 28px;
  overflow: hidden;
  position: relative;
}

.template-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,58,237,.15), rgba(236,72,153,.13));
}

.template-preview {
  min-height: 330px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 30%),
    linear-gradient(135deg, #7c3aed, #ec4899 60%, #f4b740);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  padding: 30px;
  animation: templateFloat 6s ease-in-out infinite;
}

@keyframes templateFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.template-preview small {
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 900;
}

.template-preview h3 {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 3.2rem;
  margin: 10px 0;
}

.dashboard-section {
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.24), transparent 22rem),
    linear-gradient(135deg, #20162f, #5b21b6 58%, #db2777);
  color: #fff;
  padding: 52px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 28px 80px rgba(44, 22, 71, .24);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 36px;
}

.dashboard-section h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.dashboard-section p {
  color: rgba(255, 255, 255, .78);
  margin: 0 0 22px;
}

.dashboard-mock {
  border-radius: 28px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .19);
  padding: 18px;
  backdrop-filter: blur(12px);
}

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

.dash-box,
.dash-list {
  background: rgba(255, 255, 255, .92);
  color: var(--dark);
}

.dash-box {
  border-radius: 20px;
  padding: 16px;
}

.dash-box strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
}

.dash-list {
  border-radius: 22px;
  padding: 18px;
}

.dash-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(124, 58, 237, .12);
  color: var(--muted);
}

.dash-list div:last-child {
  border-bottom: 0;
}

.payment-card {
  min-height: 132px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.payment-img {
  width: 92px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(124, 58, 237, .12);
  border-radius: 16px;
  padding: 10px;
  flex: 0 0 auto;
  box-shadow: 0 10px 22px rgba(44, 22, 71, .07);
}

.payment-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px dashed rgba(124, 58, 237, .28);
  color: var(--muted);
  text-align: center;
  font-size: .94rem;
}

.payment-note code,
.section-head code {
  background: #f3eaff;
  color: var(--primary);
  border-radius: 8px;
  padding: 2px 6px;
  font-size: .88em;
}

.quote {
  position: absolute;
  right: 22px;
  top: 14px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(124, 58, 237, .10);
  font-family: Georgia, serif;
}

.testimonial-card {
  position: relative;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-weight: 900;
}

.final-cta {
  text-align: center;
  padding: 76px 30px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,.35), transparent 20rem),
    linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 30px 80px rgba(124, 58, 237, .25);
  position: relative;
  overflow: hidden;
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.final-cta p {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, .82);
}

.final-cta .btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--primary);
}

.footer {
  margin-top: 78px;
  padding: 54px 0 26px;
  background: #160f22;
  color: rgba(255, 255, 255, .72);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr .9fr;
  gap: 28px;
  margin-bottom: 34px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 50px;
  max-width: 190px;
  object-fit: contain;
}

.footer-about p {
  margin: 0;
  max-width: 430px;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}

.footer-col a,
.footer-col span {
  display: block;
  color: rgba(255, 255, 255, .72);
  margin: 8px 0;
  font-size: .95rem;
}

.footer-col a:hover {
  color: #fff;
}

.copyright {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  text-align: center;
  color: rgba(255, 255, 255, .56);
  font-size: .92rem;
}

.chatbot {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  font-family: inherit;
}

.chat-toggle {
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 20px 45px rgba(124, 58, 237, .33);
  cursor: pointer;
  font-size: 1.55rem;
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.chat-window {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: min(360px, calc(100vw - 34px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(44, 22, 71, .24);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(.92) translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: .24s ease;
}

.chatbot.open .chat-window {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-head {
  padding: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.chat-head strong {
  display: block;
}

.chat-head span {
  font-size: .84rem;
  opacity: .86;
}

.chat-close {
  border: 0;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 900;
}

.chat-body {
  padding: 16px;
  max-height: 330px;
  overflow: auto;
  background: #fffafd;
}

.message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: .92rem;
  margin-bottom: 10px;
}

.bot {
  background: #f1e9ff;
  color: #39234f;
  border-bottom-left-radius: 6px;
}

.user {
  margin-left: auto;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  border-bottom-right-radius: 6px;
}

.chat-options {
  padding: 12px 16px 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: #fff;
}

.chat-options button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 850;
  cursor: pointer;
  font-size: .82rem;
}

.legal-hero {
  padding: 72px 0 34px;
  text-align: center;
}

.legal-hero p {
  margin-inline: auto;
}

.legal-shell {
  padding: 30px 0 80px;
}

.legal-card {
  padding: clamp(24px, 4vw, 48px);
  max-width: 980px;
  margin: auto;
}

.legal-section {
  padding: 22px 0;
  border-bottom: 1px solid rgba(124, 58, 237, .10);
}

.legal-section:last-child {
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 8px;
  color: var(--primary);
  letter-spacing: -.025em;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section p {
  margin: 0;
}

.legal-section ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: .7s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .hero,
  .template-box,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .features-grid,
  .why-grid,
  .step-wrap,
  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .navbar {
    border-radius: 26px;
    align-items: flex-start;
  }

  .logo-text span {
    display: none;
  }

  .logo img,
  .site-logo-img {
    height: 42px;
    max-width: 150px;
  }

  .hero {
    padding: 42px 0 46px;
  }

  .hero h1,
  .legal-hero h1 {
    font-size: clamp(2.5rem, 16vw, 4.2rem);
  }

  .hero-visual {
    min-height: 470px;
  }

  .floating-panel {
    display: none;
  }

  .phone {
    width: min(300px, 88vw);
  }

  .phone-screen {
    min-height: 510px;
  }

  section {
    padding: 54px 0;
  }

  .features-grid,
  .why-grid,
  .step-wrap,
  .payments-grid,
  .testimonials-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-section {
    padding: 34px 20px;
    border-radius: 28px;
  }

  .dash-row {
    grid-template-columns: 1fr;
  }

  .payment-card {
    min-height: 112px;
  }
}

@media (max-width: 420px) {
  .hero-actions .btn {
    width: 100%;
  }

  .chatbot {
    right: 14px;
    bottom: 14px;
  }
}


.template-embed-card{
  background:rgba(255,255,255,.88);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
  overflow:hidden;
}

.template-embed-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
}

.template-embed-top h3{
  margin:14px 0 6px;
  font-size:clamp(1.45rem,3vw,2.2rem);
  line-height:1.05;
  letter-spacing:-.04em;
}

.template-embed-top p{
  margin:0;
  color:var(--muted);
}

.template-embed-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.template-frame-wrap{
  position:relative;
  width:100%;
  height:920px;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(124,58,237,.14);
  box-shadow:0 18px 45px rgba(44,22,71,.10);
}

.template-frame{
  width:100%;
  height:100%;
  border:0;
  display:block;
  background:#fff;
}

@media(max-width:720px){
  .template-embed-card{
    padding:16px;
  }

  .template-embed-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .template-embed-actions,
  .template-embed-actions .btn{
    width:100%;
  }

  .template-frame-wrap{
    height:760px;
    border-radius:20px;
  }
}



/* Revisi metode pembayaran: tampilkan logo saja tanpa kotak */
#pembayaran .payments-grid{
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}

#pembayaran .payment-card{
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

#pembayaran .payment-card:hover{
  transform: none;
  box-shadow: none;
}

#pembayaran .payment-card div{
  display: none;
}

#pembayaran .payment-img{
  width: 150px;
  height: 72px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media(max-width: 720px){
  #pembayaran .payments-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  #pembayaran .payment-img{
    width: 130px;
    height: 64px;
  }
}



/* Tombol WhatsApp pada chatbot */
.chat-options .wa-agent-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:0;
  background:linear-gradient(135deg,#16a34a,#22c55e);
  color:#fff;
  border-radius:999px;
  padding:11px 14px;
  font-weight:900;
  font-size:.88rem;
  box-shadow:0 12px 26px rgba(22,163,74,.22);
  transition:.25s ease;
}

.chat-options .wa-agent-btn::before{
  content:"🟢";
}

.chat-options .wa-agent-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(22,163,74,.30);
}
