
:root {
  --bg: #0b1220;
  --bg-soft: #121b2e;
  --card: #17233b;
  --text: #f4f7fb;
  --muted: #b6c2d9;
  --line: rgba(255,255,255,0.08);
  --accent: #4fd1c5;
  --accent-dark: #1f8f88;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0,0,0,0.20);
  --radius: 20px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #09101c 0%, #0b1220 100%);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.topbar-inner, .nav-inner, .hero, .footer-grid {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.topbar-inner { padding: 10px 0; flex-wrap: wrap; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(9, 16, 28, 0.94);
  border-bottom: 1px solid var(--line);
}
.nav-inner { padding: 16px 0; }
.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: bold; font-size: 22px;
}
.logo-mark {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #66a6ff);
  display: grid; place-items: center; color: #062534; font-weight: 900;
}
.nav-links {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  font-size: 15px; color: var(--muted);
}
.nav-links > a:hover, .dropdown-toggle:hover { color: var(--white); }

.dropdown { position: relative; }
.dropdown-toggle {
  background: transparent; border: none; color: var(--muted);
  font: inherit; cursor: pointer; padding: 0;
}
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: #101b2f; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 10px; display: none;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 11px 12px; border-radius: 12px; color: var(--muted);
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: var(--white); }

.btn {
  display: inline-block; padding: 13px 20px; border-radius: 999px;
  background: var(--accent); color: #062534; font-weight: bold; border: none;
  cursor: pointer; transition: 0.25s ease;
}
.btn:hover { background: #7be6db; transform: translateY(-1px); }
.btn.secondary {
  background: transparent; color: var(--white); border: 1px solid var(--line);
}
.hero-wrap { position: relative; overflow: hidden; }
.hero { min-height: 70vh; padding: 70px 0 50px; gap: 40px; }
.hero-text, .hero-card { flex: 1; }
.eyebrow {
  display: inline-block; padding: 8px 14px;
  border: 1px solid rgba(79, 209, 197, 0.25);
  background: rgba(79, 209, 197, 0.08); color: #9ef4ec;
  border-radius: 999px; font-size: 12px; font-weight: bold;
  text-transform: uppercase; letter-spacing: 1.6px; margin-bottom: 16px;
}
h1, h2, h3 { margin: 0 0 12px; line-height: 1.2; }
h1 { font-size: clamp(38px, 6vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 22px; }
.lead { font-size: 18px; color: var(--muted); max-width: 720px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-card, .card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.stat-grid, .services-grid, .three-grid, .two-col, .form-grid {
  display: grid; gap: 24px;
}
.stat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
.mini-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  border-radius: 18px; padding: 16px;
}
.mini-card strong { display: block; font-size: 18px; margin-bottom: 6px; color: var(--white); }
section { padding: 80px 0; }
.section-head { max-width: 760px; margin-bottom: 32px; }
.muted { color: var(--muted); }
.services-grid, .three-grid { grid-template-columns: repeat(3, 1fr); }
.two-col { grid-template-columns: 1fr 1fr; }
.form-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
.service-card { transition: 0.25s ease; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(79, 209, 197, 0.35); }
.service-card .icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 16px; background: rgba(79, 209, 197, 0.12);
  font-size: 26px; margin-bottom: 14px;
}
.service-card p { color: var(--muted); }
.list-check { list-style: none; padding: 0; margin: 18px 0 0; }
.list-check li {
  position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--muted);
}
.list-check li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: bold;
}
.contact-box {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px;
  background: linear-gradient(135deg, rgba(79, 209, 197, 0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(79, 209, 197, 0.18); border-radius: 28px; padding: 30px;
}
input, textarea {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.05); color: var(--white); font-size: 15px;
}
textarea { min-height: 140px; resize: vertical; grid-column: 1 / -1; }
.note { font-size: 13px; color: var(--muted); margin-top: 12px; }
footer {
  border-top: 1px solid var(--line); padding: 50px 0; background: rgba(255,255,255,0.02);
}
.footer-grid { align-items: flex-start; gap: 30px; }
.footer-grid > div { flex: 1; }
.footer-links { display: grid; gap: 10px; color: var(--muted); }
.image-placeholder {
  border: 2px dashed rgba(255,255,255,0.14); border-radius: 18px; padding: 22px;
  text-align: center; color: var(--muted); font-size: 14px; margin-top: 20px;
  background: rgba(255,255,255,0.03);
}
.small { font-size: 14px; }
.page-hero { padding: 60px 0 30px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.badge {
  padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,0.05);
  border: 1px solid var(--line); color: var(--muted); font-size: 14px;
}
.cta-band {
  margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap;
}
@media (max-width: 980px) {
  .hero, .two-col, .contact-box, .footer-grid { display: grid; grid-template-columns: 1fr; }
  .services-grid, .three-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .services-grid, .three-grid, .form-grid, .stat-grid { grid-template-columns: 1fr; }
  .container { width: min(var(--max), calc(100% - 22px)); }
}
@keyframes floaty {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.floating-card {
  animation: floaty 4s ease-in-out infinite;
}
.service-card .icon {
  transition: transform 0.3s ease;
}

.service-card:hover .icon {
  transform: scale(1.12) rotate(4deg);
}
.btn {
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

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