/* ============================================================
   LUVEEDU CLOUD — MAIN STYLESHEET
   Tailwind-first. Custom CSS only where Tailwind can't reach.
   ============================================================ */

/* ===== BASE ===== */
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', sans-serif; }
a { text-decoration: none; color: inherit; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== HERO ===== */
.hero-bg {
  background: #080520;
  background-image:
    radial-gradient(ellipse 80% 55% at 55% -5%, rgba(55,48,212,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 5% 90%, rgba(30,16,135,0.3) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 95% 80%, rgba(42,26,173,0.2) 0%, transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ===== HERO STARS ===== */
.hero-stars { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.star {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.7);
  animation: starPulse var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes starPulse {
  0%,100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.6); }
}
@keyframes starDrift {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-60px) translateX(20px); opacity: 0; }
}
.star-drift {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.6);
  animation: starDrift var(--dur, 6s) linear infinite;
  animation-delay: var(--delay, 0s);
}

/* ===== GRADIENT TEXT ===== */
.text-gradient {
  background: linear-gradient(90deg, #a5b4fc 0%, #e0e7ff 60%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ANIMATIONS ===== */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.blink { animation: blink 2s infinite; }

/* ===== UPTIME BAR ===== */
.uptime-bar { height: 3px; background: #e5e7eb; border-radius: 2px; overflow: hidden; }
.uptime-fill { height: 100%; width: 99.99%; background: #1e1087; border-radius: 2px; }

/* ===== SPEED BARS ===== */
.speed-track { flex: 1; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.speed-fill-us { height: 100%; background: linear-gradient(90deg,#1e1087,#3730d4); border-radius: 2px; }
.speed-fill-other { height: 100%; background: rgba(255,255,255,0.18); border-radius: 2px; }
/* Light bg variant */
.speed-track-light { flex: 1; height: 4px; background: #e5e7eb; border-radius: 2px; overflow: hidden; }
.speed-fill-light { height: 100%; background: #d1d5db; border-radius: 2px; }

/* ===== AMCHARTS MAP ===== */
#amcharts-map { border-radius: 10px; overflow: hidden; }

/* ===== PLAN FEATURED ===== */
.plan-featured {
  background: linear-gradient(155deg, #1e1087 0%, #2a1aad 60%, #3730d4 100%) !important;
  border-color: transparent !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.plan-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(30,16,135,0.35);
}

/* ===== VPS ROW FEATURED ===== */
.vps-row-featured {
  background: linear-gradient(155deg, #1e1087 0%, #2a1aad 60%, #3730d4 100%);
  border-color: transparent !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.vps-row-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30,16,135,0.35);
}

/* ===== DOMAIN SECTION ===== */
.domain-bg {
  background: #06041a;
  background-image:
    radial-gradient(ellipse 60% 70% at 50% -10%, rgba(55,48,212,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 100%, rgba(30,16,135,0.25) 0%, transparent 55%);
}
.domain-torch {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 500px; pointer-events: none;
  background: radial-gradient(ellipse 40% 60% at 50% 0%, rgba(99,102,241,0.35) 0%, rgba(55,48,212,0.15) 40%, transparent 70%);
  animation: torchPulse 4s ease-in-out infinite;
}
@keyframes torchPulse {
  0%,100% { opacity: 0.7; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.08); }
}

/* ===== FOOTER ===== */
.footer-cta-bg { background: linear-gradient(100deg, #1e1087 0%, #2a1aad 100%); }
.site-footer { background: #0a0c18; }

/* ===== SECURITY RING ===== */
.security-ring {
  width: 148px; height: 148px; border-radius: 50%;
  background: conic-gradient(#3730d4 0%, #1e1087 50%, #2a1aad 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 32px rgba(55,48,212,0.4);
}
.security-ring-inner {
  width: 114px; height: 114px; background: #0d0f1a; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}

/* ===== CTA SECTION ===== */
.cta-bg {
  background: linear-gradient(135deg, #0f0c2e 0%, #1e1087 40%, #2a1aad 70%, #1a0f7a 100%);
}

/* ===== PLAN TAB ===== */
.plan-tab.active { background: #1e1087; color: #fff; box-shadow: 0 2px 8px rgba(30,16,135,0.3); }
.plan-tab:not(.active):hover { color: #1e1087; background: #f0eefb; }

/* ===== BILLING TAB ===== */
.billing-tab.active,
.billing-tab-ag.active,
.billing-tab-vps.active,
.billing-tab-wvps.active,
.billing-tab-rs.active,
.billing-tab-eh.active { background: #1e1087; color: #fff; box-shadow: 0 2px 8px rgba(30,16,135,0.3); }
.billing-tab:not(.active):hover,
.billing-tab-ag:not(.active):hover,
.billing-tab-vps:not(.active):hover,
.billing-tab-wvps:not(.active):hover,
.billing-tab-rs:not(.active):hover,
.billing-tab-eh:not(.active):hover { color: #1e1087; background: #f0eefb; }

/* ===== COMPARE TABLE (legacy, kept for other pages) ===== */
.col-us { background: rgba(30,16,135,0.04); }
.compare-table th.col-us { background: #1e1087; color: rgba(255,255,255,0.85) !important; }

/* ===== SERVICES MASONRY GRID ===== */
/*
  New order: Hosting first, then CDN/DNS/Security/Email/Domain/AI
  Layout:
  Row 1: [1: Shared Hosting col1/4 wide] [2: Cloud col4] [3: WordPress col4 row2]
  Row 2: [4: Managed VPS col1/3 wide] [5: CDN col4]
  Row 3: [6: DNS col1] [7: Security col2/4 wide] [8: Email col4]
  Row 4: [9: Domain Reg col1] [10: Domain Mgr col2] [11: AI col3] — 3 equal cols + empty col4
*/
.services-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}
/* Row 1 */
.services-masonry > .svc-card:nth-child(1)  { grid-column: 1 / 4; grid-row: 1; } /* Shared Hosting — wide */
.services-masonry > .svc-card:nth-child(2)  { grid-column: 4;     grid-row: 1; } /* Cloud Hosting */
/* Row 2 */
.services-masonry > .svc-card:nth-child(3)  { grid-column: 4;     grid-row: 2; } /* WordPress */
.services-masonry > .svc-card:nth-child(4)  { grid-column: 1 / 4; grid-row: 2; } /* Managed VPS — wide */
/* Row 3 */
.services-masonry > .svc-card:nth-child(5)  { grid-column: 1;     grid-row: 3; } /* Global CDN */
.services-masonry > .svc-card:nth-child(6)  { grid-column: 2;     grid-row: 3; } /* Anycast DNS */
.services-masonry > .svc-card:nth-child(7)  { grid-column: 3 / 5; grid-row: 3; } /* Ultra Security — wide */
/* Row 4 */
.services-masonry > .svc-card:nth-child(8)  { grid-column: 1;     grid-row: 4; } /* Business Email */
.services-masonry > .svc-card:nth-child(9)  { grid-column: 2;     grid-row: 4; } /* Domain Registration */
.services-masonry > .svc-card:nth-child(10) { grid-column: 3;     grid-row: 4; } /* Domain Manager */
.services-masonry > .svc-card:nth-child(11) { grid-column: 4;     grid-row: 4; } /* AI Engine */

/* Tablet: 2-col, auto flow */
@media (max-width: 1023px) {
  .services-masonry { grid-template-columns: repeat(2, 1fr); }
  .services-masonry > .svc-card { grid-column: unset !important; grid-row: unset !important; }
}
/* Mobile: single col */
@media (max-width: 639px) {
  .services-masonry { grid-template-columns: 1fr; }
  .services-masonry > .svc-card { grid-column: 1 !important; grid-row: unset !important; }
}

/* ===== REVIEW SLIDER ===== */
.reviews-slider-track {
  animation: reviewsScroll 45s linear infinite;
  will-change: transform;
}
.reviews-slider-track.col-2 { animation-duration: 58s; }
.reviews-slider-track:hover { animation-play-state: paused; }
@keyframes reviewsScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
/* Fade mask — hides bottom seam */
.reviews-slider-outer {
  -webkit-mask-image: linear-gradient(to bottom, black 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 82%, transparent 100%);
}

/* ===== ICON BOX — no shadow by default ===== */
.no-icon-shadow { box-shadow: none !important; }

/* ===== COMPARISON BARS ===== */
.cmp-bar { transition: width 1s cubic-bezier(0.4,0,0.2,1); }

/* ===== SECTION BADGE ===== */
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(30,16,135,0.07); border: 1px solid rgba(30,16,135,0.15);
  color: #1e1087; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.section-badge-dark {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.75); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 1px 8px rgba(0,0,0,0.18);
}

/* Glass badge for dark backgrounds */
.badge-glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 1px 6px rgba(0,0,0,0.15);
}
/* Glass card for dark backgrounds */
.card-glass-dark {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 4px 24px rgba(0,0,0,0.2);
}
/* Hero stat card glass — open bottom for seamless merge with content below */
.hero-stat-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-bottom: none;
}

/* ===== CARD HOVER ===== */
.card-hover {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30,16,135,0.12);
}
.card-hover-dark {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card-hover-dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(55,48,212,0.25);
}

/* ===== FEATURE CARD SHINE ===== */
@keyframes card-shine {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(250%) skewX(-15deg); }
}
.feature-shine {
  position: relative;
  overflow: hidden;
}
.feature-shine::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: translateX(-100%) skewX(-15deg);
  animation: card-shine 3.5s ease-in-out infinite;
  pointer-events: none;
}
.feature-shine:nth-child(2)::after  { animation-delay: 0.3s; }
.feature-shine:nth-child(3)::after  { animation-delay: 0.6s; }
.feature-shine:nth-child(4)::after  { animation-delay: 0.9s; }
.feature-shine:nth-child(5)::after  { animation-delay: 1.2s; }
.feature-shine:nth-child(6)::after  { animation-delay: 1.5s; }
.feature-shine:nth-child(7)::after  { animation-delay: 1.8s; }
.feature-shine:nth-child(8)::after  { animation-delay: 2.1s; }
.feature-shine:nth-child(9)::after  { animation-delay: 2.4s; }
.feature-shine:nth-child(10)::after { animation-delay: 2.7s; }
.feature-shine:nth-child(11)::after { animation-delay: 3.0s; }
.feature-shine:nth-child(12)::after { animation-delay: 3.3s; }
.feature-shine:nth-child(13)::after { animation-delay: 0.15s; }
.feature-shine:nth-child(14)::after { animation-delay: 0.45s; }
.feature-shine:nth-child(15)::after { animation-delay: 0.75s; }
.feature-shine:nth-child(16)::after { animation-delay: 1.05s; }
.feature-shine:nth-child(17)::after { animation-delay: 1.35s; }
.feature-shine:nth-child(18)::after { animation-delay: 1.65s; }
.feature-shine:nth-child(19)::after { animation-delay: 1.95s; }
.feature-shine:nth-child(20)::after { animation-delay: 2.25s; }

/* ===== TECH STACK SECTION ===== */
.tech-bg { background: #f8f9ff; }
.tech-terminal {
  background: #0d0f1a; border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.tech-terminal-bar {
  background: #1a1c2e; padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tech-terminal-dot { width: 10px; height: 10px; border-radius: 50%; }

/* ===== HEADER ===== */
.header-root {
  background: #ffffff;
  border-bottom: 1px solid #e8eaed;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.header-root.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 0;
}
.header-logo img { height: 34px; width: auto; display: block; }
.header-divider {
  width: 1px;
  height: 22px;
  background: #e5e7eb;
  margin: 0 10px;
  flex-shrink: 0;
}

/* Nav links */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 6px 10px;
  font-size: 15.5px;
  font-weight: 600;
  color: #374151;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: #111827; background: #f3f4f6; }
.nav-link-active { color: #1e1087 !important; font-weight: 600; }
.nav-chevron {
  opacity: 0.4;
  transition: transform 0.2s ease, opacity 0.15s;
  flex-shrink: 0;
}
.has-dropdown:hover .nav-chevron { transform: rotate(180deg); opacity: 0.65; }

/* Buttons */
.btn-header-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: #374151;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-header-secondary:hover { background: #f9fafb; border-color: #9ca3af; color: #111827; }
.btn-header-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: #1e1087;
  border: 1px solid #1e1087;
  border-radius: 8px;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-header-primary:hover { background: #160c6b; border-color: #160c6b; }
.btn-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #374151;
  background: #fff;
  transition: background 0.15s, border-color 0.15s;
}
.btn-mobile-toggle:hover { background: #f3f4f6; border-color: #d1d5db; }

/* ===== DROPDOWN ===== */
.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  z-index: 400;
  min-width: 272px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.dropdown-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Right-anchored variant */
.dropdown-panel-right {
  left: auto;
  right: 0;
  transform: translateY(-6px);
}
.dropdown-panel-right.is-open {
  transform: translateY(0);
}
.dropdown-inner {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 16px 40px rgba(0,0,0,0.11);
  padding: 8px;
  position: relative;
}
/* Caret */
.dropdown-inner::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px;
  background: #fff;
  border-left: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
}
.dropdown-inner-no-caret::before { display: none; }
.dropdown-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9ca3af;
  padding: 4px 10px 6px;
  margin: 0;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border-radius: 8px;
  transition: background 0.12s;
  text-decoration: none;
}
.dropdown-item:hover { background: #f5f3ff; }
.dropdown-item.is-active { background: #ede9fe; }
.dropdown-icon {
  width: 34px; height: 34px;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #1e1087;
  transition: background 0.12s, color 0.12s;
}
.dropdown-item:hover .dropdown-icon,
.dropdown-item.is-active .dropdown-icon { background: #1e1087; color: #fff; }
.dropdown-item-title {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}
.dropdown-item-desc {
  display: block;
  font-size: 11.5px;
  color: #6b7280;
  margin-top: 1px;
  line-height: 1.35;
}
.dropdown-item:hover .dropdown-item-title { color: #1e1087; }

/* Simple dropdown item — no description, used for login dropdown */
.dropdown-item-simple {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  transition: background 0.12s;
  text-decoration: none;
}
.dropdown-item-simple:hover { background: #f5f3ff; }
.dropdown-item-simple:hover .dropdown-item-title { color: #1e1087; }
.dropdown-icon-sm {
  width: 30px; height: 30px;
  background: #f3f4f6;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #1e1087;
  transition: background 0.12s, color 0.12s;
}
.dropdown-item-simple:hover .dropdown-icon-sm { background: #1e1087; color: #fff; }

/* Dropdown divider */
.dropdown-divider {
  height: 1px;
  background: #ede9fe;
  margin: 4px 0;
}

/* Dropdown badge */
.dropdown-badge {
  display: inline-flex;
  align-items: center;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 99px;
  flex-shrink: 0;
  margin-left: 6px;
}
.dropdown-badge-red { background: #ef4444; color: #fff; }
.dropdown-badge-blue { background: #1e1087; color: #fff; }
.dropdown-badge-green { background: #16a34a; color: #fff; }
.dropdown-badge-amber { background: #d97706; color: #fff; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  border-top: 1px solid #f0f0f0;
  background: #fff;
}
.mobile-menu.open { display: block; }
.mobile-nav-link {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  border-radius: 7px;
  transition: background 0.1s, color 0.1s;
}
.mobile-nav-link:hover { background: #f3f4f6; color: #111827; }
.mobile-group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  border-radius: 7px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.1s;
}
.mobile-group-btn:hover { background: #f3f4f6; }
.mobile-group-btn i { transition: transform 0.2s ease; opacity: 0.5; }
.mobile-group-btn.open i { transform: rotate(180deg); }
.mobile-group-body {
  display: none;
  flex-direction: column;
  gap: 1px;
  padding: 2px 0 4px 12px;
}
.mobile-group-body.open { display: flex; }
.mobile-sub-link {
  display: block;
  padding: 8px 12px;
  font-size: 13.5px;
  color: #4b5563;
  border-radius: 6px;
  transition: background 0.1s, color 0.1s;
}
.mobile-sub-link:hover { background: #f5f3ff; color: #1e1087; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) { .wrap { padding: 0 20px; } }
