:root {
  color-scheme: light;
  --bg: #f0f4ff;
  --surface: #ffffff;
  --ink: #1a1f36;
  --muted: #64748b;
  --line: #e2e8f0;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --accent: #f97316;
  --warning: #f59e0b;
  --success: #10b981;
  --shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
}

a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  min-height: 100vh;
}

.hero {
  background:
    linear-gradient(180deg, var(--brand) 0%, var(--brand) 72%, var(--bg) 72%, var(--bg) 100%);
  color: #ffffff;
  padding: 30px 20px 72px;
}

.site-hero {
  min-height: 74vh;
  background:
    linear-gradient(180deg, var(--brand) 0%, var(--brand) 76%, var(--bg) 76%, var(--bg) 100%);
  color: #ffffff;
  padding: 30px 20px 52px;
}

.nav,
.hero-inner,
.content,
.footer {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 18px;
  font-weight: 800;
}

.brand-mark,
.brand-logo,
.brand img {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  padding: 3px;
  object-fit: contain;
  vertical-align: middle;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.1;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.nav-links .nav-download {
  min-height: 38px;
  background: #ffffff;
  color: var(--brand);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.nav-links .nav-download:hover {
  background: #ffffff;
}

.hero-inner {
  max-width: 1080px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
}

h1 {
  max-width: 760px;
  margin: 18px 0 14px;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  line-height: 1.6;
}

.site-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 24px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  text-decoration: none !important;
  box-sizing: border-box;
}

.button.primary {
  background: #2563eb !important;
  color: #ffffff !important;
  border: 1.5px solid #2563eb !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3) !important;
}

.button.primary:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
  color: #ffffff !important;
}

.button.secondary {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1.5px solid #94a3b8 !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08) !important;
}

.button.secondary:hover {
  background: #f1f5f9 !important;
  border-color: #64748b !important;
  color: #0f172a !important;
}

.button.dark {
  background: #0f172a !important;
  color: #ffffff !important;
  border: 1.5px solid #0f172a !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.3) !important;
}

.button.dark:hover {
  background: #1e293b !important;
  border-color: #1e293b !important;
  color: #ffffff !important;
}

/* Inside Hero Header Only (Dark Blue Background) */
.hero .button.primary,
.site-hero .button.primary {
  background: #ffffff !important;
  color: #1d4ed8 !important;
  border: 1.5px solid #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
}

.hero .button.primary:hover,
.site-hero .button.primary:hover {
  background: #f8fafc !important;
  color: #1e40af !important;
}

.hero .button.secondary,
.site-hero .button.secondary {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(6px);
}

.hero .button.secondary:hover,
.site-hero .button.secondary:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.play-store-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  padding: 9px 16px 9px 12px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
  order: -1;
}

.play-store-button:hover {
  background: #0f172a;
  text-decoration: none;
}

.play-store-button span:last-child {
  display: grid;
  gap: 1px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.play-store-button small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.play-icon {
  width: 28px;
  height: 32px;
  flex: 0 0 auto;
  background: url("images__3_-removebg-preview.png") center / contain no-repeat;
}

.inline-download {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 12px;
  padding: 10px 14px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 900;
}

.inline-download:hover {
  background: var(--brand-dark);
  text-decoration: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.contact-card:hover {
  text-decoration: none;
}

.contact-card strong {
  color: var(--ink);
  font-size: 18px;
}

.contact-card span:last-child {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.app-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
}

.app-panel img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.app-panel strong {
  font-size: 24px;
}

.app-panel span {
  color: var(--muted);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: #eef2ff;
}

.preview-header strong {
  display: block;
  font-size: 16px;
}

.preview-header span {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.preview-grid span {
  display: grid;
  min-height: 92px;
  place-items: center;
  gap: 8px;
  padding: 10px 6px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.band {
  padding: 62px 20px;
  background: var(--bg);
}

.band.light {
  background: #ffffff;
}

.band.light .quick-list span,
.band.light .feature-card,
.band.light .stats-grid div {
  background: #f8fafc;
}

.section-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading p,
.split p {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.65;
}

.section-heading h2,
.split h2 {
  margin: 12px 0;
  font-size: 34px;
}

.eyebrow.dark {
  border-color: var(--line);
  background: #eef2ff;
  color: var(--brand);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  margin-top: 18px;
}

.feature-list-card {
  padding: 20px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.feature-list-card h3 {
  margin-top: 0;
}

.feature-list-card ul {
  columns: 1;
}

.feature-list-card li {
  break-inside: avoid;
  font-size: 13px;
  line-height: 1.45;
}

.feature-grid.compact .feature-card {
  min-height: 150px;
}

.feature-card {
  min-height: 186px;
  padding: 22px;
  border: 0;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--ink);
}

.feature-card p {
  line-height: 1.55;
}

.module-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.module-icon.attendance {
  background: #dbeafe;
  color: #2563eb;
}

.module-icon.homework {
  background: #fef3c7;
  color: #d97706;
}

.module-icon.fees {
  background: #f0fdf4;
  color: #15803d;
}

.module-icon.results {
  background: #fff7ed;
  color: #ea580c;
}

.module-icon.announcements {
  background: #fffbeb;
  color: #d97706;
}

.module-icon.transport {
  background: #e0f2fe;
  color: #0284c7;
}

.module-icon.feedback {
  background: #eff6ff;
  color: #2563eb;
}

.module-icon.privacy {
  background: #ede9fe;
  color: #7c3aed;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.quick-list {
  display: grid;
  gap: 10px;
}

.quick-list span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.35;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stats-grid div {
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.stats-grid strong {
  color: var(--brand-dark);
  font-size: 34px;
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.content {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: -42px;
  padding-bottom: 54px;
}

.simple-content {
  display: block;
  max-width: 900px;
}

.toc,
.article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.toc {
  position: sticky;
  top: 18px;
  padding: 18px;
}

.toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.toc a {
  display: block;
  padding: 8px 0;
  border-top: 1px solid #eef2f7;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.article {
  padding: 34px;
  overflow: hidden;
}

.summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.summary-item {
  min-height: 100px;
  padding: 16px;
  border: 1px solid #e6ecf4;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.summary-item strong {
  display: block;
  margin-bottom: 6px;
}

.summary-item span {
  color: var(--muted);
  font-size: 14px;
}

section {
  padding: 26px 0;
  border-top: 1px solid #edf1f6;
}

section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin: 20px 0 8px;
  font-size: 18px;
  letter-spacing: 0;
}

p,
li {
  color: var(--muted);
  line-height: 1.6;
}

p {
  margin: 0 0 12px;
}

ul,
ol {
  margin: 10px 0 0;
  padding-left: 22px;
}

li + li {
  margin-top: 8px;
}

.notice {
  margin: 18px 0;
  padding: 16px;
  border-left: 4px solid var(--accent);
  border-left-color: var(--accent);
  border-radius: 14px;
  background: #fff7ed;
  color: #9a3412;
}

.warning {
  border-left-color: var(--warning);
  background: #fff7e8;
  color: #58370f;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.steps li {
  position: relative;
  min-height: 48px;
  padding: 0 0 0 62px;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 800;
}

.data-table {
  width: 100%;
  margin-top: 14px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.data-table th,
.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: #eef2ff;
  color: var(--ink);
  font-size: 14px;
}

.data-table td {
  color: var(--muted);
}

.footer {
  padding: 0 0 34px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 820px) {
  .hero {
    padding-bottom: 56px;
    background:
      linear-gradient(180deg, var(--brand) 0%, var(--brand) 78%, var(--bg) 78%, var(--bg) 100%);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .nav-links {
    width: 100%;
    gap: 6px;
  }

  .nav-links a {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 13px;
  }

  .content {
    display: block;
    margin-top: -30px;
  }

  .toc {
    position: static;
    margin-bottom: 18px;
  }

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

  .article {
    padding: 24px 18px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .site-hero {
    min-height: auto;
    padding-bottom: 42px;
    background:
      linear-gradient(180deg, var(--brand) 0%, var(--brand) 78%, var(--bg) 78%, var(--bg) 100%);
  }

  .site-hero-grid,
  .feature-grid,
  .feature-list-grid,
  .contact-grid,
  .split,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .feature-list-card ul {
    columns: 1;
  }

  .play-store-button {
    width: 100%;
    justify-content: center;
  }

  .button {
    flex: 1 1 150px;
  }

  .app-panel {
    max-width: 360px;
  }

  .section-heading h2,
  .split h2 {
    font-size: 28px;
  }
}

/* Pricing Section Styles */
.pricing-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid var(--brand);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px rgba(37, 99, 235, 0.18);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.pricing-header h3 {
  font-size: 26px;
  margin: 10px 0 6px;
  color: var(--ink);
}

.price-amount {
  font-size: clamp(44px, 6vw, 56px);
  font-weight: 900;
  color: var(--brand-dark);
  line-height: 1;
  margin: 16px 0 8px;
}

.price-amount span {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
}

.pricing-storage-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dbeafe;
  color: var(--brand-dark);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  margin: 12px 0 24px;
}

.pricing-features-list {
  text-align: left;
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  list-style: none;
  padding: 0;
}

@media (max-width: 600px) {
  .pricing-features-list {
    grid-template-columns: 1fr;
  }
}

.pricing-features-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  margin: 0;
}

.pricing-features-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 900;
  font-size: 16px;
}

/* Comparison Table & Mobile Cards Styles */
.comparison-table-desktop {
  display: block;
}

.comparison-mobile-cards {
  display: none;
}

.comparison-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--line);
  background: #ffffff;
  margin-top: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: middle;
}

.comparison-table th {
  background: #f8fafc;
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
}

.comparison-table th.myedunest-col,
.comparison-table td.myedunest-col {
  background: #eff6ff;
  border-left: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
}

.comparison-table th.myedunest-col {
  color: var(--brand-dark);
  font-size: 16px;
}

.comparison-table td.myedunest-col {
  font-weight: 750;
  color: #1e3a8a;
}

.status-badge-yes {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #065f46;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.status-badge-no {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

/* Responsive Mobile Cards for Comparison */
@media (max-width: 768px) {
  .comparison-table-desktop {
    display: none !important;
  }

  .comparison-mobile-cards {
    display: grid !important;
    gap: 14px;
    margin-top: 18px;
  }

  .mobile-comp-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  }

  .mobile-comp-title {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-comp-box {
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
  }

  .mobile-comp-box:last-child {
    margin-bottom: 0;
  }

  .mobile-comp-box.myedunest {
    background: #eff6ff;
    border: 1.5px solid #bfdbfe;
  }

  .mobile-comp-box.others {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
  }

  .mobile-comp-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .mobile-comp-name {
    font-size: 13.5px;
    font-weight: 850;
    color: #1e3a8a;
  }

  .mobile-comp-box.others .mobile-comp-name {
    color: #64748b;
  }

  .mobile-comp-desc {
    font-size: 13.5px;
    line-height: 1.5;
    color: #1e293b;
  }

  .mobile-comp-desc strong {
    color: #1d4ed8;
  }

  .mobile-comp-box.others .mobile-comp-desc {
    color: #64748b;
  }
}

/* FAQ Accordion Styles */
.faq-grid {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 24px auto 0;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: var(--brand);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}

.faq-summary {
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 750;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 700;
  color: var(--brand);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-summary::after {
  content: "-";
}

.faq-content {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Hero Badge */
.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 16px;
  border-radius: 30px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

/* 4-Tier Pricing Grid */
.pricing-4grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .pricing-4grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pricing-4grid {
    grid-template-columns: 1fr;
  }
}

.plan-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.12);
}

.plan-card.featured {
  border: 2px solid var(--brand);
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.plan-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.plan-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--brand-dark);
  line-height: 1;
  margin: 12px 0 4px;
}

.plan-price span {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.plan-storage {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 14px;
  margin: 8px 0 16px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.plan-features li {
  position: relative;
  padding-left: 20px;
  margin: 0;
}

.plan-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 900;
}

/* Timeline & Process Steps */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .step-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 18px;
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--ink);
}

.step-card p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: var(--muted);
}

/* Server Option Cards */
.server-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .server-option-grid {
    grid-template-columns: 1fr;
  }
}

.server-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  padding: 28px 22px;
  box-shadow: var(--shadow);
}

.server-card h3 {
  margin-top: 0;
  font-size: 22px;
  color: var(--ink);
}

.badge-self-hosted {
  background: #fef3c7;
  color: #b45309;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 14px;
  display: inline-block;
  margin-bottom: 12px;
}

.badge-managed {
  background: #e0e7ff;
  color: #3730a3;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 14px;
  display: inline-block;
  margin-bottom: 12px;
}

/* Modern PHP Site Refresh */
:root {
  --bg: #eef4ff;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #5f6f85;
  --line: #dbe5f1;
  --brand: #1d4ed8;
  --brand-dark: #1e3a8a;
  --accent: #f97316;
  --shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
}

body {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.13), transparent 32rem),
    linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%);
}

.nav {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 18px max(20px, calc((100vw - 1080px) / 2));
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 58%, #3b82f6 100%);
  color: #ffffff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.nav .brand {
  color: #ffffff;
}

.nav .brand-mark {
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
}

.nav-links a {
  border-radius: 8px;
}

.nav-links a.active,
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.nav-links .nav-download {
  border-radius: 8px;
  color: var(--brand-dark);
  gap: 8px;
}

.nav-links .nav-download::before,
.play-store-button::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 20px;
  flex: 0 0 auto;
  background: url("images__3_-removebg-preview.png") center / contain no-repeat;
}


.hero,
.site-hero {
  background:
    linear-gradient(180deg, #2563eb 0%, #2563eb 72%, transparent 72%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.26), transparent 20rem),
    linear-gradient(135deg, #1e3a8a 0%, #2563eb 62%, #3b82f6 100%);
  padding-top: 42px;
}

.site-hero {
  min-height: auto;
  padding-bottom: 64px;
}

.hero {
  padding-bottom: 62px;
}

h1 {
  font-size: clamp(34px, 5.8vw, 58px);
  line-height: 1.02;
}

.hero-copy {
  max-width: 760px;
  font-size: 17px;
}

.hero-tag-badge,
.eyebrow {
  border-radius: 8px;
  letter-spacing: 0;
}

.button,
.play-store-button,
.inline-download {
  border-radius: 12px;
}

.app-panel,
.feature-card,
.server-card,
.plan-card,
.step-card,
.faq-item,
.comparison-wrapper,
.contact-card,
.feature-list-card {
  border-radius: 8px !important;
}

.app-panel {
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.18);
}

.preview-header,
.preview-grid span {
  border-radius: 8px;
}

.band {
  padding: 66px 20px;
}

.band.light {
  background: #ffffff;
}

.section-heading {
  max-width: 820px;
}

.section-heading h2,
.split h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.12;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: auto;
  border: 1px solid rgba(219, 229, 241, 0.9);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.22;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.module-icon {
  border-radius: 8px;
}

.server-option-grid {
  gap: 22px;
}

.server-card {
  position: relative;
  overflow: hidden;
}

.server-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 3px solid rgba(37, 99, 235, 0.18);
}

.comparison-wrapper {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.comparison-table th {
  background: #eef4ff;
}

.faq-summary {
  font-size: 16px;
}

.footer-feature-catalog {
  padding: 46px 20px;
  background: #f8fbff;
}

.footer-feature-catalog .section-heading h2 {
  font-size: 28px;
}

.footer-feature-catalog .feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.footer-feature-catalog .feature-card {
  padding: 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.footer-feature-catalog .feature-card h3 {
  font-size: 15.5px;
  margin-top: 0;
  margin-bottom: 6px;
}

.footer-feature-catalog .feature-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.footer {
  margin-top: 0 !important;
}

/* Premium value sections */
.premium-proof-band {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border-top: 1px solid rgba(219, 229, 241, 0.72);
  border-bottom: 1px solid rgba(219, 229, 241, 0.72);
}

.value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.value-strip span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 800;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.proof-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid rgba(219, 229, 241, 0.95);
  border-radius: 16px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 13rem);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.proof-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.proof-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  font-weight: 900;
}

.proof-card span {
  display: block;
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 13.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.classic-note {
  margin-top: 22px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-left: 4px solid var(--brand);
  border-radius: 12px;
  padding: 18px 22px;
  background: #ffffff;
  color: var(--muted);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  font-size: 15px;
  line-height: 1.65;
}

.classic-note strong {
  color: var(--ink);
}

.section-inner > .classic-note + .feature-grid,
.comparison-wrapper + .classic-note {
  margin-top: 22px;
}

.feature-card:hover,
.server-card:hover,
.proof-card:hover,
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

.feature-card,
.server-card,
.proof-card,
.plan-card {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
}

/* ==========================================================================
   ADVANCED RESPONSIVE & MOBILE OPTIMIZATIONS (TABLETS, PHONES, SMALL SCREENS)
   ========================================================================== */

@media (max-width: 992px) {
  .site-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-hero-grid .app-panel {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   MOBILE SIDEBAR DRAWER & NAVIGATION STYLES
   ========================================================================== */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  z-index: 10;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: rgba(255, 255, 255, 0.32);
  outline: none;
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 86vw);
  background: #ffffff;
  color: var(--ink);
  z-index: 9999;
  box-shadow: -12px 0 45px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 2px;
}

.drawer-brand strong {
  display: block;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.15;
}

.drawer-brand small {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 700;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #475569;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.drawer-close-btn:hover {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fca5a5;
}

.drawer-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 16px;
}

.drawer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.drawer-nav-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #334155;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none !important;
  transition: all 0.15s ease;
}

.drawer-nav-list a:hover {
  background: #f1f5f9;
  color: var(--brand);
  transform: translateX(4px);
}

.drawer-nav-list a.active {
  background: #eff6ff;
  color: var(--brand);
  border-left: 4px solid var(--brand);
  font-weight: 850;
}

.drawer-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.drawer-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
}

.drawer-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 12px;
  background: #111827;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.25);
}

.drawer-download-btn::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 20px;
  background: url("images__3_-removebg-preview.png") center / contain no-repeat;
}

.drawer-contact-info {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}

.drawer-contact-info a {
  display: block;
  color: var(--brand);
  font-weight: 800;
  font-size: 14px;
  margin-top: 2px;
}

/* ==========================================================================
   ADVANCED RESPONSIVE MEDIA QUERIES (TABLETS & PHONES)
   ========================================================================== */

@media (max-width: 992px) {
  .site-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-hero-grid .app-panel {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 32px;
  }

  .nav .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: auto;
  }

  .hero,
  .site-hero {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .band {
    padding: 48px 16px;
  }

  .section-heading h2,
  .split h2 {
    font-size: clamp(24px, 5vw, 32px);
  }

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

  .footer-feature-catalog .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .play-store-button,
  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .comparison-wrapper {
    margin: 18px -10px 0;
    border-radius: 12px;
  }

  .comparison-table {
    min-width: 580px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {
  .site-hero,
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.55;
  }

  .value-strip {
    gap: 6px;
  }

  .value-strip span {
    font-size: 12px;
    padding: 6px 10px;
    min-height: 30px;
  }

  .preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .preview-grid span {
    min-height: 78px;
    font-size: 11px;
  }

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