/* ═══════════════════════════════════════════════════════════════
   FALCONFACE — PREMIUM DARK MODE STYLESHEET
   Cyber-Professional | Glassmorphism | Antigravity Animations
═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────────────────────── */
:root {
  --bg: #050505;
  --bg-2: #0A0A0A;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-h: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.07);
  --border-glow: rgba(0, 180, 255, 0.3);
  --blue: #00B4FF;
  --blue-dim: rgba(0, 180, 255, 0.15);
  --blue-glow: rgba(0, 180, 255, 0.4);
  --green: #39FF14;
  --green-dim: rgba(57, 255, 20, 0.12);
  --green-glow: rgba(57, 255, 20, 0.4);
  --white: #FFFFFF;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-15: rgba(255, 255, 255, 0.15);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-ui: 'Inter', sans-serif;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-blue: 0 0 40px rgba(0, 180, 255, 0.25), 0 0 80px rgba(0, 180, 255, 0.10);
  --shadow-green: 0 0 40px rgba(57, 255, 20, 0.20), 0 0 80px rgba(57, 255, 20, 0.08);
  --transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: default;
}

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

ul {
  list-style: none;
}

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

input,
select,
textarea,
button {
  font-family: inherit;
}

/* ── CANVAS / PARTICLE ────────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── LAYOUT ───────────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 120px 0;
}

/* ── UTILITY CLASSES ──────────────────────────────────────────── */
.accent-blue {
  color: var(--blue);
}

.accent-green {
  color: var(--green);
}

.body-text {
  color: var(--white-70);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--bg-card-h);
  border-color: rgba(0, 180, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), var(--shadow-blue);
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-book-now {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, #0080ff 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-book-now::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-book-now:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 180, 255, 0.5), 0 0 60px rgba(0, 180, 255, 0.2);
}

.btn-book-now:hover::before {
  opacity: 1;
}

.btn-book-now:active {
  transform: translateY(0) scale(0.98);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-md {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-sm {
  padding: 11px 22px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  border: 1.5px solid var(--white-15);
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 24px var(--blue-dim), inset 0 0 24px rgba(0, 180, 255, 0.05);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  border-radius: 50px;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.btn-icon {
  font-size: 18px;
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-book-now:hover .btn-glow {
  opacity: 1;
}

/* ── SECTION HEADERS ──────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '—';
  margin: 0 8px;
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 18px;
  color: var(--white-70);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── ANIMATIONS ───────────────────────────────────────────────── */
@keyframes floatY {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-10px) rotate(0.5deg);
  }

  66% {
    transform: translateY(-6px) rotate(-0.3deg);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes pulse-orb {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rankFill {
  from {
    width: 0%;
  }

  to {
    width: 85%;
  }
}

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

  100% {
    background-position: 200% 0;
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes borderGlow {

  0%,
  100% {
    border-color: rgba(0, 180, 255, 0.2);
  }

  50% {
    border-color: rgba(0, 180, 255, 0.6);
  }
}

.float-anim {
  animation: floatY 5s ease-in-out infinite;
}

.float-anim[data-delay="0"] {
  animation-delay: 0s;
}

.float-anim[data-delay="100"] {
  animation-delay: 0.2s;
}

.float-anim[data-delay="150"] {
  animation-delay: 0.3s;
}

.float-anim[data-delay="200"] {
  animation-delay: 0.5s;
}

.float-anim[data-delay="300"] {
  animation-delay: 1s;
}

.float-anim[data-delay="400"] {
  animation-delay: 1.5s;
}

.float-anim[data-delay="450"] {
  animation-delay: 1.8s;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.scroll-reveal.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── TOPBAR ───────────────────────────────────────────────────── */
.topbar {
  background: rgba(0, 180, 255, 0.06);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  position: relative;
  z-index: 200;
}

.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--white-70);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-link {
  color: var(--white-70);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-link:hover {
  color: var(--blue);
}

.topbar-icon {
  font-size: 14px;
}

/* ── NAVIGATION ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.9);
  border-bottom-color: rgba(0, 180, 255, 0.2);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.logo-falcon {
  color: var(--white);
}

.logo-face {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-70);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: var(--white);
  background: var(--white-15);
}

.nav-link .chevron {
  font-size: 10px;
}

.nav-cta {
  margin-left: 12px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 8px;
  min-width: 220px;
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--white-70);
  transition: all 0.2s;
}

.dropdown-menu li a:hover {
  background: var(--bg-card-h);
  color: var(--blue);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: clamp(80px, 10vh, 120px);
  padding-bottom: 100px;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.7;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse-orb 6s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -200px;
  background: rgba(0, 180, 255, 0.12);
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -150px;
  background: rgba(57, 255, 20, 0.07);
  animation-delay: 2s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  background: rgba(0, 80, 255, 0.06);
  animation-delay: 4s;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 180, 255, 0.1);
  border: 1px solid rgba(0, 180, 255, 0.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-orb 1.5s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.title-accent {
  color: var(--blue);
}

.brand-name {
  color: var(--green);
  text-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
}

.title-line {
  display: block;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
}

.stat-suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--white-40);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Hero visual cards */
.hero-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}

.hero-card-stack {
  position: relative;
  width: 340px;
  height: 420px;
}

.vis-card {
  position: absolute;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vis-card-1 {
  top: 0;
  left: 0;
  width: 200px;
  border-color: rgba(0, 180, 255, 0.3);
}

.vis-card-2 {
  top: 80px;
  right: 0;
  width: 220px;
  border-color: rgba(57, 255, 20, 0.3);
}

.vis-card-3 {
  bottom: 20px;
  left: 30px;
  width: 190px;
  border-color: rgba(0, 180, 255, 0.2);
}

.vis-card-icon {
  font-size: 24px;
}

.vis-card-label {
  font-size: 11px;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vis-card-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}

.vis-card-2 .vis-card-val {
  color: var(--green);
}

.rank-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.rank-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), #00ff88);
  border-radius: 3px;
  animation: rankFill 2s 1s ease-out forwards;
}

.vis-falcon-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.falcon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.2) 0%, transparent 70%);
  border: 1px solid rgba(0, 180, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 20s linear infinite;
}

.falcon-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: rgba(0, 180, 255, 0.4);
  animation: spin-slow 20s linear infinite reverse;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

/* ── TRUST STRIP ──────────────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 180, 255, 0.03);
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

.trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 12px;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-logo {
  font-size: 14px;
  font-weight: 600;
  color: var(--white-70);
  transition: color 0.2s;
}

.trust-logo:hover {
  color: var(--blue);
}

.trust-sep {
  color: var(--white-40);
}

/* ── ABOUT INTRO ──────────────────────────────────────────────── */
.about-intro {
  background: var(--bg);
  position: relative;
}

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

.about-left .section-eyebrow {
  display: block;
  margin-bottom: 16px;
}

.about-left .section-title {
  text-align: left;
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 24px;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  padding: 24px;
  text-align: center;
  border-radius: var(--r-lg);
}

.about-card-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.about-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-card p {
  font-size: 13px;
  color: var(--white-70);
  line-height: 1.6;
}

/* ── STATS ────────────────────────────────────────────────────── */
.stats-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 180, 255, 0.04) 0%, transparent 100%);
  overflow: hidden;
}

.stats-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.08) 0%, transparent 60%);
  animation: pulse-orb 8s ease-in-out infinite;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.big-stat {
  text-align: center;
}

.big-stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.big-stat-suf {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
}

.big-stat p {
  font-size: 15px;
  color: var(--white-70);
  margin-top: 12px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

/* ── SERVICES ─────────────────────────────────────────────────── */
.services-section {
  background: var(--bg-2);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.service-card-highlight {
  border-color: rgba(57, 255, 20, 0.3);
  background: rgba(57, 255, 20, 0.03);
}

.service-card-highlight:hover {
  border-color: var(--green);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), var(--shadow-green);
}

.svc-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--blue-dim);
  border: 1px solid rgba(0, 180, 255, 0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.service-card:hover .svc-icon-wrap {
  background: var(--blue-dim);
  box-shadow: 0 0 24px var(--blue-dim);
}

.service-card-highlight .svc-icon-wrap {
  background: var(--green-dim);
  border-color: rgba(57, 255, 20, 0.2);
}

.svc-icon {
  font-size: 28px;
}

.svc-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.svc-desc {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 20px;
}

.svc-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-features li {
  font-size: 13px;
  color: var(--white-70);
  padding-left: 20px;
  position: relative;
}

.svc-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--blue);
}

.service-card-highlight .svc-features li::before {
  color: var(--green);
}

.svc-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.svc-link:hover {
  gap: 10px;
}

.svc-glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card:hover .svc-glow {
  opacity: 1;
}

.service-card-highlight .svc-glow {
  background: radial-gradient(circle, rgba(57, 255, 20, 0.1) 0%, transparent 70%);
}

/* ── PRICING ──────────────────────────────────────────────────── */
.pricing-section {
  background: var(--bg-2);
  position: relative;
}

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

.pricing-card {
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex !important;
  flex-direction: column;
  transition: all 0.3s;
  color: var(--white);
}

.pricing-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 180, 255, 0.1);
  transform: translateY(-4px);
}

.pc-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--bg);
  border: 1px solid rgba(0, 180, 255, 0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.pricing-card:hover .pc-icon-wrap {
  background: var(--blue-dim);
  box-shadow: 0 0 16px var(--blue-dim);
}

.pc-icon {
  font-size: 24px;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-card p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pc-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  margin-top: auto;
}

.pricing-card:hover .pc-link {
  gap: 10px;
}

/* Pricing Pages Specific (Tiers) */
.pricing-page-header {
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h1v1H0z" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  background-size: 20px 20px;
}

.pricing-page-header .section-title {
  font-size: clamp(36px, 5vw, 64px);
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: -60px auto 60px;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.tier-card {
  padding: 40px 32px;
  position: relative;
  display: flex !important;
  flex-direction: column;
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
}

.tier-card.most-popular {
  border-color: rgba(57, 255, 20, 0.4);
  background: rgba(10, 10, 10, 0.95);
  transform: scale(1.05);
  z-index: 3;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 20px rgba(57, 255, 20, 0.05);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(57, 255, 20, 0.15);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(57, 255, 20, 0.3);
}

.tier-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tier-desc {
  font-size: 13px;
  color: var(--white-70);
  margin-bottom: 24px;
  line-height: 1.5;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--white);
}

.tier-card.most-popular .tier-price {
  color: var(--green);
}

.tier-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--white-40);
  margin-left: 4px;
}

.tier-features {
  margin-bottom: 32px;
  list-style: none;
  padding: 0;
  text-align: left;
  flex-grow: 1;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 24px;
}

.tier-features li {
  font-size: 14px;
  color: var(--white-70);
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.tier-features li::before {
  content: '✓';
  color: var(--green);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.tier-card .btn-outline,
.tier-card .btn-whatsapp {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.custom-plan-wrapper {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.custom-plan-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  padding: 22px 52px;
  background: linear-gradient(135deg, #00B4FF 0%, #0080ff 100%);
  border: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.8px;
  box-shadow: 0 8px 24px rgba(0, 180, 255, 0.2);
}

.custom-plan-cta-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: 0.6s;
}

.custom-plan-cta-main:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 180, 255, 0.4), 0 0 20px rgba(0, 180, 255, 0.2);
  color: var(--white);
}

.custom-plan-cta-main:hover::before {
  left: 100%;
}

.custom-plan-cta-main:active {
  transform: translateY(-2px) scale(1.02);
}

.custom-plan-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  font-size: 14px;
  color: var(--white-70);
  text-decoration: underline;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.custom-plan-cta:hover {
  color: var(--blue);
  opacity: 1;
}

/* ── VIDEO MODAL ────────────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  padding: 24px;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  background: #000;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 1), 0 0 0 1px var(--border);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease);
}

.video-modal.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(90deg);
}

.video-container {
  width: 100%;
  line-height: 0;
}

.video-container video {
  width: 100%;
  height: auto;
  max-height: 85vh;
  display: block;
}

/* ── PROCESS ──────────────────────────────────────────────────── */
.process-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.process-orb {
  position: absolute;
  width: 800px;
  height: 800px;
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-step {
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 180, 255, 0.12);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.process-step:hover .step-num {
  color: rgba(0, 180, 255, 0.3);
}

.step-content {
  padding: 28px;
}

.step-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
}

/* ── PORTFOLIO ────────────────────────────────────────────────── */
.portfolio-section {
  background: var(--bg-2);
}

.portfolio-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: var(--white-70);
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--blue-dim);
  border-color: var(--blue);
  color: var(--blue);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.pf-card {
  overflow: hidden;
  padding: 0;
}

.pf-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.pf-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pf-p1 {
  background: linear-gradient(135deg, #0a1628 0%, #001a40 100%);
}

.pf-p2 {
  background: linear-gradient(135deg, #0a2800 0%, #001a14 100%);
}

.pf-p3 {
  background: linear-gradient(135deg, #1a0028 0%, #0d0040 100%);
}

.pf-p4 {
  background: linear-gradient(135deg, #1a1000 0%, #2a1800 100%);
}

.pf-p5 {
  background: linear-gradient(135deg, #001828 0%, #001040 100%);
}

.pf-p6 {
  background: linear-gradient(135deg, #001420 0%, #002030 100%);
}

.pf-letter {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  opacity: 0.15;
  color: var(--blue);
}

.pf-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 2.5s linear infinite;
}

.pf-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 255, 0.85);
  opacity: 0;
  transition: opacity 0.35s;
}

.pf-card:hover .pf-overlay {
  opacity: 1;
}

.pf-link {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.pf-info {
  padding: 20px 24px;
}

.pf-cat-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.pf-info h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.pf-info p {
  font-size: 13px;
  color: var(--white-70);
}

.portfolio-cta {
  text-align: center;
}

/* ── WHY US ───────────────────────────────────────────────────── */
.whyus-section {
  background: var(--bg);
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.whyus-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.whyus-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0;
  transition: opacity 0.3s;
}

.whyus-card:hover {
  border-color: rgba(0, 180, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.whyus-card:hover::after {
  opacity: 1;
}

.whyus-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 180, 255, 0.1);
  margin-bottom: 16px;
  transition: color 0.3s;
}

.whyus-card:hover .whyus-num {
  color: rgba(0, 180, 255, 0.25);
}

.whyus-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.whyus-card p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.75;
}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials-section {
  background: var(--bg-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  padding: 36px 32px;
}

.testi-stars {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #6600ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name {
  display: block;
  font-weight: 700;
  font-size: 15px;
}

.testi-role {
  display: block;
  font-size: 12px;
  color: var(--white-40);
  margin-top: 2px;
}

/* ── MISSION ──────────────────────────────────────────────────── */
.mission-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.mission-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mission-card {
  padding: 40px 36px;
  text-align: center;
}

.mission-icon {
  font-size: 44px;
  display: block;
  margin-bottom: 20px;
}

.mission-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--blue);
}

.mission-card p {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.8;
}

/* ── TEAM ───────────────────────────────────────────────────── */
.team-section {
  background: var(--bg-2);
}

.team-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}

.team-card {
  padding: 28px 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 220px;
}

.team-card.founder-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 30, 15, 0.9) 100%);
  border: 1px solid var(--green);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 40px 24px;
  align-items: center;
  overflow: visible;
  height: auto;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card.founder-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 20px rgba(57, 255, 20, 0.2);
  border-color: rgba(57, 255, 20, 0.8);
}

.founder-card .team-photo {
  width: 175px;
  height: 175px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(10, 30, 15, 0.6) 100%);
  border: 2px solid rgba(57, 255, 20, 0.5);
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.2);
  margin: 0 auto 24px;
}

.founder-card:hover .team-photo {
  border-color: var(--green);
  box-shadow: 0 0 32px rgba(57, 255, 20, 0.4);
  transform: scale(1.05);
}

.founder-card .team-name {
  font-size: 34px;
  margin-bottom: 8px;
  min-height: auto;
}

.founder-card .team-role {
  color: var(--green);
  font-size: 15px;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.founder-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: rgba(0, 0, 0, 0.9);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(57, 255, 20, 0.6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 10px rgba(57, 255, 20, 0.2);
  z-index: 10;
}

.founder-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.founder-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-70);
  transition: all 0.3s;
}

.founder-social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.founder-social-btn:hover {
  background: rgba(57, 255, 20, 0.1);
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-4px);
}

.team-photo {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.2) 0%, rgba(57, 255, 20, 0.15) 100%);
  border: 2px solid rgba(0, 180, 255, 0.3);
  box-shadow: 0 0 16px rgba(0, 180, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.35s var(--ease);
  overflow: hidden;
}

.team-card:hover .team-photo {
  border-color: var(--blue);
  box-shadow: 0 0 24px rgba(0, 180, 255, 0.3);
  transform: scale(1.05);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-initials {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: rgba(0, 180, 255, 0.6);
  letter-spacing: 1px;
}

.team-card:hover .team-initials {
  color: var(--blue);
}

.team-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
  text-align: center;
  width: 100%;
}

.team-role {
  font-size: 13px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-section {
  background: var(--bg-2);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--blue);
}

.faq-chevron {
  font-size: 22px;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-a.open {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-a p {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.8;
  padding: 0 8px;
}

/* ── CTA BAND ─────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.06) 0%, rgba(57, 255, 20, 0.03) 100%);
  border-top: 1px solid rgba(0, 180, 255, 0.15);
  border-bottom: 1px solid rgba(0, 180, 255, 0.15);
  overflow: hidden;
}

.cta-band-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.1) 0%, transparent 60%);
  animation: pulse-orb 5s ease-in-out infinite;
  pointer-events: none;
}

.cta-band-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta-band-inner>p {
  font-size: 18px;
  color: var(--white-70);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact-section {
  background: var(--bg);
}

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

.contact-info h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info>p {
  font-size: 15px;
  color: var(--white-70);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all 0.25s;
}

.contact-item:hover {
  border-color: rgba(0, 180, 255, 0.25);
  background: var(--bg-card-h);
}

.contact-item-icon {
  font-size: 24px;
}

.ci-label {
  display: block;
  font-size: 11px;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ci-val {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-top: 2px;
}

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

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--white-70);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-btn:hover {
  background: var(--blue-dim);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 180, 255, 0.25);
}

/* Contact Form */
.contact-form {
  padding: 40px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-70);
  letter-spacing: 0.3px;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 180, 255, 0.12);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.form-group select option {
  background: #0a0a0a;
  color: var(--white);
}

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

.form-note {
  font-size: 12px;
  color: var(--white-40);
  text-align: center;
  margin-top: 14px;
}

.form-success {
  text-align: center;
  padding: 16px;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: var(--r-md);
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
}

/* Form validation */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #ff4444;
  box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.15);
}

.form-error-msg {
  font-size: 12px;
  color: #ff4444;
  margin-top: 4px;
  display: none;
}

.form-group.error .form-error-msg {
  display: block;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-cta-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  transition: color 0.2s;
}

.footer-cta-link:hover {
  color: var(--green);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 14px;
  color: var(--white-70);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--blue);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social-btn:hover {
  background: var(--blue-dim);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 180, 255, 0.2);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--white-40);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--white-40);
  transition: color 0.2s;
  font-size: 13px;
}

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

/* ── FLOATING CTA ─────────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45), 0 0 60px rgba(37, 211, 102, 0.2);
  animation: floatY 4s ease-in-out infinite;
  transition: var(--transition);
}

.floating-cta:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.6), 0 0 80px rgba(37, 211, 102, 0.3);
}

.fcta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ensuring icon is centered perfectly */
.fcta-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.fcta-label {
  display: none;
}

/* ── PARALLAX WRAPPER ─────────────────────────────────────────── */
[data-parallax] {
  will-change: transform;
}

/* ── SCROLL REVEAL DELAYS ─────────────────────────────────────── */
.scroll-reveal[data-delay="0"] {
  transition-delay: 0ms;
}

.scroll-reveal[data-delay="50"] {
  transition-delay: 50ms;
}

.scroll-reveal[data-delay="100"] {
  transition-delay: 100ms;
}

.scroll-reveal[data-delay="150"] {
  transition-delay: 150ms;
}

.scroll-reveal[data-delay="200"] {
  transition-delay: 200ms;
}

.scroll-reveal[data-delay="250"] {
  transition-delay: 250ms;
}

.scroll-reveal[data-delay="300"] {
  transition-delay: 300ms;
}

.scroll-reveal[data-delay="400"] {
  transition-delay: 400ms;
}

.scroll-reveal[data-delay="500"] {
  transition-delay: 500ms;
}

/* ── MOBILE MENU ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(24px);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 998;
  }

  .nav-links.mobile-open .nav-link {
    padding: 14px 16px;
    border-radius: var(--r-sm);
    font-size: 16px;
  }

  .nav-links.mobile-open .btn-book-now {
    display: inline-flex;
    margin-top: 16px;
  }

  .nav-links.mobile-open .nav-dropdown {
    pointer-events: none;
  }

  .nav-links.mobile-open .dropdown-menu {
    display: none;
  }
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero {
    flex-direction: column;
    gap: 60px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-visual {
    display: none;
  }

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

  .pricing-grid,
  .pricing-tiers {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .tier-card.most-popular {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .team-card.founder-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 72px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .pricing-tiers {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .whyus-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: none;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .floating-cta {
    bottom: 20px;
    right: 16px;
    padding: 12px 16px;
  }

  .cta-band-actions {
    flex-direction: column;
    align-items: center;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team-card.founder-card {
    grid-column: 1 / -1;
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }

  .btn-lg {
    padding: 16px 28px;
    font-size: 15px;
  }

  .hero-badge {
    font-size: 11px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-card.founder-card {
    grid-column: 1 / -1;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .fcta-icon svg {
    width: 28px;
    height: 28px;
  }

  .custom-plan-cta-main {
    padding: 16px 32px;
    font-size: 15px;
    width: 100%;
    border-radius: 30px;
  }
}

/* ── BEHIND FALCONFACE GALLERY ────────────────────────────────── */
.bts-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}

/* Ambient orbs */
.bts-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: pulse-orb 8s ease-in-out infinite;
}

.bts-orb-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -80px;
  background: rgba(57, 255, 20, 0.05);
  animation-delay: 0s;
}

.bts-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -60px;
  left: -60px;
  background: rgba(0, 180, 255, 0.05);
  animation-delay: 3s;
}

/* Gallery outer container */
.bts-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

/* Featured (left) stretches full height of both right rows */
.bts-featured {
  grid-row: span 1;
}

/* Right 2×2 sub-grid */
.bts-grid-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

/* Shared image wrapper — glassmorphism card */
.bts-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(57, 255, 20, 0.18);
  background: var(--bg-card);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 0 0 1px rgba(57, 255, 20, 0.06),
    0 8px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    transform 0.45s ease;
  position: relative;
}

.bts-img-wrap:hover {
  border-color: rgba(57, 255, 20, 0.5);
  box-shadow:
    0 0 0 1px rgba(57, 255, 20, 0.18),
    0 20px 60px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(57, 255, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-4px) scale(1.015);
}

/* Inner container handles the zoom without clipping the border-radius */
.bts-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 19px; /* 1px inside the wrapper */
}

/* Featured image: fixed tall height */
.bts-featured .bts-inner {
  height: 540px;
}

/* Smaller images: equal fixed height */
.bts-grid-right .bts-img-wrap .bts-inner {
  height: 256px;
}

/* Images fill their containers */
.bts-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.bts-img-wrap:hover .bts-inner img {
  transform: scale(1.07);
}

/* Gradient overlay that appears on hover */
.bts-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px 22px;
  border-radius: 19px;
}

.bts-img-wrap:hover .bts-overlay {
  opacity: 1;
}

/* Label inside the overlay */
.bts-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  background: rgba(57, 255, 20, 0.18);
  border: 1px solid rgba(57, 255, 20, 0.4);
  border-radius: 50px;
  padding: 5px 14px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
  transform: translateY(6px);
  transition: transform 0.4s ease;
}

.bts-img-wrap:hover .bts-label {
  transform: translateY(0);
}

/* ── BEHIND FALCONFACE RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .bts-featured .bts-inner {
    height: 420px;
  }

  .bts-grid-right .bts-img-wrap .bts-inner {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .bts-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bts-featured .bts-inner {
    height: 340px;
  }

  .bts-grid-right {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .bts-grid-right .bts-img-wrap .bts-inner {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .bts-featured .bts-inner {
    height: 280px;
  }

  .bts-grid-right {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .bts-grid-right .bts-img-wrap .bts-inner {
    height: 148px;
  }

  .bts-label {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* ── SELECTION ────────────────────────────────────────────────── */
::selection {
  background: rgba(0, 180, 255, 0.3);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 180, 255, 0.4);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}