@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --panel: #101010;
  --panel-2: #141414;
  --text: #f4f4f4;
  --muted: #b8b8b8;
  --line: rgba(255,255,255,0.08);
  --primary: #00ff88;
  --primary-dark: #00cc6d;
  --shadow: 0 15px 40px rgba(0,0,0,0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

/* Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(0,255,136,0.10), transparent 20%),
    radial-gradient(circle at left center, rgba(0,255,136,0.06), transparent 18%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout */

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-subtitle {
  max-width: 760px;
  color: var(--muted);
  margin-bottom: 36px;
}

.accent {
  color: var(--primary);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0,255,136,0.18);
  background: rgba(0,255,136,0.08);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(0,255,136,0.8);
}

/* Header */

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(5,5,5,0.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
  cursor: pointer;
  border: none;
  min-height: 52px;
}

.btn-primary {
  background: var(--primary);
  color: #04140d;
  box-shadow: 0 10px 30px rgba(0,255,136,0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #3cffaa;
}

.btn-outline {
  border: 1px solid rgba(0,255,136,0.35);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(0,255,136,0.08);
  transform: translateY(-2px);
}

/* Home Page Hero */

.hero,
.home-hero {
  padding: 90px 0 70px;
}

.hero h1,
.home-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.hero p,
.home-hero p {
  color: var(--text);
  max-width: 980px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

/* This is the spacing fix for the area you marked in blue */

.hero-actions,
.hero-buttons,
.hero-ctas,
.hero .btn-wrap,
.hero .button-wrap,
.home-hero .btn-wrap,
.home-hero .button-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 5mm;
  margin-bottom: 5mm;
}

.hero-actions + *,
.hero-buttons + *,
.hero-ctas + *,
.hero .btn-wrap + *,
.hero .button-wrap + *,
.home-hero .btn-wrap + *,
.home-hero .button-wrap + * {
  margin-top: 5mm;
}

.hero-points,
.hero-stats,
.hero-proof,
.hero-highlights,
.hero ul {
  margin-top: 5mm;
}

.hero-points,
.hero-proof,
.hero-highlights {
  display: grid;
  gap: 6px;
}

.hero-points strong,
.hero-proof strong,
.hero-highlights strong {
  color: var(--text);
}

/* Page Hero */

.page-hero {
  padding: 70px 0 30px;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  margin-bottom: 12px;
  line-height: 1.1;
}

.page-hero p {
  color: var(--muted);
  max-width: 780px;
}

/* General Grids */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* General Cards */

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
}

.info-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
}

.info-panel h3 {
  margin-bottom: 10px;
}

.list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.list li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
}

/* Services Cards */

.service-grid {
  align-items: stretch;
}

.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-image {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease, box-shadow 0.45s ease;
  box-shadow:
    inset 0 0 0 1px rgba(0,255,136,0.18),
    0 0 28px rgba(0,255,136,0.14);
}

.service-card:hover .service-image img {
  transform: scale(1.035);
  filter: brightness(1.04);
}

.service-card:hover .service-image::after {
  opacity: 1;
}

.service-overlay {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-overlay h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-overlay p {
  color: var(--muted);
  margin-bottom: 6px;
}

/* CTA */

.cta-panel {
  background:
    linear-gradient(135deg, rgba(0,255,136,0.12), rgba(255,255,255,0.03)),
    var(--panel);
  border: 1px solid rgba(0,255,136,0.18);
  border-radius: 26px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-panel h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

.cta-panel p {
  color: var(--muted);
  max-width: 700px;
}

/* Footer */

footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  color: var(--muted);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* Floating Buttons */

.book-call {
  position: fixed;
  bottom: 82px;
  right: 22px;
  background: #00ff88;
  color: #04140d;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
  z-index: 999;
}

.whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}

/* General Responsive */

@media (max-width: 980px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 70px 0;
  }

  .service-overlay {
    padding: 20px;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: center;
  }

  .section {
    padding: 70px 0;
  }

  .brand {
    justify-content: center;
  }

  .btn {
    width: 100%;
  }

  .hero,
  .home-hero {
    padding: 60px 0 50px;
  }

  .hero-actions,
  .hero-buttons,
  .hero-ctas,
  .hero .btn-wrap,
  .hero .button-wrap,
  .home-hero .btn-wrap,
  .home-hero .button-wrap {
    width: 100%;
    margin-top: 5mm;
    margin-bottom: 5mm;
  }

  .page-hero {
    padding: 56px 0 24px;
  }

  .book-call,
  .whatsapp {
    right: 16px;
  }
}

/* Pricing Page - scoped */

.pricing-page .pricing-hero {
  padding-bottom: 34px;
}

.pricing-page .pricing-section {
  padding-top: 60px;
}

.pricing-page .pricing-container {
  width: min(96%, 1500px);
  max-width: 1500px;
}

.pricing-page .pricing-intro {
  margin-bottom: 34px;
}

.pricing-page .pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  width: 100%;
}

.pricing-page .price-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-page .price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,136,0.32);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.42),
    0 0 28px rgba(0,255,136,0.08);
}

.pricing-page .price-card.featured {
  border-color: rgba(0,255,136,0.48);
  background:
    linear-gradient(180deg, rgba(0,255,136,0.10), rgba(255,255,255,0.02)),
    var(--panel);
}

.pricing-page .price-card.premium-card {
  border-color: rgba(0,255,136,0.30);
  background:
    radial-gradient(circle at top right, rgba(0,255,136,0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    var(--panel);
}

.pricing-page .popular-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--primary);
  color: #04140d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,255,136,0.22);
}

.pricing-page .plan-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-page .plan-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-page .plan-label {
  width: max-content;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0,255,136,0.20);
  background: rgba(0,255,136,0.07);
  color: var(--primary);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-page .price-card h3 {
  font-size: 1.22rem;
  line-height: 1.2;
  margin-top: 4px;
}

.pricing-page .price {
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
}

.pricing-page .price small {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 5px;
}

.pricing-page .price-note {
  color: var(--muted);
  font-size: 0.9rem;
  min-height: 100px;
}

.pricing-page .pricing-list {
  list-style: none;
  display: grid;
  gap: 11px;
  margin: 24px 0;
}

.pricing-page .pricing-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-page .pricing-list li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

.pricing-page .plan-meta {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: grid;
  gap: 11px;
  margin-bottom: 24px;
}

.pricing-page .plan-meta p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.pricing-page .plan-meta strong {
  color: var(--text);
  font-weight: 700;
}

.pricing-page .price-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-page .pricing-note-section {
  padding-top: 20px;
}

.pricing-page .pricing-cta {
  align-items: center;
}

/* Pricing tablet/laptop/desktop: 4 blocks next to each other */

@media (min-width: 768px) {
  .pricing-page .pricing-grid.four-plans {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
}

/* Pricing tablet and smaller laptop compression */

@media (min-width: 768px) and (max-width: 1180px) {
  .pricing-page .pricing-container {
    width: min(98%, 1500px);
  }

  .pricing-page .pricing-grid.four-plans {
    gap: 14px;
  }

  .pricing-page .price-card {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .pricing-page .popular-tag {
    position: static;
    width: max-content;
    margin-bottom: 14px;
    font-size: 0.65rem;
    padding: 6px 9px;
  }

  .pricing-page .plan-label {
    font-size: 0.68rem;
    padding: 5px 8px;
  }

  .pricing-page .price-card h3 {
    font-size: 0.95rem;
  }

  .pricing-page .price {
    font-size: 1.25rem;
  }

  .pricing-page .price small {
    font-size: 0.7rem;
  }

  .pricing-page .price-note {
    font-size: 0.75rem;
    min-height: 116px;
  }

  .pricing-page .pricing-list li {
    font-size: 0.75rem;
    padding-left: 20px;
  }

  .pricing-page .plan-meta p {
    font-size: 0.72rem;
  }

  .pricing-page .price-card .btn {
    font-size: 0.74rem;
    padding: 10px 10px;
    min-height: 42px;
  }
}

/* Pricing phone view */

@media (max-width: 767px) {
  .pricing-page .pricing-container {
    width: min(92%, var(--max));
  }

  .pricing-page .pricing-grid.four-plans {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-page .price-card {
    padding: 22px;
    border-radius: 20px;
  }

  .pricing-page .popular-tag {
    position: static;
    width: max-content;
    margin-bottom: 14px;
  }

  .pricing-page .price-card h3 {
    font-size: 1.2rem;
  }

  .pricing-page .price {
    font-size: 2rem;
  }

  .pricing-page .price small {
    display: inline;
    font-size: 0.88rem;
  }

  .pricing-page .price-note {
    font-size: 0.92rem;
    min-height: auto;
  }

  .pricing-page .pricing-list li {
    font-size: 0.9rem;
  }

  .pricing-page .plan-meta p {
    font-size: 0.86rem;
  }

  .pricing-page .pricing-section {
    padding-top: 44px;
  }
}

@media (max-width: 420px) {
  .pricing-page .price-card {
    padding: 20px;
  }

  .pricing-page .price {
    font-size: 1.8rem;
  }
}

/* Contact Page correction - scoped */

.contact-page .contact-grid,
.contact-page .contact-layout,
.contact-page .grid-2.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

/* Contact tablet/laptop/desktop: Send Message and Contact Details next to each other */

@media (min-width: 768px) {
  .contact-page .contact-grid,
  .contact-page .contact-layout,
  .contact-page .grid-2.contact-grid,
  .contact-page .grid-2 {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: start;
  }
}

/* Contact phone view */

@media (max-width: 767px) {
  .contact-page .contact-grid,
  .contact-page .contact-layout,
  .contact-page .grid-2.contact-grid,
  .contact-page .grid-2 {
    grid-template-columns: 1fr;
  }
}