/* ============================================
   SUPPORTIXIT - UI Components
   ============================================ */

/* ════════════════════════════════════════════
   1. BUTTONS
   ════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--t-base);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: var(--t-fast);
}

.btn:hover::before {
  opacity: 1;
}

/* Green primary */
.btn-green {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0f1221;
  box-shadow: 0 4px 18px rgba(172, 209, 38, 0.3);
}

.btn-green:hover {
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-2px);
}

/* Red primary (CTA) */
.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 4px 18px rgba(230, 53, 53, 0.3);
}

.btn-red:hover {
  box-shadow: var(--shadow-red-glow);
  transform: translateY(-2px);
}

/* Outline */
.btn-outline {
  background: transparent;
  border-color: rgba(172, 209, 38, 0.4);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(172, 209, 38, 0.08);
  transform: translateY(-2px);
}

/* Ghost */
.btn-ghost {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  color: var(--text-primary);
  backdrop-filter: var(--glass-blur);
}

.btn-ghost:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

/* Sizes */
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
}

.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: var(--text-lg);
}

.btn-xl {
  padding: 1.1rem 2.8rem;
  font-size: var(--text-xl);
}

.btn-full {
  width: 100%;
}


/* ════════════════════════════════════════════
   2. GLASS CARD
   ════════════════════════════════════════════ */

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(172, 209, 38, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.glass-card-flat {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}


/* ════════════════════════════════════════════
   3. NAVIGATION
   ════════════════════════════════════════════ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-block: 1rem;
  background: rgba(15, 18, 33, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(172, 209, 38, 0.08);
  transition: var(--t-base);
}

#navbar.scrolled {
  padding-block: 0.6rem;
  background: rgba(15, 18, 33, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-full);
  transition: var(--t-base);
  letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: rgba(172, 209, 38, 0.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 0.5rem 1.4rem;
  border-radius: var(--r-full);
  transition: var(--t-base);
  box-shadow: 0 3px 14px rgba(230, 53, 53, 0.3);
}

.nav-cta:hover {
  box-shadow: var(--shadow-red-glow);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 7px;
  transition: var(--t-base);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--t-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
#menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  backdrop-filter: blur(4px);
}

#menu-overlay.active {
  display: block;
}

#mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(19, 22, 41, 0.97);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  z-index: 999;
  padding: var(--sp-6);
  flex-direction: column;
  gap: var(--sp-2);
}

#mobile-menu.open {
  display: flex;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  transition: var(--t-fast);
  display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--accent);
  background: rgba(172, 209, 38, 0.08);
}

.mobile-cta {
  margin-top: var(--sp-4);
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .nav-cta-wrap {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}


/* ════════════════════════════════════════════
   4. HERO SECTION
   ════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: var(--sp-24);
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(172, 209, 38, 0.1);
  border: 1px solid rgba(172, 209, 38, 0.2);
  color: var(--accent);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
  letter-spacing: 0.08em;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--sp-5);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--sp-8);
  max-width: 50ch;
}

.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}

/* Stats bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--glass-border);
}

.hero-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--sp-1);
  letter-spacing: 0.04em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.hero-img-wrap img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(172, 209, 38, 0.15);
}

/* Floating badges on hero */
.hero-badge {
  position: absolute;
  background: var(--glass-bg-mid);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-heading);
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}

.hero-badge .badge-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero-badge-1 {
  top: 10%;
  left: 7%;
}

.hero-badge-2 {
  bottom: 12%;
  right: 7%;
}

.hero-badge-3 {
  bottom: 45%;
  left: 7%;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

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

  .hero-visual {
    display: none;
  }
}


/* ════════════════════════════════════════════
   5. PAGE HERO (Inner Pages)
   ════════════════════════════════════════════ */

.page-hero {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: var(--sp-16);
  text-align: center;
  position: relative;
}

.page-hero-title {
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
  margin-bottom: var(--sp-4);
}

.page-hero-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 55ch;
  margin-inline: auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  justify-content: center;
  margin-bottom: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: var(--t-fast);
}

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

.breadcrumb .sep {
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--accent);
}


/* ════════════════════════════════════════════
   6. SERVICE CARDS
   ════════════════════════════════════════════ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6);
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: var(--t-base);
}

.service-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}

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

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(172, 209, 38, 0.15), rgba(172, 209, 38, 0.05));
  border: 1px solid rgba(172, 209, 38, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: var(--sp-5);
  transition: var(--t-base);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, rgba(172, 209, 38, 0.25), rgba(172, 209, 38, 0.1));
  box-shadow: var(--shadow-glow);
}

.service-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.service-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.service-features {
  list-style: none;
  margin-bottom: var(--sp-5);
}

.service-features li {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: var(--sp-1) 0;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
}

.service-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: var(--t-fast);
}

.service-link:hover {
  gap: var(--sp-3);
}


/* ════════════════════════════════════════════
   7. STATS BAR
   ════════════════════════════════════════════ */

.stats-section {
  padding-block: var(--sp-16);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: var(--glass-border);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
  }

  .stat-item::after {
    display: none;
  }
}


/* ════════════════════════════════════════════
   8. FEATURE CARDS (Why Choose Us)
   ════════════════════════════════════════════ */

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  text-align: center;
  transition: var(--t-base);
}

.feature-card:hover {
  border-color: rgba(172, 209, 38, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, rgba(172, 209, 38, 0.15), rgba(172, 209, 38, 0.05));
  border: 1px solid rgba(172, 209, 38, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  margin: 0 auto var(--sp-5);
}

.feature-title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.feature-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ════════════════════════════════════════════
   9. PROCESS STEPS
   ════════════════════════════════════════════ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(33.33% - 20px);
  right: calc(33.33% - 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent 50%, var(--accent));
  opacity: 0.25;
}

.process-step {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
}

.process-num {
  width: 70px;
  height: 70px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0f1221;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  box-shadow: 0 6px 20px rgba(172, 209, 38, 0.3);
}

.process-title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.process-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid::before {
    display: none;
  }
}


/* ════════════════════════════════════════════
   10. TESTIMONIALS SLIDER
   ════════════════════════════════════════════ */

.testimonial-section {
  overflow: hidden;
}

.testimonial-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-10) var(--sp-12);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--sp-6);
  left: var(--sp-10);
  font-size: 6rem;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.testi-text {
  font-size: var(--text-lg);
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #0f1221;
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
}

.testi-role {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.testi-stars {
  color: #fbbf24;
  margin-bottom: var(--sp-4);
  font-size: var(--text-lg);
}

/* Controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.testi-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t-base);
  font-size: var(--text-base);
}

.testi-btn:hover {
  background: rgba(172, 209, 38, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.testi-dots {
  display: flex;
  gap: var(--sp-2);
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: var(--glass-border);
  border: none;
  cursor: pointer;
  transition: var(--t-base);
}

.testi-dot.active {
  background: var(--accent);
  width: 24px;
  box-shadow: 0 0 8px rgba(172, 209, 38, 0.5);
}

@media (max-width: 640px) {
  .testimonial-card {
    padding: var(--sp-8) var(--sp-6);
  }

  .testimonial-card::before {
    font-size: 4rem;
    top: var(--sp-4);
    left: var(--sp-6);
  }

  .testi-text {
    font-size: var(--text-base);
  }
}


/* ════════════════════════════════════════════
   11. CLIENT LOGOS STRIP
   ════════════════════════════════════════════ */

.logos-strip {
  overflow: hidden;
  padding-block: var(--sp-8);
  position: relative;
}

.logos-strip::before,
.logos-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logos-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.logos-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.logos-track {
  display: flex;
  gap: var(--sp-12);
  align-items: center;
  width: max-content;
  animation: logos-scroll 30s linear infinite;
}

.logo-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--t-base);
  min-width: 130px;
}

.logo-item:hover {
  color: var(--accent);
  border-color: rgba(172, 209, 38, 0.3);
}

@keyframes logos-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* ════════════════════════════════════════════
   12. CTA BANNER
   ════════════════════════════════════════════ */

.cta-banner {
  background: linear-gradient(135deg, rgba(172, 209, 38, 0.12) 0%, rgba(172, 209, 38, 0.04) 50%, rgba(230, 53, 53, 0.08) 100%);
  border: 1px solid rgba(172, 209, 38, 0.2);
  border-radius: var(--r-xl);
  padding: var(--sp-16) var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(172, 209, 38, 0.12) 0%, transparent 70%);
  border-radius: var(--r-full);
  pointer-events: none;
}

.cta-banner-title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  margin-bottom: var(--sp-4);
}

.cta-banner-sub {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--sp-8);
  max-width: 55ch;
  margin-inline: auto;
}

.cta-banner-btns {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}


/* ════════════════════════════════════════════
   13. PRICING CARDS
   ════════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: start;
}

.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-10);
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  background: linear-gradient(135deg, rgba(172, 209, 38, 0.08), rgba(172, 209, 38, 0.03));
  border-color: rgba(172, 209, 38, 0.35);
  transform: scale(1.04);
  box-shadow: var(--shadow-glow);
}

.popular-badge {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0f1221;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
}

.pricing-plan {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.pricing-price sub {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-secondary);
  vertical-align: bottom;
  margin-bottom: 4px;
  display: inline-block;
}

.pricing-period {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
}

.pricing-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--sp-6);
  line-height: 1.7;
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--glass-border);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--sp-8);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.pricing-features li .check {
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-features li .cross {
  color: var(--text-muted);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: scale(1);
  }
}


/* ════════════════════════════════════════════
   14. FAQ ACCORDION
   ════════════════════════════════════════════ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--t-base);
}

.faq-item.open {
  border-color: rgba(172, 209, 38, 0.3);
  box-shadow: 0 0 20px rgba(172, 209, 38, 0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--r-full);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--t-base);
  color: var(--accent);
  font-size: var(--text-xs);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(172, 209, 38, 0.1);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-body p {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.8;
}


/* ════════════════════════════════════════════
   15. CONTACT FORM
   ════════════════════════════════════════════ */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-12);
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  transition: var(--t-base);
}

.contact-info-card:hover {
  border-color: rgba(172, 209, 38, 0.3);
  transform: translateX(4px);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(172, 209, 38, 0.15), rgba(172, 209, 38, 0.05));
  border: 1px solid rgba(172, 209, 38, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
}

.contact-info-value {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
}

.contact-form-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-10);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.form-label .req {
  color: var(--red);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  width: 100%;
  transition: var(--t-base);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  background: rgba(172, 209, 38, 0.04);
  box-shadow: 0 0 0 3px rgba(172, 209, 38, 0.1);
}

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

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

.form-select {
  cursor: pointer;
}

.form-select option {
  background: var(--bg-3);
  color: var(--text-primary);
}

.honeypot {
  display: none !important;
}

.form-submit-wrap {
  margin-top: var(--sp-2);
}

/* Spinner on submit */
.btn-loading {
  position: relative;
  pointer-events: none;
}

.btn-loading .btn-text {
  opacity: 0;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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


/* ════════════════════════════════════════════
   16. BLOG CARDS
   ════════════════════════════════════════════ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.blog-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t-base);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.blog-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}

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

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

.blog-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  color: var(--accent);
}

.blog-cat {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0f1221;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: var(--r-full);
}

.blog-body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}

.blog-meta i {
  color: var(--accent);
}

.blog-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--sp-3);
  transition: var(--t-fast);
}

.blog-card:hover .blog-title {
  color: var(--accent);
}

.blog-excerpt {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--sp-4);
}

.blog-read-more {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: auto;
  transition: var(--t-fast);
}

.blog-read-more:hover {
  gap: var(--sp-3);
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


/* ════════════════════════════════════════════
   17. FOOTER
   ════════════════════════════════════════════ */

.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--glass-border);
  padding-top: var(--sp-16);
  margin-top: var(--sp-24);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand .logo {
  height: 33px;
  width: 235px;
  margin-bottom: var(--sp-4);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
  max-width: 30ch;
}

.footer-socials {
  display: flex;
  gap: var(--sp-3);
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  transition: var(--t-base);
}

.social-link:hover {
  background: rgba(172, 209, 38, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: var(--t-fast);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer-link:hover {
  color: var(--accent);
  padding-left: var(--sp-2);
}

.footer-link i {
  color: var(--accent);
  font-size: var(--text-xs);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-5);
}

.footer-copy {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

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

.footer-bottom-links {
  display: flex;
  gap: var(--sp-6);
}

.footer-bottom-links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: var(--t-fast);
}

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

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* ════════════════════════════════════════════
   18. WHATSAPP FAB
   ════════════════════════════════════════════ */

.whatsapp-fab {
  position: fixed;
  /* bottom: var(--sp-6);
  right: var(--sp-6); */
  bottom: 31px;
  right: 212px;
  width: 58px;
  height: 58px;
  border-radius: var(--r-full);
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2.5s ease-out infinite;
  transition: var(--t-base);
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  background: #20ba5a;
}

.whatsapp-fab-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-3);
  color: var(--text-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  border: 1px solid var(--glass-border);
  opacity: 0;
  pointer-events: none;
  transition: var(--t-base);
}

.whatsapp-fab:hover .whatsapp-fab-tooltip {
  opacity: 1;
}

@media (max-width: 480px) {
  .whatsapp-fab {
    bottom: 23px;
    right: 198px;
    width: 58px;
    height: 58px;
    z-index: 99999;
  }

  .glass-card-services {
    display: none;
  }
}


/* ════════════════════════════════════════════
   19. TOAST NOTIFICATIONS
   ════════════════════════════════════════════ */

.toast {
  position: fixed;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bg-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 500;
  z-index: 10000;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-success {
  border-color: rgba(172, 209, 38, 0.4);
  color: var(--text-primary);
}

.toast-success i {
  color: var(--accent);
  font-size: var(--text-lg);
}

.toast-error {
  border-color: rgba(230, 53, 53, 0.4);
  color: var(--text-primary);
}

.toast-error i {
  color: var(--red);
  font-size: var(--text-lg);
}


/* ════════════════════════════════════════════
   20. TIMELINE (About Page)
   ════════════════════════════════════════════ */

.timeline {
  position: relative;
  padding-left: var(--sp-10);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--sp-10);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-2.5rem - 6px);
  top: -3px;
  width: 14px;
  height: 14px;
  border-radius: var(--r-full);
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 10px rgba(172, 209, 38, 0.5);
}

.timeline-year {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.timeline-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ════════════════════════════════════════════
   21. SKILL BADGES
   ════════════════════════════════════════════ */

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.skill-tag {
  background: rgba(172, 209, 38, 0.08);
  border: 1px solid rgba(172, 209, 38, 0.2);
  color: var(--accent);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  transition: var(--t-fast);
}

.skill-tag:hover {
  background: rgba(172, 209, 38, 0.15);
  border-color: var(--accent);
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  padding: 0.4rem 1rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-badge i {
  color: var(--accent);
}


/* ════════════════════════════════════════════
   22. SECTION DIVIDER
   ════════════════════════════════════════════ */

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin-block: var(--sp-4);
}

/* ════════════════════════════════════════════
   23. BACK TO TOP
   ════════════════════════════════════════════ */

#back-top {
  position: fixed;
  bottom: 108px;
  right: 28px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--glass-bg-mid);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: var(--t-base);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
}

#back-top.visible {
  opacity: 1;
  pointer-events: all;
}

#back-top:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* ════════════════════════════════════════════
   24. MAPS EMBED PLACEHOLDER
   ════════════════════════════════════════════ */

.map-placeholder {
  background: var(--bg-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-3);
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-top: var(--sp-8);
}

.map-placeholder i {
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.5;
}