/* ================================================
   SURACODE STUDIO V2 — DARK GLASSMORPHISM PREMIUM
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Core Palette */
  --bg-void:        #020c0b;
  --bg-deep:        #041a17;
  --bg-surface:     #071f1c;
  --bg-elevated:    #0c2d29;

  /* Emerald */
  --emerald-glow:   #00c896;
  --emerald-mid:    #00a87d;
  --emerald-soft:   #064e3b;
  --emerald-muted:  rgba(0,200,150,0.08);

  /* Gold */
  --gold:           #f0b429;
  --gold-glow:      rgba(240,180,41,0.18);
  --gold-soft:      rgba(240,180,41,0.10);

  /* Glass */
  --glass-white:    rgba(255,255,255,0.04);
  --glass-border:   rgba(255,255,255,0.07);
  --glass-hover:    rgba(255,255,255,0.08);
  --glass-strong:   rgba(0,200,150,0.06);

  /* Text */
  --text-primary:   #f0faf8;
  --text-secondary: rgba(240,250,248,0.65);
  --text-muted:     rgba(240,250,248,0.42);

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg-void);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ================================================
   ANIMATED BACKGROUND CANVAS
   ================================================ */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-wrapper {
  position: relative;
  z-index: 1;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

/* ================================================
   LOADER
   ================================================ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-void);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 80px;
  height: 80px;
  position: relative;
  margin-bottom: 28px;
}

.loader-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--emerald-glow);
  border-right-color: var(--gold);
  animation: spin 1.2s linear infinite;
}

.loader-ring::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(0,200,150,0.15);
}

.loader-logo {
  position: absolute;
  inset: 16px;
  object-fit: contain;
  border-radius: 50%;
}

.loader-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.loader-bar {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--emerald-glow), var(--gold));
  border-radius: 50px;
  animation: barSlide 1.2s infinite ease-in-out;
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes barSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ================================================
   SCROLLBAR
   ================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--emerald-soft); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--emerald-glow); }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  background: rgba(2,12,11,0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  padding: 18px 0;
}

.navbar.scrolled {
  background: rgba(4,26,23,0.92);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 0 60px rgba(0,0,0,0.5),
              0 0 0 1px rgba(0,200,150,0.04) inset;
  padding: 12px 0;
}

.nav-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,200,150,0.4));
}

.navbar-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-primary) !important;
  letter-spacing: -0.5px;
}

.brand-highlight { color: var(--gold); }

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 4px !important;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--emerald-glow), var(--gold));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary) !important;
}

.nav-link:hover::after { width: 100%; }

/* ================================================
   BUTTONS
   ================================================ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #e8a800);
  border: none;
  color: #0a0a0a;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 11px 22px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240,180,41,0.35),
              0 0 60px rgba(240,180,41,0.15);
  color: #0a0a0a;
}

.btn-gold:hover::before { opacity: 1; }

.btn-outline-light-custom {
  border: 1px solid var(--glass-border);
  background: var(--glass-white);
  color: var(--text-primary);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 11px 22px;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
  background: var(--glass-hover);
  border-color: rgba(0,200,150,0.3);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ================================================
   LANGUAGE BUTTON
   ================================================ */
.lang-btn {
  border: 1px solid var(--glass-border);
  background: var(--glass-white);
  color: var(--text-secondary);
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.lang-btn:hover {
  border-color: rgba(0,200,150,0.3);
  color: var(--text-primary);
}

.lang-btn.active {
  background: rgba(0,200,150,0.12);
  border-color: rgba(0,200,150,0.4);
  color: var(--emerald-glow);
}

/* ================================================
   GHOST REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emerald-glow);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(0,200,150,0.08);
  border: 1px solid rgba(0,200,150,0.18);
  border-radius: 50px;
}

.section-eyebrow i { font-size: 0.85rem; }

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.section-title span { color: var(--gold); }

.section-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

/* ================================================
   HERO
   ================================================ */
.hero-section {
  min-height: 100vh;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Radial glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,200,150,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240,180,41,0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,200,150,0.06) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation: orbFloat 12s ease-in-out infinite 2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -20px) scale(1.05); }
  66%       { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,200,150,0.08);
  border: 1px solid rgba(0,200,150,0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  backdrop-filter: blur(8px);
}

.hero-badge i { color: var(--emerald-glow); }

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--emerald-glow);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
  box-shadow: 0 0 6px var(--emerald-glow);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 650px;
}

.hero-title .line-gold { color: var(--gold); }
.hero-title .line-glow {
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,200,150,0.5);
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.8;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.feature-pill i { color: var(--emerald-glow); font-size: 1rem; }

.feature-pill:hover {
  border-color: rgba(0,200,150,0.25);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* Hero Card */
.hero-card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 30px;
  backdrop-filter: blur(20px) saturate(150%);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,150,0.4), rgba(240,180,41,0.2), transparent);
}

.hero-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,200,150,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-card:hover {
  border-color: rgba(0,200,150,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4),
              0 0 0 1px rgba(0,200,150,0.08) inset;
  transform: translateY(-8px);
}

.hero-card-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0,200,150,0.3));
}

.hero-card-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.hero-card-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-card-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 18px 0;
}

.hero-card-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-card-item:last-child { margin-bottom: 0; }

.hero-card-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: rgba(0,200,150,0.1);
  border: 1px solid rgba(0,200,150,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-icon i { color: var(--emerald-glow); font-size: 1rem; }

.hero-card-item h6 {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.hero-card-item p {
  margin: 3px 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Hero floating badge */
.hero-float-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.25);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 18px;
  width: 100%;
}

.hero-float-badge i { color: var(--gold); font-size: 1.3rem; }

.hero-float-badge strong { font-size: 1.1rem; color: var(--gold); }
.hero-float-badge span { font-size: 0.8rem; color: var(--text-muted); display: block; }

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
  padding: 80px 0;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,200,150,0.03) 50%, transparent);
  pointer-events: none;
}

.stat-card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,200,150,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3),
              0 0 40px rgba(0,200,150,0.05);
}

.stat-card:hover::before { opacity: 1; }

.stat-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(0,200,150,0.08);
  border: 1px solid rgba(0,200,150,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: rgba(0,200,150,0.14);
  box-shadow: 0 0 20px rgba(0,200,150,0.15);
}

.stat-icon i { font-size: 1.5rem; color: var(--emerald-glow); }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 6px;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.stat-label {
  margin: 0;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section {
  padding: 100px 0;
  position: relative;
}

.service-card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0,200,150,0.06) 0%, transparent 70%);
  pointer-events: none;
  transition: all 0.4s ease;
}

.service-card:hover::after {
  bottom: -40px;
  right: -40px;
  background: radial-gradient(circle, rgba(0,200,150,0.12) 0%, transparent 70%);
}

.service-card.featured {
  border-color: rgba(0,200,150,0.2);
  background: rgba(0,200,150,0.04);
}

.service-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald-glow), var(--gold), transparent);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,200,150,0.25);
  box-shadow: 0 25px 70px rgba(0,0,0,0.35),
              0 0 50px rgba(0,200,150,0.06);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), #e8a800);
  color: #0a0a0a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0,200,150,0.08);
  border: 1px solid rgba(0,200,150,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(0,200,150,0.14);
  box-shadow: 0 0 20px rgba(0,200,150,0.2);
}

.service-icon i { font-size: 1.6rem; color: var(--emerald-glow); }

.service-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.service-list li {
  padding: 7px 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-glow);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0,200,150,0.5);
}

.service-list li:last-child { border-bottom: none; }

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--emerald-glow);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn i { transition: transform 0.3s ease; }

.service-btn:hover {
  color: var(--gold);
  gap: 12px;
}

.service-btn:hover i { transform: translateX(4px); }

/* ================================================
   PORTFOLIO SECTION
   ================================================ */
.portfolio-section {
  padding: 100px 0;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 280px;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  transition: all 0.4s ease;
  cursor: pointer;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.6) saturate(0.8);
}

.portfolio-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.4) saturate(0.6);
}

.portfolio-card:hover {
  border-color: rgba(0,200,150,0.25);
  box-shadow: 0 25px 70px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(2,12,11,0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
  background: linear-gradient(180deg, rgba(2,12,11,0.2) 0%, rgba(2,12,11,0.92) 100%);
}

.portfolio-content { width: 100%; }

.portfolio-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--emerald-glow);
  padding: 4px 10px;
  background: rgba(0,200,150,0.1);
  border: 1px solid rgba(0,200,150,0.2);
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 8px;
}

.portfolio-content h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-size: 1rem;
}

.portfolio-content p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: none;
  line-height: 1.6;
}

.portfolio-card:hover .portfolio-content p { display: block; }

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.portfolio-link:hover { gap: 10px; color: var(--gold); }

/* ================================================
   PRICING SECTION
   ================================================ */
.pricing-section { padding: 100px 0; }

.pricing-card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card.featured {
  border-color: rgba(0,200,150,0.25);
  background: rgba(0,200,150,0.04);
  box-shadow: 0 0 60px rgba(0,200,150,0.08),
              0 0 0 1px rgba(0,200,150,0.1) inset;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald-glow), var(--gold), transparent);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,200,150,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4),
              0 0 60px rgba(0,200,150,0.06);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--emerald-glow), var(--emerald-mid));
  color: var(--bg-void);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.pricing-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 0;
  letter-spacing: -1px;
  line-height: 1;
}

.price-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
  margin-right: 4px;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 8px 0 24px;
  font-weight: 600;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.pricing-list li {
  padding: 9px 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-list li::before {
  content: '✓';
  color: var(--emerald-glow);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: rgba(0,200,150,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.pricing-list li:last-child { border-bottom: none; }

.btn-outline-pricing {
  border: 1px solid var(--glass-border);
  background: var(--glass-white);
  color: var(--text-primary);
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 12px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-outline-pricing:hover {
  border-color: rgba(0,200,150,0.3);
  background: rgba(0,200,150,0.06);
  color: var(--emerald-glow);
  transform: translateY(-2px);
}

/* Custom Plan Box */
.custom-plan-box {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.custom-plan-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,180,41,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.custom-plan-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.custom-plan-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.pricing-footer {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ================================================
   WHY SECTION
   ================================================ */
.why-section { padding: 100px 0; }

.why-list { display: flex; flex-direction: column; gap: 14px; }

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 12px 16px;
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.why-item:hover {
  border-color: rgba(0,200,150,0.2);
  color: var(--text-primary);
  transform: translateX(6px);
}

.why-item i {
  color: var(--emerald-glow);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  height: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover::before { opacity: 1; }

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,200,150,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0,200,150,0.08);
  border: 1px solid rgba(0,200,150,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
  background: rgba(0,200,150,0.14);
  box-shadow: 0 0 16px rgba(0,200,150,0.2);
}

.why-card-icon i { font-size: 1.4rem; color: var(--emerald-glow); }

.why-card h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.why-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ================================================
   TESTIMONIAL SECTION
   ================================================ */
.testimonial-section { padding: 100px 0; }

.testimonial-card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  max-width: 850px;
  margin: auto;
  position: relative;
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,150,0.3), rgba(240,180,41,0.2), transparent);
}

.quote-icon {
  font-size: 2.8rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--emerald-glow), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  display: block;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 10px;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-glow), var(--emerald-mid));
  color: var(--bg-void);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0,200,150,0.3);
}

.testimonial-profile h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.testimonial-profile small {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.testimonial-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* Carousel */
.carousel-control-prev,
.carousel-control-next {
  width: 42px;
  height: 42px;
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-control-prev { left: -50px; }
.carousel-control-next { right: -50px; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(0,200,150,0.1);
  border-color: rgba(0,200,150,0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 16px;
  height: 16px;
}

.carousel-indicators {
  position: relative;
  bottom: auto;
  margin-top: 28px;
  gap: 8px;
  justify-content: center;
}

.carousel-indicators [data-bs-target] {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--glass-border);
  border: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background: var(--emerald-glow);
  width: 22px;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(0,200,150,0.5);
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section { padding: 100px 0; }

.custom-accordion .accordion-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--glass-white);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
  border-color: rgba(0,200,150,0.2);
}

.custom-accordion .accordion-button {
  font-weight: 700;
  padding: 20px 24px;
  background: transparent;
  color: var(--text-primary);
  font-size: 0.95rem;
  box-shadow: none !important;
}

.custom-accordion .accordion-button::after {
  filter: brightness(0) invert(0.6);
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: rgba(0,200,150,0.04);
  color: var(--emerald-glow);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  filter: none;
}

.custom-accordion .accordion-body {
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.75;
  background: transparent;
  padding: 0 24px 22px;
  font-size: 0.92rem;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section { padding: 100px 0; }

.contact-info-card,
.contact-form-card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  height: 100%;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before,
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,150,0.3), transparent);
}

.contact-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.contact-desc {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: 0.92rem;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  background: rgba(0,200,150,0.08);
  border: 1px solid rgba(0,200,150,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: rgba(0,200,150,0.14);
  box-shadow: 0 0 16px rgba(0,200,150,0.2);
}

.contact-icon i { font-size: 1.3rem; color: var(--emerald-glow); }

.contact-item h6 {
  font-weight: 800;
  margin-bottom: 3px;
  color: var(--text-primary);
  font-size: 0.85rem;
}

.contact-item a {
  text-decoration: none;
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.contact-item a:hover { color: var(--emerald-glow); }

/* Form */
.custom-input {
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.custom-input:focus {
  background: rgba(0,200,150,0.04);
  border-color: rgba(0,200,150,0.4);
  box-shadow: 0 0 0 3px rgba(0,200,150,0.1);
  color: var(--text-primary);
  outline: none;
}

.custom-input::placeholder { color: var(--text-muted); }

.custom-input option {
  background-color: var(--bg-surface);
  color: var(--text-primary);
}

.form-label {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ================================================
   FINAL CTA SECTION
   ================================================ */
.final-cta-section { padding: 100px 0; }

.final-cta-box {
  background: linear-gradient(135deg, rgba(0,200,150,0.08) 0%, rgba(240,180,41,0.04) 100%);
  border: 1px solid rgba(0,200,150,0.2);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.final-cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,200,150,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(240,180,41,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.final-cta-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  max-width: 680px;
}

/* ================================================
   FOOTER SECTION
   ================================================ */
.footer-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--glass-border);
  padding: 70px 0 35px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,200,150,0.3));
}

.footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--text-primary);
}

.footer-desc {
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 600;
  max-width: 420px;
  font-size: 0.9rem;
}

.footer-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text-primary);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--emerald-glow);
  transition: width 0.25s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-links a:hover::before { width: 12px; }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn i { font-size: 1.2rem; color: var(--text-muted); transition: color 0.3s ease; }

.social-btn:hover {
  background: rgba(0,200,150,0.1);
  border-color: rgba(0,200,150,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.social-btn:hover i { color: var(--emerald-glow); }

.footer-note {
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.65;
  font-size: 0.85rem;
  margin-top: 16px;
}

.footer-line {
  border-color: var(--glass-border);
  margin: 40px 0 20px;
}

.footer-copy {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.footer-dev {
  text-decoration: none;
  font-weight: 800;
  color: var(--gold);
  transition: all 0.25s ease;
}

.footer-dev:hover {
  color: var(--emerald-glow);
  text-decoration: underline;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 992px) {
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .hero-section { padding: 120px 0 80px; }
  .carousel-control-prev,
  .carousel-control-next { display: none; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .final-cta-box { padding: 40px 28px; }
  .final-cta-title { font-size: 1.7rem; }
  .testimonial-card { padding: 32px 24px; }
  .custom-plan-box { padding: 28px 24px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 1.8rem; }
  .hero-features { gap: 10px; }
  .feature-pill { font-size: 0.8rem; padding: 7px 12px; }
}