@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(6deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: .45; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.08); }
}

@keyframes sheen {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes tilt {
  0% { transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateY(0); }
  50% { transform: perspective(1200px) rotateX(3deg) rotateY(-4deg) translateY(-2px); }
  100% { transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateY(0); }
}

.floaty { animation: floaty 7s ease-in-out infinite; }
.pulse { animation: pulseGlow 5s ease-in-out infinite; }

.sheen {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.58) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: sheen 3s linear infinite;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease;
}

.tilt-card:hover {
  transform: perspective(1200px) rotateX(4deg) rotateY(-6deg) translateY(-6px) scale(1.01);
  box-shadow: 0 30px 80px rgba(15, 23, 42, .18);
}

.hero-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(2px);
  opacity: .9;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(255,255,255,.22) 18%, rgba(255,255,255,0) 34%),
    radial-gradient(circle at 50% 50%, rgba(34,197,94,.95), rgba(16,185,129,.78) 28%, rgba(5,150,105,.40) 52%, rgba(5,150,105,0) 72%),
    radial-gradient(circle at 72% 75%, rgba(245,158,11,.72), rgba(245,158,11,.18) 20%, rgba(245,158,11,0) 45%);
  box-shadow: inset -18px -28px 60px rgba(0,0,0,.15), inset 22px 18px 50px rgba(255,255,255,.22), 0 30px 70px rgba(16,185,129,.14);
}

.bg-royal {
  background:
    radial-gradient(circle at 20% 20%, rgba(34,197,94,.16), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(245,158,11,.16), transparent 18%),
    radial-gradient(circle at 50% 90%, rgba(16,185,129,.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.94));
}

.dark .bg-royal {
  background:
    radial-gradient(circle at 20% 20%, rgba(34,197,94,.16), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(245,158,11,.12), transparent 18%),
    radial-gradient(circle at 50% 90%, rgba(16,185,129,.10), transparent 24%),
    linear-gradient(180deg, rgba(2,6,23,.74), rgba(2,6,23,.96));
}

.noise {
  background-image:
    linear-gradient(rgba(15,23,42,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

.dark .noise {
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
}

.toggle-track {
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 45%, #27ae60 100%);
}

.toggle-knob {
  box-shadow: 0 8px 24px rgba(0,0,0,.20);
}

.plan-starter .sheen {
  background: linear-gradient(90deg, transparent 0%, rgba(16,185,129,.95) 50%, transparent 100%);
  background-size: 200% 100%;
}

.plan-featured .sheen {
  background: linear-gradient(90deg, transparent 0%, rgba(245,158,11,.95) 50%, transparent 100%);
  background-size: 200% 100%;
}

.plan-business .sheen {
  background: linear-gradient(90deg, transparent 0%, rgba(34,197,94,.95) 50%, transparent 100%);
  background-size: 200% 100%;
}

.test-royal {
    background: red !important;
    color: white !important;
    padding: 20px;
}

.pricing-faq-list {
    display: grid;
    gap: 16px;
}

.pricing-faq-item {
    background: #ffffff;
    border: 1px solid #dfe8e2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 34, 20, 0.05);
}

.pricing-faq-item.open {
    border-color: #27ae60;
    box-shadow: 0 16px 32px rgba(39, 174, 96, 0.12);
}

.pricing-faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 800;
    color: #153425;
}

.pricing-faq-toggle {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 174, 96, 0.10);
    color: #27ae60;
    font-size: 20px;
    font-weight: 900;
}

.pricing-faq-item.open .pricing-faq-toggle {
    background: #27ae60;
    color: #ffffff;
}

.pricing-faq-answer {
    padding: 0 22px 22px;
}

.pricing-faq-answer-inner {
    color: #4b6655;
    line-height: 1.8;
}

.pricing-faq-answer-inner p,
.pricing-faq-answer-inner ul,
.pricing-faq-answer-inner ol,
.pricing-faq-answer-inner blockquote {
    margin: 0 0 12px;
}

.pricing-faq-answer-inner a {
    color: #27ae60;
    font-weight: 700;
}

.pricing-empty-faq {
    padding: 22px;
    border: 1px dashed #d6e3da;
    border-radius: 18px;
    background: #fff;
    color: #6a826f;
    text-align: center;
    font-weight: 700;
}

.faq-editor-wrap {
    border: 1px solid #dce7de;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.faq-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    border-bottom: 1px solid #e8efea;
    background: #f7faf8;
}

.faq-tool-btn {
    min-height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid #dce7de;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

.faq-rich-editor {
    min-height: 180px;
    padding: 14px;
    outline: none;
    line-height: 1.7;
}

.faq-rich-editor-compact {
    min-height: 90px;
}

.faq-rich-editor:empty::before {
    content: 'Start typing here...';
    color: #94a79a;
}

.pricing-section-head {
    padding: 18px 24px;
    margin-bottom: 22px;
    border-bottom: 1px solid #e8edf5;
}

.pricing-section-head h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
}

