/* =============================================
   PakhiGST Website — Main Stylesheet
   Brand Colors: Teal #1a73e8, Red #e8192c
   ============================================= */

:root {
  /* ── Brand Blue (matches dashboard) ── */
  --primary:      #1a73e8;
  --primary-dark: #1558b0;
  --primary-light:#e8f0fe;
  /* ── Legacy aliases (do not remove) ── */
  --teal:       var(--primary);
  --teal-dark:  var(--primary-dark);
  --teal-light: var(--primary-light);
  --red: #e8192c;
  --red-dark: #c0141f;
  --white: #ffffff;
  --gray-light: #f5f7f7;
  --gray: #6c757d;
  --gray-dark: #333333;
  --border: #e0e0e0;
  --text: #2d2d2d;
  --text-muted: #6c757d;
  --font: 'Poppins', 'Segoe UI', sans-serif;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 28px rgba(0,0,0,0.13);
  --radius: 8px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  background: #fff;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}

/* Logo */
.navbar-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.logo-text {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: var(--gray-dark);
  letter-spacing: -0.5px;
}

.logo-text span.logo-b {
  color: var(--red);
  font-size: 28px;
}

.logo-text span.logo-books {
  color: var(--teal);
}

.logo-tagline {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 1px;
}

/* Phone */
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-left: 8px;
  white-space: nowrap;
}

.navbar-phone .phone-icon {
  width: 32px;
  height: 32px;
  background: #e8f0fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 15px;
}

/* Nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--teal);
  background: var(--teal-light);
}

.nav-link .arrow {
  font-size: 11px;
  transition: transform 0.2s;
}

.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  min-width: 680px;
  padding: 20px;
  z-index: 999;
}

.dropdown-menu.dropdown-sm {
  min-width: 200px;
  padding: 10px 0;
}

.nav-item:hover .dropdown-menu { display: block; }

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

.dropdown-col-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 14px;
  color: var(--teal);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}

.dropdown-col-title .icon {
  width: 32px;
  height: 32px;
  background: var(--teal-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.dropdown-item {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s, padding-left 0.2s;
}

.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { color: var(--teal); padding-left: 4px; }

.dropdown-menu.dropdown-sm .dropdown-item {
  padding: 9px 20px;
  border-bottom: none;
}

/* Auth buttons */
.navbar-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  flex-shrink: 0;
}

.btn-login {
  padding: 8px 22px;
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-login:hover {
  background: var(--teal);
  color: #fff;
}

.btn-signup {
  padding: 8px 22px;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-signup:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   BOTTOM QUICK BAR (Homepage)
   ============================================================ */
.quick-bar {
  background: var(--teal);
  overflow-x: auto;
  scrollbar-width: none;
}

.quick-bar::-webkit-scrollbar { display: none; }

.quick-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.quick-bar-item {
  display: flex;
  flex-direction: column;
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  min-width: 120px;
}

.quick-bar-item:last-child { border-right: none; }
.quick-bar-item:hover { background: var(--teal-dark); }

.quick-bar-item .qb-top {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.quick-bar-item .qb-top .arrow { font-size: 11px; }

.quick-bar-item .qb-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  margin-top: 1px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #e8f0fe 0%, #f0faf9 60%, #e3f2f0 100%);
  padding: 60px 20px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 50px solid rgba(26,115,232,0.06);
}

.hero::after {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 40px solid rgba(26,115,232,0.04);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.hero-badge .badge-icon { font-size: 14px; }

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-title .highlight { color: var(--teal); }

.hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 440px;
}

.hero-desc .price-highlight {
  color: var(--teal);
  font-weight: 700;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-color: var(--teal);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  padding: 12px 28px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }

.btn-secondary {
  padding: 12px 28px;
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

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

.btn-red {
  padding: 12px 28px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

.hero-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 20px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mockup-screen {
  width: 100%;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #1a73e8 0%, #1558b0 100%);
  min-height: 280px;
  display: grid;
  grid-template-columns: 200px 1fr;
  overflow: hidden;
}

.mockup-sidebar {
  background: var(--teal-dark);
  padding: 16px 12px;
}

.mockup-sidebar-item {
  height: 28px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  margin-bottom: 8px;
}

.mockup-sidebar-item.active { background: rgba(255,255,255,0.28); }

.mockup-content {
  background: #f5f7f7;
  padding: 16px;
}

.mockup-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.mockup-card {
  background: #fff;
  border-radius: 6px;
  height: 56px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  padding: 8px;
}

.mockup-card-line {
  height: 8px;
  border-radius: 4px;
  background: #e0e0e0;
  margin-bottom: 6px;
}

.mockup-card-line.teal { background: var(--teal); width: 60%; }
.mockup-card-line.short { width: 40%; }

.mockup-chart {
  background: #fff;
  border-radius: 6px;
  height: 100px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  padding: 10px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.mockup-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--teal);
  opacity: 0.7;
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow-hover);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 { bottom: 20px; left: -10px; }
.floating-card.card-2 { top: 20px; right: -10px; }

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

.floating-card .fc-icon { font-size: 20px; }
.floating-card .fc-num { font-size: 18px; font-weight: 800; color: var(--teal); }
.floating-card .fc-label { font-size: 11px; color: var(--text-muted); font-weight: 400; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding: 60px 20px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.section-header h2 .highlight { color: var(--teal); }

.section-header p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-bg { background: var(--gray-light); }
.section-teal { background: var(--teal); }

/* ============================================================
   FEATURES / SERVICES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
}

.feature-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.feature-card .fc-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
}

.feature-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--teal);
  padding: 32px 20px;
}

.stats-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.strip-stat h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

.strip-stat p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.2s;
}

.testimonial-card:hover { box-shadow: var(--shadow-hover); }

.tc-stars { color: #f5a623; font-size: 14px; margin-bottom: 12px; }

.tc-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}

.tc-name { font-size: 14px; font-weight: 700; color: var(--text); }
.tc-biz { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--gray-light);
  padding: 50px 20px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.cta-banner h2 .highlight { color: var(--teal); }

.cta-banner p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 50px 20px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr 1.5fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 12px 0 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-contact-item .icon {
  width: 28px;
  height: 28px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 1px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.footer-links a {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover { color: var(--teal); padding-left: 4px; }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.social-link:hover { color: var(--teal); }

.social-link .s-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.s-icon.fb { background: #1877f2; }
.s-icon.tw { background: #000; }
.s-icon.yt { background: #ff0000; }
.s-icon.li { background: #0a66c2; }
.s-icon.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.footer-blog-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.fbi-img {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: var(--teal-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.fbi-text a {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
  line-height: 1.4;
  transition: color 0.2s;
}

.fbi-text a:hover { color: var(--teal); }

.fbi-read {
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 12px; color: var(--text-muted); }

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--teal); }

.footer-awards {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 24px 0 20px;
  flex-wrap: wrap;
}

.award-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  color: var(--teal);
  padding: 8px;
  line-height: 1.3;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-hero {
  background: var(--teal);
  padding: 40px 20px;
  text-align: center;
}

.pricing-hero h1 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.pricing-hero p { color: rgba(255,255,255,0.85); font-size: 15px; }

.pricing-controls {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.country-select {
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: #fff;
  cursor: pointer;
  min-width: 130px;
}

.duration-tabs {
  display: flex;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.duration-tab {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
  border: none;
  background: transparent;
}

.duration-tab.active {
  background: var(--teal);
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.plan-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  position: relative;
  transition: all 0.25s;
}

.plan-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.plan-card.popular {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(26,115,232,0.15);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.plan-tagline {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.4;
}

.plan-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 2px;
}

.plan-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-gst {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.plan-btn {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.plan-btn:hover, .plan-card.popular .plan-btn {
  background: var(--teal);
  color: #fff;
}

.plan-includes-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.plan-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted);
  background: var(--gray-light);
  padding: 3px 8px;
  border-radius: 4px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px solid #f5f5f5;
}

.plan-features li:last-child { border-bottom: none; }
.plan-features li .check { color: var(--teal); font-size: 12px; flex-shrink: 0; margin-top: 2px; }

.addons-section {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.addons-header {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 18px;
  font-weight: 700;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}

.addon-item {
  padding: 20px 16px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.addon-item:last-child { border-right: none; }

.addon-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.addon-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.addon-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 4px;
}

.addon-note { font-size: 11px; color: var(--text-muted); }

.addon-select {
  margin-top: 10px;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px;
  width: 100%;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: var(--teal);
  padding: 40px 20px;
  text-align: center;
}

.contact-hero h1 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.contact-hero p { color: rgba(255,255,255,0.85); }

.contact-section {
  padding: 50px 20px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-light);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-child { border-bottom: none; }

.contact-row-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-row-body h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.contact-row-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.contact-row-body a { color: var(--teal); font-weight: 600; }

.demo-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.demo-form-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}

.demo-form-card .form-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  background: #fff;
}

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.1);
}

.phone-input-wrap {
  display: flex;
  gap: 8px;
}

.phone-flag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: #f5f7f7;
  cursor: pointer;
  white-space: nowrap;
}

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.form-submit:hover { background: var(--teal-dark); }

.map-section {
  padding: 0 20px 50px;
}

.map-inner {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 320px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  border: 1px solid var(--border);
  position: relative;
}

.map-placeholder {
  text-align: center;
}

.map-placeholder .map-icon { font-size: 40px; margin-bottom: 10px; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-hero {
  background: var(--teal);
  padding: 30px 20px;
}

.blog-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.blog-hero h1 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.blog-search {
  display: flex;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.3);
}

.blog-search input {
  padding: 9px 14px;
  border: none;
  outline: none;
  font-size: 14px;
  min-width: 220px;
  font-family: var(--font);
}

.blog-search button {
  padding: 9px 16px;
  background: var(--teal-dark);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.blog-main {
  padding: 40px 20px;
}

.blog-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
}

.blog-list {}

.blog-post-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.blog-post-item:last-child { border-bottom: none; }

.bpi-image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 130px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
}

.bpi-image img { width: 100%; height: 100%; object-fit: cover; }

.bpi-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.bpi-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.2s;
}

.bpi-title:hover { color: var(--teal); }

.bpi-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.bpi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.bpi-read-more {
  color: var(--teal);
  font-weight: 600;
  cursor: pointer;
  font-size: 12px;
}

.blog-sidebar {}

.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}

.sidebar-widget h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal-light);
}

.sidebar-cta {
  background: var(--teal);
  text-align: center;
  color: #fff;
}

.sidebar-cta h4 { color: #fff; border-color: rgba(255,255,255,0.2); }

.sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 14px; }

.sidebar-cta .btn-white {
  display: inline-block;
  padding: 9px 22px;
  background: #fff;
  color: var(--teal);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.sidebar-cta .btn-white:hover { background: var(--gray-light); }

.cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid #f5f5f5;
  transition: color 0.2s;
}

.cat-list a:last-child { border-bottom: none; }
.cat-list a:hover { color: var(--teal); }
.cat-list .count {
  background: var(--teal-light);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 0;
}

.page-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
  background: #fff;
}

.page-btn:hover, .page-btn.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

/* ============================================================
   PARTNER PAGE
   ============================================================ */
.partner-hero {
  background: linear-gradient(135deg, #e8f0fe 0%, #f5f5f5 100%);
  padding: 60px 20px;
}

.partner-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.partner-hero h1 {
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 14px;
}

.partner-hero h1 .highlight { color: var(--teal); }

.partner-hero ul {
  list-style: none;
  margin: 14px 0 24px;
}

.partner-hero ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
}

.partner-hero ul li .check { color: var(--teal); font-weight: 700; margin-top: 2px; }

.partner-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: var(--teal-light);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.why-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.25s;
}

.why-card:hover { box-shadow: var(--shadow-hover); border-color: var(--teal); transform: translateY(-3px); }

.why-card .icon { font-size: 36px; margin-bottom: 12px; }
.why-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.legacy-strip {
  background: var(--teal-dark);
  padding: 28px 20px;
}

.legacy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: center;
}

.legacy-text h3 { font-size: 20px; font-weight: 700; color: #fff; }
.legacy-text p { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 4px; }

.legacy-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.legacy-step {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  border: 2px solid transparent;
}

.legacy-step:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); }

.legacy-step .icon { font-size: 22px; margin-bottom: 6px; }
.legacy-step p { font-size: 11.5px; color: rgba(255,255,255,0.9); line-height: 1.4; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.benefit-body h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.benefit-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.partner-form-section {
  background: var(--gray-light);
  padding: 50px 20px;
}

.partner-form-card {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.partner-form-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 6px;
  text-align: center;
}

.partner-form-card .sub {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

.faq-section { padding: 50px 20px; background: #fff; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background 0.2s;
  gap: 10px;
}

.faq-q:hover { background: var(--teal-light); color: var(--teal); }
.faq-q.open { background: var(--teal); color: #fff; }
.faq-q .faq-arrow { font-size: 12px; transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  background: #fafafa;
  border-top: 1px solid var(--border);
}

.faq-a.open { display: block; }

/* ============================================================
   POPUP / MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active { display: flex; }

.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 480px;
  width: 95%;
  position: relative;
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(-10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f5f5f5;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover { background: #e0e0e0; }

.modal-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--teal);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
}

.modal-inner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f0fe;
  color: var(--teal);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.modal-box h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
}

.modal-box .modal-desc {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
}

.modal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.modal-stat {
  text-align: center;
  padding: 12px;
  background: var(--gray-light);
  border-radius: var(--radius);
}

.modal-stat h3 { font-size: 18px; font-weight: 800; color: var(--teal); }
.modal-stat p { font-size: 11px; color: var(--text-muted); }

.modal-phone-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.modal-select {
  padding: 11px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  background: #f5f7f7;
  cursor: pointer;
}

.modal-business-select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  margin-bottom: 12px;
  outline: none;
}

.modal-business-select:focus { border-color: var(--teal); }

.btn-modal-main {
  width: 100%;
  padding: 13px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background 0.2s;
}

.btn-modal-main:hover { background: var(--teal-dark); }

.btn-modal-wa {
  width: 100%;
  padding: 13px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background 0.2s;
}

.btn-modal-wa:hover { background: #1ebe5a; }

.modal-divider {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin: 10px 0;
}

.modal-trust {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-trust span { display: flex; align-items: center; gap: 4px; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  left: 20px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  z-index: 999;
  animation: pulse 2.5s infinite;
  transition: transform 0.2s;
}

.wa-float:hover { transform: scale(1.1); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.7); }
}

/* Chat bubble */
.chat-bubble {
  position: fixed;
  bottom: 84px;
  left: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px 10px 10px 2px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text);
  box-shadow: var(--shadow);
  z-index: 998;
  max-width: 200px;
  animation: bubbleIn 0.3s ease;
}

@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Support chat icon */
.support-chat {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: var(--shadow-hover);
  z-index: 999;
  color: #fff;
  transition: transform 0.2s;
}

.support-chat:hover { transform: scale(1.1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .addons-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-hero-inner { grid-template-columns: 1fr; }
  .partner-hero-img { min-height: 200px; font-size: 60px; }
}

@media (max-width: 768px) {
  .navbar-nav, .navbar-phone { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mockup { display: none; }
  .hero-title { font-size: 28px; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .blog-main-inner { grid-template-columns: 1fr; }
  .blog-post-item { grid-template-columns: 1fr; }
  .why-partner-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .legacy-steps { grid-template-columns: repeat(2, 1fr); }
  .legacy-inner { grid-template-columns: 1fr; }
  .dropdown-menu { min-width: 280px; }
  .dropdown-grid { grid-template-columns: 1fr; }
  .quick-bar-inner { width: max-content; }
  .modal-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 24px; }
  .section-header h2 { font-size: 22px; }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; }
  .modal-stats { grid-template-columns: repeat(3, 1fr); }
}
