@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1d4ed8;
  --accent: #06b6d4;
  --accent2: #8b5cf6;
  --success: #10b981;
  --warning: #f59e0b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-muted: #f1f5f9;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --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.05);
  --shadow-xl: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
}

.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary);
  color: white;
  padding: 10px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(170deg, #f0f5ff 0%, #fff 40%, #f0fdfa 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

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

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Tajawal', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.btn-hero.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-hero.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.btn-hero.outline {
  background: white;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-hero.outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

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

.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero Mockup */
.hero-mockup {
  position: relative;
}

.mockup-screen {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.mockup-bar {
  height: 36px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.r {
  background: #ef4444;
}

.mockup-dot.y {
  background: #f59e0b;
}

.mockup-dot.g {
  background: #22c55e;
}

.mockup-body {
  padding: 24px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-ticket-card {
  background: linear-gradient(135deg, #eff6ff, #f0fdfa);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-right: 4px solid var(--primary);
  animation: slideInRight 0.5s ease both;
}

.mockup-ticket-card:nth-child(2) {
  animation-delay: 0.1s;
  border-right-color: var(--accent);
}

.mockup-ticket-card:nth-child(3) {
  animation-delay: 0.2s;
  border-right-color: var(--accent2);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mock-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.mock-dept {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.mock-status {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.mock-status.waiting {
  background: #dbeafe;
  color: #1d4ed8;
}

.mock-status.called {
  background: #d1fae5;
  color: #059669;
}

.mock-status.progress {
  background: #fef3c7;
  color: #d97706;
}

.mockup-float {
  position: absolute;
  top: -20px;
  left: -30px;
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
  border: 1px solid var(--border);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.mockup-float2 {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: linear-gradient(135deg, var(--success), #34d399);
  color: white;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  animation: float 3s ease-in-out infinite 1s;
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
  background: var(--bg-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 60px;
  left: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent2), var(--success));
  border-radius: 2px;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  transition: all 0.3s;
}

.step-card:nth-child(2) .step-num {
  border-color: var(--accent);
  color: var(--accent);
}

.step-card:nth-child(3) .step-num {
  border-color: var(--accent2);
  color: var(--accent2);
}

.step-card:nth-child(4) .step-num {
  border-color: var(--success);
  color: var(--success);
}

.step-card:hover .step-num {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ===== SCREENSHOTS ===== */
.screenshots {
  background: var(--bg-soft);
}

.screenshots-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: white;
  font-family: 'Tajawal', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-muted);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.screenshot-display {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.screenshot-bar {
  height: 40px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.screenshot-content {
  padding: 32px;
  min-height: 400px;
}

/* Screen mockups */
.mock-kiosk {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mock-kiosk-card {
  background: linear-gradient(135deg, #eff6ff, #e0f2fe);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}

.mock-kiosk-card:hover {
  border-color: var(--primary);
  transform: scale(1.03);
}

.mock-kiosk-card .icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.mock-kiosk-card .name {
  font-weight: 700;
  font-size: 1rem;
}

.mock-display-screen {
  background: #0f172a;
  border-radius: 12px;
  padding: 24px;
  color: white;
}

.mock-display-header {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #1e293b;
  padding-bottom: 16px;
}

.mock-display-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.mock-display-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mock-display-current {
  text-align: center;
  padding: 20px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 12px;
}

.mock-display-current .num {
  font-size: 3rem;
  font-weight: 900;
  color: #60a5fa;
  animation: pulse-num 2s infinite;
}

@keyframes pulse-num {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.mock-display-queue {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-queue-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 16px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.mock-portal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mock-portal-current {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  padding: 24px;
  color: white;
  text-align: center;
}

.mock-portal-current .num {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 12px 0;
}

.mock-portal-btns {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.mock-portal-btns span {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.mock-portal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-portal-item {
  background: var(--bg-soft);
  padding: 14px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
}

.mock-reports {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mock-report-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mock-stat-card {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  border: 1px solid var(--border);
}

.mock-stat-card .val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.mock-stat-card .lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mock-chart {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
  justify-content: center;
}

.mock-bar {
  width: 40px;
  border-radius: 6px 6px 0 0;
  transition: all 0.3s;
}

/* ===== USE CASES ===== */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.usecase-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.usecase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.usecase-card:hover img {
  transform: scale(1.08);
}

.usecase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: white;
  transition: background 0.3s;
}

.usecase-card:hover .usecase-overlay {
  background: linear-gradient(0deg, rgba(37, 99, 235, 0.85) 0%, rgba(37, 99, 235, 0.2) 60%, transparent 100%);
}

.usecase-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.usecase-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.usecase-card p {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.5;
}

.usecase-card.large {
  grid-row: span 2;
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

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

.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== DOWNLOADS ===== */
#downloads {
  background: var(--bg-soft);
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.download-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

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

.download-card:hover::before {
  opacity: 1;
}

.download-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
}

.download-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.download-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.download-meta {
  display: flex;
  gap: 16px;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.download-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.35);
}

.download-btn-alt {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.download-btn-alt:hover {
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.35);
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark), #4338ca);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary);
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Tajawal', sans-serif;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-card h4 {
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-map {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

.map-placeholder .icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: white;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
}

.footer p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 24px;
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-mockup {
    display: none;
  }

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

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

  .steps-grid::before {
    display: none;
  }

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

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

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

  .downloads-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
  }

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

  .usecase-card.large {
    grid-row: span 2;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

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

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

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

  .download-card {
    padding: 28px 20px;
  }

  .download-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .download-info h3 {
    font-size: 1.05rem;
  }

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

  .usecase-card.large {
    grid-row: span 1;
  }

  .mock-portal {
    grid-template-columns: 1fr;
  }

  .mock-display-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 0.78rem;
    border-radius: 8px;
  }

  .downloads-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .screenshots-tabs {
    gap: 8px;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}