/* ================================================
   Ki Business Solutions — Global Design System
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-primary:    #042f2e;
  --bg-secondary:  #0a3d3a;
  --bg-card:       #115e59;
  --bg-card-dark:  #134e4a;
  --bg-footer:     #021a19;
  --accent:        #2dd4bf;
  --accent-light:  #5eead4;
  --accent-pale:   #99f6e4;
  --text-white:    #ffffff;
  --text-primary:  #ccfbf1;
  --text-secondary:#99f6e4;
  --text-muted:    #5eead4;
  --border:        rgba(45, 212, 191, 0.2);
  --border-hover:  rgba(45, 212, 191, 0.5);
  --shadow:        0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:     0 8px 48px rgba(0,0,0,0.5);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height:    72px;
  --font:          'DM Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-primary); line-height: 1.75; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section-sm {
  padding: 64px 0;
}

/* ── Section Labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(4, 47, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(2, 26, 25, 0.97);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img {
  height: 38px;
  width: auto;
  transition: var(--transition);
}
.nav-logo:hover img { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-white);
  background: rgba(45,212,191,0.12);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}
.nav-dropdown-toggle:hover, .nav-dropdown.open .nav-dropdown-toggle {
  color: var(--text-white);
  background: rgba(45,212,191,0.12);
}
.nav-dropdown-toggle svg { transition: transform 0.3s ease; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #0d3533;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  transition: var(--transition);
  color: var(--text-primary);
}
.dropdown-item:hover {
  background: rgba(45,212,191,0.12);
  color: var(--text-white);
}
.dropdown-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(45,212,191,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.dropdown-item-text { font-size: 0.9rem; font-weight: 500; }
.dropdown-item-sub { font-size: 0.75rem; color: var(--text-muted); }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }
.dropdown-item.coming-soon { opacity: 0.6; cursor: default; }
.dropdown-item.coming-soon:hover { background: none; color: var(--text-primary); }
.badge-soon {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(45,212,191,0.15);
  color: var(--accent);
  border: 1px solid rgba(45,212,191,0.3);
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: auto;
}

.nav-cta {
  background: var(--accent);
  color: var(--bg-primary) !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
}
.nav-cta:hover {
  background: #26b8a7 !important;
  color: var(--bg-primary) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45,212,191,0.4);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.nav-toggle:hover { background: rgba(45,212,191,0.1); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: #0d3533;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile .nav-link, .nav-mobile .nav-dropdown-toggle {
  display: flex;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: none;
}
.nav-mobile .nav-dropdown-menu {
  position: static;
  transform: none;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: none;
}
.nav-mobile .nav-dropdown.open .nav-dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}
.nav-mobile .dropdown-item { padding: 10px 16px; }
.nav-mobile .nav-cta {
  margin-top: 16px;
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--bg-primary);
  padding: 14px !important;
  border-radius: var(--radius);
  font-weight: 600;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../Website/Ki Business Background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,47,46,0.92) 0%, rgba(10,61,58,0.80) 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,212,191,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,212,191,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  padding-top: var(--nav-height);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,212,191,0.12);
  border: 1px solid rgba(45,212,191,0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}
.hero h1 {
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 span { color: var(--accent); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--accent-pale);
  margin-bottom: 40px;
  max-width: 600px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}
.btn-primary:hover {
  background: #26b8a7;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,212,191,0.35);
}
.btn-outline {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(45,212,191,0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,212,191,0.15);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ════════════════════════════════
   FEATURE CARDS GRID
════════════════════════════════ */
.features-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.feature-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  background: #155e5a;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(45,212,191,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.feature-card p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* ════════════════════════════════
   ABOUT SECTION
════════════════════════════════ */
.about-section {
  background: var(--bg-primary);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.about-image::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(45,212,191,0.3), transparent 60%);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { margin-bottom: 16px; font-size: 1rem; }

/* ════════════════════════════════
   MISSION / VISION
════════════════════════════════ */
.mv-section {
  background: var(--bg-secondary);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mv-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  transition: var(--transition);
}
.mv-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}
.mv-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.mv-card h3 { font-size: 1.5rem; margin-bottom: 16px; color: var(--text-white); }
.mv-card p { margin-bottom: 12px; }

/* ════════════════════════════════
   PLATFORMS SECTION
════════════════════════════════ */
.platforms-section {
  background: var(--bg-primary);
}
.platforms-header {
  text-align: center;
  margin-bottom: 60px;
}
.platforms-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}
.platform-card:hover::before { opacity: 1; }
.platform-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
  background: #14605b;
}
.platform-card.coming-soon {
  opacity: 0.65;
  cursor: default;
}
.platform-card.coming-soon:hover {
  transform: none;
  box-shadow: none;
}
.platform-emoji { font-size: 2.5rem; margin-bottom: 20px; }
.platform-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.platform-subdomain {
  font-size: 0.78rem;
  color: var(--accent);
  font-family: 'Courier New', monospace;
  margin-bottom: 16px;
  opacity: 0.8;
}
.platform-card p { font-size: 0.9rem; color: var(--text-primary); flex: 1; margin-bottom: 24px; }
.platform-card .btn-sm { align-self: flex-start; }
.platform-cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(45,212,191,0.1);
  border: 1px solid rgba(45,212,191,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  align-self: flex-start;
  margin-top: 8px;
}

/* ════════════════════════════════
   FUTURE SECTION (CTA with BG)
════════════════════════════════ */
.future-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.future-bg {
  position: absolute;
  inset: 0;
  background-image: url('../Website/Gemini_Generated_Image_p0tlvzp0tlvzp0tl.png');
  background-size: cover;
  background-position: center;
}
.future-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,47,46,0.85) 0%, rgba(2,26,25,0.92) 100%);
}
.future-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.future-content h2 { margin-bottom: 20px; }
.future-content p { font-size: 1.05rem; margin-bottom: 36px; }

/* ════════════════════════════════
   STATS BAR
════════════════════════════════ */
.stats-bar {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-item p { font-size: 0.9rem; color: var(--text-muted); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); max-width: 280px; }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-col .coming-label {
  font-size: 0.7rem;
  background: rgba(45,212,191,0.1);
  color: var(--accent);
  border: 1px solid rgba(45,212,191,0.2);
  padding: 1px 8px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); }
.footer-legal a:hover { color: var(--accent); }

/* ════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════ */
.page-hero {
  background: var(--bg-secondary);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,0.1) 0%, transparent 70%);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.page-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-hero-image img {
  max-width: 360px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,212,191,0.1);
  border: 1px solid rgba(45,212,191,0.25);
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero-sub {
  font-size: 1.5rem;
  color: var(--accent-light);
  font-weight: 300;
  margin-bottom: 20px;
}
.page-hero p { font-size: 1.05rem; margin-bottom: 32px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ════════════════════════════════
   SERVICES GRID (platform pages)
════════════════════════════════ */
.services-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(45,212,191,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.service-card h4 { color: var(--text-white); margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; }

/* ════════════════════════════════
   COUNTRIES SECTION
════════════════════════════════ */
.countries-section {
  background: var(--bg-primary);
  padding: 80px 0;
}
.countries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.country-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.country-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  background: var(--bg-card);
}
.country-flag {
  width: 40px; height: 30px;
  margin: 0 auto 10px;
  object-fit: cover;
  border-radius: 4px;
}
.country-card p { font-size: 0.8rem; color: var(--text-primary); font-weight: 500; }

/* ════════════════════════════════
   PROCESS / STEPS
════════════════════════════════ */
.process-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(45,212,191,0.2));
}
.step-card {
  text-align: center;
  padding: 24px;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(45,212,191,0.15);
}
.step-card h4 { color: var(--text-white); margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; }

/* ════════════════════════════════
   CONTACT PAGE
════════════════════════════════ */
.contact-section { background: var(--bg-primary); padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 40px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(45,212,191,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item h4 { color: var(--text-white); margin-bottom: 4px; font-size: 0.95rem; }
.contact-item p { font-size: 0.9rem; }
.contact-item a { color: var(--accent-light); transition: var(--transition); }
.contact-item a:hover { color: var(--accent); }

.contact-form {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-primary);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text-white);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,212,191,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(153,246,228,0.4); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #f87171;
}
.form-error-msg {
  font-size: 0.8rem;
  color: #f87171;
  display: none;
}
.form-error-msg.visible { display: block; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success.visible { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { color: var(--accent); margin-bottom: 8px; }

/* ════════════════════════════════
   POLICY PAGES
════════════════════════════════ */
.policy-content {
  background: var(--bg-primary);
  padding: 80px 0;
}
.policy-body {
  max-width: 800px;
  margin: 0 auto;
}
.policy-body h2 {
  font-size: 1.4rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--accent-light);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.policy-body h3 { font-size: 1.1rem; margin-top: 28px; margin-bottom: 12px; }
.policy-body p { margin-bottom: 16px; font-size: 0.97rem; }
.policy-body ul { margin: 12px 0 16px 20px; list-style: disc; }
.policy-body ul li { color: var(--text-primary); margin-bottom: 8px; font-size: 0.97rem; }
.policy-body a { color: var(--accent); }
.policy-body a:hover { text-decoration: underline; }
.policy-update {
  background: rgba(45,212,191,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 40px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ════════════════════════════════
   ANIMATIONS
════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-up:nth-child(2) { transition-delay: 0.1s; }
.animate-up:nth-child(3) { transition-delay: 0.2s; }
.animate-up:nth-child(4) { transition-delay: 0.3s; }
.animate-up:nth-child(5) { transition-delay: 0.4s; }
.animate-up:nth-child(6) { transition-delay: 0.5s; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .countries-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }

  .hero-content { padding-top: calc(var(--nav-height) + 24px); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image img { height: 300px; }
  .mv-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-image { order: -1; }
  .page-hero-image img { max-width: 240px; }
  .services-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 32px 24px; }
  .contact-form { padding: 24px; }
}
