/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #000000;
  --dark: #0a0a0a;
  --dark-card: #111111;
  --dark-border: rgba(255,255,255,0.08);
  --white: #ffffff;
  --text: #f5f5f4;
  --text-muted: #888888;
  --accent: #BFF747;
  --accent-hover: #d4ff7a;
  --accent-dark: #9ad030;
  --accent-bg: #1a2e05;
  --green-section: #0d1a00;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 100px;
  --max-width: 1300px;
  --font: 'Outfit', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== GRID BACKGROUND (Apex Legends style) ===== */
/* Sectional grid pattern — applied to specific sections, not full page */
.section-grid {
  position: relative;
}

.section-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(191,247,71,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191,247,71,0.03) 1px, transparent 1px),
    linear-gradient(rgba(191,247,71,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191,247,71,0.015) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

/* ===== FULL-PAGE VERTICAL GRID LINES ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.12) 0px,
    rgba(255,255,255,0.12) 1px,
    transparent 1px,
    transparent
  );
  background-size: calc(100% / 4) 100%;
}

/* ===== ABSTRACT GLASS ORBS (placed in sections) ===== */
.glass-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle at 30% 30%,
    rgba(255,255,255,0.07) 0%,
    rgba(255,255,255,0.02) 20%,
    transparent 60%
  );
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 0 40px rgba(255,255,255,0.04),
    inset -20px -20px 60px rgba(0,0,0,0.5),
    0 0 60px rgba(0,0,0,0.2);
  overflow: hidden;
}

.glass-orb::before {
  content: '';
  position: absolute;
  width: 55%;
  height: 55%;
  top: 10%;
  left: 14%;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(255,120,120,0.1),
    rgba(100,200,255,0.1),
    rgba(160,100,255,0.08),
    transparent
  );
  filter: blur(8px);
}

.glass-orb::after {
  content: '';
  position: absolute;
  width: 75%;
  height: 25%;
  bottom: 8%;
  left: 12%;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(90deg,
    rgba(255,60,60,0.08),
    rgba(255,200,50,0.06),
    rgba(50,150,255,0.08),
    rgba(180,50,255,0.07)
  );
  filter: blur(6px);
}

.glass-orb-1 {
  width: 220px;
  height: 220px;
  top: -40px;
  right: 60px;
  animation: orb-drift-1 20s ease-in-out infinite;
}

.glass-orb-2 {
  width: 180px;
  height: 180px;
  bottom: -50px;
  left: -40px;
  animation: orb-drift-2 25s ease-in-out infinite;
}

.glass-orb-3 {
  width: 260px;
  height: 260px;
  top: 20%;
  right: -80px;
  animation: orb-drift-3 30s ease-in-out infinite;
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-20px, 30px); }
  50% { transform: translate(15px, -15px); }
  75% { transform: translate(-10px, -25px); }
}

@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-15px, 35px); }
}

@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(20px, 15px); }
  50% { transform: translate(-30px, -10px); }
  75% { transform: translate(10px, -30px); }
}

/* ===== BLURRED GREEN ORBS ===== */
.bg-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,247,71,0.12) 0%, rgba(191,247,71,0.04) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.bg-orb-left {
  left: -200px;
  top: 20%;
}

.bg-orb-right {
  right: -200px;
  top: 30%;
}

.services,
.portfolio,
.about-section,
.process,
.testimonials,
.faq,
.stats,
.results-section,
.industries,
.contact-section {
  overflow: hidden;
}

.portfolio,
.process,
.testimonials {
  position: relative;
}

/* ===== TOP ANNOUNCEMENT BAR ===== */
.top-bar {
  background: var(--accent);
  text-align: center;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  overflow: hidden;
}

.top-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2) 50%, transparent);
  background-size: 200% 100%;
  animation: top-bar-shimmer 3s ease-in-out infinite;
}

@keyframes top-bar-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.top-bar p {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.top-bar a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 800;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--dark-border);
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 24px;
}

.logo img { height: 42px; width: auto; }

/* ===== MEGA NAV ===== */
.main-nav {
  display: flex;
  gap: 0;
  height: 100%;
  align-items: stretch;
}

.nav-item {
  position: static;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--white);
  padding: 0 18px;
  height: 100%;
  transition: color 0.25s;
  position: relative;
}

.nav-number {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 2px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.nav-item:hover .nav-number { opacity: 1; }
.nav-item:hover > a,
.nav-item > a.active { color: var(--accent); }

.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-item:hover > a::after { transform: scaleX(1); }

/* Has dropdown indicator */
.nav-item.has-mega > a .nav-label::after {
  content: ' +';
  font-size: 11px;
  opacity: 0.5;
}

.nav-item.has-mega:hover > a .nav-label::after {
  content: ' \00d7';
  opacity: 1;
}

/* Full-screen mega menu */
.mega-menu {
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  background: rgba(12,12,12,0.98);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(191,247,71,0.12);
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  z-index: 99;
}

/* Invisible bridge — extends the hover zone upward to cover any sub-pixel gap */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

/* Opened via JS */
.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Image card grid for mega menu */
.mega-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.mega-card {
  display: block;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 160px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.35s;
}

.mega-card:hover {
  border-color: rgba(191,247,71,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.mega-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.28;
  transition: opacity 0.35s ease, transform 0.45s ease;
}
.mega-card:hover .mega-card-img {
  opacity: 0.45;
  transform: scale(1.06);
}

.mega-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,10,10,0.55) 0%, rgba(0,0,0,0.88) 100%);
  z-index: 1;
}

.mega-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 20px;
}

.mega-card-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.mega-card-content span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.mega-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(191,247,71,0.1);
  border: 1px solid rgba(191,247,71,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.mega-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

/* ── Sectors mega list ── */
.mega-sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
  margin-bottom: 24px;
}

.mega-sector-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}

.mega-sector-item:hover {
  background: rgba(191,247,71,0.08);
}

.mega-sector-icon {
  width: 36px;
  height: 36px;
  background: rgba(191,247,71,0.1);
  border: 1px solid rgba(191,247,71,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-sector-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--accent);
}

.mega-sector-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.mega-sector-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
}

/* ── Hero quote form (shared across service pages) ── */
.svc-hero-form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 60px 60px 20px;
}

.svc-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 520px;
  backdrop-filter: blur(20px);
}

.svc-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.svc-form-card .svc-form-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  line-height: 1.5;
}

.svc-field {
  margin-bottom: 12px;
}

.svc-field input,
.svc-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.svc-field input:focus,
.svc-field textarea:focus {
  border-color: var(--accent);
}

.svc-field input::placeholder,
.svc-field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.svc-form-btn {
  width: 100%;
  background: var(--accent);
  color: #080808;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  padding: 15px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Outfit', sans-serif;
  margin-top: 4px;
  margin-bottom: 14px;
}

.svc-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(191,247,71,0.25);
}

.svc-form-trust {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin: 0;
}

/* ── Shared service/sector page: numbered bordered grid ── */
.svc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-left: 1px solid rgba(255,255,255,0.07);
}
.svc-service-item {
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  display: flex;
  flex-direction: column;
}
.svc-service-item:hover { background: rgba(191,247,71,0.025); }
.svc-service-num {
  position: absolute;
  bottom: 8px;
  right: 16px;
  font-size: 90px;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.svc-service-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.svc-service-item h3 {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.svc-service-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  flex: 1;
}

/* ── Shared stats row ── */
.svc-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin: 60px 0;
}
.svc-stat-block {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.svc-stat-block:last-child { border-right: none; }
.svc-stat-block .svc-stat-line {
  width: 32px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 16px;
}
.svc-stat-block strong {
  display: block;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.svc-stat-block span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ── Shared process list ── */
.svc-process-list {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 100%;
  margin-top: 48px;
}
.svc-process-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: start;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0;
  cursor: default;
  transition: background 0.2s;
}
.svc-process-item:hover { background: rgba(255,255,255,0.015); padding-left: 12px; padding-right: 12px; margin: 0 -12px; }
.svc-process-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  padding-top: 3px;
}
.svc-process-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.svc-process-body {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.svc-process-tag {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 4px 12px;
  white-space: nowrap;
  margin-top: 3px;
}

/* ── Shared why-matters split (text + aside) ── */
.svc-why-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.svc-why-body h2 {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.svc-why-body p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}
.svc-why-aside {
  background: rgba(191,247,71,0.05);
  border: 1px solid rgba(191,247,71,0.15);
  border-radius: 16px;
  padding: 32px;
}
.svc-why-aside h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.svc-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-check-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.svc-check-list li:last-child { border-bottom: none; }
.svc-check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23080808' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Responsive for new shared components ── */
@media (max-width: 900px) {
  .svc-services-grid { grid-template-columns: 1fr; }
  .svc-stats-row { grid-template-columns: 1fr 1fr; }
  .svc-process-item { grid-template-columns: 40px 1fr; }
  .svc-process-tag { display: none; }
  .svc-why-grid { grid-template-columns: 1fr; }
  .svc-hero-form { padding: 40px 24px; }
}

.mega-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--dark-border);
}

.mega-footer-left {
  font-size: 14px;
  color: var(--text-muted);
}

.mega-footer a {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border: 1px solid rgba(191,247,71,0.3);
  border-radius: var(--radius-full);
  transition: all 0.3s;
}

.mega-footer a:hover {
  background: var(--accent);
  color: var(--black);
  gap: 10px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-help {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.header-help-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.header-phone-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.header-phone-number:hover { color: var(--accent-hover); }

.header-socials {
  display: flex;
  gap: 8px;
}

.header-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s;
}

.header-socials a:hover {
  background: var(--accent);
  color: var(--black);
}


/* Glitch text effect */
.glitch-text {
  position: relative;
  display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch-text::before {
  color: #ff00ff;
  animation: glitch-1 3s infinite linear;
}

.glitch-text::after {
  color: #00ffff;
  animation: glitch-2 3s infinite linear;
}

@keyframes glitch-1 {
  0%, 90%, 100% { opacity: 0; transform: none; }
  91% { opacity: 0.6; transform: translate(-2px, 1px); clip-path: inset(20% 0 40% 0); }
  93% { opacity: 0; }
  95% { opacity: 0.4; transform: translate(2px, -1px); clip-path: inset(60% 0 10% 0); }
  97% { opacity: 0; }
}

@keyframes glitch-2 {
  0%, 88%, 100% { opacity: 0; transform: none; }
  89% { opacity: 0.5; transform: translate(2px, -1px); clip-path: inset(40% 0 20% 0); }
  91% { opacity: 0; }
  94% { opacity: 0.3; transform: translate(-1px, 2px); clip-path: inset(10% 0 60% 0); }
  96% { opacity: 0; }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  gap: 10px;
  position: relative;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
  padding-right: 56px;
}

.btn-primary::after {
  content: '\2197';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: var(--black);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-primary:hover::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--white);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-lg.btn-primary { padding-right: 62px; }
.btn-lg.btn-primary::after { width: 42px; height: 42px; right: 8px; font-size: 20px; }
.btn-block { width: 100%; }
.btn-block.btn-primary { padding-right: 56px; justify-content: flex-start; }
.btn-block.btn-primary::after { right: 12px; }

/* ===== SPINNING BADGE ===== */
.spinning-badge {
  position: relative;
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}

.spinning-badge-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: spin-text 12s linear infinite;
}

.spinning-badge-text text {
  fill: var(--accent);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-family: var(--font);
}

.spinning-badge-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinning-badge-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--black);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes spin-text {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== GREEN GLOW SECTIONS ===== */
.section-green {
  background: #0a0a0a;
  position: relative;
  border-top: 1px solid rgba(191,247,71,0.06);
}

.section-green::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(191,247,71,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-green::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(191,247,71,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.section-green .section-header h2,
.section-green .why-choose-left h2,
.section-green .location-content h2 { color: var(--white); }

.section-green .section-header p { color: rgba(255,255,255,0.6); }

.badge-dark {
  color: var(--accent);
  border-color: rgba(191,247,71,0.3);
  background: rgba(191,247,71,0.08);
}

/* ===== SECTION UTILITIES ===== */
section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
}

.section-header p {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.7;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(191,247,71,0.2);
  border-radius: var(--radius-full);
}

/* ===== HERO ===== */
.hero {
  padding: 200px 0 120px;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Video background */
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* CSS fallback: animated moving lines */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(191,247,71,0.018) 40px,
      rgba(191,247,71,0.018) 41px
    );
  background-size: 200% 200%;
  animation: hero-lines-move 20s linear infinite;
}

@keyframes hero-lines-move {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,247,71,0.1) 0%, rgba(34,197,94,0.04) 40%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hero-orb-float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  filter: blur(50px);
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(191,247,71,0.06) 0%, rgba(34,197,94,0.03) 50%, transparent 70%);
  animation: hero-orb-float-2 12s ease-in-out infinite;
  filter: blur(80px);
}

@keyframes hero-orb-float {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  25% { transform: translate(-40%, -55%) scale(1.1); }
  50% { transform: translate(-55%, -45%) scale(0.95); }
  75% { transform: translate(-45%, -50%) scale(1.05); }
}

@keyframes hero-orb-float-2 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  33% { transform: translate(-60%, -40%) scale(1.15); }
  66% { transform: translate(-40%, -60%) scale(0.9); }
}

/* ===== ORBIT RING WITH TECH LOGOS ===== */
.hero-orbit {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(960px, 95vw);
  height: min(960px, 95vw);
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}

.hero-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(191,247,71,0.1);
  animation: orbit-rotate 45s linear infinite;
}

/* Dashed connecting line overlay */
.hero-orbit-ring::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px dashed rgba(191,247,71,0.06);
}

@keyframes orbit-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbit-icon {
  --total: 8;
  --angle: calc(360deg / var(--total) * var(--i));
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  transform: rotate(var(--angle)) translate(calc(min(480px, 47.5vw))) rotate(calc(-1 * var(--angle)));
  animation: orbit-counter 45s linear infinite, orbit-icon-fade 45s linear infinite;
}

@keyframes orbit-counter {
  from { transform: rotate(var(--angle)) translate(calc(min(480px, 47.5vw))) rotate(calc(-1 * var(--angle) - 0deg)); }
  to { transform: rotate(var(--angle)) translate(calc(min(480px, 47.5vw))) rotate(calc(-1 * var(--angle) - 360deg)); }
}

@keyframes orbit-icon-fade {
  0%, 100% { opacity: 0.85; }
  25% { opacity: 0.4; }
  50% { opacity: 0.85; }
  75% { opacity: 0.35; }
}

.orbit-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(15,15,15,0.8);
  padding: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(191,247,71,0.1);
  box-shadow: 0 0 15px rgba(191,247,71,0.06);
  object-fit: contain;
}

/* Hero center content */
.hero-center {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-center h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-center h1 .accent { color: var(--accent); }

.hero-center h1 strong {
  font-weight: 900;
}

.hero-center h1 em {
  font-style: italic;
  font-weight: 300;
  opacity: 0.85;
}

.hero-sub {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.hero-center > p:not(.hero-sub) {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  justify-content: center;
}

.hero-trust {
  display: flex;
  justify-content: center;
}

/* Google reviews badge */
.google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-full);
  padding: 10px 24px 10px 14px;
}

.google-reviews img { width: 28px; height: 28px; }

.stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}

.google-reviews span {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== SCROLLING SERVICE BANNER ===== */
.service-banner {
  background: var(--dark-card);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(191,247,71,0.06);
  border-bottom: 1px solid rgba(191,247,71,0.06);
}

.service-banner-track {
  display: flex;
  gap: 0;
  animation: banner-scroll 30s linear infinite;
  white-space: nowrap;
}

.service-banner-track span {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  flex-shrink: 0;
  padding: 0 8px;
}

.banner-dot {
  color: rgba(191,247,71,0.3) !important;
  font-size: 12px !important;
  padding: 0 12px !important;
}

@keyframes banner-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(191,247,71,0.1);
  border-radius: var(--radius);
  padding: 36px 36px 0;
  transition: all 0.4s;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(191,247,71,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(191,247,71,0.08);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(191,247,71,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.service-btn {
  display: block;
  width: calc(100% + 72px);
  margin-left: -36px;
  margin-top: 20px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(191,247,71,0.04);
  border-top: 1px solid rgba(191,247,71,0.1);
  border-radius: 0 0 var(--radius) var(--radius);
  transition: all 0.3s;
  text-align: center;
}

.service-btn:hover {
  background: rgba(191,247,71,0.1);
  color: var(--accent-hover);
}

/* ===== STATS (staggered cards) ===== */
.stats {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: end;
}

.stat {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s;
  position: relative;
}

/* Staggered heights */
.stat:nth-child(1) { height: 260px; }
.stat:nth-child(2) { height: 320px; }
.stat:nth-child(3) { height: 280px; }
.stat:nth-child(4) { height: 300px; }

.stat:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.stat-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.stat-roman {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-align: right;
  line-height: 1.3;
}

.stat-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.stat-number {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.stat-plus {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: var(--white);
}

.stat-arrow {
  font-size: 28px;
  color: rgba(255,255,255,0.4);
  line-height: 1;
}

/* ===== TILTED PARALLAX IMAGE GALLERY ===== */
.image-showcase {
  padding: 0;
  overflow: hidden;
  height: 55vmax;
  position: relative;
}

.tiles-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(22.5deg);
  width: 200%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tiles-line {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
  transition: transform 0.1s linear;
}

.tiles-line:nth-child(odd) { transform: translate3d(5%, 0, 0); }
.tiles-line:nth-child(even) { transform: translate3d(-5%, 0, 0); }

.tiles-line figure {
  flex: 0 0 calc(16.666% - 1.5rem);
  height: calc(16vmax - 1.5rem);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.tiles-line figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.showcase-overlay-content {
  text-align: center;
  pointer-events: auto;
}

.showcase-overlay-content h2 {
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
  margin-bottom: 16px;
}

.showcase-overlay-content .btn {
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

/* ===== PORTFOLIO TABS ===== */
.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.portfolio-tab {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.portfolio-tab:hover {
  border-color: rgba(191,247,71,0.3);
  color: var(--white);
}

.portfolio-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  transition: all 0.4s;
}

.portfolio-card:hover {
  border-color: rgba(191,247,71,0.25);
  transform: translateY(-4px);
}

.portfolio-image {
  overflow: hidden;
  height: 200px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-card:hover .portfolio-image img { transform: scale(1.05); }

.portfolio-info { padding: 20px; }

.portfolio-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.portfolio-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.portfolio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  padding: 3px 10px;
  border: 1px solid rgba(191,247,71,0.2);
  border-radius: var(--radius-full);
}

/* ===== WHY CHOOSE / ABOUT ===== */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.why-choose-left h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.why-choose-left > p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-body {
  margin-bottom: 32px;
}

.about-body p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.inline-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  padding: 2px 10px;
  transition: all 0.3s;
}

.inline-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(191,247,71,0.06);
}

.why-choose-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Timeline layout for why-choose right */
.why-timeline {
  position: relative;
  padding-left: 28px;
  gap: 0 !important;
}

/* Vertical line */
.why-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(191,247,71,0.15);
}

.why-timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.why-timeline-item:last-child {
  padding-bottom: 0;
}

/* Green dot on the timeline */
.why-timeline-dot {
  position: absolute;
  left: -28px;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--black);
  z-index: 2;
}

.why-timeline-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.why-timeline-content {
  padding-left: 16px;
}

/* Icon above each item */
.why-timeline-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(191,247,71,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(191,247,71,0.04);
}

.why-timeline-icon svg {
  stroke: var(--accent);
}

.why-timeline-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-timeline-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 520px;
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-card {
  padding: 32px;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  background: var(--dark-card);
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.process-card:hover {
  border-color: rgba(191,247,71,0.25);
  transform: translateY(-4px);
}

.process-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.process-card-top h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}

.process-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(191,247,71,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.3s;
}

.process-card:hover .process-arrow {
  background: var(--accent);
  color: var(--black);
}

.process-card > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.process-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 24px;
}

.process-step-num {
  font-size: 56px;
  font-weight: 700;
  color: rgba(191,247,71,0.1);
  line-height: 1;
}

.process-icon-box {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.process-icon-box svg { stroke: var(--black); }

/* ===== TESTIMONIALS ===== */
.testimonials-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.12;
  background-image:
    radial-gradient(circle 1.5px, rgba(255,255,255,0.7) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  -webkit-mask-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cellipse cx='280' cy='200' rx='120' ry='100' fill='white'/%3E%3Cellipse cx='320' cy='180' rx='80' ry='60' fill='white'/%3E%3Cellipse cx='240' cy='280' rx='50' ry='120' fill='white'/%3E%3Cellipse cx='280' cy='340' rx='40' ry='50' fill='white'/%3E%3Cellipse cx='380' cy='160' rx='100' ry='70' fill='white'/%3E%3Cellipse cx='480' cy='180' rx='70' ry='60' fill='white'/%3E%3Cellipse cx='500' cy='220' rx='40' ry='50' fill='white'/%3E%3Cellipse cx='440' cy='260' rx='30' ry='40' fill='white'/%3E%3Cellipse cx='540' cy='300' rx='60' ry='30' fill='white'/%3E%3Cellipse cx='700' cy='160' rx='120' ry='80' fill='white'/%3E%3Cellipse cx='750' cy='210' rx='80' ry='70' fill='white'/%3E%3Cellipse cx='800' cy='280' rx='50' ry='60' fill='white'/%3E%3Cellipse cx='850' cy='200' rx='60' ry='50' fill='white'/%3E%3Cellipse cx='900' cy='250' rx='70' ry='80' fill='white'/%3E%3Cellipse cx='950' cy='300' rx='40' ry='30' fill='white'/%3E%3Cellipse cx='950' cy='180' rx='30' ry='40' fill='white'/%3E%3Cellipse cx='160' cy='180' rx='40' ry='60' fill='white'/%3E%3Cellipse cx='130' cy='240' rx='60' ry='80' fill='white'/%3E%3Cellipse cx='170' cy='320' rx='30' ry='50' fill='white'/%3E%3C/svg%3E");
  mask-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cellipse cx='280' cy='200' rx='120' ry='100' fill='white'/%3E%3Cellipse cx='320' cy='180' rx='80' ry='60' fill='white'/%3E%3Cellipse cx='240' cy='280' rx='50' ry='120' fill='white'/%3E%3Cellipse cx='280' cy='340' rx='40' ry='50' fill='white'/%3E%3Cellipse cx='380' cy='160' rx='100' ry='70' fill='white'/%3E%3Cellipse cx='480' cy='180' rx='70' ry='60' fill='white'/%3E%3Cellipse cx='500' cy='220' rx='40' ry='50' fill='white'/%3E%3Cellipse cx='440' cy='260' rx='30' ry='40' fill='white'/%3E%3Cellipse cx='540' cy='300' rx='60' ry='30' fill='white'/%3E%3Cellipse cx='700' cy='160' rx='120' ry='80' fill='white'/%3E%3Cellipse cx='750' cy='210' rx='80' ry='70' fill='white'/%3E%3Cellipse cx='800' cy='280' rx='50' ry='60' fill='white'/%3E%3Cellipse cx='850' cy='200' rx='60' ry='50' fill='white'/%3E%3Cellipse cx='900' cy='250' rx='70' ry='80' fill='white'/%3E%3Cellipse cx='950' cy='300' rx='40' ry='30' fill='white'/%3E%3Cellipse cx='950' cy='180' rx='30' ry='40' fill='white'/%3E%3Cellipse cx='160' cy='180' rx='40' ry='60' fill='white'/%3E%3Cellipse cx='130' cy='240' rx='60' ry='80' fill='white'/%3E%3Cellipse cx='170' cy='320' rx='30' ry='50' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  pointer-events: none;
}

.testimonial-split {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.testimonial-rating-card {
  background: rgba(17,17,17,0.8);
  border: none;
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rating-score {
  font-size: 72px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.rating-stars {
  color: var(--accent);
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.rating-count {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.rating-headline {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 28px;
}

.rating-avatar-stack {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.rating-avatar-stack .author-avatar.mini {
  width: 38px;
  height: 38px;
  font-size: 11px;
  margin-left: -8px;
  border: 2px solid #111;
}

.rating-avatar-stack .author-avatar.mini:first-child {
  margin-left: 0;
}

.rating-source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-display {
  background: rgba(17,17,17,0.8);
  border: none;
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.testimonial-slides { position: relative; flex: 1; }

.testimonial-slide {
  display: none;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.testimonial-slide.active { display: flex; }

.testimonial-company {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-company::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 22px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(191,247,71,0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
  color: var(--white);
}

.testimonial-author span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(191,247,71,0.08);
  border: 1px solid rgba(191,247,71,0.2);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.testimonial-arrow:hover {
  background: var(--accent);
  color: var(--black);
}

.testimonial-arrow svg { stroke: currentColor; }

.testimonial-counter {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== RESULTS / CASE STUDY SECTION ===== */
.results-section {
  padding: 100px 0;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.results-content h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.results-content > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.result-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.result-stat {
  padding: 24px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s;
}

.result-stat:hover { border-color: rgba(191,247,71,0.2); }

.result-stat .big-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.result-stat span {
  font-size: 13px;
  color: var(--text-muted);
}

.results-visual {
  position: relative;
}

.results-visual img {
  border-radius: var(--radius);
  border: 1px solid var(--dark-border);
}

/* ===== INDUSTRIES WE SERVE ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.industry-card {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
  backdrop-filter: blur(10px);
}

.industry-card:hover {
  border-color: rgba(191,247,71,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(191,247,71,0.06);
}

.industry-image {
  height: 160px;
  overflow: hidden;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.industry-card:hover .industry-image img {
  transform: scale(1.08);
}

.industry-content {
  padding: 20px;
  text-align: center;
}

.industry-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover { border-color: rgba(191,247,71,0.2); }

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 60px rgba(191,247,71,0.08);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--dark-border);
}

.pricing-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-price .currency {
  font-size: 28px;
  vertical-align: top;
  margin-right: 2px;
}

.pricing-header p { font-size: 14px; color: var(--text-muted); }

.pricing-features { list-style: none; margin-bottom: 32px; }

.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

/* ===== FAQ ===== */
.faq-list {
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.faq-item {
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}



.faq-item summary {
  padding: 22px 28px;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--accent);
  font-weight: 300;
}

.faq-item[open] summary::after { content: '\2212'; }


.faq-item p {
  padding: 0 28px 22px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: 0;
  align-items: start;
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
}

.blog-intro {
  padding-right: 60px;
  padding-top: 16px;
  position: relative;
  z-index: 2;
}

.blog-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.blog-intro h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 32px;
}

.blog-nav {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.blog-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.blog-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.blog-arrow:hover svg { stroke: var(--black); }

.blog-slider {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-right: calc(-1 * max(24px, (100vw - var(--max-width)) / 2));
  padding-bottom: 4px;
}

.blog-slider::-webkit-scrollbar {
  display: none;
}

.blog-slider:active {
  cursor: grabbing;
}

.blog-track {
  display: flex;
  gap: 28px;
}

.blog-track img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.blog-card {
  flex: 0 0 440px;
  display: block;
  text-decoration: none;
  transition: transform 0.4s;
}

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

.blog-image {
  overflow: hidden;
  height: 280px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-image img { transform: scale(1.05); }

.blog-info {
  padding: 0 4px;
}

.blog-meta {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 10px;
}

.blog-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.location-content h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.location-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.location-tags span {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  padding: 6px 16px;
  border: 1px solid rgba(191,247,71,0.25);
  border-radius: var(--radius-full);
  background: rgba(191,247,71,0.06);
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(191,247,71,0.1);
}

/* ===== CTA ===== */
.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(191,247,71,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-inner h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-inner > p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.cta-email { font-size: 14px; color: var(--text-muted); }
.cta-email a { color: var(--accent); font-weight: 600; }

/* ===== TEXT HIGHLIGHT ON SCROLL ===== */
.text-highlight {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hl-word {
  display: inline-block;
  color: rgba(255,255,255,0.15);
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hl-word.highlighted {
  color: var(--white);
}

.hl-word.hl-accent.highlighted {
  color: var(--accent);
}

/* ===== CONTACT FORM ===== */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 50px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-detail-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: rgba(191,247,71,0.08);
  border: 1px solid rgba(191,247,71,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-text h4 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}

.contact-detail-text a:hover { color: var(--accent); }

.contact-form-wrap {
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(191,247,71,0.1);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-form-wrap h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(191,247,71,0.4);
  box-shadow: 0 0 20px rgba(191,247,71,0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--dark-card);
  color: var(--white);
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px 24px;
}

.form-submit .btn-primary {
  padding-right: 60px;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ===== FOOTER WITH STARRY BG + GREEN GRADIENT ===== */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--dark-border);
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Stars background */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 25% 35%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 40% 8%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 55% 45%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 85% 60%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 15% 70%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 35% 55%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 60% 75%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 80% 40%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 92% 25%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 5% 50%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 48% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 75% 85%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 20% 90%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 65% 12%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 50% 65%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 88% 10%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 42% 50%, rgba(255,255,255,0.3), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Green gradient glow from bottom, fading to black */
.site-footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
  background: linear-gradient(to top, rgba(191,247,71,0.14) 0%, rgba(191,247,71,0.06) 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-logo { height: 40px; width: auto; margin-bottom: 16px; }

.footer-about p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
}

.footer-social a:hover { background: var(--accent); color: var(--black); border-color: var(--accent); }
.footer-social a svg { width: 18px; height: 18px; }

.footer-links h4,
.footer-contact h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(191,247,71,0.4), 0 0 40px rgba(191,247,71,0.15);
  letter-spacing: -0.5px;
}

.footer-links a {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  padding: 8px 0;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent); }

.footer-contact p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-contact a {
  font-size: 15px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  transition: color 0.3s;
}

.footer-contact a:hover { color: var(--accent); }
.footer-contact a svg { color: var(--accent); flex-shrink: 0; }

.carbon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(191,247,71,0.12);
  background: rgba(191,247,71,0.04);
  color: var(--accent);
}

.carbon-badge svg {
  flex-shrink: 0;
}

.carbon-badge span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--accent);
}

/* Big company name above gradient */
.footer-big-name {
  padding: 60px 0 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.footer-big-name span {
  display: block;
  font-size: clamp(60px, 12vw, 180px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 0.85;
  background: linear-gradient(180deg, rgba(191,247,71,0.15) 0%, rgba(191,247,71,0.03) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Gradient bar at very bottom */
.footer-gradient {
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== CREATIVE ANIMATIONS ===== */

/* Staggered fade-in from different directions */
.animate-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.animate-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.animate-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
.animate-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Blur reveal */
.animate-blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}

.animate-blur.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 480ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 560ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(9) { transition-delay: 640ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(10) { transition-delay: 720ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(11) { transition-delay: 800ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(12) { transition-delay: 880ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(13) { transition-delay: 960ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(14) { transition-delay: 1040ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(15) { transition-delay: 1120ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(16) { transition-delay: 1200ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(17) { transition-delay: 1280ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(18) { transition-delay: 1360ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(19) { transition-delay: 1440ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(20) { transition-delay: 1520ms; opacity: 1; transform: translateY(0); }

/* Magnetic hover on cards */
.magnetic-hover {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Text reveal line by line */
.text-reveal {
  overflow: hidden;
}

.text-reveal-inner {
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-reveal.visible .text-reveal-inner {
  transform: translateY(0);
}

/* Horizontal scroll text marquee */
.marquee-section {
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: 72px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(191,247,71,0.2);
  text-transform: uppercase;
  letter-spacing: 8px;
  flex-shrink: 0;
}

.marquee-track span.filled {
  color: var(--accent);
  -webkit-text-stroke: none;
  opacity: 0.15;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .top-bar { font-size: 12px; padding: 8px 16px; }
  .site-header { top: 34px; }
  .header-right { display: none; }
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .mega-card-grid { grid-template-columns: repeat(2, 1fr); }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--accent);
    z-index: 200;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .main-nav.open .nav-item { height: auto; }

  .main-nav.open .nav-item > a {
    font-size: 24px;
    color: var(--black);
    padding: 16px 32px;
    letter-spacing: 2px;
    height: auto;
  }

  .main-nav.open .nav-number { display: none; }
  .main-nav.open .mega-menu { display: none; }

  .main-nav.open .nav-item > a:hover,
  .main-nav.open .nav-item > a.active { color: var(--white); }
  .main-nav.open .nav-item > a::after { display: none; }

  .hero-center h1 { font-size: 40px; letter-spacing: -1.5px; }
  .hero-orbit { width: 600px; height: 600px; }
  .orbit-icon { width: 44px; height: 44px; margin: -22px 0 0 -22px; padding: 8px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat:nth-child(1), .stat:nth-child(2), .stat:nth-child(3), .stat:nth-child(4) { height: 220px; }
  .why-choose-grid { grid-template-columns: 1fr; gap: 40px; }
  .results-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: auto; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-split { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-intro { padding-left: 24px; padding-right: 24px; margin-bottom: 40px; }
  .blog-slider { padding-left: 24px; }
  .blog-card { flex: 0 0 320px; }
  .blog-image { height: 200px; }
  .blog-intro h2 { font-size: 32px; }
  .blog-nav { margin-top: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section-header h2,
  .why-choose-left h2,
  .location-content h2,
  .results-content h2,
  .contact-info h2,
  .cta-inner h2 { font-size: 36px; }
  .faq-list {
  align-items: start; grid-template-columns: 1fr; }
  .text-highlight { font-size: 32px; }
  .image-showcase { height: 40vmax; }
  .tiles-line figure { flex: 0 0 calc(25% - 1.5rem); height: calc(14vmax - 1.5rem); }
  .showcase-overlay-content h2 { font-size: 36px; }
  .marquee-track span { font-size: 48px; }
}

@media (max-width: 640px) {
  /* Top bar: shorten text so it stays single-line on mobile */
  .top-bar p .top-bar-hide { display: none; }
  .top-bar { font-size: 11px; padding: 7px 12px; }
  .site-header { top: 32px; }
  section { padding: 60px 0; }
  .hero { padding: 160px 0 60px; min-height: auto; }
  .mega-card-grid { grid-template-columns: 1fr; }
  .hero-center h1 { font-size: 30px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; letter-spacing: 1px; }
  .hero-orbit { width: 380px; height: 380px; }
  .orbit-icon { width: 34px; height: 34px; margin: -17px 0 0 -17px; padding: 6px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat:nth-child(1), .stat:nth-child(2), .stat:nth-child(3), .stat:nth-child(4) { height: 180px; }
  .stat-number { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .text-highlight { font-size: 22px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  /* old tech grid removed — orbital used now */
  .portfolio-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-price { font-size: 42px; }
  .image-showcase { height: 35vmax; }
  .tiles-line figure { flex: 0 0 calc(33.333% - 1.5rem); height: calc(12vmax - 1.5rem); }
  .showcase-overlay-content h2 { font-size: 28px; }
  .marquee-track span { font-size: 32px; letter-spacing: 4px; }
}

/* ===== AREA / SERVICE PAGES: SVC CLASSES ===== */

/* Hero form — right column of the 2-col hero */
.svc-hero-form {
  position: relative;
  z-index: 2;
  padding: 0 80px 0 20px;
}

.svc-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px;
}

.svc-form-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.svc-form-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.svc-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-field input,
.svc-field textarea {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.svc-field input::placeholder,
.svc-field textarea::placeholder { color: rgba(255,255,255,0.25); }

.svc-field input:focus,
.svc-field textarea:focus {
  border-color: rgba(191,247,71,0.5);
  background: rgba(191,247,71,0.03);
}

.svc-form-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #000;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 4px;
}

.svc-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(191,247,71,0.3);
}

.svc-form-trust {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 4px;
}

/* Why section */
.svc-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.svc-why-body p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.svc-why-aside {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
}

.svc-why-aside h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.svc-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-check-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}

.svc-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Stats row */
.svc-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 60px;
}

.svc-stat-block {
  padding: 24px 0;
}

.svc-stat-line {
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 16px;
}

.svc-stat-block strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.svc-stat-block span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* Services grid */
.svc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.svc-service-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.25s;
}

.svc-service-item:hover { border-color: rgba(191,247,71,0.2); }

.svc-service-num {
  font-size: 56px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.svc-service-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.svc-service-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.svc-service-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* Process list */
.svc-process-list {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}

.svc-process-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.svc-process-item:last-child { border-bottom: none; }

.svc-process-num {
  font-size: 40px;
  font-weight: 900;
  color: rgba(191,247,71,0.15);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  letter-spacing: -1px;
}

.svc-process-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.svc-process-body {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.svc-process-tag {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(191,247,71,0.08);
  border: 1px solid rgba(191,247,71,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  white-space: nowrap;
  align-self: center;
}

@media (max-width: 900px) {
  .svc-hero-form { padding: 0 24px 40px; }
  .svc-why-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-stats-row { grid-template-columns: repeat(2, 1fr); }
  .svc-services-grid { grid-template-columns: 1fr 1fr; }
  .svc-process-tag { display: none; }
}

@media (max-width: 600px) {
  .svc-services-grid { grid-template-columns: 1fr; }
}
