:root {
  --bg-dark: #0b1220;
  --bg-soft: #111827;
  --primary: #38bdf8;
  --accent: #22d3ee;
  --text-main: #0f172a;
  --text-light: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--text-main);
  background: #ffffff;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: min(1200px, 92%);
  margin: auto;
}

/* Header */
.top-bar {
  background: var(--bg-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

nav a {
  color: #cbd5f5;
  margin-left: 2rem;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: var(--primary);
}

/* Hero */
.hero {
  background: radial-gradient(circle at top right, #1e293b, var(--bg-dark));
  color: var(--text-light);
  padding: 6rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin: 1rem 0;
}

.hero p {
  max-width: 520px;
  opacity: 0.9;
}

.hero-actions {
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-right: 1rem;
}

.btn.primary {
  background: var(--primary);
  color: #00263a;
}

.btn.secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-visual .visual-card {
  height: 320px;
  border-radius: 22px;
  background: linear-gradient(145deg, #38bdf8, #0ea5e9);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  padding: 2.5rem;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  padding: 4.5rem 0;
  text-align: center;
}

.cta h2 {
  font-size: 2.4rem;
}

.cta p {
  margin: 1rem 0 2rem;
}

.btn.dark {
  background: #020617;
  color: #ffffff;
}

/* Footer */
footer {
  background: var(--bg-soft);
  color: #94a3b8;
  padding: 2.5rem 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  nav {
    display: none;
  }
}
/* PRICING */
.pricing {
  background: #f8fafc;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: -2rem auto 3rem;
  color: #475569;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.pricing-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.12);
}

.pricing-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.speed {
  font-family: "IBM Plex Mono", monospace;
  color: #0ea5e9;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card li {
  margin: 0.6rem 0;
  color: #334155;
}

/* Featured Plan */
.pricing-card.featured {
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  color: #020617;
  transform: scale(1.05);
}

.pricing-card.featured .price,
.pricing-card.featured .speed {
  color: #020617;
}

.pricing-card.featured li {
  color: #020617;
}/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #ffffff;
  padding: 0.9rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 2000;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.whatsapp-float span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
}

/* Mobile tweak */
@media (max-width: 600px) {
  .whatsapp-float {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }
}
/* TRUST DISPLAY SECTION — BEAUTIFIED */
.trust-display {
  overflow: hidden;
  white-space: nowrap;
  padding: 2.5rem 0;
  background: linear-gradient(135deg, #1f0a0a, #2b0d0d); /* darker bg for contrast */
  border-top: 2px solid #b91c1c;  /* subtle red top border */
  border-bottom: 2px solid #b91c1c;
}

.trust-track {
  display: inline-block;
  animation: scrollTrust 20s linear infinite;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
}

.trust-track span {
  display: inline-block;
  margin: 0 3rem;
  font-size: 1.7rem;
  color: #ef4444; /* bright red */
  text-shadow: 1px 1px 2px #7f1d1d; /* subtle dark shadow */
  letter-spacing: 1px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.trust-track span:hover {
  transform: scale(1.2);
  color: #f87171; /* lighter red on hover */
}

/* Animation */
@keyframes scrollTrust {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile tuning */
@media (max-width: 768px) {
  .trust-track span {
    font-size: 1.3rem;
    margin: 0 2rem;
  }
}


/* Mobile tuning */
@media (max-width: 768px) {
  .trust-track span {
    font-size: 1.2rem;
    margin: 0 2rem;
  }
}

/* HERO STATS CARD UPGRADE */
.stats-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2.8rem;
}

.stat {
  background: linear-gradient(145deg, #ffffff, #e0f2fe);
  border-radius: 18px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatUp 3s ease-in-out infinite alternate;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.25);
}

.stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #0284c7;
}

.stat p {
  margin-top: 0.4rem;
  color: #334155;
}

/* floating effect */
@keyframes floatUp {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}


/* Slight stagger for live feel */
.stat:nth-child(2) { animation-delay: 0.3s; }
.stat:nth-child(3) { animation-delay: 0.6s; }
.stat:nth-child(4) { animation-delay: 0.9s; }

/* Subtle animation */
@keyframes floatUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-6px);
  }
}

/* Mobile */
@media (max-width: 900px) {
  .stats-card {
    grid-template-columns: 1fr 1fr;
  }
}
/* SERVICES SECTION UPGRADE */
.services-section {
  position: relative;
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #eef6ff 50%,
    #ffffff 100%
  );
  overflow: hidden;
}

/* Decorative background shapes */
.services-section::before,
.services-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  z-index: 0;
}

.services-section::before {
  width: 320px;
  height: 320px;
  background: #38bdf8;
  top: -80px;
  left: -100px;
}

.services-section::after {
  width: 280px;
  height: 280px;
  background: #22d3ee;
  bottom: -80px;
  right: -100px;
}

/* Ensure content stays above background */
.services-section .container {
  position: relative;
  z-index: 1;
}

/* Enhanced service cards */
.services-section .card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.services-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* Title refinement */
.services-section .section-title {
  margin-bottom: 3.5rem;
}

.services-section .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 0.8rem auto 0;
  background: linear-gradient(90deg, #38bdf8, #22d3ee);
  border-radius: 2px;
}
/* RED ACCENT UPGRADE — SERVICES SECTION */

/* Subtle red glow layer */
.services-section::after {
  background: radial-gradient(
    circle,
    rgba(239, 68, 68, 0.25) 0%,
    rgba(239, 68, 68, 0.05) 45%,
    transparent 70%
  );
}

/* Red accent border on hover */
.services-section .card {
  position: relative;
}

.services-section .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(239, 68, 68, 0.6),
    transparent
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services-section .card:hover::before {
  opacity: 1;
}

/* Red emphasis on service titles */
.services-section .card h3 {
  position: relative;
}

.services-section .card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 0.6rem;
  background: linear-gradient(90deg, #ef4444, #fb7185);
  border-radius: 2px;
}

/* Red icon glow (if icons exist) */
.services-section .card svg {
  filter: drop-shadow(0 0 6px rgba(239, 68, 68, 0.35));
}

/* CTA emphasis inside services */
.services-section .btn,
.services-section button {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
}

.services-section .btn:hover,
.services-section button:hover {
  box-shadow: 0 0 18px rgba(239, 68, 68, 0.6);
}
/* HERO VIDEO / IMAGE */
.hero-bg { position:absolute; top:0; left:0; width:100%; height:100%; z-index:0; overflow:hidden; }
.hero-video { width:100%; height:100%; object-fit:cover; }
.hero-overlay { position:absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.35); z-index:1; }
.hero-text { position:relative; z-index:2; }

/* CARD IMAGES */
.card-img { width:100%; border-radius:16px; margin-bottom:1rem; object-fit:cover; height:180px; }

/* REVIEWS */
.reviews-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap:2rem; margin-top:2rem; }
.review-card { background:white; border-radius:12px; padding:1.5rem; box-shadow:0 15px 35px rgba(0,0,0,0.12); text-align:center; }
.review-img { width:80px; height:80px; object-fit:cover; border-radius:50%; margin-bottom:1rem; }
.review-text { font-style:italic; margin-bottom:0.5rem; }
.reviewer-name { font-weight:600; color:#1f2937; }
/* CONTACT SECTION */
.contact-section {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
}

.contact-card h3 {
  margin-bottom: 1rem;
}
/* =========================
   RESPONSIVE NAVBAR
========================= */

.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Mobile style */
@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #0b1220;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  nav a {
    padding: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: block;
  }

  nav.show {
    display: flex;
  }

  .nav {
    position: relative;
  }
}
