@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&display=swap");

:root {
  --bg: #090f21;
  --bg-soft: #111a36;
  --card: #131e3f;
  --text: #ecf1ff;
  --muted: #9aabd8;
  --primary: #4f8cff;
  --primary-2: #63d6ff;
  --ok: #35d399;
  --border: #263766;
  --shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 500px at 120% -10%, rgba(79, 140, 255, 0.35), transparent 50%),
    radial-gradient(900px 500px at -10% 120%, rgba(99, 214, 255, 0.2), transparent 55%), var(--bg);
  line-height: 1.85;
  overflow-x: hidden;
}

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

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.page-glow {
  position: fixed;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -2;
  pointer-events: none;
}

.glow-1 {
  top: -260px;
  left: -180px;
  background: rgba(79, 140, 255, 0.24);
}

.glow-2 {
  right: -220px;
  bottom: -240px;
  background: rgba(44, 195, 255, 0.2);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: url("../img/grid-pattern.svg") center/cover no-repeat;
  opacity: 0.12;
}

header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(10, 15, 30, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
}

header.scrolled {
  background: rgba(9, 13, 25, 0.84);
  border-bottom-color: rgba(99, 214, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.brand .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 8px rgba(79, 140, 255, 0.15);
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
  flex-wrap: wrap;
}

.nav-links a {
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #d8e6ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  font-weight: 800;
  transition: 0.25s ease;
  white-space: nowrap;
  padding: 12px 20px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #6ea3ff);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-outline {
  color: #dbe7ff;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  border-color: rgba(99, 214, 255, 0.6);
  background: rgba(99, 214, 255, 0.08);
}

.hero {
  padding: 76px 0 42px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 30px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cfe0ff;
  background: rgba(79, 140, 255, 0.12);
  border: 1px solid rgba(79, 140, 255, 0.35);
  border-radius: 999px;
  font-size: 0.92rem;
  padding: 7px 14px;
  margin-bottom: 14px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(1.82rem, 3.6vw, 3rem);
  line-height: 1.25;
}

.lead {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.06rem;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-card {
  background: linear-gradient(165deg, rgba(99, 214, 255, 0.08), rgba(79, 140, 255, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
  transform-style: preserve-3d;
}

.hero-card:hover {
  border-color: rgba(99, 214, 255, 0.5);
}

.hero-media {
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 17, 36, 0.55);
  overflow: hidden;
}

.hero-media img {
  width: min(100%, 420px);
  display: block;
}

.hero-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.hero-list li {
  display: flex;
  align-items: start;
  gap: 10px;
  color: #d9e4ff;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(53, 211, 153, 0.2);
  color: var(--ok);
  flex: 0 0 auto;
  margin-top: 3px;
  font-weight: 900;
}

.section-block {
  padding: 28px 0 6px;
}

.section-title {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.section-sub {
  margin: 0 0 22px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 214, 255, 0.5);
}

.price-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.price {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1;
  font-weight: 900;
  color: #fff;
}

.price small {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
  margin-inline-start: 6px;
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  color: #d7e2ff;
}

.tag {
  display: inline-block;
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid rgba(99, 214, 255, 0.45);
  color: #bdeeff;
  background: rgba(99, 214, 255, 0.08);
  margin-bottom: 8px;
}

.highlight {
  border-color: rgba(79, 140, 255, 0.75);
  box-shadow: 0 0 0 1px rgba(79, 140, 255, 0.35), var(--shadow);
}

.service-card .service-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.service-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex: 0 0 auto;
}

.service-card h4 {
  margin: 0;
  font-size: 1rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: start;
  gap: 12px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(79, 140, 255, 0.18);
  color: #cfe0ff;
  font-weight: 800;
  flex: 0 0 auto;
}

.cta {
  margin: 28px 0 10px;
  background: linear-gradient(145deg, rgba(79, 140, 255, 0.15), rgba(99, 214, 255, 0.12));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta h3 {
  margin: 0 0 6px;
}

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

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
  padding: 18px 0 30px;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 25;
  background: #22c55e;
  color: #fff;
  border-radius: 999px;
  padding: 11px 14px;
  box-shadow: var(--shadow);
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35), var(--shadow);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0), var(--shadow);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0), var(--shadow);
  }
}

body:not(.no-js) .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

body:not(.no-js) .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .cards-2,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
  }

  .hero-cta {
    width: 100%;
  }

  .cta {
    padding: 18px;
  }
}
