/* LimitBee — Why Choose Us */
:root {
  --purple-deep: #4c1d95;
  --purple-mid: #7c3aed;
  --blue-bright: #2563eb;
  --gold: #f59e0b;
  --gold-light: #fde68a;
  --ink: #0f172a;
  --ink-soft: #475569;
  --surface: #faf8ff;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 24px 64px rgba(76, 29, 149, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 248, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.logo-link { display: flex; align-items: center; gap: 0.75rem; }
.logo-link img { width: 44px; height: 44px; border-radius: 50%; }
.logo-text {
  font-weight: 800;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--purple-deep), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.25s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--purple-deep);
  background: rgba(124, 58, 237, 0.08);
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }

.page-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(160deg, var(--purple-deep) 0%, #312e81 50%, var(--blue-bright) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '∞';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28rem;
  font-weight: 800;
  opacity: 0.04;
  line-height: 1;
}

.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.page-hero .section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
}

.features-section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(124, 58, 237, 0.08);
  transition: all 0.35s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(124, 58, 237, 0.15);
}

.feature-num {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-mid), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.35;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--purple-deep);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-mid);
  margin-bottom: 1rem;
}

/* Spotlight */
.spotlight {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.spotlight-reverse .spotlight-inner {
  direction: rtl;
}

.spotlight-reverse .spotlight-inner > * {
  direction: ltr;
}

.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.spotlight-media img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: block;
}

.spotlight-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--purple-deep);
}

.spotlight-text p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.highlight-banner {
  margin: 0 2rem 5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.highlight-banner img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
}

.highlight-banner h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.highlight-banner p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.cta-section {
  text-align: center;
  padding: 0 2rem 5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-mid), var(--blue-bright));
  color: var(--white);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.45);
}

.site-footer {
  background: linear-gradient(135deg, var(--purple-deep), #1e1b4b);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img { width: 48px; height: 48px; border-radius: 50%; margin-bottom: 1rem; }
.footer-brand h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.875rem; opacity: 0.75; max-width: 320px; }
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--gold-light);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.875rem; opacity: 0.75; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .spotlight-inner { grid-template-columns: 1fr; text-align: center; }
  .spotlight-reverse .spotlight-inner { direction: ltr; }
  .highlight-banner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
}
