/* =============================================
   ENKI H2O — PREMIUM STYLESHEET
   Apple / Framer-inspired design
   ============================================= */

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

:root {
  --blue-primary:  #0A84FF;
  --blue-dark:     #003FCC;
  --blue-deep:     #001A66;
  --blue-glow:     rgba(10, 132, 255, 0.35);
  --bg-dark:       #05050A;
  --bg-card:       #0E0E18;
  --bg-card2:      #12121F;
  --text-primary:  #F5F5F7;
  --text-secondary:#A0A0B0;
  --text-muted:    #60607A;
  --border:        rgba(255,255,255,0.07);
  --radius-sm:     12px;
  --radius-md:     20px;
  --radius-lg:     32px;
  --shadow-glow:   0 0 60px rgba(10, 132, 255, 0.15);
  --transition:    cubic-bezier(0.4, 0, 0.2, 1);
  --font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

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

.gradient-text {
  background: linear-gradient(135deg, #0A84FF 0%, #00CFFF 60%, #5AC8FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, #5AC8FA 0%, #99E8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hide-mobile { display: inline; }

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--transition), backdrop-filter 0.4s, box-shadow 0.4s;
  padding: 0;
}
.nav.scrolled {
  background: rgba(5, 5, 10, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 94px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { display: flex; align-items: center; }
.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  flex-shrink: 0;
  padding: 8px 18px;
  background: var(--blue-primary);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: #0071e3;
  transform: scale(1.03);
  box-shadow: 0 0 20px var(--blue-glow);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-mobile {
  display: none;
  background: rgba(5, 5, 10, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.mobile-link:hover { background: rgba(255,255,255,0.05); color: var(--text-primary); }
.cta-mobile {
  margin-top: 8px;
  color: var(--blue-primary) !important;
  font-weight: 600;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-primary);
  color: white;
  box-shadow: 0 4px 24px rgba(10, 132, 255, 0.3);
}
.btn-primary:hover {
  background: #0071e3;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 132, 255, 0.45);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-arrow {
  transition: transform 0.2s;
}
.btn-ghost:hover .btn-arrow {
  transform: translateX(4px);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#waterCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(10, 132, 255, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 70, 200, 0.08) 0%, transparent 60%),
    linear-gradient(to bottom, var(--bg-dark) 0%, rgba(5,5,10,0.6) 50%, var(--bg-dark) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(10, 132, 255, 0.12);
  border: 1px solid rgba(10, 132, 255, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #5AC8FA;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0A84FF;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.45;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-secondary), transparent);
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* Floating Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(10, 132, 255, 0.3);
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-item .stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #0A84FF, #5AC8FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item .stat-suffix {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  background: linear-gradient(135deg, #0A84FF, #5AC8FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* =============================================
   SECTIONS (shared)
   ============================================= */
.section {
  padding: 120px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 12px;
}
.section-label.light { color: #5AC8FA; }
.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
  max-width: 560px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section { background: var(--bg-dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-title { margin-bottom: 20px; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(10, 132, 255, 0.08);
  border: 1px solid rgba(10, 132, 255, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #5AC8FA;
}
.tag i { font-size: 0.75rem; }

/* Water Orb */
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.water-orb {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(10, 132, 255, 0.25);
  animation: orb-spin linear infinite;
}
.ring-1 { width: 280px; height: 280px; animation-duration: 12s; border-color: rgba(10, 132, 255, 0.2); }
.ring-2 { width: 220px; height: 220px; animation-duration: 8s; animation-direction: reverse; border-color: rgba(10, 132, 255, 0.35); }
.ring-3 { width: 160px; height: 160px; animation-duration: 5s; border-color: rgba(90, 200, 250, 0.4); }
@keyframes orb-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.orb-core {
  position: relative;
  z-index: 2;
  width: 110px; height: 110px;
  background: radial-gradient(circle at 35% 35%, rgba(90, 200, 250, 0.4) 0%, rgba(10, 132, 255, 0.15) 50%, transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(10, 132, 255, 0.3), inset 0 0 30px rgba(10, 132, 255, 0.1);
  animation: orb-breathe 4s ease-in-out infinite;
}
@keyframes orb-breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(10, 132, 255, 0.3); }
  50% { transform: scale(1.06); box-shadow: 0 0 80px rgba(10, 132, 255, 0.5); }
}
.orb-label {
  position: absolute;
  bottom: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(90, 200, 250, 0.7);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section { background: var(--bg-card); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  overflow: hidden;
  transition: transform 0.3s var(--transition), border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 132, 255, 0.25);
  box-shadow: 0 20px 60px rgba(10, 132, 255, 0.1);
}
.service-card:hover .card-glow {
  opacity: 1;
}
.card-glow {
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.featured-card {
  border-color: rgba(10, 132, 255, 0.3);
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.06) 0%, var(--bg-card2) 100%);
}
.featured-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--blue-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(10, 132, 255, 0.12);
  border: 1px solid rgba(10, 132, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--blue-primary);
  margin-bottom: 20px;
  transition: background 0.3s, box-shadow 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(10, 132, 255, 0.2);
  box-shadow: 0 0 20px rgba(10, 132, 255, 0.2);
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-primary);
  transition: gap 0.2s;
}
.card-link:hover { color: #5AC8FA; }

/* =============================================
   WHY SECTION
   ============================================= */
.why-section {
  position: relative;
  background: #030308;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 50%, rgba(10, 50, 150, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(10, 100, 200, 0.12) 0%, transparent 60%);
}
.why-section .container { position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text .section-title.light { color: var(--text-primary); }
.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s var(--transition), transform 0.5s var(--transition);
}
.why-item.visible { opacity: 1; transform: translateX(0); }
.why-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(10, 132, 255, 0.1);
  border: 1px solid rgba(10, 132, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  font-size: 1rem;
}
.why-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.why-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Quality cards */
.why-visual { display: flex; justify-content: center; }
.why-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 360px;
}
.quality-card {
  background: rgba(14, 14, 24, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s;
}
.quality-card:hover {
  border-color: rgba(10, 132, 255, 0.25);
  transform: translateX(6px);
}
.quality-card { display: flex; flex-direction: column; gap: 12px; }
.quality-icon {
  width: 36px; height: 36px;
  background: rgba(10, 132, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5AC8FA;
  font-size: 0.9rem;
}
.quality-text { display: flex; flex-direction: column; gap: 2px; }
.quality-text strong { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.quality-text span { font-size: 0.78rem; color: var(--text-muted); }
.quality-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.quality-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-primary), #5AC8FA);
  border-radius: 4px;
  width: 0;
  transition: width 1.5s var(--transition);
}
.quality-fill.animated { width: attr(style width); }

/* =============================================
   COMPANY SECTION
   ============================================= */
.company-section { background: var(--bg-dark); }
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.company-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.company-info-card:hover {
  border-color: rgba(10, 132, 255, 0.2);
  transform: translateY(-4px);
}
.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.info-card-header i {
  width: 40px; height: 40px;
  background: rgba(10, 132, 255, 0.1);
  border: 1px solid rgba(10, 132, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  font-size: 0.95rem;
}
.info-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.info-list li:last-child { border-bottom: none; padding-bottom: 0; }
.info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}
.info-link {
  color: var(--blue-primary);
  transition: color 0.2s;
}
.info-link:hover { color: #5AC8FA; }
.info-link i { font-size: 0.7rem; margin-left: 4px; }
.status-active {
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #30D158;
  box-shadow: 0 0 8px rgba(48, 209, 88, 0.5);
  animation: pulse-status 2s ease-in-out infinite;
}
@keyframes pulse-status {
  0%, 100% { box-shadow: 0 0 8px rgba(48, 209, 88, 0.5); }
  50% { box-shadow: 0 0 16px rgba(48, 209, 88, 0.8); }
}

/* Map */
.map-placeholder {
  background: rgba(10, 132, 255, 0.05);
  border: 1px solid rgba(10, 132, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.map-pin-anim {
  position: relative;
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin {
  font-size: 1.4rem;
  color: var(--blue-primary);
  position: relative;
  z-index: 1;
  animation: pin-bounce 2s ease-in-out infinite;
}
@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.map-pulse {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(10, 132, 255, 0.4);
  animation: map-pulse 2s ease-in-out infinite;
}
@keyframes map-pulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.map-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}
.map-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.info-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}
.cert-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.cert-badge i {
  width: 22px; height: 22px;
  background: rgba(48, 209, 88, 0.1);
  border: 1px solid rgba(48, 209, 88, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #30D158;
  font-size: 0.65rem;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #001A66 0%, #003399 50%, #001A66 100%);
}
.cta-band-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(10, 132, 255, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(0, 80, 200, 0.2) 0%, transparent 60%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.cta-band-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
}
.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section { background: var(--bg-card); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-card:hover {
  border-color: rgba(10, 132, 255, 0.2);
  transform: translateX(4px);
}
.contact-card-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(10, 132, 255, 0.1);
  border: 1px solid rgba(10, 132, 255, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  font-size: 0.9rem;
}
.contact-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 3px;
  letter-spacing: 0.04em;
}
.contact-card p, .contact-card a {
  font-size: 0.95rem;
  color: var(--text-primary);
}
.contact-card a { color: var(--blue-primary); }
.contact-card a:hover { color: #5AC8FA; }

.contact-allabolag { margin-top: 8px; }
.allabolag-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 12px 16px;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.allabolag-link:hover {
  border-color: rgba(10, 132, 255, 0.3);
  color: var(--blue-primary);
  background: rgba(10, 132, 255, 0.04);
}

/* Form */
.contact-form-wrap {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group select option { background: #12121F; }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(10, 132, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(48, 209, 88, 0.08);
  border: 1px solid rgba(48, 209, 88, 0.2);
  border-radius: var(--radius-sm);
  color: #30D158;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success.show { display: flex; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #030308;
  position: relative;
  overflow: hidden;
}
.footer-wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  transform: rotate(180deg);
}
.footer-wave svg { width: 100%; height: 100%; }
.footer-top {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.footer-logo { margin-bottom: 14px; }
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-style: italic;
}
.footer-reg {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-links-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links-col ul li i {
  color: var(--text-muted);
  font-size: 0.8rem;
  width: 14px;
}
.footer-links-col a {
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--blue-primary); }

.footer-bottom {
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .company-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .section { padding: 80px 0; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hide-mobile { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .company-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-divider { display: none; }
  .stats-inner { gap: 36px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .why-grid { gap: 48px; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 20px 70px; }
  .container { padding: 0 20px; }
  .section-title { font-size: 2rem; }
}

/* =============================================
   SELECTION & SCROLLBAR
   ============================================= */
::selection {
  background: rgba(10, 132, 255, 0.3);
  color: white;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
  background: rgba(10, 132, 255, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(10, 132, 255, 0.5); }
