/* ============================================================
   SWEEPIT — Modern Cleaning Services
   Design system: Clean, fresh, Scandinavian-inspired
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors */
  --blue-900: #0a1628;
  --blue-800: #0f1f3a;
  --blue-700: #15294d;
  --blue-600: #1b3560;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #60a5fa;
  --blue-200: #93c5fd;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;

  --teal-500: #06b6d4;
  --teal-400: #22d3ee;
  --teal-100: #cffafe;

  --green-500: #10b981;
  --green-400: #34d399;
  --green-100: #d1fae5;

  --amber-500: #f59e0b;
  --amber-400: #fbbf24;

  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { color: var(--gray-600); margin-bottom: 1rem; }

a {
  color: var(--blue-500);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--blue-600); }

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

@media (max-width: 768px) {
  .container { padding: 0 var(--space-lg); }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-500);
  border: 2px solid var(--blue-500);
}
.btn-secondary:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
  color: var(--blue-600);
}

.btn-white {
  background: var(--white);
  color: var(--gray-900);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--gray-900);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
  border-radius: var(--radius-xl);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition-base);
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--blue-50);
  color: var(--blue-500);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-lang {
  display: flex;
  gap: 0.25rem;
}
.nav-lang a {
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
}
.nav-lang a.active {
  background: var(--blue-50);
  color: var(--blue-500);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: var(--space-xl);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
}

/* Service dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}
.nav-dropdown-toggle:hover {
  background: var(--blue-50);
  color: var(--blue-500);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  padding: 0.5rem;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}
.nav-dropdown-menu .dropdown-section {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  padding: 0.5rem 1rem 0.25rem;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--blue-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.95) 0%,
    rgba(15, 31, 58, 0.85) 40%,
    rgba(27, 53, 96, 0.6) 70%,
    rgba(37, 99, 235, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--blue-200);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s ease;
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero h1 { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1.0625rem; }
}

/* ---- ZIP CODE FORM ---- */
.zip-form {
  display: flex;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.375rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 480px;
}

.zip-input-group {
  display: flex;
  flex: 1;
  gap: 2px;
}
.zip-input-group input {
  width: 40px;
  flex: 1;
  text-align: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-sans);
  color: var(--gray-900);
  padding: 0.625rem 0;
  -moz-appearance: textfield;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.zip-input-group input::-webkit-outer-spin-button,
.zip-input-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.zip-input-group input:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.zip-service-select {
  padding: 0.625rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  min-width: 160px;
  transition: border-color var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.zip-service-select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.zip-form .btn {
  flex-shrink: 0;
}

/* ---- SECTIONS ---- */
.section {
  padding: var(--space-4xl) 0;
}

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

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-500);
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-500);
}

.section-dark {
  background: var(--gray-900);
}
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: var(--gray-400); }
.section-dark .section-label { color: var(--blue-300); }

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

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-xl);
}

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

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

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

.service-card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  display: block;
}

.service-card h3 {
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
}

.service-card-link {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.service-card-link::after {
  content: '→';
  transition: transform var(--transition-fast);
}
.service-card-link:hover::after {
  transform: translateX(4px);
}

/* Service tabs */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.service-tab {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
  font-size: 0.9375rem;
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--gray-600);
  font-family: var(--font-sans);
}

.service-tab:hover {
  border-color: var(--blue-300);
  color: var(--blue-500);
}

.service-tab.active {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
}

/* ---- FEATURES (3-col icon blocks) ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  border-radius: var(--radius-xl);
  font-size: 2rem;
  margin: 0 auto var(--space-lg);
}

.feature-item h3 {
  margin-bottom: var(--space-sm);
}

/* ---- CHECKLIST ---- */
.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.checklist li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--green-500);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 640px) {
  .checklist { grid-template-columns: 1fr; }
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--gray-100);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  font-size: 4rem;
  font-weight: 800;
  color: var(--blue-100);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: var(--amber-400);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blue-500);
  font-size: 1.125rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--gray-900);
}

.testimonial-location {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ---- APP SECTION ---- */
.app-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

@media (max-width: 768px) {
  .app-section { grid-template-columns: 1fr; }
}

.app-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.app-mockup {
  width: 280px;
  height: 560px;
  background: var(--gray-900);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.app-mockup-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.app-mockup-notch {
  width: 120px;
  height: 28px;
  background: var(--gray-900);
  border-radius: 0 0 20px 20px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.app-features-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.app-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition-fast);
}
.app-features-list li:hover {
  background: var(--blue-50);
  transform: translateX(4px);
}

.app-features-list li .app-feature-icon {
  font-size: 1.25rem;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  font-size: 1.5rem;
}

.trust-label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

/* ---- VALUES ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

.value-card {
  text-align: center;
  padding: var(--space-xl);
}

.value-card .value-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.value-card h4 {
  margin-bottom: var(--space-sm);
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

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

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.stat-label {
  color: var(--gray-400);
  font-size: 0.9375rem;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 768px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  font-family: var(--font-sans);
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--blue-500);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--space-xl);
}

.contact-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--gray-800);
  transition: all var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--gray-900);
  padding: var(--space-4xl) 0 var(--space-2xl);
  color: var(--gray-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  @media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
  }
}

.footer-brand img {
  height: 28px;
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  color: var(--gray-500);
  font-size: 0.9375rem;
}

.footer h4 {
  color: var(--white);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
}

.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
  color: var(--gray-400);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--gray-500);
  margin-left: var(--space-lg);
}
.footer-bottom a:hover { color: var(--gray-300); }

/* ---- PAGE HEADER (for inner pages) ---- */
.page-hero {
  background: var(--blue-900);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

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

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 560px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}

.breadcrumbs a {
  color: rgba(255,255,255,0.6);
}
.breadcrumbs a:hover { color: var(--white); }

.breadcrumbs .separator {
  color: rgba(255,255,255,0.3);
}

.breadcrumbs .current {
  color: var(--white);
}

/* ---- SERVICE PROCESS ---- */
.process-steps {
  display: flex;
  gap: var(--space-xl);
  counter-reset: step;
}

@media (max-width: 768px) {
  .process-steps { flex-direction: column; }
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--blue-500);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(50% + 40px);
  width: calc(100% - 88px);
  height: 2px;
  background: var(--gray-200);
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xl);
  z-index: 2000;
  padding: var(--space-lg) 0;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
  min-width: 280px;
}

.cookie-banner-actions {
  display: flex;
  gap: var(--space-sm);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 480px) {
  .related-services { grid-template-columns: 1fr; }
}

.related-service-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.related-service-card:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
  transform: translateY(-2px);
}

.related-service-card h4 {
  margin-bottom: var(--space-xs);
}

.related-service-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin: 0;
}

/* ---- CAREERS ---- */
.careers-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .careers-benefits { grid-template-columns: 1fr; }
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

/* ---- AREAS ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.area-tag {
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9375rem;
  text-align: center;
  color: var(--gray-700);
  transition: all var(--transition-fast);
}

.area-tag:hover {
  background: var(--blue-50);
  color: var(--blue-500);
}

/* ---- 404 ---- */
.not-found {
  text-align: center;
  padding: var(--space-4xl) 0;
}

.not-found-emoji {
  font-size: 6rem;
  margin-bottom: var(--space-xl);
  animation: float 3s ease-in-out infinite;
}

/* ---- LEGAL ---- */
.legal-content {
  max-width: 768px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal-content p {
  line-height: 1.8;
}

/* ---- TIMBANKEN PROMO ---- */
.timbanken-card {
  background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.timbanken-card h3 { color: var(--white); margin-bottom: var(--space-sm); }
.timbanken-card p { color: rgba(255,255,255,0.85); }

/* ---- SWEEPIT PROMO BADGE ---- */
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--amber-500), #f97316);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: var(--space-xl);
  animation: pulse 2s infinite;
}

/* ---- RESPONSIVE UTILS ---- */
.hide-mobile { }
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

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

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

/* ---- PRINT ---- */
@media print {
  .nav, .footer, .cookie-banner, .btn, .mobile-menu { display: none !important; }
}
