/* ============================================================
   BulkSMSHub — Shared Mobile-First Design System
   Mobile-first: base styles = mobile, @media min-width = larger
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #fff;
  color: #0A0F1E;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 { font-family: 'Sora', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  --primary: #0057FF;
  --primary-dark: #003FCC;
  --primary-light: #E8F0FF;
  --accent: #00C896;
  --accent-dark: #009E78;
  --dark: #0A0F1E;
  --dark2: #111827;
  --mid: #374151;
  --muted: #6B7280;
  --light: #F9FAFB;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,87,255,0.08);
  --radius: 12px;
  --radius-lg: 20px;
  /* Spacing scale */
  --s4: 4px; --s8: 8px; --s12: 12px; --s16: 16px; --s20: 20px;
  --s24: 24px; --s32: 32px; --s40: 40px; --s48: 48px; --s64: 64px; --s80: 80px;
  /* Touch target */
  --touch: 48px;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* ---------- TYPOGRAPHY SCALE ---------- */
.text-xs  { font-size: 12px; }
.text-sm  { font-size: 14px; }
.text-base{ font-size: 16px; }
.text-lg  { font-size: 18px; }
.text-xl  { font-size: 20px; }
.text-2xl { font-size: 24px; }
.text-3xl { font-size: 30px; }
.text-4xl { font-size: 36px; }
.text-5xl { font-size: 48px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: var(--touch);
  white-space: nowrap;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(0,87,255,0.3);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,87,255,0.4);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-white {
  background: white;
  color: var(--primary);
}
.btn-white:hover { background: var(--primary-light); }
.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #1ea952; transform: translateY(-2px); }
.btn-sm { font-size: 13px; padding: 10px 20px; min-height: 40px; }
.btn-lg { font-size: 17px; padding: 16px 32px; min-height: 56px; }
.btn-full { width: 100%; }

/* ---------- MOBILE HEADER ---------- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  height: 60px;
  gap: 12px;
}
@media (min-width: 1024px) { .header-inner { height: 70px; } }

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--dark);
  flex-shrink: 0;
}
@media (min-width: 640px) { .site-logo { font-size: 22px; } }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 17px;
  flex-shrink: 0;
}
.site-logo .logo-text span { color: var(--primary); }

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.desktop-nav a, .desktop-nav button {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
}
.desktop-nav a:hover, .desktop-nav button:hover {
  color: var(--primary);
  background: var(--primary-light);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  padding: 8px;
  min-width: 220px;
  border: 1px solid var(--border);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--mid);
}
.dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); }

.header-cta {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}
@media (min-width: 1024px) { .header-cta { display: flex; } }

/* Hamburger */
.hamburger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  border: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
  min-width: var(--touch);
  min-height: var(--touch);
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
#mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 16px 40px;
}
#mobile-menu.open { display: block; }
@media (min-width: 1024px) { #mobile-menu { display: none !important; } }

.mobile-menu-section { margin-bottom: 24px; }
.mobile-menu-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 8px;
  padding: 0 4px;
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  transition: background 0.2s;
  min-height: var(--touch);
}
.mobile-menu-link:hover, .mobile-menu-link:active { background: var(--primary-light); color: var(--primary); }
.mobile-menu-link .ml-icon { font-size: 20px; width: 28px; text-align: center; }

.mobile-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* ---------- FOOTER ---------- */
#site-footer {
  background: #050A18;
  color: rgba(255,255,255,0.6);
  padding: 48px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 640px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } }

.footer-brand .site-logo { color: white; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.8; margin-bottom: 16px; max-width: 280px; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  color: rgba(255,255,255,0.7);
}
.social-btn:hover { background: var(--primary); color: white; }

.footer-col h4 {
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
  min-height: 24px;
}
.footer-col a:hover { color: white; }

.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.cert-tag {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 4px 10px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal-links a { color: rgba(255,255,255,0.35); font-size: 12px; }
.footer-legal-links a:hover { color: white; }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 20px; right: 16px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 998;
  cursor: pointer;
  transition: transform 0.2s;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}
@media (min-width: 768px) { .wa-float { bottom: 28px; right: 24px; width: 56px; height: 56px; font-size: 28px; } }
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,80%,100% { transform: scale(1); }
  40% { transform: scale(1.08); }
}
.wa-float { animation: waPulse 3s ease-in-out infinite; }
.wa-float:hover { animation: none; transform: scale(1.1); }

/* ---------- SECTION UTILITIES ---------- */
.section { padding: 60px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }
@media (min-width: 1024px) { .section { padding: 100px 0; } }

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}
.section-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}
.section-header-center { text-align: center; margin-bottom: 40px; }
.section-header-center .section-sub { margin: 0 auto; }

/* ---------- GRID UTILITIES ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

/* ---------- CARD COMPONENTS ---------- */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) { .card { padding: 28px 32px; } }
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ---------- BADGE ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}
.badge-green { background: #F0FFF8; color: var(--accent-dark); }
.badge-gold { background: #FFFBEB; color: #92400E; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--primary); font-weight: 600; }
.breadcrumb-sep { color: var(--border); }

/* ---------- STATS ROW ---------- */
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .stats-row { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.stat-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) { .stat-box { padding: 22px; } }
.stat-box h3 { font-size: clamp(24px, 4vw, 36px); font-weight: 800; color: var(--primary); }
.stat-box p { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ---------- FORMS ---------- */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  min-height: var(--touch);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,87,255,0.1);
}
.form-control::placeholder { color: #9CA3AF; }
select.form-control { cursor: pointer; }
textarea.form-control { min-height: 100px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; gap: 14px; } }

/* ---------- CHECK LIST ---------- */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
}
.check-icon {
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: white;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- FAQ ACCORDION ---------- */
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background: none;
  text-align: left;
  color: var(--dark);
  min-height: var(--touch);
  gap: 12px;
  -webkit-tap-highlight-color: transparent;
}
.faq-btn:hover { background: var(--light); }
.faq-icon {
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ---------- HIGHLIGHT BOXES ---------- */
.highlight-blue {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  color: white;
}
@media (min-width: 768px) { .highlight-blue { padding: 48px 40px; } }

.highlight-dark {
  background: linear-gradient(135deg, var(--dark), #0D1530);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  color: white;
}

/* ---------- TABLE ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 500px; }
thead th { background: var(--dark); color: white; padding: 12px 16px; text-align: left; font-size: 13px; white-space: nowrap; }
tbody td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--mid); }
tbody tr:nth-child(even) { background: var(--light); }

/* ---------- CTA BANNER ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  color: white;
}
@media (min-width: 768px) { .cta-section { padding: 56px 48px; } }
.cta-section h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 800; margin-bottom: 12px; }
.cta-section p { font-size: 16px; opacity: 0.85; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 12px; }
@media (min-width: 480px) { .cta-buttons { flex-direction: row; justify-content: center; } }

/* ---------- TOAST NOTIFICATION ---------- */
.toast {
  position: fixed;
  bottom: 80px; right: 16px;
  background: var(--dark);
  color: white;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transform: translateX(200%);
  transition: transform 0.4s ease;
}
@media (min-width: 480px) { .toast { right: 24px; max-width: 340px; } }
.toast.show { transform: translateX(0); }

/* ---------- RELATED PAGES GRID ---------- */
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 640px) { .related-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.related-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  transition: all 0.25s;
}
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.related-card .flag { font-size: 28px; margin-bottom: 8px; }
.related-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.related-card a { font-size: 12px; color: var(--primary); font-weight: 600; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 8px 0;
  font-size: 12px;
  overflow: hidden;
}
.trust-scroll {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: trustScroll 30s linear infinite;
}
@keyframes trustScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-bar:hover .trust-scroll { animation-play-state: paused; }
.trust-item-bar { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.trust-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }

/* ---------- HERO LAYOUT ---------- */
.hero-section {
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .hero-section { padding: 110px 0 80px; } }

.hero-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) { .hero-2col { grid-template-columns: 1fr 1fr; gap: 60px; } }

.hero-badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.hero-title {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-title .hl { color: var(--primary); }
.hero-title .hl-green { color: var(--accent); }
.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
@media (min-width: 480px) { .hero-actions { flex-direction: row; flex-wrap: wrap; } }

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mid);
}
.hero-trust-item { display: flex; align-items: center; gap: 5px; }

.hero-visual { display: none; }
@media (min-width: 1024px) { .hero-visual { display: block; } }

/* ---------- MISC UTILITIES ---------- */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.font-bold { font-weight: 700; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }
.bg-white { background: white; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow-md); }
.border { border: 1px solid var(--border); }

/* Page footer push */
.page-footer-simple {
  background: #050A18;
  color: rgba(255,255,255,0.5);
  padding: 28px 0;
  text-align: center;
  font-size: 13px;
}
.page-footer-simple a { color: rgba(255,255,255,0.4); margin: 0 10px; }
.page-footer-simple a:hover { color: white; }
