* {
  box-sizing: border-box;
}

:root {
  --bg: #09111f;
  --surface: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f7fb;
  --muted: #b3c0d3;
  --primary: #53b7ff;
  --primary-dark: #2399ef;
  --accent: #8ef0cf;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --container: 1180px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(83, 183, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(142, 240, 207, 0.12), transparent 18%),
    linear-gradient(180deg, #07101d, #0a1323 38%, #0b1528 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.announcement-bar {
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(7, 16, 29, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: rgba(255,255,255,0.08);
  background: rgba(7, 16, 29, 0.88);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #05101c;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a { color: var(--muted); font-weight: 500; }
.site-nav a:hover { color: var(--text); }

.nav-cta {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(83, 183, 255, 0.35);
  color: var(--text) !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
}

.hero {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.hero-text,
.section-heading p,
.contact-copy p,
.pricing-note {
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #06101d;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
}

.btn-full {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-note {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--text);
}

.hero-card-inner,
.info-card,
.gallery-card,
.pricing-card,
.contact-form {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card-inner,
.info-card,
.pricing-card,
.contact-form {
  padding: 1.5rem;
}

.mini-label {
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 1rem;
}

.stat-number {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

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

.hero-card-note {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(83, 183, 255, 0.09);
  border: 1px solid rgba(83, 183, 255, 0.22);
}

.hero-card-note p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.hero-gradient {
  position: absolute;
  inset: auto -10% -20% auto;
  width: 35rem;
  height: 35rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(83,183,255,0.2), transparent 65%);
  filter: blur(16px);
  pointer-events: none;
}

.trust-strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.trust-grid {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.section { padding: 5.5rem 0; }

.section-alt {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-heading { margin-bottom: 2rem; }

.section-heading h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 16ch;
}

.card-grid,
.gallery-grid,
.pricing-grid,
.footer-grid,
.contact-grid {
  display: grid;
  gap: 1.4rem;
}

.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-grid,
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
.footer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; align-items: start; }

.info-card h3,
.gallery-copy h3,
.pricing-card h3 { margin-top: 0; margin-bottom: 0.6rem; font-size: 1.15rem; }

.info-card p,
.gallery-copy p,
.pricing-card li,
.site-footer p,
.site-footer li,
.site-footer a { color: var(--muted); }

.gallery-card { overflow: hidden; }

.gallery-visual {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(83,183,255,0.2), rgba(142,240,207,0.08)),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-bottom: 1px solid var(--line);
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.gallery-copy { padding: 1.2rem 1.25rem 1.3rem; }

.pricing-card { position: relative; }

.pricing-card ul {
  padding-left: 1.15rem;
  margin-bottom: 0;
}

.price {
  font-size: 1.9rem;
  line-height: 1;
  margin: 0.35rem 0 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.featured {
  border-color: rgba(83,183,255,0.32);
  transform: translateY(-4px);
}

.pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(83,183,255,0.14);
  border: 1px solid rgba(83,183,255,0.25);
  color: var(--primary);
}

.pricing-note {
  margin-top: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.contact-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-points strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-points p { margin: 0; color: var(--muted); }

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(7, 16, 29, 0.55);
  color: var(--text);
  font: inherit;
}

.site-footer {
  padding: 2.5rem 0 4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer h4 { margin-top: 0; margin-bottom: 0.7rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 950;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #07101d;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .contact-grid,
  .pricing-grid,
  .card-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(7, 16, 29, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }

  .hero,
  .section { padding: 4.5rem 0; }

  .hero-grid,
  .contact-grid,
  .pricing-grid,
  .card-grid,
  .gallery-grid,
  .footer-grid,
  .trust-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .trust-list { flex-direction: column; }

  .floating-cta {
    left: 1rem;
    right: 1rem;
    text-align: center;
  }
}
