:root {
  --primary: #1877F2;
  --primary-dark: #0E63D9;
  --primary-light: rgba(24, 119, 242, 0.12);
  --gold: #C9A646;
  --gold-light: rgba(201, 166, 70, 0.15);
  --dark: #12283d;
  --darker: #1f3d5f;
  --body-bg: #ffffff;
  --surface: #f8f9fa;
  --surface2: #eef7fd;
  --text: #1a2d3e;
  --text-muted: #5a7184;
  --border: rgba(24, 119, 242, 0.2);
  --card-bg: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.95);
  --nav-text: #1a2d3e;
  --shadow: 0 8px 32px rgba(24, 119, 242, 0.15);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
}
[data-theme="dark"] {
  --body-bg: #0a1a2f;
  --surface: #0f1e2e;
  --surface2: #122436;
  --text: #e2edf5;
  --text-muted: #8aadcc;
  --border: rgba(24, 119, 242, 0.2);
  --card-bg: #0f1e2e;
  --nav-bg: rgba(10, 26, 47, 0.96);
  --nav-text: #e2edf5;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--body-bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  scroll-behavior: smooth;
  font-size: 16px;
}
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  z-index: 9999; transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--primary);
}

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; color: var(--text); }
.sec-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.urgency-tag { color: var(--gold); background: var(--gold-light); border-color: rgba(201, 166, 70, 0.3); }
.sec-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.sec-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.sec-header { margin-bottom: 0.5rem; }
.section { padding: 100px 0; }

#navbar {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  z-index: 1030;
}
#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(24, 119, 242, 0.12);
  padding: 0.5rem 0;
}
.navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 42px; width: auto; border-radius: 8px; }
.brand-seve { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 1.35rem; color: var(--primary); }
.brand-globale { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.35rem; color: var(--text); }
.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--nav-text) !important;
  padding: 0.5rem 0.8rem !important;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 70%; }
.nav-link:hover { color: var(--primary) !important; }
.ctrl-btn {
  background: var(--primary-light);
  border: 1px solid var(--border);
  color: var(--primary);
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}
.ctrl-btn:hover { background: var(--primary); color: #fff; transform: scale(1.05); }

.spiral-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  visibility: hidden; opacity: 0;
  transition: visibility 0.35s ease, opacity 0.35s ease;
  z-index: 1040;
}
.spiral-overlay.active { visibility: visible; opacity: 1; }
.spiral-menu {
  position: fixed; top: 0; left: 0;
  width: min(88%, 380px); height: 100%;
  background: linear-gradient(145deg, #071320 0%, #0c1b2a 100%);
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.5);
  z-index: 1050;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
  display: flex; flex-direction: column;
  overflow-y: auto;
  border-radius: 0 32px 32px 0;
  border-right: 1px solid rgba(24, 119, 242, 0.25);
}
.spiral-menu.open {
  transform: translateX(0);
  animation: spiralReveal 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes spiralReveal {
  0% { transform: translateX(-100%) rotate(-180deg) scale(0.5); opacity: 0; }
  40% { transform: translateX(0) rotate(5deg) scale(1.02); }
  100% { transform: translateX(0) rotate(0deg) scale(1); opacity: 1; }
}
.spiral-menu.closing {
  animation: spiralClose 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
@keyframes spiralClose {
  0% { transform: translateX(0) rotate(0deg) scale(1); opacity: 1; }
  100% { transform: translateX(-100%) rotate(180deg) scale(0.3); opacity: 0; }
}
.spiral-menu-header {
  padding: 2rem 1.8rem;
  border-bottom: 1px solid rgba(24, 119, 242, 0.15);
  display: flex; align-items: center; justify-content: space-between;
}
.spiral-menu-header .sm-brand { display: flex; align-items: center; gap: 10px; }
.spiral-menu-header .sm-logo { height: 36px; border-radius: 8px; }
.spiral-menu-header h4 {
  margin: 0; font-weight: 800;
  background: linear-gradient(135deg, #1877F2, #C9A646);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.3px; font-size: 1.4rem;
}
.close-spiral-btn {
  background: rgba(24, 119, 242, 0.15);
  border: 1px solid rgba(24, 119, 242, 0.4);
  width: 42px; height: 42px;
  border-radius: 50%; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: 0.2s; cursor: pointer; color: #1877F2;
}
.close-spiral-btn:hover { background: #e74c3c; border-color: #e74c3c; color: white; transform: rotate(90deg); }
.spiral-menu-list { list-style: none; padding: 1.5rem 0; margin: 0; flex: 1; }
.spiral-menu-list li a {
  display: flex; align-items: center; gap: 14px;
  padding: 1rem 1.8rem;
  font-weight: 500; color: #cfe8f5; text-decoration: none;
  transition: 0.25s; font-size: 1rem;
  border-left: 3px solid transparent;
}
.spiral-menu-list li a i { width: 28px; font-size: 1.1rem; color: #1877F2; transition: 0.2s; }
.spiral-menu-list li a:hover {
  background: rgba(24, 119, 242, 0.1);
  padding-left: 2.2rem; color: #1877F2;
  border-left-color: #1877F2;
}
.spiral-menu-list li a:hover i { color: var(--gold); transform: scale(1.15); }
.spiral-menu-footer {
  padding: 1.5rem 1.8rem;
  border-top: 1px solid rgba(24, 119, 242, 0.15);
  font-size: 0.8rem; color: #7fa8c2;
}
.sm-footer-actions { display: flex; gap: 10px; margin-top: 1rem; }
.sm-ctrl {
  flex: 1; background: rgba(24, 119, 242, 0.1); border: 1px solid rgba(24, 119, 242, 0.3);
  color: #1877F2; padding: 8px; border-radius: 10px; font-size: 0.8rem;
  font-weight: 600; cursor: pointer; transition: 0.2s; font-family: 'Poppins', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.sm-ctrl:hover { background: #1877F2; color: #fff; }

.spiral-toggle {
  background: linear-gradient(135deg, #1877F2, #0E63D9);
  border: none; cursor: pointer;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
  z-index: 1060; flex-shrink: 0;
}
.spiral-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(24, 119, 242, 0.6); }
.spiral-toggle-icon {
  position: relative;
  width: 24px; 
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.spiral-toggle-icon span {
  display: block; height: 2.5px; width: 100%;
  background: white; border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.spiral-toggle.open .spiral-toggle-icon span:first-child { transform: translateY(7.75px) rotate(45deg); }
.spiral-toggle.open .spiral-toggle-icon span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.spiral-toggle.open .spiral-toggle-icon span:last-child { transform: translateY(-7.75px) rotate(-45deg); }

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/images/tree.png') center/cover;
  background-attachment: fixed;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(24, 119, 242, 0.15) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201, 166, 70, 0.08) 0%, transparent 60%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-eyebrow {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px;
  color: #1877F2; margin-bottom: 1.2rem;
  font-family: 'Poppins', sans-serif;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; width: 30px; height: 2px;
  background: linear-gradient(90deg, #1877F2, transparent);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900; line-height: 1.05;
  color: #ffffff; margin-bottom: 1rem;
  text-shadow: 0 0 60px rgba(24, 119, 242, 0.3);
}
.hero-typed-wrap {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #c9dde9; margin-bottom: 0.8rem;
  font-family: 'Poppins', sans-serif; font-weight: 400;
}
.typed-hl { color: #1877F2; font-weight: 600; border-right: 2px solid #1877F2; padding-right: 3px; }
.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700; color: #ffffff;
  margin-bottom: 0.8rem;
}
.hero-sub { font-size: 1rem; color: #8cb8cc; line-height: 1.7; margin-bottom: 0; max-width: 520px; }
.hero-ctas { margin-top: 2rem; }
.btn-seve {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #1877F2, #0E63D9);
  color: #ffffff; font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  padding: 14px 28px; border-radius: 50px; text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 6px 25px rgba(24, 119, 242, 0.4);
  transition: all 0.3s;
}
.btn-seve:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(24, 119, 242, 0.5); color: #fff; }
.btn-seve.btn-xl { padding: 16px 40px; font-size: 1rem; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem;
  padding: 14px 28px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5); color: #fff; }
.hero-stats { margin-top: 2.5rem; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: #1877F2; }
.stat-plus { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.stat-lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: #8cb8cc; font-weight: 600; display: block; margin-top: 2px; }
.hero-visual {
  width: 420px; height: 420px; position: relative;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.hv-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: ringPulse 4s ease-in-out infinite;
}
.hv-ring-1 { width: 100%; height: 100%; border-color: rgba(24, 119, 242, 0.15); animation-delay: 0s; }
.hv-ring-2 { width: 78%; height: 78%; border-color: rgba(24, 119, 242, 0.25); animation-delay: 1.5s; }
@keyframes ringPulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.04); opacity: 1; } }
.hv-core {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.2), rgba(201, 166, 70, 0.15));
  border: 2px solid rgba(24, 119, 242, 0.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; position: relative; z-index: 2;
  box-shadow: 0 0 60px rgba(24, 119, 242, 0.2), inset 0 0 40px rgba(24, 119, 242, 0.1);
}
.hv-core i { 
   font-size: 2.5rem;
   color: #1877F2; 
}
.hv-core span { font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700; color: #1877F2; text-transform: uppercase; letter-spacing: 1px; }
.hv-badge {
  position: absolute; background: rgba(7, 19, 32, 0.9);
  border: 1px solid rgba(24, 119, 242, 0.3);
  border-radius: 50px; padding: 8px 16px;
  font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 600;
  color: #1877F2; display: flex; align-items: center; gap: 6px;
  backdrop-filter: blur(10px); white-space: nowrap;
  animation: badgeFloat 3s ease-in-out infinite;
}
.hv-badge i { color: var(--gold); }
.hv-b1 { top: 10%; right: -5%; animation-delay: 0s; }
.hv-b2 { bottom: 20%; right: -8%; animation-delay: 1s; }
.hv-b3 { top: 40%; left: -10%; animation-delay: 2s; }
@keyframes badgeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px; border: 2px solid rgba(24, 119, 242, 0.5);
  border-radius: 14px; display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.scroll-dot-inner {
  width: 5px; height: 8px; background: #1877F2;
  border-radius: 3px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }

.problem-section { background: var(--surface); }
.prob-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: 0.3s;
  height: 100%;
}
.prob-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prob-featured { border-color: #1877F2; background: rgba(24, 119, 242, 0.08); }
.prob-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--primary-light); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-size: 1.5rem; color: #1877F2; }
.prob-featured .prob-icon { background: rgba(24, 119, 242, 0.15); }
.prob-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.7rem; }
.prob-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.about-section { background: var(--body-bg); overflow: hidden; position: relative; }
.about-deco {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(24, 119, 242, 0.06) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.about-visual-wrap { position: relative; width: 340px; height: 340px; margin: 0 auto; }
.av-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px dashed rgba(24, 119, 242, 0.3);
  animation: avRotate 20s linear infinite;
}
@keyframes avRotate { to { transform: rotate(360deg); } }
.av-center {
  position: absolute; inset: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(201, 166, 70, 0.08));
  border: 2px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
}
.av-logo { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: #1877F2; }
.av-sub { font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }
.av-tag {
  position: absolute; background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50px; padding: 7px 14px;
  font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 600;
  color: #1877F2; display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow); white-space: nowrap;
}
.av-t1 { top: 5%; left: -10%; }
.av-t2 { bottom: 15%; right: -12%; }
.av-t3 { bottom: 5%; left: 5%; }
.about-p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.8rem; }
.slogan-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; font-size: 0.95rem; color: var(--text-muted);
}
.slogan-row i { color: #1877F2; font-size: 1rem; flex-shrink: 0; }
.slogan-row strong { color: var(--text); }

.ceo-section { background: var(--surface); }
.ceo-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: row;
  transition: 0.3s;
}
@media (max-width: 768px) { .ceo-card { flex-direction: column; } }
.ceo-card:hover { transform: translateY(-5px); box-shadow: 0 30px 80px rgba(24, 119, 242, 0.15); }
.ceo-img-wrap {
  flex: 0 0 320px;
  position: relative; overflow: hidden;
}
@media (max-width: 768px) { .ceo-img-wrap { flex: none; height: 320px; } }
.ceo-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.ceo-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(7, 19, 32, 0.9));
  padding: 2rem 1.5rem 1.5rem;
}
.ceo-name-badge { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; }
.ceo-title-badge { font-size: 0.78rem; color: #1877F2; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.ceo-content { flex: 1; padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.ceo-content blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-style: italic;
  color: var(--text);
  border-left: 3px solid #1877F2;
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.ceo-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.ceo-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.ceo-stat { text-align: center; padding: 12px 20px; background: var(--primary-light); border: 1px solid var(--border); border-radius: 12px; }
.ceo-stat-num { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800; color: #1877F2; display: block; }
.ceo-stat-lbl { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.about-subhead { max-width: 720px; margin: 5rem auto 0; }
.about-subhead:first-of-type { margin-top: 4rem; }
.vision-row { margin-top: 5rem; }

.mission-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem;
  text-align: center;
  height: 100%;
  transition: 0.3s;
}
.mission-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.mission-featured { border-color: #1877F2; background: rgba(24, 119, 242, 0.06); }
.mission-icon {
  width: 62px; height: 62px; margin: 0 auto 1.2rem;
  border-radius: 16px; background: var(--primary-light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #1877F2;
}
.mission-card h4 { font-family: 'Poppins', sans-serif; font-weight: 800; letter-spacing: 1px; font-size: 1.1rem; margin-bottom: 0.6rem; color: #1877F2; }
.mission-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  height: 100%;
  transition: 0.3s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #1877F2; }
.value-icon { font-size: 1.8rem; margin-bottom: 0.8rem; line-height: 1; }
.value-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.about-quote-block {
  max-width: 720px; margin: 4rem auto 0; text-align: center;
  padding: 2.5rem 1.5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.about-quote-block blockquote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.3rem; color: var(--text); line-height: 1.6; margin-bottom: 1.2rem;
}
.about-quote-brand { font-family: 'Poppins', sans-serif; font-weight: 900; letter-spacing: 2px; color: #1877F2; font-size: 1rem; margin-bottom: 0.4rem; }
.about-quote-tagline { font-size: 0.88rem; color: var(--text-muted); }
.vision-quote {
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.15rem;
  color: var(--gold); border-left: 3px solid var(--gold); padding-left: 1.2rem; margin-top: 1.5rem; line-height: 1.6;
}

.team-card { text-align: center; }
.team-photo {
  width: 130px; height: 130px; margin: 0 auto 1rem; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--border); box-shadow: var(--shadow);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h5 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--text); }
.team-card span { font-size: 0.78rem; color: var(--text-muted); }

.packs-section { background: var(--surface); }
.pack-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.6rem;
  height: 100%;
  text-align: center;
  position: relative;
  transition: 0.3s;
  display: flex; flex-direction: column;
}
.pack-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pack-featured { border-color: #1877F2; border-width: 2px; box-shadow: 0 15px 45px rgba(24, 119, 242, 0.15); }
.pack-enterprise { border-color: var(--gold); background: rgba(201, 166, 70, 0.05); }
.pack-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #1877F2, var(--gold)); color: #fff;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; white-space: nowrap; box-shadow: var(--shadow);
}
.pack-name { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--text); margin-top: 0.4rem; }
.pack-desc { font-size: 0.82rem; color: var(--text-muted); margin: 0.4rem 0 1.2rem; min-height: 36px; }
.pack-price { margin-bottom: 1.4rem; }
.pack-amount { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.7rem; color: #1877F2; }
.pack-currency { font-size: 0.78rem; color: var(--text-muted); display: block; margin-top: 2px; }
.pack-cta { font-size: 0.85rem; display: flex; }
.pack-cta-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); box-shadow: none; }
.pack-cta-outline:hover { background: var(--gold); color: #fff; }
.pack-features { list-style: none; padding: 1.6rem 0 0; margin: 0; text-align: left; flex: 1; }
.pack-features li {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 0.6rem 0; font-size: 0.82rem; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.pack-features li:last-child { border-bottom: none; }
.pf-label { color: var(--text); font-weight: 500; }
.pf-value { color: var(--text-muted); font-weight: 600; text-align: right; white-space: nowrap; }
.pack-features li.pf-yes .pf-label { color: var(--text); }
.pt-check { color: #1877F2; font-size: 1rem; }
.pt-dash { color: var(--text-muted); opacity: 0.35; font-size: 0.85rem; }
.pt-note { font-size: 0.8rem; color: var(--text-muted); }

.services-section { background: var(--body-bg); }
.srv-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  height: 100%;
  transition: 0.3s;
  position: relative; overflow: hidden;
}
.srv-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: linear-gradient(180deg, #1877F2, var(--gold));
  transition: height 0.3s;
}
.srv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.srv-card:hover::before { height: 100%; }
.srv-featured { border-color: #1877F2; background: rgba(24, 119, 242, 0.06); }
.srv-icon { width: 60px; height: 60px; background: var(--primary-light); border: 1px solid var(--border); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #1877F2; margin-bottom: 1.2rem; transition: 0.3s; }
.srv-card:hover .srv-icon { background: #1877F2; color: #fff; transform: scale(1.1); }
.srv-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.srv-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.2rem; }
.srv-link { font-size: 0.85rem; font-weight: 600; color: #1877F2; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: 0.2s; font-family: 'Poppins', sans-serif; }
.srv-link:hover { gap: 10px; color: var(--gold); }

.ba-section { background: var(--surface); }
.ba-card { border-radius: var(--radius); padding: 2rem; height: 100%; }
.ba-before { background: rgba(231, 76, 60, 0.06); border: 1px solid rgba(231, 76, 60, 0.2); }
.ba-after { background: rgba(24, 119, 242, 0.06); border: 1px solid var(--border); }
.ba-head { display: flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 1.2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.ba-before .ba-head { color: #e74c3c; }
.ba-after .ba-head { color: #1877F2; }
.ba-card ul { list-style: none; padding: 0; margin: 0; }
.ba-card ul li { padding: 0.5rem 0; font-size: 0.95rem; color: var(--text-muted); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.ba-card ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.ba-before ul li::before { background: #e74c3c; }
.ba-after ul li::before { background: #1877F2; }

.digital-section { background: var(--dark); position: relative; overflow: hidden; }
.digi-bg-fx {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(24, 119, 242, 0.1) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201, 166, 70, 0.08) 0%, transparent 60%);
}
.digital-section .sec-tag { color: var(--gold); background: var(--gold-light); border-color: rgba(201, 166, 70, 0.3); }
.digital-section .sec-title { color: #ffffff; }
.digital-section .sec-sub { color: #8cb8cc; }
.df-row { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: 0.95rem; color: #cfe8f5; }
.df-row i { color: #1877F2; }
.digi-results { display: flex; flex-wrap: wrap; gap: 10px; }
.dr-pill { background: rgba(24, 119, 242, 0.12); border: 1px solid rgba(24, 119, 242, 0.3); color: #1877F2; padding: 8px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 6px; font-family: 'Poppins', sans-serif; }
.pricing-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(24, 119, 242, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
}
.pricing-ribbon {
  position: absolute; top: 20px; right: -30px;
  background: linear-gradient(135deg, #1877F2, #0E63D9);
  color: white; font-size: 0.75rem; font-weight: 700;
  padding: 6px 40px; transform: rotate(45deg);
  font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 1px;
}
.pricing-intro { color: #8cb8cc; font-size: 0.9rem; margin-bottom: 1rem; }
.pricing-amount { display: flex; align-items: baseline; gap: 8px; margin-bottom: 0.5rem; }
.p-currency { font-size: 1rem; font-weight: 700; color: #1877F2; }
.p-value { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 900; color: #fff; }
.p-sub { color: #7fa8c2; font-size: 0.85rem; margin-bottom: 1.2rem; }
.p-divider { height: 1px; background: rgba(24, 119, 242, 0.2); margin: 1.2rem 0; }
.p-urgency { color: var(--gold); font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }

.offers-section { background: var(--surface); }
.offer-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative; overflow: hidden;
  height: 100%;
  transition: 0.3s;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer-featured { border-color: #1877F2; background: rgba(24, 119, 242, 0.06); }
.offer-ribbon {
  position: absolute; top: 14px; right: -12px;
  background: linear-gradient(135deg, var(--gold), #a07828);
  color: white; font-weight: 700; font-size: 0.8rem;
  padding: 4px 22px; border-radius: 3px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 3px 10px rgba(201, 166, 70, 0.4);
}
.offer-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; padding-right: 50px; }
.offer-prices { display: flex; align-items: center; gap: 12px; margin-bottom: 0.8rem; }
.old-p { color: var(--text-muted); text-decoration: line-through; font-size: 0.9rem; }
.new-p { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 800; color: #1877F2; }
.offer-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.offer-dl { font-size: 0.8rem; color: var(--gold); display: flex; align-items: center; gap: 6px; margin-bottom: 1.2rem; font-weight: 600; }

.gallery-section { background: var(--body-bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2rem; }
@media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  cursor: pointer; display: block;
  transition: 0.3s;
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(7, 19, 32, 0.9) 100%);
  opacity: 0; transition: 0.3s;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.2rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-tag {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: #1877F2; font-weight: 700; margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
}
.gallery-item-caption { font-size: 0.85rem; color: #fff; font-weight: 600; line-height: 1.3; font-family: 'Poppins', sans-serif; }
.gallery-zoom {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(24, 119, 242, 0.9); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  opacity: 0; transition: 0.3s;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }
.gallery-item-tall { grid-row: span 2; aspect-ratio: unset; }

.media-section { background: var(--surface); }
.media-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; align-items: center; gap: 1.2rem;
  transition: 0.3s; height: 100%;
}
.media-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.media-featured { border-color: #1877F2; background: rgba(24, 119, 242, 0.06); }
.media-icon-block { width: 56px; height: 56px; border-radius: 14px; background: var(--primary-light); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #1877F2; flex-shrink: 0; }
.media-cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: 600; display: block; margin-bottom: 3px; }
.media-body-block h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.media-body-block p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.clients-section { background: var(--body-bg); }
.client-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem; text-align: center;
  transition: 0.3s; height: 100%;
}
.client-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.client-featured { border-color: #1877F2; background: rgba(24, 119, 242, 0.06); }
.client-initials-wrap { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #1877F2, #0E63D9); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem; color: #fff; }
.client-card h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; }
.client-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.client-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--primary-light); border: 1px solid var(--border); border-radius: 50px; padding: 6px 14px; font-size: 0.78rem; font-weight: 600; color: #1877F2; }

.music-section { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.music-bg-layer { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.music-overlay-layer { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7, 19, 32, 0.92) 0%, rgba(7, 19, 32, 0.7) 60%, rgba(7, 19, 32, 0.5) 100%); }
.music-section .sec-title, .light-title { color: #ffffff; }
.light-sub { color: #8cb8cc; }
.music-features { display: flex; flex-direction: column; gap: 1.2rem; }
.mf-item { display: flex; align-items: flex-start; gap: 1rem; }
.mf-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(24, 119, 242, 0.15); border: 1px solid rgba(24, 119, 242, 0.3); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #1877F2; flex-shrink: 0; }
.mf-item h6 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.mf-item p { font-size: 0.88rem; color: #8cb8cc; margin: 0; }

.testi-section { background: var(--surface); }
.testi-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; height: 100%; display: flex; flex-direction: column; gap: 1rem; }
.testi-stars { color: var(--gold); display: flex; gap: 3px; }
.testi-txt { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #1877F2, #0E63D9); display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.8rem; color: #fff; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }
.swiper-pagination-bullet-active { background: #1877F2 !important; }
.swiper-button-next, .swiper-button-prev { color: #1877F2 !important; }

.contact-section { background: var(--dark); position: relative; overflow: hidden; }
.contact-shape { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(ellipse, rgba(24, 119, 242, 0.07) 0%, transparent 70%); top: -200px; left: -200px; }
.contact-section .sec-title { color: #fff; }
.contact-section .sec-sub { color: #8cb8cc; }
.contact-card {
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(24, 119, 242, 0.2);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  text-decoration: none; display: block; color: inherit;
  transition: 0.3s; height: 100%; backdrop-filter: blur(10px);
}
.contact-card:hover { transform: translateY(-6px); border-color: #1877F2; box-shadow: 0 15px 40px rgba(24, 119, 242, 0.15); }
.contact-featured { border-color: #25d366 !important; }
.contact-featured:hover { border-color: #25d366 !important; box-shadow: 0 15px 40px rgba(37, 211, 102, 0.2) !important; }
.contact-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(24, 119, 242, 0.1); border: 1px solid rgba(24, 119, 242, 0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.4rem; color: #1877F2; }
.contact-featured .contact-icon { color: #25d366; background: rgba(37, 211, 102, 0.1); border-color: rgba(37, 211, 102, 0.3); }
.contact-card h5 { color: #fff; font-weight: 700; margin-bottom: 0.4rem; }
.contact-card p { color: #7fa8c2; font-size: 0.9rem; margin: 0; }

.site-footer { background: var(--darker); }
.footer-top { padding: 60px 0 40px; border-bottom: 1px solid rgba(24, 119, 242, 0.1); }
.footer-brand { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 900; margin-bottom: 1rem; display: block; }
.footer-about { color: #7fa8c2; font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(24, 119, 242, 0.1); border: 1px solid rgba(24, 119, 242, 0.2); display: flex; align-items: center; justify-content: center; color: #1877F2; font-size: 0.9rem; text-decoration: none; transition: 0.2s; }
.footer-socials a:hover { background: #1877F2; color: #fff; transform: translateY(-2px); }
.footer-h { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #1877F2; margin-bottom: 1rem; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { color: #7fa8c2; font-size: 0.88rem; text-decoration: none; transition: 0.2s; }
.footer-nav a:hover { color: #1877F2; padding-left: 4px; }
.footer-contact-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: #7fa8c2; font-size: 0.88rem; }
.footer-contact-row i { color: #1877F2; width: 16px; }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { color: #4a6a7a; font-size: 0.82rem; margin: 0; }
.footer-dev-link { color: #1877F2; text-decoration: none; font-weight: 600; }

.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff; text-decoration: none;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  z-index: 1000; transition: 0.3s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6); animation: none; }
@keyframes waPulse { 0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); } 50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); } }
.wa-tip {
  position: absolute; right: 68px; background: #fff;
  color: #333; font-size: 0.8rem; font-weight: 600;
  padding: 6px 12px; border-radius: 8px;
  white-space: nowrap; pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0; transition: 0.3s;
}
.wa-float:hover .wa-tip { opacity: 1; }

.particle { position: absolute; border-radius: 50%; pointer-events: none; }

.offers-swiper, .testi-swiper { padding-bottom: 50px !important; }
.testi-swiper .swiper-slide { height: auto; }
.testi-swiper .testi-card { height: 100%; }

@media (max-width: 991px) {
  .section { padding: 70px 0; }
  .hero-section { padding-top: 80px; padding-bottom: 70px; min-height: auto; }
  .hero-right { display: none !important; }
}
@media (max-width: 768px) {
  .hero-section { padding-top: 70px; padding-bottom: 60px; }
}
@media (max-width: 576px) {
  .hero-section { padding-top: 60px; padding-bottom: 50px; min-height: 85vh; }
  .hero-title { font-size: 2.4rem; }
  .hero-stats { gap: 2rem; }
}
@media (max-width: 480px) {
  .hero-section { padding-top: 50px; padding-bottom: 40px; min-height: 90vh; }
}

.glightbox-clean .gslide-description { background: rgba(7, 19, 32, 0.95); }

[data-aos] { will-change: transform, opacity; }

.partners-section {
  background: var(--surface);
  overflow: hidden;
  position: relative;
}

.partners-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollHorizontal 30s linear infinite;
  will-change: transform;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scrollHorizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-card {
  flex-shrink: 0;
  width: 180px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
  backdrop-filter: blur(4px);
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.partner-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo {
  transform: scale(1.05);
}

.partner-logo img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.partner-card:hover .partner-logo img {
  filter: brightness(1);
}

.partner-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.partner-category {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .partner-card {
    width: 140px;
    padding: 1rem 0.75rem;
  }
  .partner-logo {
    width: 70px;
    height: 70px;
  }
  .partner-name {
    font-size: 0.8rem;
  }
  .partner-category {
    font-size: 0.6rem;
  }
  @keyframes scrollHorizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}

.branches-section {
  background: var(--body-bg);
  position: relative;
  overflow: hidden;
}

.branches-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(24, 119, 242, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.tree-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.tree-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tree-bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .tree-bg-img {
  opacity: 0.05;
}

.trunk-node {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.main-node {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.12), rgba(24, 119, 242, 0.05));
  border: 2px solid var(--primary);
  box-shadow: 0 20px 35px -10px rgba(24, 119, 242, 0.2);
  transform: scale(1.02);
}

.main-node .node-icon {
  background: var(--primary);
  color: white;
  width: 70px;
  height: 70px;
  font-size: 2rem;
}

.main-node h4 {
  font-size: 1.6rem;
  color: var(--primary);
}

.main-node .node-desc {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.node-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  letter-spacing: 1px;
  margin-top: 8px;
  font-family: 'Poppins', sans-serif;
}

.branches-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
  margin-top: 1rem;
}

.branch-node {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
}

.node-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}

.node-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.node-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.node-card:hover::after {
  transform: scaleX(1);
}

.node-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.node-card:hover .node-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.node-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.node-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.branch-tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}

.tree-footer-note {
  margin-top: 3rem;
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tree-footer-note i {
  color: var(--primary);
  font-size: 1rem;
}

.branches-grid::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--gold), transparent);
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 992px) {
  .branches-grid {
    gap: 1.5rem;
  }
  .branch-node {
    min-width: 180px;
  }
  .main-node h4 {
    font-size: 1.3rem;
  }
  .main-node .node-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .branches-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .branch-node {
    width: 100%;
    max-width: 280px;
  }
  .trunk-node {
    margin-bottom: 2rem;
  }
  .main-node {
    padding: 1.2rem;
  }
  .main-node h4 {
    font-size: 1.2rem;
  }
  .main-node .node-desc {
    font-size: 0.85rem;
  }
  .node-card {
    padding: 1.2rem 1rem;
  }
  .tree-footer-note {
    font-size: 0.75rem;
    padding: 0.8rem 1rem;
    text-align: center;
  }
  .branches-grid::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .branch-node {
    max-width: 100%;
  }
  .node-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .main-node .node-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }
  .node-card h4 {
    font-size: 1rem;
  }
}

.portfolio-section {
  background: var(--body-bg);
  position: relative;
  overflow: hidden;
}

.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 40%, rgba(24, 119, 242, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

.portfolio-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.portfolio-featured {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.15);
}

.portfolio-featured:hover {
  box-shadow: 0 20px 45px rgba(24, 119, 242, 0.25);
}

.portfolio-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.9), rgba(10, 26, 47, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-links {
  display: flex;
  gap: 1.2rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-links {
  transform: translateY(0);
}

.portfolio-link-btn {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.portfolio-link-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
  color: white;
}

.portfolio-link-btn.portfolio-current {
  background: var(--gold);
  border-color: var(--gold);
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 0.8rem;
}

.portfolio-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.portfolio-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.portfolio-tech span {
  font-size: 0.7rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
}

.portfolio-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.portfolio-demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
  color: white;
  gap: 12px;
}

.portfolio-demo-btn.portfolio-current-site {
  background: linear-gradient(135deg, var(--gold), #a07828);
  box-shadow: 0 4px 15px rgba(201, 166, 70, 0.3);
}

.portfolio-demo-btn.portfolio-current-site:hover {
  box-shadow: 0 6px 20px rgba(201, 166, 70, 0.5);
}

.portfolio-footer {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 576px) {
  .portfolio-content {
    padding: 1.2rem;
  }
  .portfolio-title {
    font-size: 1rem;
  }
  .portfolio-desc {
    font-size: 0.8rem;
  }
  .portfolio-link-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

/* ===== SOCIAL PROOF SECTION STYLES ===== */
.social-proof-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.social-proof-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(24, 119, 242, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.social-filter-wrapper {
  margin-bottom: 2.5rem;
  text-align: center;
}

.social-filter-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 60px;
  padding: 0.5rem;
  backdrop-filter: blur(8px);
}

.social-filter-btn {
  background: transparent;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-muted);
}

.social-filter-btn i {
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.social-filter-btn:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.social-filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .social-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .social-filter-buttons {
    border-radius: 40px;
    padding: 0.4rem;
  }
  .social-filter-btn {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
  }
}

.social-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: flex;
  flex-direction: column;
}

.social-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.social-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 6 / 5;
  cursor: pointer;
}

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

.social-item:hover .social-img-wrapper img {
  transform: scale(1.05);
}

.social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(24, 119, 242, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.social-img-wrapper:hover .social-overlay {
  opacity: 1;
}

.social-overlay-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.social-img-wrapper:hover .social-overlay-icon {
  transform: scale(1);
}

.social-overlay-text {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.social-content {
  padding: 1.3rem 1.5rem 1.5rem;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.3rem 0.9rem;
  border-radius: 30px;
  margin-bottom: 0.8rem;
  font-family: 'Poppins', sans-serif;
}

.social-badge i {
  font-size: 0.8rem;
}

.social-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.social-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.social-footer {
  text-align: center;
  margin-top: 3rem;
}

/* Filter animation */
.social-item {
  transition: all 0.4s ease;
}

.social-item.hide {
  display: none;
}

/* Portfolio additional styles (keep existing) */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}
.portfolio-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.portfolio-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.portfolio-featured {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.15);
}
.portfolio-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.portfolio-card:hover .portfolio-img {
  transform: scale(1.08);
}
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.9), rgba(10, 26, 47, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-links {
  display: flex;
  gap: 1.2rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-links {
  transform: translateY(0);
}
.portfolio-link-btn {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.portfolio-link-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
  color: white;
}
.portfolio-content {
  padding: 1.5rem;
}
.portfolio-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 0.8rem;
}
.portfolio-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.portfolio-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.portfolio-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.portfolio-demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
  color: white;
  gap: 12px;
}
.portfolio-demo-btn.portfolio-current-site {
  background: linear-gradient(135deg, var(--gold), #a07828);
}
.portfolio-footer {
  text-align: center;
  margin-top: 3rem;
}
