:root {
  --bg: #060f1f;
  --bg-soft: #0d1e3a;
  --card: #101f39;
  --text: #f4f9ff;
  --muted: #a5b8d6;
  --accent: #7fdcff;
  --accent-2: #4d94ff;
  --gold: #ffd27a;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 80px rgba(2, 12, 30, 0.55);
  --shadow-soft: 0 18px 40px rgba(2, 10, 24, 0.35);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  background:
    radial-gradient(1000px 600px at 12% -5%, rgba(77, 148, 255, 0.28), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(127, 220, 255, 0.16), transparent 50%),
    linear-gradient(180deg, #050d1c 0%, #081428 45%, #0a1a33 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.01em;
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  margin: 0;
}

/* SVG icon defaults */
svg {
  flex-shrink: 0;
}

.ico {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  vertical-align: -0.18em;
}

.container {
  width: min(1160px, calc(100% - 2.4rem));
  margin: 0 auto;
}

/* Scroll progress bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--gold));
  z-index: 200;
  transition: width 0.1s linear;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(6, 15, 31, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(6, 15, 31, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

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

.brand {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(255, 210, 122, 0.6));
  display: inline-flex;
}

.brand-mark svg {
  width: 1.25rem;
  height: 1.25rem;
}

.brand-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.25s ease;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--text);
}

.site-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta,
.btn.primary {
  background: linear-gradient(135deg, #4d94ff 0%, #2f6fe0 55%, #1e50c8 100%);
  color: #ffffff;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(45, 108, 224, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-cta .ico {
  width: 1.05rem;
  height: 1.05rem;
  vertical-align: middle;
}

.nav-cta:hover,
.btn.primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 18px 34px rgba(45, 108, 224, 0.55);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 0.6rem 0.7rem;
  border-radius: 12px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding: 5.5rem 0 3.5rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(77, 148, 255, 0.35), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  animation: float 9s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(30px) scale(1.05); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.eyebrow .pin {
  display: inline-flex;
  color: var(--accent);
}

.eyebrow .pin svg {
  width: 1rem;
  height: 1rem;
}

.hero-copy h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.08;
  font-weight: 800;
}

.grad-text {
  background: linear-gradient(120deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 34rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn.full {
  width: 100%;
  margin-top: 0.4rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.4rem;
}

.hero-points li {
  color: var(--muted);
  display: flex;
  align-items: center;
}

.hero-points li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: rgba(127, 220, 255, 0.15);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.stars {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
}

.stars svg {
  width: 1.05rem;
  height: 1.05rem;
  filter: drop-shadow(0 2px 4px rgba(255, 210, 122, 0.35));
}

/* Hero visual card */
.dashboard-card {
  background: linear-gradient(180deg, rgba(18, 38, 66, 0.96), rgba(8, 18, 34, 0.94));
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 1.3rem;
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.dashboard-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.badge-live {
  margin-left: auto;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(143, 253, 202, 0.15);
  color: #8ffdca;
}

.live-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #8ffdca;
  box-shadow: 0 0 0 0.3rem rgba(143, 253, 202, 0.18);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0.3rem rgba(143, 253, 202, 0.18); }
  50% { box-shadow: 0 0 0 0.55rem rgba(143, 253, 202, 0.05); }
}

.slideshow-frame {
  position: relative;
  overflow: hidden;
  height: 330px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #071527;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 6s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.dashboard-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1rem;
}

.dashboard-meta div {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.dashboard-meta strong {
  display: block;
  font-size: 1.15rem;
  color: var(--accent);
}

.dashboard-meta span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Stats */
.stats {
  padding: 1.5rem 0 2.5rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.stat-grid div {
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.stat-grid div:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 220, 255, 0.4);
}

.stat-grid strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.alt {
  background: rgba(255, 255, 255, 0.018);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-head {
  margin-bottom: 2rem;
  max-width: 46rem;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.15;
}

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

/* Service cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.info-card {
  padding: 1.6rem 1.5rem;
  background: linear-gradient(180deg, rgba(16, 31, 57, 0.9), rgba(9, 19, 35, 0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(127, 220, 255, 0.4);
  box-shadow: 0 26px 50px rgba(2, 12, 30, 0.5);
}

.card-icon {
  width: 3.4rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(127, 220, 255, 0.12);
  border: 1px solid rgba(127, 220, 255, 0.2);
  margin-bottom: 1rem;
  color: var(--accent);
}

.card-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.info-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

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

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 2rem 1.7rem;
  background: linear-gradient(180deg, rgba(16, 31, 57, 0.92), rgba(9, 19, 35, 0.92));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
}

.price-card.featured {
  border-color: rgba(127, 220, 255, 0.5);
  background: linear-gradient(180deg, rgba(24, 46, 82, 0.96), rgba(11, 24, 44, 0.96));
  box-shadow: 0 30px 70px rgba(77, 148, 255, 0.28);
  transform: scale(1.03);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #ffb84d);
  color: #3a2600;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255, 184, 77, 0.35);
}

.price-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
}

.price {
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 1.1rem;
}

.price span {
  font-size: 1.4rem;
  color: var(--accent);
}

.price small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.35rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.4rem;
  flex-grow: 1;
}

.price-card ul li {
  color: var(--muted);
  display: flex;
  align-items: center;
}

.price-card ul li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  margin-right: 0.55rem;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.step {
  padding: 1.6rem 1.4rem;
  background: linear-gradient(180deg, rgba(16, 31, 57, 0.9), rgba(9, 19, 35, 0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.step:hover {
  transform: translateY(-5px);
  border-color: rgba(127, 220, 255, 0.35);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(77, 148, 255, 0.25), rgba(127, 220, 255, 0.12));
  color: var(--accent);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

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

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.feature-grid h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin: 0 0 1rem;
}

.feature-grid > div > p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 0.85rem;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 1.2rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease;
}

.feat-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(127, 220, 255, 0.12);
  border: 1px solid rgba(127, 220, 255, 0.2);
  color: var(--accent);
}

.feat-ico svg {
  width: 1.15rem;
  height: 1.15rem;
}

.feature-list div:hover {
  transform: translateX(6px);
  background: rgba(127, 220, 255, 0.08);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 36px rgba(2, 10, 22, 0.3);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 15, 31, 0.5) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 24 24' fill='none' stroke='%237fdcff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E") center / 34px no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.review-card {
  padding: 1.7rem 1.6rem;
  background: linear-gradient(180deg, rgba(16, 31, 57, 0.9), rgba(9, 19, 35, 0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 210, 122, 0.35);
}

.review-card p {
  color: var(--text);
  font-style: italic;
  margin: 0.8rem 0 1.2rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #04111d;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.review-author strong {
  display: block;
  font-size: 0.98rem;
}

.review-author small {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-grid h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin: 0 0 1rem;
}

.contact-grid > div > p {
  color: var(--muted);
}

.contact-info {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.contact-info li {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.ci-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(127, 220, 255, 0.12);
  border: 1px solid rgba(127, 220, 255, 0.2);
  color: var(--accent);
}

.ci-ico svg {
  width: 1.05rem;
  height: 1.05rem;
}

.contact-info a {
  color: var(--accent);
  font-weight: 700;
}

.contact-card {
  padding: 1.8rem 1.7rem;
  background: linear-gradient(180deg, rgba(18, 38, 66, 0.96), rgba(8, 18, 34, 0.94));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.9rem;
}

.contact-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.2rem;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn.call {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04111d;
}

.contact-btn.wa {
  background: linear-gradient(135deg, #25d366, #128c4b);
  color: #04120a;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

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

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.6rem 0 2.2rem;
  color: var(--muted);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.to-top {
  color: var(--accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.to-top svg {
  width: 1rem;
  height: 1rem;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c4b);
  color: #04120a;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.4);
  animation: bob 2.4s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.wa-icon {
  display: inline-flex;
  align-items: center;
}

.wa-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .card-grid,
  .price-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-6px);
  }

  .dashboard-card {
    transform: none;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 1.2rem;
    left: 1.2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 1rem;
    background: rgba(7, 17, 31, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: none;
  }

  .site-nav.open {
    display: flex;
    animation: dropIn 0.3s ease;
  }

  @keyframes dropIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .site-nav a {
    padding: 0.6rem 0.4rem;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 3rem;
  }

  .stat-grid,
  .card-grid,
  .price-grid,
  .review-grid,
  .steps-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item img {
    height: 160px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .wa-text {
    display: none;
  }

  .whatsapp-float {
    padding: 0.9rem;
  }

  .wa-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
