/* 
  Sharik Homepage Theme 
  Isolated CSS for the public landing page 
*/

:root {
  /* Light Mode (Default) */
  --page-bg: #F7F9FC;
  --surface: #FFFFFF;
  --surface-elevated: #FFFFFF;
  --surface-soft: #F1F5F9;
  
  --text-primary: #0B1F3A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --border-light: rgba(226, 232, 240, 0.8);
  
  --brand-primary: #2563EB;
  --brand-hover: #1D4ED8;
  --brand-soft: #EFF6FF;
  
  --success: #16A34A;
  --success-soft: #DCFCE7;
  --warning: #F59E0B;
  --warning-soft: #FEF3C7;
  --danger: #EF4444;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.025);
  
  --header-bg: rgba(255, 255, 255, 0.85);
  
  --transition-fast: 150ms ease;
  --transition-normal: 220ms ease;
}

html[data-theme="dark"] {
  /* Dark Mode */
  --page-bg: #050B14;
  --surface: #0D1A2B;
  --surface-elevated: #122238;
  --surface-soft: #0F1E32;
  
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  
  --border: #1E293B;
  --border-strong: #334155;
  --border-light: rgba(30, 41, 59, 0.8);
  
  --brand-primary: #3B82F6;
  --brand-hover: #60A5FA;
  --brand-soft: rgba(59, 130, 246, 0.15);
  
  --success: #22C55E;
  --success-soft: rgba(34, 197, 94, 0.15);
  --warning: #FBBF24;
  --warning-soft: rgba(251, 191, 36, 0.15);
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  
  --header-bg: rgba(5, 11, 20, 0.85);
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Base resets for Homepage */
body.home-page {
  background-color: var(--page-bg);
  color: var(--text-primary);
  font-family: 'IBM Plex Sans Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.home-page a {
  text-decoration: none;
  transition: color var(--transition-fast);
}

.home-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================
   Home Header 
   ========================================= */
.home-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
  height: 76px;
  display: flex;
  align-items: center;
}

.home-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}

/* Header Right */
.home-header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.home-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.home-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.home-nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.home-nav-link:hover {
  color: var(--brand-primary);
}

/* Header Center */
.home-header-center {
  flex: 1;
  max-width: 400px;
}

.home-search-form {
  position: relative;
  display: flex;
  align-items: center;
}
.home-search-input {
  width: 100%;
  height: 44px;
  padding: 0 2.75rem 0 3.5rem; /* RTL padding */
  border: 1px solid var(--border);
  border-radius: 99px;
  background-color: var(--surface-soft);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}
.home-search-input:focus {
  outline: none;
  border-color: var(--brand-primary);
  background-color: var(--surface);
}
.home-search-input::placeholder {
  color: var(--text-muted);
}
.home-search-icon {
  position: absolute;
  right: 1rem;
  color: var(--text-muted);
  pointer-events: none;
}
.home-search-kbd {
  position: absolute;
  left: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.2rem 0.4rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  pointer-events: none;
  font-family: monospace;
}

/* Header Left */
.home-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-theme-toggle {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}
.home-theme-toggle:hover {
  background-color: var(--surface-soft);
  color: var(--brand-primary);
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  border: 1px solid transparent;
}
.home-btn-primary {
  background-color: var(--brand-primary);
  color: #FFF;
}
.home-btn-primary:hover {
  background-color: var(--brand-hover);
  color: #FFF;
}
.home-btn-ghost {
  background-color: transparent;
  color: var(--text-primary);
}
.home-btn-ghost:hover {
  background-color: var(--surface-soft);
  color: var(--brand-primary);
}

/* Mobile Nav Toggle */
.home-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
}

/* =========================================
   Responsive Breakpoints 
   ========================================= */
@media (max-width: 1024px) {
  .home-nav {
    display: none;
  }
  .home-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .home-header-center {
    display: none; /* Hide search in header on mobile, rely on hero search */
  }
  .home-btn-ghost.login-btn {
    display: none;
  }
}

/* Sections Base */
.home-section {
  padding: 5rem 0;
}
.home-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.home-section-eyebrow {
  display: inline-block;
  color: var(--brand-primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--brand-soft);
  border-radius: 99px;
}
.home-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
}
.home-section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================================
   Hero Section
   ========================================= */
.home-hero {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--page-bg) 100%);
  position: relative;
  overflow: hidden;
}
html[data-theme="dark"] .home-hero {
  background: linear-gradient(180deg, var(--surface-elevated) 0%, var(--page-bg) 100%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.home-hero-copy h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 1rem 0;
}
.home-hero-copy h1 .accent-text {
  color: var(--brand-primary);
}
.home-hero-copy p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Hero Search form */
.hero-search-box {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}
.hero-search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 1rem;
  font-size: 1rem;
  color: var(--text-primary);
  font-family: inherit;
}
.hero-search-box input:focus {
  outline: none;
}
.hero-search-box .home-btn {
  height: 48px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}
.hero-actions .home-btn {
  height: 52px;
  padding: 0 1.75rem;
  font-size: 1.05rem;
}

/* Hero Visual Placeholder */
.home-hero-visual {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  position: relative;
}
.home-hero-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.home-hero-visual-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.home-hero-visual-logo {
  width: 32px;
  height: 32px;
  background-color: var(--brand-primary);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.home-hero-visual-title b {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.home-hero-visual-title small {
  color: var(--text-muted);
  font-size: 0.75rem;
}
.home-hero-visual-status {
  background-color: var(--success-soft);
  color: var(--success);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
}
.home-hero-visual-progress {
  background-color: var(--surface-soft);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.home-hero-visual-progress div:first-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
}
.home-hero-visual-bar {
  height: 6px;
  background-color: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.home-hero-visual-bar span {
  display: block;
  height: 100%;
  width: 65%;
  background-color: var(--brand-primary);
}

.home-hero-float-1 {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-weight: 600;
}
.home-hero-float-1 small {
  display: block;
  color: var(--text-muted);
  font-weight: normal;
}
.home-hero-float-2 {
  position: absolute;
  top: 50px;
  left: -30px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow-md);
}
.home-hero-float-2 .stars {
  color: var(--warning);
  display: flex;
  gap: 2px;
  margin-bottom: 0.25rem;
}
.home-hero-float-2 b {
  font-size: 0.9rem;
  color: var(--text-primary);
}
.home-hero-float-2 small {
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-hero-copy h1 {
    font-size: 2.75rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .home-hero-visual {
    margin-top: 2rem;
  }
  .home-hero-float-1, .home-hero-float-2 {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
  }
}

/* =========================================
   Trust Strip
   ========================================= */
.home-trust-strip {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.home-trust-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.home-trust-item span {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .home-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .home-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Categories Grid
   ========================================= */
.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.home-category-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}
.home-category-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}
.home-category-icon {
  width: 48px;
  height: 48px;
  background-color: var(--surface-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}
.home-category-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
}
.home-category-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0 0 1rem 0;
  flex: 1;
}
.home-category-card span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-primary);
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .home-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .home-category-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   How it Works
   ========================================= */
.home-workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
/* Connecting line for desktop */
.home-workflow-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--border-strong);
  z-index: 0;
}
.home-workflow-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.home-workflow-number {
  width: 64px;
  height: 64px;
  background-color: var(--surface);
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem auto;
}
.home-workflow-step h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 0 0 0.75rem 0;
}
.home-workflow-step p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .home-workflow-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .home-workflow-grid::before {
    display: none;
  }
}

/* =========================================
   Featured Services
   ========================================= */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.home-service-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}
.home-service-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.home-service-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--surface-soft) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}
.home-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.home-service-card:hover .home-service-image img {
  transform: scale(1.05);
}
.home-service-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-service-provider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.home-service-avatar {
  width: 24px;
  height: 24px;
  background-color: var(--brand-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}
.home-service-provider span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.home-service-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-service-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-service-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--warning);
  font-size: 0.85rem;
  font-weight: 700;
}
.home-service-price {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .home-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .home-services-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Featured Providers
   ========================================= */
.home-providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.home-provider-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition-fast);
}
.home-provider-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.home-provider-avatar {
  width: 64px;
  height: 64px;
  background-color: var(--surface-soft);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}
.home-provider-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.home-provider-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 0.5rem 0;
}
.home-provider-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.home-provider-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

/* =========================================
   Financial Protection Section
   ========================================= */
.home-protection {
  background-color: var(--surface-soft);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.home-protection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.home-protection-visual {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.home-protection-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.home-protection-step:last-child {
  margin-bottom: 0;
}
.home-protection-icon {
  width: 40px;
  height: 40px;
  background-color: var(--brand-soft);
  color: var(--brand-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-protection-step h4 {
  margin: 0 0 0.25rem 0;
  color: var(--text-primary);
  font-size: 1.05rem;
}
.home-protection-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .home-protection-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   FAQ Section
   ========================================= */
.home-faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.home-faq-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.home-faq-item summary {
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none; /* Hide default arrow */
}
.home-faq-item summary::-webkit-details-marker {
  display: none;
}
.home-faq-item summary .faq-icon {
  width: 20px;
  height: 20px;
  color: var(--brand-primary);
  transition: transform var(--transition-fast);
}
.home-faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
}
.home-faq-item p {
  padding: 0 1.5rem 1.25rem 1.5rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =========================================
   Home Footer
   ========================================= */
.home-footer {
  background-color: var(--surface-elevated);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem 0;
}
.home-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.home-footer-brand p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 1rem 0;
  max-width: 300px;
}
.home-footer h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
}
.home-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.home-footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.home-footer-links a:hover {
  color: var(--brand-primary);
}
.home-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .home-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .home-footer-grid {
    grid-template-columns: 1fr;
  }
  .home-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
