/* ============================================================
   EASY TO BOOST TECH CO. — Main Stylesheet
   Design: Black + Lime (#C8F000) | Bebas Neue headings
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --black:       #000000;
  --gray-900:    #0D0D0D;
  --gray-800:    #111111;
  --gray-750:    #161616;
  --gray-700:    #1A1A1A;
  --gray-600:    #222222;
  --gray-500:    #333333;
  --gray-400:    #555555;
  --gray-300:    #888888;
  --gray-200:    #AAAAAA;
  --gray-100:    #CCCCCC;
  --white:       #FFFFFF;

  --lime:        #C8F000;
  --lime-bright: #D4FF00;
  --lime-dark:   #9BBF00;
  --lime-dim:    rgba(200, 240, 0, 0.08);
  --lime-glow:   rgba(200, 240, 0, 0.25);

  --font-head:   'Bebas Neue', 'Impact', sans-serif;
  --font-sub:    'Rajdhani', 'Segoe UI', sans-serif;
  --font-body:   'Inter', 'Segoe UI', sans-serif;

  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.3s ease;
  --max-width:   1280px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-900); }
::-webkit-scrollbar-thumb { background: var(--lime-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime); }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-text {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--lime);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 1.5rem;
  animation: preloaderPulse 1s ease-in-out infinite alternate;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--gray-700);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: var(--lime);
  animation: preloaderBar 1.5s ease-in-out forwards;
}

@keyframes preloaderPulse {
  from { opacity: 0.6; }
  to   { opacity: 1; text-shadow: 0 0 30px var(--lime-glow); }
}
@keyframes preloaderBar {
  from { width: 0; }
  to   { width: 100%; }
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Typography Utilities ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-title .lime { color: var(--lime); }

.section-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--gray-200);
  max-width: 580px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header--center {
  text-align: center;
}
.section-header--center .section-desc {
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
  box-shadow: 0 0 20px rgba(200, 240, 0, 0.3);
}
.btn-primary:hover {
  background: var(--lime-bright);
  box-shadow: 0 0 40px rgba(200, 240, 0, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gray-500);
}
.btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: 0 0 20px rgba(200, 240, 0, 0.15);
  transform: translateY(-2px);
}

.btn-lime-outline {
  background: transparent;
  color: var(--lime);
  border-color: var(--lime);
}
.btn-lime-outline:hover {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 0 30px rgba(200, 240, 0, 0.4);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 240, 0, 0.1);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.97);
  border-bottom-color: rgba(200, 240, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0;
}

.logo-easy {
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--gray-200);
}

.logo-boost {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--lime);
  line-height: 1;
}

.logo-tech {
  font-family: var(--font-sub);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--gray-300);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-sub);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-200);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link.active {
  color: var(--lime);
}

.btn-nav {
  background: var(--lime);
  color: var(--black) !important;
  padding: 0.5rem 1.25rem;
  font-weight: 700;
}

.btn-nav::after { display: none; }

.btn-nav:hover {
  background: var(--lime-bright);
  box-shadow: 0 0 20px rgba(200, 240, 0, 0.4);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--black);
  overflow: hidden;
  padding-top: 70px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 240, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 240, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 240, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 240, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lime-dim);
  border: 1px solid rgba(200, 240, 0, 0.2);
  color: var(--lime);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-tag i {
  font-size: 0.65rem;
  animation: pulse 1.5s ease infinite;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-title .line-white { color: var(--white); }
.hero-title .line-lime  { color: var(--lime); }

.hero-subtitle {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-200);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.6s 0.4s ease both;
}

.hero-services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s 0.5s ease both;
}

.hero-tag-item {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-300);
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--gray-600);
  border-radius: 3px;
  transition: all var(--transition);
}
.hero-tag-item:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.6s 0.6s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
  z-index: 2;
}
.hero-scroll i { color: var(--lime); font-size: 1rem; }

/* ---------- Services Section ---------- */
.services-section {
  padding: 7rem 0;
  background: var(--gray-900);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: rgba(200, 240, 0, 0.3);
  background: var(--gray-750);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(200, 240, 0, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--lime-dim);
  border: 1px solid rgba(200, 240, 0, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(200, 240, 0, 0.15);
  border-color: var(--lime);
  box-shadow: 0 0 20px rgba(200, 240, 0, 0.2);
}

.service-icon i {
  font-size: 1.4rem;
  color: var(--lime);
}

.service-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}

.service-feature {
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-300);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-feature i {
  color: var(--lime);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.service-link {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.service-card:hover .service-link {
  gap: 0.75rem;
}

/* ---------- Stats Section ---------- */
.stats-section {
  padding: 5rem 0;
  background: var(--lime);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: 'BOOST';
  position: absolute;
  font-family: var(--font-head);
  font-size: 20rem;
  color: rgba(0,0,0,0.05);
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--black);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
  margin-top: 0.5rem;
  display: block;
}

/* ---------- Portfolio Section ---------- */
.portfolio-section {
  padding: 7rem 0;
  background: var(--black);
}

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--gray-600);
  border-radius: 3px;
  background: transparent;
  color: var(--gray-300);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--lime);
  color: var(--lime);
  background: var(--lime-dim);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  transition: all 0.4s ease;
  aspect-ratio: 4/3;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(200, 240, 0, 0.3);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.06);
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-800) 100%);
  position: relative;
}

.portfolio-placeholder-icon {
  font-size: 3rem;
  opacity: 0.15;
  color: var(--lime);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transform: translateY(2rem);
  opacity: 0;
  transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-always-visible {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.portfolio-cat {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.3rem;
  display: block;
}

.portfolio-title {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.portfolio-brief {
  font-size: 0.85rem;
  color: var(--gray-200);
  margin-bottom: 1rem;
}

/* ---------- About Preview Section ---------- */
.about-preview {
  padding: 7rem 0;
  background: var(--gray-900);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/6;
  background: var(--gray-700);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-800) 100%);
  font-family: var(--font-head);
  font-size: 8rem;
  color: var(--lime);
  opacity: 0.15;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--lime);
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  width: 130px;
}

.about-badge-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  line-height: 1;
  display: block;
}

.about-badge-label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.2rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.value-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.value-text {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-200);
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 7rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200, 240, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta-title .lime { color: var(--lime); }

.cta-sub {
  font-size: 1.05rem;
  color: var(--gray-200);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Services Page Detailed ---------- */
.page-hero {
  padding: 8rem 0 5rem;
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 240, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 240, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.page-hero-title span { color: var(--lime); }

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--gray-200);
  max-width: 560px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--gray-300); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb i { font-size: 0.6rem; }
.breadcrumb span { color: var(--lime); }

/* Services detail page */
.service-detail {
  padding: 6rem 0;
}

.service-detail:nth-child(even) {
  background: var(--gray-900);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse > * {
  direction: ltr;
}

.service-detail-visual {
  border-radius: var(--radius-lg);
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail-icon-bg {
  font-size: 8rem;
  color: var(--lime);
  opacity: 0.1;
}

.service-detail-label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}

.service-detail-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 0.95;
}

.service-detail-title span { color: var(--lime); }

.service-detail-desc {
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sub);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-200);
}

.feature-item i {
  color: var(--lime);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ---------- Portfolio Page ---------- */
.portfolio-page {
  padding: 5rem 0 7rem;
}

.portfolio-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

/* ---------- About Full Page ---------- */
.about-story {
  padding: 7rem 0;
  background: var(--gray-900);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story-content p {
  color: var(--gray-200);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.team-section {
  padding: 7rem 0;
  background: var(--black);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease;
}

.team-card:hover {
  border-color: rgba(200, 240, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--lime);
  opacity: 0.6;
}

.team-info {
  padding: 1.25rem 1rem;
}

.team-name {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.team-role {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}

.values-section {
  padding: 7rem 0;
  background: var(--gray-900);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all 0.4s ease;
}

.value-card:hover {
  border-color: rgba(200, 240, 0, 0.3);
  transform: translateY(-4px);
}

.value-card-icon {
  font-size: 1.75rem;
  color: var(--lime);
  margin-bottom: 1rem;
}

.value-card-title {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.value-card-desc {
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.6;
}

/* ---------- Contact Page ---------- */
.contact-section {
  padding: 5rem 0 7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-title {
  font-family: var(--font-head);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: var(--gray-700);
  border: 1px solid var(--gray-500);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--lime);
  background: var(--gray-600);
  box-shadow: 0 0 0 3px rgba(200, 240, 0, 0.1);
}

.form-control::placeholder {
  color: var(--gray-400);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23888'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

select.form-control option {
  background: var(--gray-800);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem;
}

.form-alert {
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-alert-success {
  background: rgba(200, 240, 0, 0.1);
  border: 1px solid rgba(200, 240, 0, 0.3);
  color: var(--lime);
}

.form-alert-error {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff8080;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact-info-item:hover {
  border-color: rgba(200, 240, 0, 0.3);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--lime-dim);
  border: 1px solid rgba(200, 240, 0, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: var(--lime);
  font-size: 1rem;
}

.contact-info-label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}

.contact-info-value {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.contact-social-title {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin: 1.5rem 0 0.75rem;
}

.contact-social-links {
  display: flex;
  gap: 0.6rem;
}

.contact-social-link {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.contact-social-link:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: var(--lime-dim);
}

/* ---------- Downloads Page ---------- */
.downloads-section {
  padding: 5rem 0 7rem;
}

.downloads-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.download-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s ease;
}

.download-card:hover {
  border-color: rgba(200, 240, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.download-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.download-icon {
  width: 54px;
  height: 54px;
  background: var(--lime-dim);
  border: 1px solid rgba(200, 240, 0, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--lime);
}

.download-meta {
  flex: 1;
}

.download-name {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.download-version {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}

.download-desc {
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.6;
  flex: 1;
}

.download-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-600);
}

.download-stats {
  display: flex;
  gap: 1rem;
}

.download-stat {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.download-stat i {
  font-size: 0.7rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.download-btn:hover {
  background: var(--lime-bright);
  box-shadow: 0 0 20px rgba(200, 240, 0, 0.4);
  transform: translateY(-1px);
}

.downloads-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--gray-400);
}

.downloads-empty i {
  font-size: 3rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--gray-900);
  border-top: 1px solid var(--gray-700);
}

.footer-main {
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.footer-logo .logo-boost {
  font-size: 2rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--gray-700);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-300);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--black);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-300);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
}

.contact-item i {
  color: var(--lime);
  font-size: 0.85rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.btn-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  transition: all var(--transition);
}

.btn-footer:hover {
  background: var(--lime-bright);
  box-shadow: 0 0 20px rgba(200, 240, 0, 0.3);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--lime);
}

/* ---------- 404 / 500 ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 70px;
}

.error-code {
  font-family: var(--font-head);
  font-size: clamp(6rem, 20vw, 16rem);
  color: var(--lime);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
}

.error-content {
  position: relative;
  z-index: 1;
}

.error-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid,
  .service-detail-grid,
  .contact-grid,
  .about-story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail-grid.reverse { direction: ltr; }
  .about-badge { right: 1rem; bottom: 1rem; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    width: 100%;
    text-align: center;
  }

  .btn-nav {
    width: 80%;
    text-align: center;
    justify-content: center;
  }

  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(3rem, 12vw, 6rem); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }

  .portfolio-grid,
  .portfolio-page-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .features-list { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
}
