/* ==========================================================================
   TASPA Landing Page Styles
   ========================================================================== */

/* --- CSS Variables --- */
:root {
  /* Colors */
  --color-primary: #2563EB;
  --color-primary-light: #3B82F6;
  --color-primary-dark: #1D4ED8;
  --color-secondary: #0F172A;
  --color-accent: #0D9488;

  /* Neutral / Backgrounds */
  --bg-color: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-subtle: #F1F5F9;

  /* Text */
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  /* Risk Levels */
  --risk-red-bg: #FEF2F2;
  --risk-red-border: #FECACA;
  --risk-red-text: #B91C1C;
  --risk-red-icon: #EF4444;

  --risk-orange-bg: #FFF7ED;
  --risk-orange-border: #FED7AA;
  --risk-orange-text: #C2410C;
  --risk-orange-icon: #F97316;

  --risk-yellow-bg: #FEFCE8;
  --risk-yellow-border: #FEF08A;
  --risk-yellow-text: #A16207;
  --risk-yellow-icon: #EAB308;

  /* Typography — Exo 2 (project font) */
  --font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Shadows & Effects */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-colored: 0 20px 25px -5px rgba(37, 99, 235, 0.15);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Sizes */
  --nav-height: 80px;
  --container-width: 1200px;
  --border-radius: 16px;
  --border-radius-sm: 8px;
}

/* --- Resets & Global --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  scroll-behavior: smooth;
  font-size: 16px;
  color: var(--text-main);
  background-color: var(--bg-color);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

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

.mb-8 {
  margin-bottom: 2rem;
}

.mt-32 {
  margin-top: 8rem;
}

.w-100 {
  width: 100%;
}

.text-blue {
  color: var(--color-primary);
}

.text-purple {
  color: #8B5CF6;
}

.text-red {
  color: var(--risk-red-text);
}

.font-bold {
  font-weight: 700;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
}

.section-title {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.23);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-secondary);
  border-color: #E2E8F0;
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: var(--bg-subtle);
}

.btn-outline-light {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--color-primary);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.sm-btn {
  padding: 8px 18px;
  font-size: 0.875rem;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  height: 70px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.logo-partner {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.logo-alqa {
  height: 80px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2px;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 12px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background: var(--color-primary);
  color: white;
}

.lang-btn:hover:not(.active) {
  color: white;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 10s infinite alternate ease-in-out;
}

.shape-1 {
  background: rgba(37, 99, 235, 0.2);
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
}

.shape-2 {
  background: rgba(13, 148, 136, 0.15);
  width: 400px;
  height: 400px;
  bottom: 100px;
  left: -100px;
  animation-delay: -5s;
}

.shape-3 {
  background: rgba(139, 92, 246, 0.15);
  width: 300px;
  height: 300px;
  top: 30%;
  left: 40%;
  animation-duration: 15s;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, 30px);
  }

  100% {
    transform: translate(-20px, -10px);
  }
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--color-primary);
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

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

/* Dashboard Mockup in Hero */
.hero-visual {
  flex: 1;
  width: 100%;
  max-width: 550px;
}

.main-dashboard-mockup {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.main-dashboard-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
  background: rgba(241, 245, 249, 0.8);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

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

.dot.red {
  background: #EF4444;
}

.dot.yellow {
  background: #F59E0B;
}

.dot.green {
  background: #10B981;
}

.mockup-body {
  padding: 24px;
  background: white;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 160px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #E2E8F0;
}

.bar {
  flex: 1;
  background: linear-gradient(to top, var(--color-primary-light), var(--color-primary));
  border-radius: 4px 4px 0 0;
  opacity: 0.8;
  animation: growUp 1.5s ease-out forwards;
  transform-origin: bottom;
  transition: height 1.5s ease-in-out;
}

@keyframes growUp {
  0% {
    transform: scaleY(0);
  }

  100% {
    transform: scaleY(1);
  }
}

.h-30 {
  height: 30%;
}

.h-40 {
  height: 40%;
}

.h-50 {
  height: 50%;
}

.h-60 {
  height: 60%;
}

.h-70 {
  height: 70%;
}

.h-80 {
  height: 80%;
}

.h-100 {
  height: 100%;
}

.mockup-stats {
  display: flex;
  gap: 16px;
}

.stat-item {
  flex: 1;
  background: var(--bg-light);
  padding: 16px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-item i {
  font-size: 2rem;
}

.stat-value {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-secondary);
}

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

/* --- Mission Card --- */
.mission {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.mission-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border: 1px solid #F1F5F9;
}

.mission-icon {
  width: 64px;
  height: 64px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.mission-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.mission-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.about-card {
  background: white;
  border: 1px solid #F1F5F9;
  border-radius: var(--border-radius);
  padding: 32px 24px;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #E2E8F0;
}

.about-card .icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  color: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.about-card:hover .icon-wrapper {
  background: var(--color-primary);
  color: white;
}

.about-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

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

/* --- Features --- */
.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
}

.feature-label {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.feature-text {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-main);
  font-weight: 500;
}

.feature-list i {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-top: 2px;
}

.feature-visual {
  flex: 1;
}

/* Network Mockup */
.network-mockup {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  height: 400px;
  position: relative;
  overflow: hidden;
  border: 1px solid #F1F5F9;
}

.network-lines {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.network-lines line {
  stroke: #CBD5E1;
  stroke-width: 2;
  stroke-dasharray: 4;
  animation: dash 20s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: 1000;
  }
}

.node {
  position: absolute;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: transform var(--transition-normal);
}

.node:hover {
  transform: scale(1.1);
}

.node-center {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-primary);
  color: white;
  font-size: 2rem;
  box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.2);
}

.node-1 {
  width: 50px;
  height: 50px;
  top: 20%;
  left: 15%;
  color: #8B5CF6;
  font-size: 1.2rem;
  border: 2px solid #8B5CF6;
}

.node-2 {
  width: 60px;
  height: 60px;
  top: 15%;
  left: 75%;
  color: #0EA5E9;
  font-size: 1.5rem;
  border: 2px solid #0EA5E9;
}

.node-3 {
  width: 55px;
  height: 55px;
  top: 60%;
  left: 80%;
  color: #F59E0B;
  font-size: 1.2rem;
  border: 2px solid #F59E0B;
}

.node-4 {
  width: 45px;
  height: 45px;
  top: 75%;
  left: 25%;
  color: #10B981;
  font-size: 1.2rem;
  border: 2px solid #10B981;
}

.node-5 {
  width: 65px;
  height: 65px;
  top: 50%;
  left: 10%;
  color: #EC4899;
  font-size: 1.6rem;
  border: 2px solid #EC4899;
  align-items: center;
}

/* AI Mockup */
.ai-mockup {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
}

.ai-scanning-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
  animation: scan 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: 10;
}

@keyframes scan {
  0% {
    top: 0;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.ai-mockup-header {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E2E8F0;
  font-weight: 500;
}

.status-badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-badge.scanning {
  background: var(--bg-light);
  color: var(--color-primary);
}

.status-badge.scanning i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.ai-mockup-body {
  padding: 24px;
}

.ai-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.ai-tag {
  background: #F1F5F9;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid #E2E8F0;
}

.ai-tag.danger {
  background: var(--risk-red-bg);
  color: var(--risk-red-text);
  border-color: var(--risk-red-border);
}

.ai-tag .score {
  opacity: 0.7;
  font-size: 0.75rem;
}

.ai-confidence {
  background: #F8FAFC;
  padding: 16px;
  border-radius: 8px;
}

.conf-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.875rem;
}

.progress-bar {
  height: 8px;
  background: #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
}

.progress-fill.red {
  background: #EF4444;
}

/* --- Risks Section --- */
.risks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.risk-card {
  padding: 32px 24px;
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  background: white;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.risk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.risk-red {
  background-color: var(--risk-red-bg);
  border-color: var(--risk-red-border);
}

.risk-red::before {
  background-color: var(--risk-red-icon);
}

.risk-red .risk-icon {
  color: var(--risk-red-icon);
}

.risk-red .risk-title {
  color: var(--risk-red-text);
}

.risk-orange {
  background-color: var(--risk-orange-bg);
  border-color: var(--risk-orange-border);
}

.risk-orange::before {
  background-color: var(--risk-orange-icon);
}

.risk-orange .risk-icon {
  color: var(--risk-orange-icon);
}

.risk-orange .risk-title {
  color: var(--risk-orange-text);
}

.risk-yellow {
  background-color: var(--risk-yellow-bg);
  border-color: var(--risk-yellow-border);
}

.risk-yellow::before {
  background-color: var(--risk-yellow-icon);
}

.risk-yellow .risk-icon {
  color: var(--risk-yellow-icon);
}

.risk-yellow .risk-title {
  color: var(--risk-yellow-text);
}

.risk-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.risk-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.risk-desc {
  color: var(--text-main);
  opacity: 0.9;
  font-size: 0.95rem;
}

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

/* --- Results --- */
.results-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.results-box {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.results-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.1rem;
  font-weight: 500;
}

.results-list i {
  font-size: 1.5rem;
  background: rgba(37, 99, 235, 0.1);
  padding: 4px;
  border-radius: 50%;
  flex-shrink: 0;
}

.why-taspa {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  transition: all var(--transition-fast);
  border: 1px solid #F1F5F9;
}

.why-item:hover {
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.why-item i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

/* --- CTA Section --- */
.cta-card {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  border-radius: 24px;
  padding: 60px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-colored);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

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

.cta-decoration {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20rem;
  color: white;
  opacity: 0.1;
  z-index: 1;
}

/* --- Contacts --- */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.contact-item p {
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item a:hover {
  text-decoration: underline;
  color: var(--color-primary);
}

.contact-form-wrapper {
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: #F8FAFC;
}

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

/* --- Footer --- */
.footer {
  background-color: var(--color-secondary);
  color: white;
  padding: 80px 0 40px;
}

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

.footer-logo {
  height: 56px;
  background: white;
  padding: 10px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.footer-desc {
  color: #94A3B8;
  max-width: 300px;
}

.footer-heading {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li,
.footer-links a {
  color: #94A3B8;
  font-size: 0.95rem;
}

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

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #94A3B8;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--color-primary);
  color: white;
}

/* --- Regional Map (Geo Insight) --- */
.geo-insight {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  padding-bottom: 80px;
}

.geo-insight-layout {
  display: block;
}

.geo-map-card {
  position: relative;
  width: 100%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(239, 246, 255, 0.88) 100%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 36px;
  padding: 26px;
  box-shadow: 0 36px 90px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.geo-map-card:hover {
  box-shadow: 0 44px 96px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
}

.geo-map-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.geo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.geo-chip-live {
  background: #0f172a;
  color: #ffffff;
}

.geo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.34);
  animation: geoLivePulse 1.8s infinite;
}

@keyframes geoLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.34); }
  70% { box-shadow: 0 0 0 12px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.geo-map-stage {
  position: relative;
  padding: 24px 24px 80px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 18%, rgba(59, 130, 246, 0.2), transparent 24%),
    radial-gradient(circle at 82% 82%, rgba(14, 165, 233, 0.18), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, #e8f1ff 46%, #fdfefe 100%);
  border: 1px solid rgba(37, 99, 235, 0.14);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.geo-map-canvas {
  position: relative;
  z-index: 2;
  padding: 8px 10px 0;
}

.geo-map-object {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

.geo-map-controls {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.geo-zoom-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.geo-zoom-btn:hover {
  transform: translateY(-2px) scale(1.03);
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 20px 35px rgba(37, 99, 235, 0.26);
}

.geo-zoom-btn:active {
  transform: scale(0.97);
}

.geo-zoom-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  box-shadow: none;
}

.geo-map-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* --- Base Animations --- */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* --- Responsive --- */

/* Tablet */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .hero-visual {
    margin-top: 40px;
  }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
  }

  .risks-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .results-container,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .logo-group {
    gap: 8px;
  }

  .logo-partner {
    height: 48px;
  }

  .logo-alqa {
    height: 64px;
  }

  .logo-img {
    height: 48px;
  }

  /* Map */
  .geo-map-card {
    border-radius: 24px;
    padding: 20px;
  }

  .geo-map-stage {
    padding: 20px 20px 70px;
    border-radius: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Container */
  .container {
    padding: 0 16px;
  }

  /* Section spacing */
  .section-padding {
    padding: 60px 0;
  }

  .mt-32 {
    margin-top: 4rem;
  }

  /* Typography */
  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* Navbar */
  .navbar {
    height: 64px;
  }

  .navbar.scrolled {
    height: 58px;
  }

  .logo-group {
    gap: 6px;
  }

  .logo-partner {
    height: 36px;
  }

  .logo-alqa {
    height: 48px;
  }

  .logo-img {
    height: 36px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease-in-out;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .nav-links .nav-link {
    color: var(--text-main);
    font-size: 1rem;
    padding: 4px 0;
  }

  .lang-switcher {
    background: rgba(0, 0, 0, 0.05);
  }

  .lang-btn {
    color: rgba(0, 0, 0, 0.4);
  }

  .lang-btn:hover:not(.active) {
    color: var(--text-main);
  }

  /* Hero */
  .hero {
    padding-top: calc(64px + 32px);
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .badge {
    font-size: 0.75rem;
    margin-bottom: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .main-dashboard-mockup {
    transform: none;
  }

  .main-dashboard-mockup:hover {
    transform: none;
  }

  .mockup-chart {
    height: 100px;
  }

  .mockup-stats {
    flex-direction: column;
    gap: 8px;
  }

  /* Mission */
  .mission {
    margin-top: -20px;
  }

  .mission-card {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .mission-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .mission-title {
    font-size: 1.25rem;
  }

  .mission-text {
    font-size: 1rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-card {
    padding: 24px 20px;
  }

  /* Features */
  .feature-text {
    font-size: 1rem;
  }

  .network-mockup {
    height: 280px;
  }

  .node-center {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .node-1, .node-4 {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .node-2, .node-3, .node-5 {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .ai-mockup-header {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .ai-mockup-body {
    padding: 16px;
  }

  .ai-tags {
    gap: 8px;
  }

  .ai-tag {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  /* Risks */
  .risks-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .risk-card {
    padding: 24px 20px;
  }

  .risk-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }

  /* Results */
  .results-box {
    padding: 24px;
  }

  .results-list li {
    font-size: 1rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-item {
    padding: 12px;
  }

  /* CTA */
  .cta-card {
    padding: 32px 20px;
    text-align: center;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-decoration {
    display: none;
  }

  /* Map */
  .geo-map-card {
    border-radius: 16px;
    padding: 14px;
  }

  .geo-map-toolbar {
    margin-bottom: 12px;
    gap: 8px;
  }

  .geo-chip {
    font-size: 0.8rem;
    padding: 8px 12px;
    gap: 6px;
  }

  .geo-map-stage {
    padding: 16px 16px 60px;
    border-radius: 16px;
  }

  .geo-map-controls {
    left: 12px;
    top: 12px;
    gap: 8px;
  }

  .geo-zoom-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .geo-map-caption {
    left: 12px;
    right: 12px;
    bottom: 10px;
    padding: 10px 14px;
    font-size: 0.75rem;
    flex-direction: column;
    gap: 4px;
    border-radius: 12px;
  }

  /* Contacts */
  .contact-form-wrapper {
    padding: 24px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  /* Footer */
  .footer {
    padding: 48px 0 32px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

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

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

  .logo-partner {
    height: 28px;
  }

  .logo-alqa {
    height: 40px;
  }

  .logo-img {
    height: 28px;
  }

  .logo-group {
    gap: 4px;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .cta-badge {
    font-size: 0.75rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .network-mockup {
    height: 220px;
  }
}