@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --bg: #05070d;
  --bg-alt: #0b1120;
  --card: #0f172a;
  --accent: #5af8b5;
  --accent-2: #7dd3ff;
  --text: #f5f8ff;
  --muted: #a5b7d6;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --border: 1px solid rgba(255, 255, 255, 0.07);
}

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

body {
  margin: 0;
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(90, 248, 181, 0.18), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(125, 211, 255, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0) 45%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.04), transparent 28%),
    radial-gradient(circle at 74% 70%, rgba(90, 248, 181, 0.06), transparent 24%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0) 32%),
    linear-gradient(300deg, rgba(125, 211, 255, 0.07) 0, rgba(125, 211, 255, 0) 38%);
  pointer-events: none;
  opacity: 0.9;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(8, 11, 20, 0.88);
  border-bottom: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.brand span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent), #2be1a1);
  color: #04131d;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(90, 248, 181, 0.35);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

nav a {
  padding: 10px 14px;
  border-radius: 12px;
  transition: all 0.2s ease;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 13px;
}

nav a:hover,
nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.cta {
  background: linear-gradient(120deg, var(--accent), #7dd3ff);
  color: #04131d;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 22px 36px rgba(125, 211, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 44px rgba(90, 248, 181, 0.32);
}

.hero {
  padding: 80px 0 46px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 32px;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -14px 0 10px;
  background: linear-gradient(120deg, rgba(125, 211, 255, 0.18), rgba(90, 248, 181, 0.22));
  filter: blur(54px);
  z-index: -1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--muted);
  border: var(--border);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
  margin: 0 0 14px;
  color: #f4f7ff;
}

h1 {
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(30px, 3vw, 42px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 10px, transparent 10px, transparent 18px);
  opacity: 0.12;
  pointer-events: none;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(94, 194, 255, 0.15), transparent 40%);
  opacity: 0.8;
  pointer-events: none;
}

.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#contact-status {
  color: var(--accent);
  font-weight: 700;
}

#contact-status.error {
  color: #ff6b6b;
}

.card strong {
  color: #fff;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(90, 248, 181, 0.2), rgba(125, 211, 255, 0.14));
  color: #b6ffe3;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: 14px;
  padding: 12px 14px;
  border: var(--border);
  min-width: 120px;
  position: relative;
  overflow: hidden;
}

.section {
  padding: 50px 0;
  position: relative;
}

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.list {
  display: grid;
  gap: 10px;
}

.list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: var(--border);
  border-left: 3px solid rgba(246, 195, 68, 0.55);
  color: var(--muted);
}

.list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
}

footer {
  margin-top: auto;
  padding: 32px 0 42px;
  border-top: var(--border);
  background: rgba(5, 7, 13, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: start;
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  border: var(--border);
  box-shadow: var(--shadow);
}

.table th,
.table td {
  padding: 14px;
  text-align: left;
  color: var(--muted);
}

.table th {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.form {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  padding: 18px;
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow);
}

.form .field {
  display: grid;
  gap: 8px;
}

.form label {
  color: #fff;
  font-weight: 600;
}

.form input,
.form textarea,
.form select {
  padding: 12px;
  border-radius: 12px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.banner {
  padding: 22px 18px;
  border-radius: 16px;
  border: var(--border);
  background: linear-gradient(135deg, rgba(90, 248, 181, 0.16), rgba(125, 211, 255, 0.16));
  border-left: 3px solid rgba(125, 211, 255, 0.6);
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline .item {
  position: relative;
  padding-left: 18px;
}

.timeline .item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-img {
  aspect-ratio: 5 / 4;
  background: var(--bg-alt);
  border-radius: 18px;
  border: var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 21, 36, 0) 50%, rgba(11, 21, 36, 0.6) 100%);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: var(--border);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.price-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: var(--border);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-card .tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(246, 195, 68, 0.16);
  color: var(--accent);
  font-weight: 700;
}

.price {
  font-size: 32px;
  color: #fff;
  margin: 10px 0 6px;
}

.mobile-nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: var(--border);
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
}

@media (max-width: 760px) {
  nav ul {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(11, 21, 36, 0.95);
    padding: 12px 18px;
    border-bottom: var(--border);
    border-top: var(--border);
    display: none;
    flex-direction: column;
    gap: 10px;
  }

  nav ul.open {
    display: flex;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .hero {
    padding-top: 40px;
  }
}
