:root {
  --bg-color: #000000;
  --text-color: #ffffff;
  --accent-color: #3b82f6;
  /* Vibrant Blue */
  --accent-secondary: #60a5fa;
  --font-header: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --spacing-section: 120px;
  --container-width: 90%;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: hidden;
  overscroll-behavior: none;
  cursor: none;
  /* Hide default cursor for custom one */
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--text-color);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-circle {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.hover-active .cursor-circle {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: transparent;
}

/* ========================================
   LOADER
   ======================================== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: transform 0.8s var(--ease);
}

.loader.loaded {
  transform: translateY(-100%);
}

.loader-progress {
  font-family: var(--font-header);
  font-size: 14px;
  margin-top: 20px;
  opacity: 0.5;
}

/* Pyramid 3D Loader */
.pyramid-loader {
  position: relative;
  width: 150px;
  height: 150px;
  display: block;
  transform-style: preserve-3d;
  transform: rotateX(-20deg);
  margin: 30px 0;
}

.pyramid-loader .wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: pyramidSpin 4s linear infinite;
}

@keyframes pyramidSpin {
  100% {
    transform: rotateY(360deg);
  }
}

.pyramid-loader .wrapper .side {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.pyramid-loader .wrapper .side1 {
  transform: rotateZ(-30deg) rotateY(90deg);
  background: conic-gradient(var(--accent-color), #60a5fa, #93c5fd, var(--accent-color));
}

.pyramid-loader .wrapper .side2 {
  transform: rotateZ(30deg) rotateY(90deg);
  background: conic-gradient(var(--accent-color), #93c5fd, #60a5fa, var(--accent-color));
}

.pyramid-loader .wrapper .side3 {
  transform: rotateX(30deg);
  background: conic-gradient(var(--accent-color), #93c5fd, #60a5fa, var(--accent-color));
}

.pyramid-loader .wrapper .side4 {
  transform: rotateX(-30deg);
  background: conic-gradient(var(--accent-color), #60a5fa, #93c5fd, var(--accent-color));
}

.pyramid-loader .wrapper .shadow {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotateX(90deg) translateZ(-40px);
  filter: blur(12px);
}

/* ========================================
   WEBGL CONTAINER
   ======================================== */
#webgl-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.8;
}

/* ========================================
   NAVIGATION
   ======================================== */
.fixed-nav {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  mix-blend-mode: difference;
}

.nav-logo-img {
  height: 48px;
}

/* Navigation Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-color);
  z-index: 90;
  /* Behind logo, above content */
  transform: translateY(-100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay-menu {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  text-align: center;
}

.overlay-link {
  font-family: var(--font-header);
  font-size: clamp(32px, 5vw, 64px);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}

.overlay-link:hover {
  color: var(--accent-color);
  font-style: italic;
  /* Style flourish */
}

/* Nav Actions (Right side) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.whatsapp-link {
  color: #25D366;
  /* WhatsApp Green */
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-link:hover {
  transform: scale(1.2);
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  /* Touch target */
  z-index: 101;
}

.menu-bar {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* Menu Open State */
body.menu-open .menu-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .menu-bar:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-contact a {
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-color);
  font-family: var(--font-header);
  font-size: 12px;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-contact a:hover {
  background: var(--text-color);
  color: var(--bg-color);
}

#webgl-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  /* Behind everything */
  pointer-events: none;
  /* Let clicks pass through */
}

/* Navigation Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-color);
  z-index: 90;
  /* Behind logo, above content */
  transform: translateY(-100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay-menu {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  text-align: center;
}

.overlay-link {
  font-family: var(--font-header);
  font-size: clamp(32px, 5vw, 64px);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}

.overlay-link:hover {
  color: var(--accent-color);
  font-style: italic;
  /* Style flourish */
}

/* Nav Actions (Right side) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.whatsapp-link {
  color: #25D366;
  /* WhatsApp Green */
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-link:hover {
  transform: scale(1.2);
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  /* Touch target */
  z-index: 101;
}

.menu-bar {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* Menu Open State */
body.menu-open .menu-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .menu-bar:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  position: relative;
  width: 100%;
  padding: 0 5%;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-title {
  font-family: var(--font-header);
  font-size: clamp(48px, 10vw, 120px);
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.line {
  overflow: hidden;
  margin-bottom: -10px;
}

.line span {
  display: block;
  transform: translateY(100%);
  /* Animated in JS */
}

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

.hero-footer {
  margin-top: 60px;
  font-family: var(--font-header);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  opacity: 0;
  /* Animated in JS */
}

/* ========================================
   HORIZONTAL SCROLL
   ======================================== */
.horizontal-scroll-container {
  height: 100vh;
  overflow: hidden;
}

.horizontal-track {
  display: flex;
  height: 100%;
  width: fit-content;
  /* Needed for scrolling */
}

.panel {
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5vw;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  /* Guide line */
}

/* MOBILE RESPONSIVE (Vertical Stack) */
@media (max-width: 768px) {
  .horizontal-scroll-container {
    height: auto;
    overflow: visible;
  }

  .horizontal-track {
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .panel {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 80px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Make hero text larger on mobile */
  .hero-title {
    font-size: 15vw !important;
    line-height: 1.1;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .circle-btn {
    width: 120px;
    height: 120px;
  }

  .stats-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }

  /* Work gallery - stack vertically on mobile */
  .work-gallery {
    flex-direction: column;
    gap: 30px;
  }

  .work-item {
    width: 100%;
  }

  .work-img {
    height: 200px;
  }

  /* Service list smaller on mobile */
  .service-list li {
    font-size: 28px;
  }

  /* Fix header overlap - add padding to sections */
  .section {
    padding-top: 100px !important;
  }

  .smooth-wrapper {
    padding-top: 80px !important;
  }

  /* Service cards - better margins on mobile */
  .service-card {
    margin: 0 10px;
  }

  /* Hide some header elements on very small screens */
  .nav-contact a:not(:last-child) {
    display: none;
  }
}

.panel-content {
  max-width: 1200px;
  width: 100%;
  position: relative;
}

.panel-label {
  display: block;
  font-family: var(--font-header);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
}

/* Agency Panel */
.panel-agency h2 {
  font-family: var(--font-header);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.1;
  margin-bottom: 40px;
}

.panel-agency .lead {
  font-size: clamp(18px, 2vw, 24px);
  color: #a1a1aa;
  max-width: 600px;
  line-height: 1.5;
  margin-bottom: 60px;
}

.stats-row {
  display: flex;
  gap: 80px;
}

.stat {
  font-family: var(--font-header);
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}

.stat span {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 8px;
}

/* Services Panel */
.service-list {
  list-style: none;
}

.service-list li {
  font-family: var(--font-header);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.2;
  color: #fff;
  /* White base */
  opacity: 0.6;
  /* 60% opacity for better readability */
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.service-list li:hover {
  opacity: 1;
  transform: translateX(20px);
}

.service-list li a {
  color: inherit !important;
  text-decoration: none !important;
}

.service-list li a:visited,
.service-list li a:hover,
.service-list li a:active {
  color: inherit !important;
  text-decoration: none !important;
}

/* Work Panel */
.work-gallery {
  display: flex;
  gap: 40px;
}

.work-item {
  width: 400px;
  flex-shrink: 0;
}

.work-img {
  width: 100%;
  height: 300px;
  /* Adjust aspect ratio */
  background-color: #222;
  margin-bottom: 24px;
  border-radius: 4px;
  transition: transform 0.5s ease;
}

.work-item:hover .work-img {
  transform: scale(0.98);
}

.work-info h3 {
  font-family: var(--font-header);
  font-size: 24px;
  margin-bottom: 8px;
}

.work-info p {
  color: #a1a1aa;
  font-size: 14px;
  text-transform: uppercase;
}

/* Contact Panel */
.panel-contact .centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  font-family: var(--font-header);
  font-size: clamp(48px, 8vw, 100px);
  margin-bottom: 60px;
}

.circle-btn {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 80px;
  text-decoration: none;
  color: var(--text-color);
  font-family: var(--font-header);
  font-weight: 500;
  text-transform: uppercase;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circle-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Service Card - From Uiverse.io by AyuuLima (Exact) */
.service-card {
  position: relative;
  width: 100%;
  min-height: 280px;
  background-color: #0a0a0a;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  gap: 12px;
  border-radius: 15px;
  cursor: pointer;
  border: 3px solid;
  border-image: linear-gradient(-45deg, #3b82f6, #60a5fa, #93c5fd) 1;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* Service Card Content Styling */
.service-card .card-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.service-card h3 {
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
}

.service-card p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
}

.service-card ul {
  list-style: none;
  margin-top: 12px;
}

.service-card ul li {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.8;
}

.footer-minimal p {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 8px;
  opacity: 0.8;
  /* Increased from default */
}

/* PAGE HERO (For secondary pages) */
.page-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, rgba(124, 58, 237, 0.1) 100%);
  border-bottom: 1px solid var(--border-light);
}

.page-title {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* MISSION SECTION */
.mission-section {
  padding: 80px 20px;
  background: var(--primary);
}

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

.mission-text h2 {
  font-size: 42px;
  margin-bottom: 24px;
}

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

.mission-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-box {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 14px;
}

/* TEAM SECTION */
.team-section {
  padding: 80px 20px;
  background: var(--primary);
}

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

.team-card {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
}

.team-avatar {
  font-size: 56px;
  margin-bottom: 16px;
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.team-role {
  color: var(--accent-purple);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.team-bio {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* VALUES SECTION */
.values-section {
  padding: 80px 20px;
  background: var(--primary);
}

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

.value-item {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  border-color: var(--accent-green);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.value-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.value-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* PORTFOLIO SECTION */
.portfolio-section {
  padding: 80px 20px;
  background: var(--primary);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.project-card {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: grid;
  grid-template-columns: 120px 1fr;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
}

.project-image {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  min-height: 100%;
}

.project-content {
  padding: 28px 24px;
}

.project-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.project-subtitle {
  color: var(--accent-cyan);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.project-description {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.project-tags span {
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-cyan);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--accent-cyan);
}

.project-link {
  color: var(--accent-purple);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.project-link:hover {
  color: var(--accent-cyan);
}

/* RESULTS SECTION */
.results-section {
  padding: 80px 20px;
  background: var(--primary);
}

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

.result-item {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.result-item:hover {
  transform: translateY(-8px);
  border-color: var(--accent-green);
}

.result-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.result-stat {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

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

/* CONTACT SECTION */
.contact-section {
  padding: 80px 20px;
  background: var(--primary);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.contact-info>p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.method {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.method:hover {
  transform: translateX(8px);
  border-color: var(--accent-cyan);
}

.method-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.method h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

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

.method a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.method a:hover {
  color: var(--accent-purple);
}

.contact-form-wrapper h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

.form-note {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 12px;
}

/* FAQ SECTION */
.faq-section {
  padding: 80px 20px;
  background: var(--primary);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.faq-item {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-green);
}

.faq-item h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.faq-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* PRICING SECTION */
.pricing-preview {
  padding: 80px 20px;
  background: var(--primary);
}

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

.pricing-card {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 24px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-color: var(--accent-purple);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--accent-purple);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 22px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.pricing-features li {
  color: var(--text-muted);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* RESPONSIVE FOR SECONDARY PAGES */
@media (max-width: 768px) {
  .page-title {
    font-size: 40px;
  }

  .page-subtitle {
    font-size: 16px;
  }

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

  .mission-text h2 {
    font-size: 32px;
  }

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

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

  .project-card {
    grid-template-columns: 100px 1fr;
  }

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

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

@media (max-width: 480px) {
  .page-title {
    font-size: 28px;
  }

  .mission-text h2 {
    font-size: 24px;
  }

  .team-grid,
  .values-grid,
  .results-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    grid-template-columns: 80px 1fr;
  }

  .project-image {
    font-size: 32px;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: rgba(15, 15, 30, 0.8);
  border-top: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  padding: 80px 20px 40px;
  margin-top: 100px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-section h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.footer-section p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 8px 0;
}

.footer-tagline {
  font-size: 13px;
  color: var(--accent-purple);
  font-style: italic;
  margin-top: 8px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px;
  }

  .hero-visual {
    height: 350px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 16px;
  }

  .nav-menu {
    gap: 16px;
  }

  .nav-container {
    padding: 12px 20px;
  }

  .service-item,
  .reason-card,
  .process-step,
  .stat-box {
    padding: 24px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .cta-box h2 {
    font-size: 28px;
  }

  .footer-content {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .nav-menu {
    gap: 12px;
  }

  .service-item,
  .reason-card {
    padding: 20px;
  }

  .orb-1,
  .orb-2 {
    width: 200px;
    height: 200px;
  }
}