:root {
  --primary: #8b5cff;
  --primary-bright: #a855ff;
  --secondary: #355fbd;
  --bg-dark: #0f1016;
 --bg-card: rgba(255,255,255,0.04);
--bg-card-soft: rgba(255,255,255,0.06);
  --text-light: #f4f1ff;
  --text-muted: #c9c7d1;
  --border-soft: rgba(255,255,255,0.15);
  --purple-glow: rgba(139,92,255,0.45);
  --gradient: linear-gradient(135deg, #5a2fb6 0%, #385fbd 100%);
}

/* =========================
   Reset + Base
========================= */
html {
  height: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #0f1020;
}

body {
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  margin: 0;
  line-height: 1.65;
  min-height: 100vh;
  background:
    linear-gradient(
      135deg,
      #0f1020 0%,
      #1a1430 25%,
      #241545 50%,
      #141d3f 75%,
      #0c1328 100%
    );
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  padding-top: 90px;
  overflow-x: hidden;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(
      circle at 20% 15%,
      rgba(177,76,255,0.22),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(75,180,255,0.18),
      transparent 35%
    );

  z-index: -1;
}

.vp-about-page,
.vp-admin-page {
  background: transparent;
}
a {
  text-decoration: none;
}

iframe[src*="youtube.com"] {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}
ul {
  color:#fff;
}

/* =========================
   Top Menu / AppMill Header
========================= */
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#site-menu {
  background: rgba(12, 13, 20, 0.88);
  backdrop-filter: blur(18px);
  background-size: 400% 400%;
  border-bottom: 1px solid var(--border-soft);
  animation: gradient-shift 15s ease infinite;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  color: #fff;
  padding: 0;
}

.vstats-top-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 2rem;
  background: transparent;
  margin: 0 auto;
  box-sizing: border-box;
}
.vstats-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.appmill-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.appmill-logo {
  height: 36px;
  width: auto;
  display: block;
}

.brand-tagline {
  font-size: 11px;
  color: #cfd8e3;
  margin-top: 2px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.vstats-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.vstats-nav-links li {
  display: inline-block;
}

.vstats-nav-links a {
  color: #b14cff;
  padding: 0.5rem 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  font-weight: 500;
  display: inline-block;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0);
}

.vstats-nav-links a:hover,
.vstats-nav-links a.active {
  color: #ffffff;
  text-shadow: 0 0 12px var(--purple-glow);
}
.vstats-nav-links a.active {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 5px #4bb4ff;
}

.vstats-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.vstats-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.vstats-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.vstats-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.vstats-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.header-plugin-btn {
  background: linear-gradient(135deg, #8b5cff, #b14cff);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 30px rgba(139,92,255,0.28);
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
  margin:0;
}

.header-plugin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(108, 99, 255, 0.35);
  color: #fff;
}

/* =========================
   Header / Intro
========================= */

.header {
  max-width: 980px;
  margin: 50px auto 0;
  padding: 70px 24px 40px;
  text-align: center;
  color: var(--text-light);
}

.header-logo {
  display: block;
  margin: 0 auto 16px;
  max-width: 180px; /* adjust size here */
  width: 100%;
  height: auto;
}
.header h1 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin: 18px 0;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.25rem;
  color: var(--text-muted);
}
.vp-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 14px 0 18px;
}
.vp-title-logo {
  width: clamp(58px, 9vw, 96px);
  height: auto;
  flex: 0 0 auto;
}
.vp-subtitle {
  display: block;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  line-height: 1;
  margin: 14px 0 18px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.vp-content-section {
  max-width: 1208px;
  margin: 40px auto 90px;
  padding: 0 20px;
}

.vp-policy-content {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035)),
    rgba(12, 13, 20, 0.32);
  border: 1px solid rgba(190,150,255,0.22);
  border-radius: 28px;
  padding: 44px;
  box-shadow:
    0 26px 70px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.vp-policy-content h2 {
  color: #fff;
  font-size: 1.55rem;
  margin: 34px 0 12px;
}

.vp-policy-content h2:first-child {
  margin-top: 0;
}

.vp-policy-content p,
.vp-policy-content li {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.vp-policy-content ul {
  margin: 14px 0 24px;
  padding-left: 24px;
}

.vp-policy-content a {
  color: #d8c7ff;
  font-weight: 700;
}

.vp-effective-date {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(139,92,255,0.16);
  border: 1px solid rgba(139,92,255,0.35);
  color: #d8c7ff;
}

.section-header {
  margin: 0 -24px 30px;
  padding: 22px 24px;

  border-top-left-radius: 22px;
  border-top-right-radius: 22px;

   background:
    linear-gradient(
      135deg,
      #b14cff 0%,
      #8b5cff 40%,
      #4bb4ff 100%
    );

  color: #fff;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-header img {
  display: block;
  margin: 0 auto 10px;
  max-width: 80px;   
  width: 100%;
  height: auto;
}

.section-header h3 {
  margin: 0;
  font-size: 1.4rem;
}
/* =========================
   Hero
========================= */
h2 {
  color: #fff;
}

.hero,
.hero_thankyou {
  max-width: 980px;
  margin: 42px auto 70px;
  padding: 54px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
    var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.06);
  text-align: center;
}

.hero_thankyou {
  color: #fff;
}

.hero_thankyou a {
  color: #fff;
}

.hero img {
  width: 100%;
  max-width: 650px;
  border-radius: 10px;
  margin: 20px 0 30px;
}

.hero .buttons {
  margin-top: 25px;
}

.hero a.button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  transition: all 0.2s ease;
}

.hero a.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(108, 99, 255, 0.3);
}

.hero a.secondary {
  background: #eee;
  color: var(--text-dark);
  margin-left: 10px;
}
.hero .header-logo {
  max-width: 30%;
  width: auto;      
  height: auto;
  margin: 0 auto 10px;
  display: block;
  filter: drop-shadow(0 18px 35px rgba(139,92,255,0.35));
}
.hero a.secondary:hover {
  background: #ddd;
}

.introtext {
  color: #fff;
}

.imagecontainer {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.imagecontainer img {
  max-width: 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}

/* =========================
   Main Sections
========================= */
.section {
  max-width: 1200px;
  margin: 80px auto;
}

.section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

.section.cta {
  text-align: center;
  padding: 60px 20px 100px;
}

.section.cta p {
  color: var(--text-muted);
}

.section.cta a.button {
  margin-top: 20px;
}

/* =========================
   Features
========================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature {
   background:
    linear-gradient(
      180deg,
      rgba(168,85,255,0.12),
      rgba(255,255,255,0.04)
    );
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  color: var(--text-light);
  border-radius: 26px;
  padding: 32px 26px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.28);
}

.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,255,0.65);
  box-shadow: 0 28px 70px rgba(139,92,255,0.18);
}

.feature h3 {
  color: #fff;
  font-size: 1.2rem;
}

.feature p {
  color: var(--text-muted);
}


/* =========================
   Plans
========================= */
.plan-fees {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.plan-box {
  flex: 0 1 260px;
  min-width: 220px;
  max-width: 300px;
  padding: 22px;
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .25s ease;

   background:
    linear-gradient(
      180deg,
      rgba(168,85,255,0.32),
      rgba(59,130,246,0.18)
    );

  backdrop-filter: blur(20px);

  color: var(--text-dark);

  border: 1px solid rgba(139,92,255,0.25);

  box-shadow:
    0 20px 50px rgba(90,60,255,0.15),
    inset 0 1px 0 rgba(255,255,255,0.35);
}
   
.plan-box.highlight {
  background: var(--card-blue);
  color: #fff;
  box-shadow: 0 12px 30px rgba(3, 169, 244, 0.28);
  border: 3px solid #fff;
  z-index: 5;
}

.plan-box:hover {
  transform: translateY(-6px);

  background:
    linear-gradient(
      180deg,
      rgba(139,92,255,0.30),
      rgba(79,70,229,0.18)
    );

  border-color: rgba(139,92,255,0.45);

  box-shadow:
    0 30px 70px rgba(90,60,255,0.25),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
.plan-box::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(139,92,255,0.35),
    transparent 70%
  );

  pointer-events: none;
}

.plan-box h3,
.plan-box .price,
.plan-box .license {
  margin: 0;
  color: inherit;
}

.plan-box .price {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
}

.plan-box .license {
  font-size: 14px;
  margin-bottom: 12px;
}

.plan-box ul {
  text-align: left;
  padding-left: 18px;
  color: inherit;
  line-height: 1.6;
}

.plan-box .btn,
.plan-box .btn-basic {
  display: inline-block;
  padding: 10px 16px;
  margin-top: 12px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--secondary);
  color: #fff;
}

.btn-basic {
  background: linear-gradient(90deg, #4b9eff, #6c63ff);
  color: #fff;
}

.btn-basic:hover {
  background: linear-gradient(90deg, #6c63ff, #4b9eff);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 158, 255, 0.4);
  color: #fff;
}

/* =========================
   Tables
========================= */
.features-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.features-table th,
.features-table td {
  border: 1px solid #dcebf7;
  padding: 12px;
  text-align: center;
}

.features-table th:first-child,
.features-table td:first-child {
  text-align: left;
  padding-left: 16px;
}

.features-table thead th {
  background-color: #000033;
  color: #fff;
}

.features-table thead th:first-child {
  border-top-left-radius: 12px;
}

.features-table thead th:last-child {
  border-top-right-radius: 12px;
}

.features-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.features-table tbody tr:nth-child(even) {
  background-color: #eaf6ff;
}

.icon.check {
  color: var(--card-blue);
  font-weight: bold;
}

.icon.cross {
  color: red;
  font-weight: bold;
}

/* =========================
   FAQ
========================= */
.faq-section {
  padding: 20px 20px 90px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-container {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035)),
    rgba(12, 13, 20, 0.32);
  padding: 34px;
  border: 1px solid rgba(190,150,255,0.22);
  border-radius: 28px;
  box-shadow:
    0 26px 70px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.faq-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.faq-intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 28px;
}

.faq-intro a {
  color: #d8c7ff;
  font-weight: 700;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  gap: 18px;
}

.faq-question:hover {
  color: #d8c7ff;
}

.faq-icon {
  font-size: 1.4rem;
  color: #d8c7ff;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 20px;
  font-size: 1rem;
  color: var(--text-muted);
}

.faq-answer code {
  background: rgba(139,92,255,0.18);
  border: 1px solid rgba(139,92,255,0.30);
  border-radius: 6px;
  color: #fff;
  padding: 2px 6px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* =========================
   Shared Footer
========================= */

.site-footer {
  margin-top: auto;
  padding-top: 20px;
  padding-bottom:20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
   background: rgba(12, 13, 20, 0.88);
  backdrop-filter: blur(18px);
  background-size: 400% 400%;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-left:30px;
}

.footer-inner p {
  font-size: 0.85rem;
}

.footer-center p {
  margin: 0;
  font-size: 0.85rem;
  text-align: center;
  color: #aab0c0;
}
.footer-center a {
  color: #fff;
}
.footer-center hover {
  text-decoration: underline;
}
.footer-right {
  text-align: right;
  margin-right:20px;
}

.footer-right p {
  font-size: 0.85rem;
  color: #aab0c0;
}


/* =========================
   Scroll To Top
========================= */
#scrollToTopBtn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #8b5cff, #b14cff);
  box-shadow: 0 12px 30px rgba(139,92,255,0.35);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

#scrollToTopBtn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(41, 182, 246, 0.45);
}

#scrollToTopBtn:active {
  transform: translateY(0) scale(0.96);
}
.vp-hero {
  max-width: 1180px;
  margin: 70px auto 50px;
  padding: 0;
  display: block;
  overflow: hidden;
  border-radius: 34px;

  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(190,150,255,0.24);

  box-shadow:
    0 34px 90px rgba(0,0,0,0.42),
    0 0 70px rgba(139,92,255,0.16),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.vp-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.vp-hero-content {
  padding: 48px 56px 56px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.vp-pill {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(139, 92, 255, 0.16);
  color: #d8c7ff;
  border: 1px solid rgba(139, 92, 255, 0.35);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.vp-hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  margin: 0 0 18px;
  color: #fff;
  letter-spacing: -0.06em;
}
.vp-hero h2 {
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.15;
  color: #f4f1ff;
  letter-spacing: -0.035em;
}
.vp-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #d8d2e8;
  font-size: 1.15rem;
}

.vp-text-card p,
.vp-showcase p {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.vp-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.vp-secondary-link {
  color: #d8c7ff;
  font-weight: 700;
}

.vp-hero-visual {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.vp-hero-visual > img:not(.vp-floating-logo) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
  filter: saturate(1.05) contrast(1.05);
}

.vp-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90,47,182,0.55), rgba(53,95,189,0.2));
}

.vp-floating-logo {
  position: absolute;
  z-index: 2;
  width: 170px;
  top: 28px;
  left: 28px;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,0.45));
}

.vp-strip {
  max-width: 1200px;
  margin: 20px auto 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 10px;
  background: transparent;
  backdrop-filter: blur(20px);

  border: 0;

  box-shadow: none;
}

.vp-strip div {
  padding: 24px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
}

.vp-strip strong,
.vp-strip span {
  display: block;
}

.vp-strip strong {
  color: #fff;
  font-size: 1.05rem;
}

.vp-strip span {
  color: var(--text-muted);
  margin-top: 4px;
}

.vp-split,
.vp-showcase {
  max-width: 1200px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.vp-image-card,
.vp-text-card,
.vp-showcase {
  border-radius: 32px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 26px 65px rgba(0,0,0,0.32);
}

.vp-image-card img,
.vp-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 430px;
}

.vp-text-card {
  padding: 46px;
}

.vp-text-card h2,
.vp-showcase h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: -0.055em;
}

.vp-showcase {
  grid-template-columns: 1fr 0.9fr;
  padding: 0;
}

.vp-showcase > div {
  padding: 50px;
}

.vp-showcase .button {
  display: inline-block;
  margin-top: 22px;
}
.light-section {
  background: transparent;
  color: var(--text-light);
  border-radius: 0;
  max-width: 1200px;
  margin: 80px auto;
  padding: 30px 20px 90px;
}

.light-section h2,
.light-section h3 {
  color: #fff;
}

.light-section p {
  color: #fff;
}
.vp-plans-hero {
  margin-bottom: 30px;
}

.vp-pricing-section {
  max-width: 920px;
  margin: 30px auto 90px;
  padding: 0 20px;
}

.two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
  align-items: stretch;
  gap: 36px;
}

.two-cols .plan-box {
  width: 100%;
  max-width: none;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.two-cols .plan-box .vp-actions {
  margin-top: auto;
}

.plan-box.highlight {
  background:
    linear-gradient(135deg, rgba(139,92,255,0.32), rgba(53,95,189,0.24)),
    var(--bg-card-soft);
  border: 1px solid rgba(168,85,255,0.45);
  box-shadow: 0 28px 80px rgba(139,92,255,0.24);
}

.plan-box h3 {
  color: #fff;
  font-size: 1.45rem;
  margin: 8px 0 10px;
}

.plan-box .price {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  margin: 8px 0;
  letter-spacing: -0.04em;
}

.plan-box .license {
  color: var(--text-muted);
}

.plan-box ul {
  color: var(--text-muted);
  padding-left: 20px;
}

.plan-box li {
  margin-bottom: 8px;
}

.plan-box .button {
  display: inline-block;
  margin-top: 18px;
}

.features-table-wrap {
  overflow-x: auto;
  margin-top: 34px;
  border: 1px solid rgba(190,150,255,0.28);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(0,0,0,0.22);
}

.light-section .features-table {
  background: #ffffff;
  color: #202232;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.light-section .features-table th {
  background: #f2ecff;
  color: #4f2fb0;
  padding: 18px;
  border-color: #ded2ff;
}

.light-section .features-table thead th {
  background: #ece4ff;
  color: #3f248f;
  font-weight: 800;
}

.light-section .features-table th:first-child,
.light-section .features-table td:first-child {
  color: #202232;
}

.light-section .features-table th:first-child {
  color: #3f248f;
}

.light-section .features-table td {
  padding: 16px 18px;
  border: 1px solid #e8e1f8;
  color: #34364a;
}

.light-section .features-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.light-section .features-table tbody tr:nth-child(even) {
  background: #fbf8ff;
}

.light-section .features-table tbody tr:hover {
  background: #f5efff;
}

.light-section .features-table td:not(:first-child) {
  color: #292b3d;
}

.light-section .features-table .icon.check {
  color: #6f3cff;
}

.light-section .features-table .icon.cross {
  color: #c64b68;
}

/* Legacy table fallback for pages outside .light-section. */
.features-table th {
  background-color: #ece4ff;
  color: #3f248f;
}

.features-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.features-table tbody tr:nth-child(even) {
  background-color: #fbf8ff;
}

.icon.check {
  color: #6f3cff;
  font-weight: 800;
}

.icon.cross {
  color: #d84b6b;
  font-weight: 800;
}

.table-note {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eee8ff;
  color: #5a2fb6;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  body {
    background-attachment: scroll;
  }

 .header {
    padding-top: 50px;
  }

  .header h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .header p {
    font-size: 1rem;
  }


.hero,
  .hero_thankyou {
    padding: 32px 20px;
    border-radius: 24px;
  }
.hero h2,
.section h2 {
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
  .introtext {
  color: var(--text-muted);
  font-size: 1.12rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
  .section {
    margin: 50px auto;
    padding: 0 16px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature {
    padding: 22px 16px;
  }

  .feature h3 {
    font-size: 1.05rem;
  }

  .feature p {
    font-size: 0.94rem;
  }

  .buttons {
    display: flex;
    justify-content: center;
  }

  .hero a.button {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  
.imagecontainer img {
  border-radius: 22px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 26px 60px rgba(0,0,0,0.38);
}

  .vstats-top-menu {
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
  }

  .brand-tagline {
    display: none;
  }

  .appmill-logo {
    height: 34px;
  }

  .vstats-menu-toggle {
    display: flex;
  }

  .vstats-nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 0.8rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    gap: 0.35rem;
  }

  .vstats-nav-links.open {
    display: flex;
  }

  .vstats-nav-links li {
    width: 100%;
  }

  .vstats-nav-links a {
    display: block;
    width: 100%;
    padding: 0.8rem 0.9rem;
    font-size: 0.96rem;
    box-sizing: border-box;
  }

  .faq-section {
    padding: 40px 16px;
  }

  .faq-container {
    padding: 20px 0;
    box-shadow: none;
  }

  .faq-question {
    padding: 16px 0;
    font-size: 1rem;
    align-items: flex-start;
  }

  .faq-answer p,
  .faq-intro {
    font-size: 0.95rem;
  }

  .footer,
  .site-footer {
    padding: 32px 16px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }
   .vp-hero,
  .vp-split,
  .vp-showcase,
  .vp-strip {
    grid-template-columns: 1fr;
  }

  .vp-hero {
    margin-top: 30px;
    padding: 20px;
  }

  .vp-hero-visual,
  .vp-hero-visual > img:not(.vp-floating-logo) {
    min-height: 360px;
  }

  .vp-text-card,
  .vp-showcase > div {
    padding: 30px 22px;
  }
  .two-cols {
    grid-template-columns: 1fr;
  }

  .plan-box {
    padding: 26px 20px;
  }

  .light-section {
    padding: 42px 18px;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 96px 12px 26px;
  }

  .header h1 {
    font-size: 1.65rem;
  }

  .header p {
    font-size: 0.94rem;
  }

  .hero,
  .hero_thankyou {
    max-width: calc(100% - 16px);
    padding: 22px 14px;
  }

  .hero h2,
  .section h2,
  .faq-title {
    font-size: 1.4rem;
  }

  .introtext {
    font-size: 0.93rem;
  }

  .section {
    padding: 0 12px;
  }

  .feature {
    padding: 18px 14px;
  }

  .feature h3 {
    font-size: 1rem;
  }

  .feature p {
    font-size: 0.9rem;
  }

  .vstats-top-menu {
    padding: 12px;
  }

  .appmill-logo {
    height: 30px;
  }

  .vstats-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .vstats-menu-toggle span {
    width: 26px;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer p,
  .faq-intro {
    font-size: 0.92rem;
  }

  #scrollToTopBtn {
    width: 46px;
    height: 46px;
    right: 16px;
    bottom: 16px;
    font-size: 20px;
  }
}
