/* ═══════════════════════════════════════════════════════════════════════
   HiveCare Website — Styles
   Brand: Royal Navy + Golden Amber
   Fonts: Quicksand (display) + DM Sans (body) + Tajawal (Arabic)
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ──────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --primary: #0D2137;
  --primary-rgb: 13, 33, 55;
  --secondary: #1E4976;
  --secondary-rgb: 30, 73, 118;
  --accent: #F5A623;
  --accent-rgb: 245, 166, 35;
  --accent-light: #FFD066;
  --accent-deep: #D4911E;

  /* Neutrals */
  --bg: #FAFBFC;
  --bg-secondary: #F1F3F5;
  --surface: #FFFFFF;
  --text: #111827;
  --text-secondary: #8E9AAB;
  --text-tertiary: #7C9CB7;
  --border: #E2E8F0;
  --divider: #E5E7EB;

  /* Status */
  --success: #22C55E;
  --error: #EF4444;

  /* Fonts */
  --font-display: 'Quicksand', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-arabic: 'Tajawal', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(13, 33, 55, 0.08);
  --shadow-md: 0 4px 12px rgba(13, 33, 55, 0.1);
  --shadow-lg: 0 8px 30px rgba(13, 33, 55, 0.12);
  --shadow-xl: 0 16px 48px rgba(13, 33, 55, 0.16);
  --shadow-glow: 0 0 30px rgba(245, 166, 35, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Navbar */
  --navbar-height: 72px;
}

/* ─── Reset & Base ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

/* ─── Container ──────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
}

.btn--primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.45);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 16px;
}

/* ─── Section Headers ────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: 40px;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Light variants (for dark backgrounds) */
.section-label--light { color: var(--accent-light); }
.section-title--light { color: #fff; }
.section-subtitle--light { color: rgba(255, 255, 255, 0.7); }
.section-header--light { color: #fff; }

/* ═══════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 33, 55, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
  border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link--portal {
  background: rgba(245, 166, 35, 0.15);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.nav-link--portal::after {
  display: none;
}

.nav-link--portal:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--primary) 0%, var(--secondary) 50%, #2E5C8A 100%);
  overflow: hidden;
}

/* Honeycomb background pattern */
.hero-honeycomb {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hex {
  position: absolute;
  width: 80px;
  height: 92px;
  opacity: 0;
  animation: hexFloat 20s ease-in-out infinite;
}

.hex::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 166, 35, 0.06);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 1px solid rgba(245, 166, 35, 0.08);
}

.hex--1  { top: 10%; left: 5%; animation-delay: 0s; width: 60px; height: 69px; }
.hex--2  { top: 20%; left: 80%; animation-delay: 2s; width: 100px; height: 115px; }
.hex--3  { top: 60%; left: 10%; animation-delay: 4s; width: 70px; height: 81px; }
.hex--4  { top: 70%; left: 85%; animation-delay: 6s; }
.hex--5  { top: 40%; left: 90%; animation-delay: 8s; width: 50px; height: 58px; }
.hex--6  { top: 80%; left: 50%; animation-delay: 10s; width: 90px; height: 104px; }
.hex--7  { top: 5%; left: 40%; animation-delay: 1s; width: 55px; height: 63px; }
.hex--8  { top: 30%; left: 20%; animation-delay: 3s; width: 45px; height: 52px; }
.hex--9  { top: 50%; left: 70%; animation-delay: 5s; width: 65px; height: 75px; }
.hex--10 { top: 90%; left: 20%; animation-delay: 7s; width: 75px; height: 87px; }
.hex--11 { top: 15%; left: 60%; animation-delay: 9s; width: 40px; height: 46px; }
.hex--12 { top: 85%; left: 70%; animation-delay: 11s; width: 55px; height: 63px; }

@keyframes hexFloat {
  0%, 100% { opacity: 0; transform: translateY(0) rotate(0deg); }
  10% { opacity: 1; }
  50% { transform: translateY(-30px) rotate(10deg); }
  90% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-lg);
}

.hero-logo {
  width: 260px;
  margin: 0 auto var(--space-xl);
  filter: brightness(0) invert(1) drop-shadow(0 2px 16px rgba(245, 166, 35, 0.3));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.about {
  padding: var(--space-4xl) 0;
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stat-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: var(--accent);
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-number {
  display: inline;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: var(--space-xs);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.services {
  padding: var(--space-4xl) 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.service-card {
  position: relative;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-lg);
  color: var(--accent);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-size: 22px;
  margin-bottom: var(--space-sm);
}

.service-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-tag {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  border-radius: var(--radius-full);
}

.service-tag--accent {
  color: var(--accent);
  background: rgba(245, 166, 35, 0.1);
}

/* ═══════════════════════════════════════════════════════════════════════
   HOW IT WORKS SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.how-it-works {
  padding: var(--space-4xl) 0;
  background: linear-gradient(160deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: var(--space-xl);
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  background: var(--accent);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: rgba(255, 255, 255, 0.6);
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-title {
  font-size: 20px;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 48px;
  color: rgba(245, 166, 35, 0.4);
  flex-shrink: 0;
  width: 60px;
}

.step-connector svg {
  width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   WHY HIVECARE SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.why-hivecare {
  padding: var(--space-4xl) 0;
  background: var(--surface);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 166, 35, 0.3);
}

.feature-icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-bottom: var(--space-md);
  background: rgba(245, 166, 35, 0.1);
  border-radius: 12px;
  color: var(--accent);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: 18px;
  margin-bottom: var(--space-sm);
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════
   ADMIN PORTAL SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.admin-portal {
  padding: var(--space-4xl) 0;
  background: var(--bg);
}

.admin-card {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  padding: var(--space-3xl);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.admin-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.admin-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  color: var(--accent);
  opacity: 0.8;
}

.admin-icon svg {
  width: 100%;
  height: 100%;
}

.admin-content {
  position: relative;
  z-index: 1;
}

.admin-title {
  font-size: 32px;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.admin-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 14px;
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-md);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

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

.footer-contact {
  margin-top: var(--space-lg);
}

.footer-contact p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-xs);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }

/* Stagger children in grids */
.stats-grid .stat-card:nth-child(1) { transition-delay: 0s; }
.stats-grid .stat-card:nth-child(2) { transition-delay: 0.1s; }
.stats-grid .stat-card:nth-child(3) { transition-delay: 0.2s; }
.stats-grid .stat-card:nth-child(4) { transition-delay: 0.3s; }

.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }

.features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.4s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.5s; }

.steps-grid .step-card:nth-child(1) { transition-delay: 0s; }
.steps-grid .step-card:nth-child(3) { transition-delay: 0.2s; }
.steps-grid .step-card:nth-child(5) { transition-delay: 0.4s; }

/* Counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .section-title { font-size: 34px; }
  .hero-tagline { font-size: 42px; }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --navbar-height: 64px;
  }

  /* Hamburger visible */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: rgba(13, 33, 55, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-2xl);
    gap: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--transition-base);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 18px;
  }

  /* Hero */
  .hero-tagline {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-logo {
    width: 200px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  /* Section spacing */
  .about,
  .services,
  .how-it-works,
  .why-hivecare,
  .admin-portal {
    padding: var(--space-3xl) 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-header {
    margin-bottom: var(--space-2xl);
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .stat-number {
    font-size: 32px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* How it works */
  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    transform: rotate(90deg);
    width: 40px;
    padding-top: 0;
    margin: var(--space-sm) 0;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Admin */
  .admin-card {
    flex-direction: column;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
  }

  .admin-icon {
    width: 72px;
    height: 72px;
  }

  .admin-title {
    font-size: 26px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-brand {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-tagline {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-logo {
    width: 160px;
  }

  .section-title {
    font-size: 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .stat-number {
    font-size: 28px;
  }

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