/* ========================================
   PRATIK DESHMUKH — Complete Design System
   Dark Theme + Lime Green Accent
   ======================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #151515;
  --bg-card-hover: #1a1a1a;
  --bg-utility: #0d0d0d;
  --accent: #b4f441;
  --accent-hover: #a3e034;
  --accent-dark: #8bc934;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --border-color: #222222;
  --border-light: #2a2a2a;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 50px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 40px rgba(180, 244, 65, 0.15);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
  outline: none;
  border: none;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.text-accent {
  color: var(--accent);
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-quote-hero {
  padding: 16px 38px;
}

/* ---------- TOP UTILITY BAR ---------- */
.utility-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--bg-utility);
  border-bottom: 1px solid var(--border-color);
  height: 40px;
  display: flex;
  align-items: center;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.utility-social a {
  color: var(--text-secondary);
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.utility-social a:hover {
  color: var(--accent);
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.utility-links a {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.utility-links a:hover {
  color: var(--accent);
}

/* ---------- MAIN NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  height: 72px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---------- Hamburger Menu ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 4px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  width: min(88vw, 360px);
  background: linear-gradient(160deg, rgba(13, 13, 13, 0.98), rgba(10, 10, 10, 0.98));
  border-left: 1px solid rgba(180, 244, 65, 0.18);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.55);
  z-index: 1002;
  padding: 18px 18px 24px;
  flex-direction: column;
  gap: 6px;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.mobile-menu.open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu a:not(.btn) {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 12px 6px;
  border-radius: 10px;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.mobile-menu a:not(.btn):hover,
.mobile-menu a:not(.btn).active {
  color: var(--accent);
  background: rgba(180, 244, 65, 0.07);
  padding-left: 12px;
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.mobile-menu-close {
  align-self: flex-end;
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(180, 244, 65, 0.22);
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: rgba(180, 244, 65, 0.12);
  border-color: var(--accent);
}

.mobile-menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}

.mobile-menu-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-cta {
  margin-top: auto;
  padding-top: 12px;
  display: grid;
  gap: 10px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 1001;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 150px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(180, 244, 65, 0.08);
  border: 1px solid rgba(180, 244, 65, 0.2);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-trust {
  margin-top: 48px;
  font-size: 14px;
  color: var(--text-muted);
  animation: fadeInUp 0.8s ease 0.4s both;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-trust .stars {
  display: flex;
  gap: 2px;
  color: #f5c518;
}

/* ---------- Floating Orbs ---------- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(180, 244, 65, 0.3), transparent 70%);
  top: 10%;
  left: -100px;
  animation: floatOrb 8s ease-in-out infinite;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(180, 244, 65, 0.2), transparent 70%);
  top: 20%;
  right: -80px;
  animation: floatOrb 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(180, 244, 65, 0.15), transparent 70%);
  bottom: 20%;
  left: 10%;
  animation: floatOrb 12s ease-in-out infinite 2s;
}

/* ---------- Geometric Decorations ---------- */
.geo-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.geo-capsule {
  width: 60px;
  height: 120px;
  border: 2px solid rgba(180, 244, 65, 0.3);
  border-radius: 60px;
  top: 18%;
  left: 8%;
  animation: floatShape 6s ease-in-out infinite;
  transform: rotate(-15deg);
}

.geo-ring {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(180, 244, 65, 0.25);
  border-radius: 50%;
  top: 25%;
  right: 10%;
  animation: floatShape 8s ease-in-out infinite reverse;
}

.geo-dot {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  bottom: 30%;
  right: 15%;
  animation: pulse 3s ease-in-out infinite;
}

.geo-cross {
  width: 30px;
  height: 30px;
  bottom: 25%;
  left: 12%;
  animation: floatShape 7s ease-in-out infinite 1s;
}

.geo-cross::before,
.geo-cross::after {
  content: '';
  position: absolute;
  background: rgba(180, 244, 65, 0.3);
  border-radius: 2px;
}

.geo-cross::before {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.geo-cross::after {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

/* ---------- MARQUEE ---------- */
.marquee-section {
  padding: 20px 0;
  overflow: hidden;
}

.marquee-row {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  padding: 16px 0;
}

.marquee-row + .marquee-row {
}

.marquee-track {
  display: flex;
  align-items: center;
  animation: marqueeLeft 30s linear infinite;
  gap: 0;
}

.marquee-row.reverse .marquee-track {
  animation: marqueeRight 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  flex-shrink: 0;
  line-height: 1;
}

.marquee-item::after {
  content: '—';
  font-size: 16px;
  color: var(--accent);
  line-height: 1;
  transform: translateY(1px);
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

/* ---------- FEATURES / OPTIONS SECTION ---------- */
.features-section {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(180, 244, 65, 0.3);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(180, 244, 65, 0.1);
  border: 1px solid rgba(180, 244, 65, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 24px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- PROJECTS / PORTFOLIO SECTION ---------- */
.projects-section {
  padding: 100px 0;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 20px;
  flex-wrap: wrap;
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  transition: var(--transition);
}

.project-card:hover {
  border-color: rgba(180, 244, 65, 0.3);
  transform: translateY(-2px);
}

.project-card:nth-child(even) {
  direction: rtl;
}

.project-card:nth-child(even) > * {
  direction: ltr;
}

.project-number {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 800;
  color: rgba(180, 244, 65, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.project-info h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}

.project-info p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tag {
  background: rgba(180, 244, 65, 0.08);
  border: 1px solid rgba(180, 244, 65, 0.15);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
}

.project-image {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 20px;
}

.grad-1 { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); }
.grad-2 { background: linear-gradient(135deg, #0f0f23, #1a0a2e, #2d1b69); }
.grad-3 { background: linear-gradient(135deg, #1a2a1a, #0a2a1a, #0d3320); }
.grad-4 { background: linear-gradient(135deg, #2a1a0a, #3a1a0a, #4a2010); }
.grad-5 { background: linear-gradient(135deg, #0a1a2a, #0a2a3a, #0a3a4a); }
.grad-6 { background: linear-gradient(135deg, #1a0a1a, #2a0a2a, #3a163a); }

/* ---------- PRICING SECTION CARDS ---------- */
.pricing-content {
  padding: 40px 0 100px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}

.pricing-card {
  background: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  background: linear-gradient(160deg, rgba(20,20,20,0.9), rgba(10,10,10,0.95));
  border: 1px solid var(--accent);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(180, 244, 65, 0.15), 0 0 15px rgba(180, 244, 65, 0.2);
  z-index: 1;
}

.pricing-card.no-tilt {
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.pricing-card.no-tilt:hover {
  border-color: rgba(180, 244, 65, 0.55);
  box-shadow: 0 0 0 1px rgba(180, 244, 65, 0.25), 0 14px 36px rgba(180, 244, 65, 0.16), 0 0 32px rgba(180, 244, 65, 0.12);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0a;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}

.pricing-price span {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 32px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #e0e0e0;
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- SERVICES CARDS GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: rgba(180, 244, 65, 0.3);
  transform: translateY(-4px);
}

.service-card-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: rgba(180, 244, 65, 0.1);
  line-height: 1;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card .btn-sm {
  margin-top: auto;
}

/* ---------- SOCIAL PROOF / TESTIMONIALS ---------- */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(180, 244, 65, 0.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #f5c518;
  font-size: 16px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #6ee73d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--bg-primary);
}

.testimonial-name {
  font-weight: 600;
  font-size: 15px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- TEAM SECTION ---------- */
.team-section {
  padding: 100px 0;
}

.team-scroll {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.team-scroll::-webkit-scrollbar {
  display: none;
}

.team-card {
  min-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  scroll-snap-align: start;
  flex-shrink: 0;
}

.team-card:hover {
  border-color: rgba(180, 244, 65, 0.3);
  transform: translateY(-4px);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--bg-primary);
}

.team-avatar.av-1 { background: linear-gradient(135deg, var(--accent), #6ee73d); }
.team-avatar.av-2 { background: linear-gradient(135deg, #41a0f4, #4169f4); }
.team-avatar.av-3 { background: linear-gradient(135deg, #f44179, #f441b4); }
.team-avatar.av-4 { background: linear-gradient(135deg, #f4a841, #f4d441); }

.team-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-role {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(180, 244, 65, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  background: var(--bg-card);
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(180, 244, 65, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--accent);
  font-size: 18px;
}

.faq-item.open .faq-icon {
  background: var(--accent);
  color: var(--bg-primary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ---------- ABOUT HERO / PAGE HEROES ---------- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .orb {
  opacity: 0.25;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.page-hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* ---------- ABOUT CONTENT ---------- */
.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image-placeholder {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0a1a0a, #1a2a1a, #0d3320);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.about-image-placeholder span {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: rgba(180, 244, 65, 0.2);
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  background: #000;
  transform: scale(1.25);
  transform-origin: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(180, 244, 65, 0.3);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  padding: 80px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(180, 244, 65, 0.1);
  border: 1px solid rgba(180, 244, 65, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-secondary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 244, 65, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a0a0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 01.753 1.659l-4.796 5.48a1 1 0 01-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ---------- LEGAL CONTENT ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text-secondary);
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  margin-top: 40px;
  position: relative;
  padding-left: 20px;
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--accent);
  border-radius: 3px;
}

.legal-content p {
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.8;
}

/* ---------- INDIVIDUAL SERVICE PRICING ---------- */
.individual-pricing {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.individual-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-price-card:hover {
  border-color: rgba(180, 244, 65, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-price-card:hover::before {
  opacity: 1;
}

.service-price-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(180, 244, 65, 0.08);
  border: 1px solid rgba(180, 244, 65, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  transition: var(--transition);
}

.service-price-card:hover .service-price-icon {
  background: rgba(180, 244, 65, 0.15);
  border-color: rgba(180, 244, 65, 0.3);
  transform: scale(1.08);
}

.service-price-body {
  flex: 1;
}

.service-price-body h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.service-price-body .service-price-range {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
  display: inline-block;
}

.service-price-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-price-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-price-features span {
  background: rgba(180, 244, 65, 0.06);
  border: 1px solid rgba(180, 244, 65, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.service-price-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 14px;
  transition: var(--transition);
}

.service-price-cta:hover {
  gap: 10px;
}

.service-price-note {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: rgba(180, 244, 65, 0.04);
  border: 1px dashed rgba(180, 244, 65, 0.2);
  border-radius: var(--radius-lg);
}

.service-price-note p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-price-note strong {
  color: var(--accent);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-col:not(:first-child) {
  justify-self: end;
  text-align: right;
}

.footer-col:not(:first-child) .footer-links {
  align-items: flex-end;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.footer-email {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: block;
  transition: var(--transition);
}

.footer-email:hover {
  color: var(--accent);
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  font-size: 14px;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  padding: 12px 24px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--accent-hover);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
}

.footer-big-text {
  font-family: var(--font-heading);
  font-size: clamp(48px, 10vw, 140px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ---------- FLOATING INSTAGRAM BUTTON ---------- */
.instagram-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(214, 36, 159, 0.4);
  transition: var(--transition);
  animation: pulse 2s ease-in-out infinite;
}

.instagram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(214, 36, 159, 0.5);
}

.instagram-float svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
}

/* ---------- SCROLL REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- KEYFRAMES ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .pricing-grid,
  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-card:nth-child(even) {
    direction: ltr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .individual-pricing-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 70px 0;
  }

  .utility-bar {
    display: none;
  }

  .navbar {
    top: 0;
    height: 64px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    width: min(88vw, 340px);
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .marquee-item {
    font-size: 15px;
    padding: 0 16px;
  }

  .project-card {
    padding: 28px;
  }

  .project-number {
    font-size: 56px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-col:not(:first-child) {
    justify-self: start;
    text-align: left;
  }

  .footer-col:not(:first-child) .footer-links {
    align-items: flex-start;
  }

  .individual-pricing-grid {
    grid-template-columns: 1fr;
  }

  .service-price-card {
    flex-direction: column;
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 32px;
  }

  .geo-capsule,
  .geo-ring,
  .geo-dot,
  .geo-cross {
    display: none;
  }

  .page-hero {
    padding: 120px 0 60px;
  }
}

@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .page-hero-title {
    font-size: 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.preloader-logo span {
  color: var(--accent);
}

.preloader-bar {
  width: 160px;
  height: 3px;
  background: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  z-index: 997;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* ---------- COOKIE CONSENT ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 18px 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-banner p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.5;
}

.cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ---------- PROCESS / HOW IT WORKS ---------- */
.process-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
  opacity: 0.2;
  z-index: 0;
}

.process-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}

.process-step {
  width: 64px;
  height: 64px;
  background: rgba(180, 244, 65, 0.1);
  border: 2px solid rgba(180, 244, 65, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  transition: var(--transition);
}

.process-card:hover .process-step {
  background: var(--accent);
  color: var(--bg-primary);
  transform: scale(1.1);
}

.process-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- CLIENT LOGOS STRIP ---------- */
.logos-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.logos-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 32px;
}

.logos-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  width: 120px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  letter-spacing: 1px;
}

.logo-item:hover {
  border-color: rgba(180, 244, 65, 0.3);
  color: var(--text-secondary);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(180, 244, 65, 0.05), rgba(180, 244, 65, 0.02));
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-banner .hero-buttons {
  justify-content: center;
}

/* ---------- BLOG CARDS ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: rgba(180, 244, 65, 0.3);
  transform: translateY(-4px);
}

.blog-thumb {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}

.blog-body {
  padding: 28px;
}

.blog-tag {
  display: inline-block;
  background: rgba(180, 244, 65, 0.08);
  border: 1px solid rgba(180, 244, 65, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---------- 404 PAGE ---------- */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.page-404-code {
  font-family: var(--font-heading);
  font-size: clamp(100px, 20vw, 200px);
  font-weight: 800;
  color: rgba(180, 244, 65, 0.08);
  line-height: 1;
  margin-bottom: 16px;
}

.page-404 h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-404 p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- PAGE TRANSITION ---------- */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* ---------- PROCESS TIMELINE ---------- */
.process-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
}

.process-timeline-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0,
    var(--accent) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.35;
  z-index: 0;
}

.process-card {
  position: relative;
  z-index: 1;
}

.process-card-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px 28px 32px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.process-card-inner:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(180, 244, 65, 0.08);
}

.process-step-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(180, 244, 65, 0.15), rgba(180, 244, 65, 0.05));
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition: var(--transition);
}

.process-card-inner:hover .process-step-badge {
  background: linear-gradient(135deg, rgba(180, 244, 65, 0.3), rgba(180, 244, 65, 0.1));
  box-shadow: 0 0 30px rgba(180, 244, 65, 0.25);
  transform: scale(1.08);
}

.process-step-badge svg {
  color: var(--accent);
  width: 28px;
  height: 28px;
}

.process-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.process-card-inner h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.process-card-inner p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- RESPONSIVE ADDITIONS ---------- */
@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .process-timeline-line { display: none; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
  }
  .process-card-inner { padding: 28px 20px 24px; }
  .process-step-badge { width: 60px; height: 60px; }
  .process-step-badge svg { width: 22px; height: 22px; }
  .logos-track { gap: 20px; }
  .logo-item { width: 100px; height: 40px; font-size: 12px; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .process-timeline { grid-template-columns: 1fr; gap: 16px; }
  .process-card-inner h4 { font-size: 18px; }
}


/* ---------- PREMIUM AESTHETIC UPGRADES ---------- */
.highlight, .text-accent {
  background: linear-gradient(120deg, var(--accent), #45f3ff, var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
  display: inline-block;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}


.noise-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.magnetic-btn {
  transition: transform 0.1s ease-out, background-color 0.3s;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
  position: fixed;
  top: 130px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  max-width: 420px;
  line-height: 1.5;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.toast-success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.toast.toast-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.toast.toast-info {
  background: rgba(180, 244, 65, 0.1);
  border: 1px solid rgba(180, 244, 65, 0.25);
}

.toast-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.toast-success .toast-icon { background: rgba(34,197,94,0.2); color: #22c55e; }
.toast-error .toast-icon { background: rgba(239,68,68,0.2); color: #ef4444; }
.toast-info .toast-icon { background: rgba(180,244,65,0.2); color: var(--accent); }

.toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  margin-left: auto;
  transition: color 0.2s;
}

.toast-close:hover { color: #fff; }

/* ===== FORM LOADING STATES ===== */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.75;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2.5px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: btnSpin 0.6s linear infinite;
  right: 16px;
  top: 50%;
  margin-top: -9px;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

.btn-loading .btn-text { opacity: 0.6; }

/* Contact form success state */
.form-success-overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 5;
  animation: fadeIn 0.4s ease;
}

.form-success-overlay .success-check {
  width: 64px;
  height: 64px;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  animation: successPop 0.5s cubic-bezier(.175,.885,.32,1.275);
}

@keyframes successPop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== TECH STACK MATRIX & FOMO POPUP ===== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-card {
  perspective: 1000px;
  height: 180px;
  cursor: pointer;
  position: relative;
}

.tech-front, .tech-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
}

.tech-front {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

.tech-back {
  background: rgba(0, 240, 255, 0.05); /* subtle brand accent */
  transform: rotateY(180deg);
  justify-content: center;
  border-color: var(--accent-primary);
}

.tech-back p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.4;
}

.tech-card:hover .tech-front {
  transform: rotateY(180deg);
}

.tech-card:hover .tech-back {
  transform: rotateY(360deg);
}

.tech-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.tech-card:hover .tech-icon-container {
  transform: scale(1.1);
  box-shadow: 0 0 20px currentColor;
}

.tech-front h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-primary);
}

/* FOMO POPUP CSS */
.fomo-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: translateX(-150%);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.fomo-popup.show {
  transform: translateX(0);
  opacity: 1;
}

.fomo-icon {
  width: 12px;
  height: 12px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-primary);
  animation: glowPulse 2s infinite;
}

.fomo-text {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

@keyframes glowPulse {
  0% { transform: scale(1); box-shadow: 0 0 10px var(--accent-primary); }
  50% { transform: scale(1.2); box-shadow: 0 0 20px var(--accent-primary); }
  100% { transform: scale(1); box-shadow: 0 0 10px var(--accent-primary); }
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-card {
    height: 160px;
  }
  .fomo-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    border-radius: 12px;
    justify-content: center;
  }
}


/* Auto-Slider Overrides */
.tech-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 3rem;
  padding: 1rem 0;
  /* Add subtle edge fade */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tech-slider-track {
  display: flex;
  gap: 2rem;
  /* 12 cards * ~250px width */
  width: max-content;
  animation: slideTechScroll 40s linear infinite;
}

.tech-slider-track:hover {
  animation-play-state: paused;
}

@keyframes slideTechScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); } /* Shift halfway + gap offset */
}

/* Ensure tech cards in slider are fixed width and scale nicely */
.tech-slider-track .tech-card {
  width: 200px;
  flex: 0 0 auto;
  position: relative;
}

.tech-slider-track .tech-front,
.tech-slider-track .tech-back {
  padding: 1rem;
}

.tech-slider-track .tech-icon-container {
  width: 50px;
  height: 50px;
}

@media (max-width: 768px) {
  .tech-slider-track .tech-card {
    width: 160px;
    height: 160px;
  }
}

/* Testimonials Slider Overrides */
.testimonials-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
  padding: 1.5rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: slideTestimScroll 45s linear infinite;
}

.testimonial-slider-track:hover {
  animation-play-state: paused;
}

@keyframes slideTestimScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

.testimonial-slider-track .testimonial-card {
  width: 350px;
  flex: 0 0 auto;
  white-space: normal;
}

@media (max-width: 768px) {
  .testimonial-slider-track .testimonial-card {
    width: 280px;
  }
}

/* Automatic Industry Slider Rules */
.industry-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 1rem;
  padding: 1rem 0 2rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.industry-slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: slideIndustryScroll 20s linear infinite;
}

.industry-slider-track:hover {
  animation-play-state: paused;
}

@keyframes slideIndustryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

.industry-card {
  width: 200px;
  height: 60px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  flex: 0 0 auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.industry-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
  background: rgba(0, 240, 255, 0.05); /* Brand glow */
  box-shadow: 0 10px 20px rgba(0, 240, 255, 0.15);
}

.i-emoji {
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@media (max-width: 768px) {
  .industry-card { width: 170px; height: 55px; font-size: 0.9rem; }
  .i-emoji { font-size: 1.1rem; }
}


/* ===== INDUSTRY MINIMAL GRID ===== */
.industry-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.industry-bento-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md); /* Premium curve, slightly less pill-like for a strict grid */
  padding: 12px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.industry-bento-card svg {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
}

.industry-bento-card h3 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .industry-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .industry-bento-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 in a row for mobile still looks crisp */
    gap: 8px;
  }
  .industry-bento-card {
    padding: 10px 12px;
  }
  .industry-bento-card h3 {
    font-size: 0.8rem;
  }
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thankyou-section {
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.thankyou-container {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.thankyou-icon {
  width: 100px;
  height: 100px;
  background: rgba(180,244,65,0.08);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  animation: successPulseAnim 2s ease-in-out infinite;
}
@keyframes successPulseAnim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(180,244,65,0.2); }
  50% { box-shadow: 0 0 0 25px rgba(180,244,65,0); }
}
.thankyou-container h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 12px;
}
.thankyou-subtitle {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.thankyou-timeline {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin-bottom: 36px;
  text-align: left;
}
.thankyou-timeline h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
.thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.thankyou-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.thankyou-step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(180,244,65,0.1);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.thankyou-step h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.thankyou-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.thankyou-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.thankyou-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========================================
   CAREERS PAGE
   ======================================== */
.careers-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.careers-perk-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.careers-perk-card:hover {
  border-color: rgba(180,244,65,0.3);
  transform: translateY(-4px);
}
.careers-perk-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.careers-perk-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.careers-perk-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.careers-positions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.careers-position-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.careers-position-card:hover {
  border-color: rgba(180,244,65,0.3);
  transform: translateY(-3px);
}
.careers-position-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.careers-position-header h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
.careers-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.careers-tags span {
  background: rgba(180,244,65,0.08);
  border: 1px solid rgba(180,244,65,0.15);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
}
.careers-position-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(180,244,65,0.08);
  border: 1px solid rgba(180,244,65,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.careers-position-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.careers-apply-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}
.careers-apply-link:hover {
  letter-spacing: 1px;
}
.careers-form {
  max-width: 700px;
  margin: 48px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.careers-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 8px;
}
.careers-form .form-group {
  margin-bottom: 20px;
}
.careers-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.careers-form input,
.careers-form textarea,
.careers-form select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 15px;
  transition: var(--transition);
  font-family: var(--font-body);
}
.careers-form input:focus,
.careers-form textarea:focus,
.careers-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180,244,65,0.1);
  outline: none;
}
.careers-form input::placeholder,
.careers-form textarea::placeholder {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .careers-perks-grid { grid-template-columns: repeat(2, 1fr); }
  .careers-positions-grid { grid-template-columns: 1fr; }
  .careers-form .form-row { grid-template-columns: 1fr; }
  .careers-form { padding: 24px 18px; }
}
@media (max-width: 480px) {
  .careers-perks-grid { grid-template-columns: 1fr; }
}

/* ========================================
   COMPARISON TABLE (Pricing Page)
   ======================================== */
.comparison-section {
  padding: 80px 0;
}
.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 48px;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 700px;
}
.comparison-table thead th {
  padding: 20px 16px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid var(--border-color);
  color: var(--text-secondary);
}
.comparison-table thead th:first-child {
  text-align: left;
}
.comparison-table thead th.highlight {
  color: var(--accent);
  background: rgba(180,244,65,0.05);
  border-top: 2px solid var(--accent);
  border-left: 2px solid rgba(180,244,65,0.2);
  border-right: 2px solid rgba(180,244,65,0.2);
  border-radius: 12px 12px 0 0;
  position: relative;
}
.comparison-table thead th.highlight::before {
  content: '⭐ BEST VALUE';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 1px;
}
.comparison-table tbody td {
  padding: 16px;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}
.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}
.comparison-table tbody td.highlight {
  background: rgba(180,244,65,0.03);
  border-left: 2px solid rgba(180,244,65,0.2);
  border-right: 2px solid rgba(180,244,65,0.2);
  color: var(--text-primary);
  font-weight: 600;
}
.comparison-table tbody tr:last-child td.highlight {
  border-bottom: 2px solid rgba(180,244,65,0.2);
  border-radius: 0 0 12px 12px;
}
.comparison-check {
  color: var(--accent);
  font-size: 18px;
}
.comparison-cross {
  color: #ef4444;
  font-size: 18px;
}
.comparison-partial {
  color: #f59e0b;
  font-size: 14px;
}

@media (max-width: 768px) {
  .comparison-table-wrapper {
    margin: 48px -16px 0;
    padding: 0 16px;
  }
}

/* ========================================
   AI CHATBOT WIDGET
   ======================================== */
.chatbot-bubble {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), #45f3ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(180,244,65,0.3);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  border: none;
  outline: none;
}
.chatbot-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(180,244,65,0.45);
}
.chatbot-bubble svg {
  width: 26px;
  height: 26px;
  fill: #0a0a0a;
}
.chatbot-bubble .chatbot-close-icon {
  display: none;
}
.chatbot-bubble.open .chatbot-chat-icon { display: none; }
.chatbot-bubble.open .chatbot-close-icon { display: block; }

.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
}

.chatbot-window {
  position: fixed;
  bottom: 170px;
  right: 28px;
  width: 370px;
  max-height: 500px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  z-index: 9997;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: chatSlideUp 0.3s ease forwards;
}
.chatbot-window.open { display: flex; }

@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-header {
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(180,244,65,0.1), rgba(69,243,255,0.05));
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-avatar {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #0a0a0a;
  font-family: var(--font-heading);
}
.chatbot-header-info h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 1px;
}
.chatbot-header-info span {
  font-size: 12px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
}
.chatbot-header-info span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 320px;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  animation: msgFadeIn 0.3s ease;
}
@keyframes msgFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: var(--text-primary);
}
.chat-msg.user {
  background: var(--accent);
  color: #0a0a0a;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.chat-quick-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.chat-quick-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(180,244,65,0.05);
}

.chat-typing {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  align-self: flex-start;
}
.chat-typing span {
  width: 7px;
  height: 7px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingBounce 1.4s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.chatbot-input {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-primary);
}
.chatbot-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
  font-family: var(--font-body);
}
.chatbot-input input::placeholder { color: var(--text-muted); }
.chatbot-input button {
  background: var(--accent);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.chatbot-input button:hover { transform: scale(1.1); }
.chatbot-input button svg {
  width: 16px;
  height: 16px;
  fill: #0a0a0a;
}

@media (max-width: 480px) {
  .chatbot-window {
    right: 10px;
    left: 10px;
    bottom: 160px;
    width: auto;
  }
  .chatbot-bubble {
    right: 18px;
    bottom: 90px;
  }
}
