/* =============================================
   DIGITXCODE — PREMIUM REDESIGN
   Palette: #2b2d42 · #8d99ae · #edf2f4 · #fff
============================================= */

/* ===== CSS Variables ===== */
:root {
  --primary:   #2b2d42;
  --secondary: #8d99ae;
  --light:     #edf2f4;
  --white:     #ffffff;
  --dark:      #1c1e30;

  --p05:  rgba(43,45,66,.05);
  --p08:  rgba(43,45,66,.08);
  --p12:  rgba(43,45,66,.12);
  --p20:  rgba(43,45,66,.20);
  --s15:  rgba(141,153,174,.15);
  --s30:  rgba(141,153,174,.30);
  --l10:  rgba(237,242,244,.10);
  --l20:  rgba(237,242,244,.20);

  --shadow-xs: 0 2px 10px rgba(43,45,66,.06);
  --shadow-sm: 0 4px 24px rgba(43,45,66,.08);
  --shadow-md: 0 12px 40px rgba(43,45,66,.12);
  --shadow-lg: 0 24px 72px rgba(43,45,66,.18);

  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  26px;
  --radius-full: 9999px;

  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body { font-family: 'Poppins', sans-serif; color: var(--primary); overflow-x: hidden; background: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

/* ===== Utility Fallbacks ===== */
.container { width: 100%; max-width: 1200px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.p-2 { padding: .5rem; }
.relative { position: relative; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.z-50 { z-index: 50; }
.hidden { display: none; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-20 { height: 5rem; }
.min-h-screen { min-height: 100vh; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-5xl { max-width: 64rem; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.object-cover { object-fit: cover; }
.rounded-2xl { border-radius: 1rem; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.font-poppins { font-family: 'Poppins', sans-serif; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: .1em; }
.leading-relaxed { line-height: 1.625; }
.transition-all { transition-property: all; }
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 300ms; transition-timing-function: ease; }
.duration-500 { transition-duration: 500ms; }
.bg-white { background: var(--white); }
.bg-light { background: var(--light); }
.bg-primary { background: var(--primary); }
.bg-white-section { background: var(--white); }
.text-white { color: var(--white); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--secondary); }
.text-xs { font-size: .75rem; }
.text-sm { font-size: .875rem; }
.text-base { font-size: 1rem; }
.text-xl { font-size: 1.25rem; }
.text-3xl { font-size: 1.875rem; }
.gap-1\.5 { gap: .375rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.border-secondary\/20 { border-color: rgba(141,153,174,.2); }
.hover\:text-white:hover { color: var(--white); }

@media(min-width:640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media(min-width:768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media(min-width:1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .lg\:col-span-1 { grid-column: span 1/span 1; }
  .lg\:col-span-2 { grid-column: span 2/span 2; }
  .lg\:col-span-3 { grid-column: span 3/span 3; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-0 { padding-top: 0; padding-bottom: 0; }
}

/* ===== Section Spacing ===== */
.section-pad { padding: 110px 0; }

/* ===== Typography Helpers ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--p05);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  border: 1px solid var(--p12);
}
.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.section-label-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--l10);
  color: var(--light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  border: 1px solid var(--l20);
}
.section-label-light::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.section-title-light {
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--light);
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 15px 34px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  border: 2px solid var(--primary);
  cursor: pointer;
  letter-spacing: .01em;
}
.btn-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(43,45,66,.28);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 15px 34px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  border: 2px solid var(--primary);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(43,45,66,.22);
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--light);
  padding: 15px 34px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  border: 2px solid rgba(237,242,244,.4);
  cursor: pointer;
}
.btn-outline-light:hover {
  background: var(--light);
  color: var(--primary);
  transform: translateY(-3px);
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  padding: 15px 34px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  border: 2px solid #25d366;
}
.btn-wa:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,.3);
}

/* ===========================
   HEADER / NAVBAR — NEW DESIGN
=========================== */

/* ── Top Bar ── */
.topbar {
  background: var(--primary);
  height: 42px;
  overflow: hidden;
  transition: height .4s cubic-bezier(.4,0,.2,1), opacity .4s ease;
}
#header.scrolled .topbar {
  height: 0;
  opacity: 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(237,242,244,.72);
  font-size: .76rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.topbar-link i { font-size: .7rem; color: var(--secondary); }
.topbar-link:hover { color: var(--light); }
.topbar-sep {
  width: 1px;
  height: 14px;
  background: rgba(237,242,244,.2);
  flex-shrink: 0;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-follow {
  font-size: .74rem;
  font-weight: 600;
  color: rgba(237,242,244,.55);
  letter-spacing: .05em;
  margin-right: 2px;
  white-space: nowrap;
}
.topbar-social-link {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(237,242,244,.1);
  border: 1px solid rgba(237,242,244,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(237,242,244,.65);
  font-size: .65rem;
  transition: var(--transition);
}
.topbar-social-link:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transform: translateY(-1px);
}

/* Hide topbar links on small screens */
@media(max-width:900px) {
  .topbar-link:not(:first-child) { display: none; }
  .topbar-sep { display: none; }
}
@media(max-width:600px) { .topbar { height: 0; overflow: hidden; } }

/* ── Main Navigation ── */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid rgba(43,45,66,.07);
  transition: box-shadow .35s ease;
}
#header.scrolled .main-nav {
  box-shadow: 0 4px 28px rgba(43,45,66,.11);
}
#header.menu-open .main-nav {
  box-shadow: 0 4px 28px rgba(43,45,66,.11);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-hex {
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.nav-logo:hover .nav-logo-hex { transform: scale(1.08); }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: .06em;
  line-height: 1.1;
}
.nav-logo-x { color: var(--secondary); }
.nav-logo-sub {
  font-size: .55rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── Nav Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-links li { list-style: none; }

.nav-dropdown {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--primary); background: var(--p05); }
.nav-link.active { color: var(--primary); font-weight: 600; }

.nav-chevron {
  font-size: .6rem;
  opacity: .6;
  transition: transform .25s ease;
}
.nav-link:hover .nav-chevron { transform: rotate(180deg); }

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 250px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--p08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 60;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown-link {
  display: flex;
  align-items: center;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
  transition: var(--transition);
}
.nav-dropdown-link:hover,
.nav-dropdown-link:focus {
  background: var(--p05);
  color: var(--secondary);
  outline: none;
}

/* ── Contact CTA ── */
.btn-nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid var(--primary);
}
.btn-nav-contact i {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(237,242,244,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.btn-nav-contact:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,45,66,.25);
}
.btn-nav-contact:hover i { background: rgba(237,242,244,.3); }

/* ── Mobile Toggle ── */
.nav-mobile-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-bar {
  width: 22px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
@media(min-width:1024px) { .nav-mobile-btn { display: none; } }

/* ── Mobile Menu ── */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1);
  background: var(--white);
  border-top: 1px solid var(--p05);
}
.mobile-menu.open { max-height: 760px; }
.mobile-nav-link {
  display: block;
  padding: 13px 20px;
  color: var(--primary);
  font-weight: 500;
  font-size: .9rem;
  border-bottom: 1px solid var(--p05);
  transition: var(--transition);
}
.mobile-nav-link:hover {
  color: var(--secondary);
  background: var(--p05);
  padding-left: 28px;
}
.mobile-submenu {
  margin: -2px 0 6px;
}
.mobile-submenu-link {
  padding: 9px 20px 9px 36px;
  font-size: .82rem;
  color: var(--secondary);
  border-bottom-color: rgba(43,45,66,.04);
}
.mobile-submenu-link:hover {
  padding-left: 42px;
}
.mobile-menu-footer {
  padding: 16px 20px 20px;
}

/* Legacy classes — keep for any remaining references */
.logo-text-main { font-size: 1.15rem; font-weight: 900; color: var(--primary); }
.logo-wrap { flex-shrink: 0; display: flex; align-items: center; }
.social-icon-nav {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--p08); color: var(--primary);
  font-size: .75rem; transition: var(--transition);
}
.social-icon-nav:hover { background: var(--primary); color: var(--white); }

/* ===========================
   HERO — NEW LIGHT DESIGN
=========================== */

/* Keep particles for subtle bg animation */
.hero-bg-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(43,45,66,.04);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ── Hero Wrapper ── */
.hero-new {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(240,244,248,.94) 0%, rgba(240,244,248,.86) 42%, rgba(240,244,248,.08) 70%),
    url("assets/img/DESKTOP.png") center / cover no-repeat,
    linear-gradient(135deg, #f0f4f8 0%, #e8edf2 40%, #dce4ed 100%);
  overflow: hidden;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
}

/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.hero-blob-tl {
  width: 600px; height: 600px;
  top: -120px; left: -180px;
  background: rgba(200,215,230,.5);
}
.hero-blob-br {
  width: 500px; height: 500px;
  bottom: -80px; right: -120px;
  background: rgba(141,153,174,.18);
}

/* ── Inner layout ── */
.hero-new-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

/* ── Left column ── */
.hero-left-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Badge */
.hero-badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--p12);
  box-shadow: var(--shadow-xs);
  width: fit-content;
  margin-bottom: 22px;
  animation: fadeInDown .7s ease both;
}
.hero-badge-v2 i { color: var(--secondary); font-size: .75rem; }

/* Headline */
.hero-headline {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  animation: fadeInUp .8s ease .15s both;
}
.hero-headline-accent {
  color: var(--secondary);
  position: relative;
}
.hero-headline-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  border-radius: 2px;
  opacity: .5;
}

/* Subtext */
.hero-subtext {
  font-size: 1rem;
  color: var(--secondary);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 28px;
  animation: fadeInUp .8s ease .25s both;
}

/* Feature pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  animation: fadeInUp .8s ease .35s both;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--p08);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  white-space: nowrap;
}
.hero-pill i { color: var(--secondary); font-size: .7rem; }

/* CTA buttons */
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp .8s ease .45s both;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: var(--transition);
  border: 2px solid var(--primary);
  box-shadow: 0 6px 24px rgba(43,45,66,.22);
}
.btn-hero-primary i {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(237,242,244,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
}
.btn-hero-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(43,45,66,.3);
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: var(--transition);
  border: 2px solid var(--p12);
  box-shadow: var(--shadow-xs);
}
.btn-hero-ghost i {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
}
.btn-hero-ghost:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-hero-ghost:hover i { background: rgba(237,242,244,.2); }

/* Stat cards */
.hero-stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  animation: fadeInUp .8s ease .6s both;
}
.hero-stat-card {
  position: relative;
  isolation: isolate;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  min-height: 132px;
  box-shadow: 0 18px 45px rgba(43,45,66,.1);
  transition: var(--transition);
  overflow: hidden;
}
.hero-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(237,242,244,.95), rgba(255,255,255,.2));
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}
.hero-stat-card:hover {
  box-shadow: 0 24px 60px rgba(43,45,66,.16);
  transform: translateY(-5px);
  border-color: rgba(141,153,174,.35);
}
.hero-stat-card:hover::before {
  opacity: 1;
}
.hsc-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: .94rem;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}
.hsc-icon-1 { background: rgba(43,45,66,.09); color: var(--primary); }
.hsc-icon-2 { background: rgba(141,153,174,.17); color: var(--primary); }
.hsc-icon-3 { background: rgba(43,45,66,.07); color: var(--primary); }
.hsc-icon-4 { background: rgba(237,242,244,.95); color: var(--primary); border: 1px solid var(--p08); }
.hsc-info {
  width: 100%;
}
.hsc-num {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--primary);
  line-height: .95;
  letter-spacing: 0;
}
.hsc-num span { font-size: inherit; font-weight: inherit; color: inherit; }
.hsc-label {
  font-size: .7rem;
  color: var(--secondary);
  font-weight: 700;
  margin-top: 8px;
  line-height: 1.35;
  max-width: 94px;
}

/* Keep .stat-num for JS counter */
.stat-num {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

/* ── Right column ── */
.hero-right-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  animation: fadeInRight .9s ease .2s both;
}

/* Device frame */
.hero-device-frame {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: visible;
  display: none;
}
.hero-device-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  filter: drop-shadow(0 30px 80px rgba(43,45,66,.22));
}

/* Floating badges on the device frame */
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.hero-float-badge i {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--primary);
  flex-shrink: 0;
}
.hero-float-badge p:first-child {
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.hero-float-badge p:last-child {
  font-size: .68rem;
  color: var(--secondary);
  margin-top: 2px;
}
.hero-float-tl {
  top: 16px; left: 16px;
  animation: floatUpDown 3s ease-in-out infinite;
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll Down hint */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  align-self: center;
}
.hero-scroll-hint span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
}
.hero-scroll-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--secondary);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
  font-size: .72rem;
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Bottom wave */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
  pointer-events: none;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ── Responsive Hero ── */
@media(max-width:1024px) {
  .hero-new { background-position: center top; }
  .hero-new-inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 100px; }
  .hero-right-col { align-items: center; }
  .hero-device-frame { max-width: 580px; width: 100%; }
  .hero-float-tl { left: 0; }
  .hero-float-br { right: 0; }
  .hero-stat-cards { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:768px) {
  .hero-new {
    padding-top: 76px;
    background:
      linear-gradient(180deg, rgba(240,244,248,.96) 0%, rgba(240,244,248,.9) 50%, rgba(240,244,248,.55) 100%),
      url("assets/img/DESKTOP.png") center top / cover no-repeat,
      linear-gradient(135deg, #f0f4f8 0%, #e8edf2 40%, #dce4ed 100%);
  }
  .hero-headline { font-size: 2.4rem; }
  .hero-stat-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-stat-card { min-height: 120px; padding: 15px 13px; }
  .hsc-num { font-size: 1.4rem; }
  .hero-cta-row { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
  .hero-float-tl, .hero-float-br { display: none; }
  .hero-blob-tl { width: 300px; height: 300px; }
}
@media(max-width:480px) {
  .hero-headline { font-size: 2rem; }
  .hero-stat-cards { grid-template-columns: 1fr 1fr; }
  .hero-stat-card { border-radius: 15px; min-height: 112px; padding: 13px 11px; }
  .hsc-icon { width: 38px; height: 38px; border-radius: 12px; font-size: .84rem; }
  .hsc-num { font-size: 1.28rem; }
  .hsc-label { font-size: .64rem; max-width: 82px; }
  .hero-pills { gap: 8px; }
  .hero-pill { font-size: .72rem; }
}

/* ===========================
   MARQUEE
=========================== */
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 52px;
  animation: marqueeScroll 22s linear infinite;
  width: max-content;
}
.marquee-track span {
  color: rgba(237,242,244,.55);
  font-size: .88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  transition: color .3s;
}
.marquee-track span:hover { color: rgba(237,242,244,.9); }
.marquee-track span i { font-size: 1rem; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   ABOUT SECTION
=========================== */
.section-bg-shape {
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141,153,174,.07) 0%, transparent 70%);
  pointer-events: none;
}
.about-img-grid { position: relative; height: 520px; }
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 74%; height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 54%; height: 54%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-exp-badge {
  position: absolute;
  top: 55%; left: 5%;
  background: var(--primary);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-exp-badge .text-primary { color: var(--white); }
.about-exp-badge p { color: rgba(237,242,244,.65); font-size: .73rem; margin-top: 4px; line-height: 1.4; }

/* Value Cards */
.value-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  font-weight: 600;
  font-size: .84rem;
  color: var(--primary);
  border: 1px solid var(--p08);
  transition: var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--secondary);
}
.value-card i {
  color: var(--primary);
  font-size: 1rem;
  width: 22px;
  text-align: center;
}

/* ===========================
   SERVICES SECTION  (Light bg)
=========================== */
.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(43,45,66,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--p08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.featured-service {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.featured-service:hover {
  background: var(--dark);
  border-color: var(--dark);
}
.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--secondary);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: .04em;
}
.service-icon-wrap {
  width: 62px; height: 62px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}
.featured-service .service-icon-wrap {
  background: rgba(237,242,244,.15);
  color: var(--light);
}
.service-card:not(.featured-service):hover .service-icon-wrap {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08) rotate(-3deg);
}
.service-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.featured-service h3 { color: var(--light); }
.service-card p {
  color: var(--secondary);
  font-size: .85rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.featured-service p { color: rgba(237,242,244,.6); }
.service-list { margin-bottom: 26px; }
.service-list li {
  color: var(--secondary);
  font-size: .82rem;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--p05);
}
.service-list li:last-child { border-bottom: 0; }
.featured-service .service-list li {
  color: rgba(237,242,244,.7);
  border-bottom-color: rgba(237,242,244,.07);
}
.service-list li i { color: var(--primary); font-size: .7rem; }
.featured-service .service-list li i { color: var(--secondary); }
.service-link {
  color: var(--primary);
  font-size: .85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  letter-spacing: .01em;
}
.service-link:hover { gap: 14px; color: var(--secondary); }
.featured-service .service-link { color: rgba(237,242,244,.8); }
.featured-service .service-link:hover { color: var(--white); }

/* ===========================
   PRICING SECTION
=========================== */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 34px;
  border: 1px solid var(--p08);
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.pricing-featured {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-featured:hover { transform: scale(1.04) translateY(-10px); }
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  font-size: .73rem;
  font-weight: 700;
  padding: 5px 22px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pricing-header { margin-bottom: 28px; }
.pricing-icon {
  width: 58px; height: 58px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 18px;
}
.pricing-featured .pricing-icon {
  background: rgba(237,242,244,.15);
  color: var(--light);
}
.pricing-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
  letter-spacing: -.02em;
}
.pricing-featured .pricing-header h3 { color: var(--light); }
.pricing-header p { font-size: .82rem; color: var(--secondary); }
.pricing-featured .pricing-header p { color: rgba(237,242,244,.55); }
.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--p08);
}
.pricing-featured .pricing-price { border-bottom-color: rgba(237,242,244,.12); }
.currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 10px;
}
.pricing-featured .currency { color: var(--light); }
.amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -.03em;
}
.pricing-featured .amount { color: var(--light); }
.period {
  font-size: .78rem;
  color: var(--secondary);
  margin-top: auto;
  padding-bottom: 5px;
}
.pricing-features { margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 0;
  font-size: .84rem;
  color: var(--primary);
  border-bottom: 1px solid var(--p05);
}
.pricing-featured .pricing-features li {
  color: rgba(237,242,244,.82);
  border-bottom-color: rgba(237,242,244,.06);
}
.pricing-features li i { font-size: .88rem; }
.pricing-features li i.fa-check-circle { color: var(--primary); }
.pricing-featured .pricing-features li i.fa-check-circle { color: var(--secondary); }
.pricing-features li i.fa-times-circle { color: var(--secondary); opacity: .5; }
.pricing-features li.disabled { opacity: .4; }
.pricing-featured .btn-primary {
  background: var(--light);
  border-color: var(--light);
  color: var(--primary);
}
.pricing-featured .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 12px 30px rgba(237,242,244,.2);
}

/* ===========================
   PRICING — EXTENDED
=========================== */

/* Top 3-card grid */
.pricing-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 36px;
  align-items: start;
}

/* Delivery badge inside card */
.pricing-delivery {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--secondary);
  background: var(--p05);
  border: 1px solid var(--p08);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: .03em;
}
.pricing-delivery i { font-size: .7rem; }
.pricing-delivery-light {
  color: rgba(237,242,244,.65);
  background: rgba(237,242,244,.08);
  border-color: rgba(237,242,244,.12);
}

/* Price range variant */
.amount-sm {
  font-size: 2rem !important;
  letter-spacing: -.02em;
}

/* Target audience chips */
.pricing-targets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
  padding: 16px;
  background: var(--p05);
  border-radius: var(--radius);
  border: 1px solid var(--p08);
}
.pricing-featured .pricing-targets {
  background: rgba(237,242,244,.08);
  border-color: rgba(237,242,244,.12);
}
.pricing-targets span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--secondary);
  background: var(--white);
  border: 1px solid var(--p08);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: .02em;
}
.pricing-featured .pricing-targets span {
  background: rgba(237,242,244,.12);
  border-color: rgba(237,242,244,.15);
  color: rgba(237,242,244,.75);
}
.pricing-targets span i { font-size: .65rem; }

/* ===========================
   CUSTOM PACKAGE BANNER
=========================== */
.custom-package-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.custom-package-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141,153,174,.12) 0%, transparent 70%);
  pointer-events: none;
}
.custom-package-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 40%;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,242,244,.05) 0%, transparent 70%);
  pointer-events: none;
}
.custom-pkg-left {
  flex: 1;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.custom-pkg-icon {
  width: 64px; height: 64px;
  min-width: 64px;
  background: rgba(237,242,244,.12);
  border: 1px solid rgba(237,242,244,.18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--light);
}
.custom-pkg-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}
.custom-pkg-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--secondary);
}
.custom-pkg-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.custom-pkg-desc {
  font-size: .88rem;
  color: rgba(237,242,244,.62);
  line-height: 1.78;
  margin-bottom: 28px;
  max-width: 480px;
}
.custom-pkg-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.custom-step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .84rem;
  color: rgba(237,242,244,.75);
}
.step-num {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(141,153,174,.2);
  border: 1px solid rgba(141,153,174,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: .02em;
}
.custom-pkg-right {
  min-width: 240px;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(237,242,244,.06);
  border: 1px solid rgba(237,242,244,.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.custom-pkg-price-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
}
.custom-pkg-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(237,242,244,.7);
  line-height: 1.2;
}
.custom-pkg-price span {
  font-size: 2.2rem;
  color: var(--white);
  display: block;
  letter-spacing: -.03em;
}
.custom-pkg-note {
  font-size: .76rem;
  color: var(--secondary);
  margin-top: -4px;
}
.custom-pkg-wa-btn {
  width: 100%;
  background: #25d366;
  border-color: #25d366;
  border-radius: var(--radius-full);
}
.custom-pkg-wa-btn:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37,211,102,.35);
}
.custom-pkg-contact-btn {
  width: 100%;
  color: rgba(237,242,244,.8);
  border-color: rgba(237,242,244,.25);
  border-radius: var(--radius-full);
}
.custom-pkg-contact-btn:hover {
  background: var(--light);
  color: var(--primary);
  border-color: var(--light);
}

/* Responsive Pricing */
@media(max-width:1100px) {
  .pricing-grid-top { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .pricing-featured { transform: scale(1); }
  .pricing-featured:hover { transform: translateY(-10px); }
}
@media(max-width:860px) {
  .pricing-grid-top { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .custom-package-card { flex-direction: column; gap: 32px; padding: 36px 28px; }
  .custom-pkg-right { width: 100%; min-width: unset; }
  .custom-pkg-left { flex-direction: column; gap: 20px; }
}
@media(max-width:600px) {
  .custom-package-card { padding: 28px 20px; }
  .custom-pkg-title { font-size: 1.4rem; }
  .pricing-grid-top { max-width: 100%; }
  .amount-sm { font-size: 1.6rem !important; }
}

/* ===========================
   PORTFOLIO SECTION
=========================== */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.tab-btn {
  padding: 10px 26px;
  border-radius: var(--radius-full);
  font-size: .84rem;
  font-weight: 600;
  background: rgba(237,242,244,.08);
  color: var(--secondary);
  border: 1px solid rgba(237,242,244,.15);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .02em;
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--light);
  color: var(--primary);
  border-color: var(--light);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 265px;
  cursor: pointer;
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,30,48,.95) 0%, rgba(43,45,66,.25) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-tag {
  background: var(--secondary);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.portfolio-overlay h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.portfolio-overlay p { color: rgba(237,242,244,.65); font-size: .8rem; }
.portfolio-link {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  backdrop-filter: blur(6px);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.2);
}
.portfolio-link:hover { background: var(--white); color: var(--primary); }
.portfolio-item.hidden { display: none; }

/* ===========================
   TEAM SECTION
=========================== */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--p08);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.team-img-wrap {
  position: relative;
  height: 270px;
  overflow: hidden;
}
.team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.07); }
.team-social {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(43,45,66,.88);
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(6px);
}
.team-card:hover .team-social { transform: translateY(0); }
.team-social a {
  color: var(--light);
  font-size: .9rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(237,242,244,.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.team-social a:hover { background: var(--secondary); color: var(--white); }
.team-info { padding: 22px 16px; }
.team-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
  letter-spacing: -.01em;
}
.team-info p {
  font-size: .8rem;
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: .03em;
}

/* ===========================
   TESTIMONIALS SECTION  (White bg)
=========================== */
.testimonial-bg-shape {
  position: absolute;
  bottom: -60px; left: -120px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141,153,174,.06) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  background: var(--light);
  border: 1px solid var(--p08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--secondary);
}
.testimonial-quote {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 16px;
  opacity: .25;
}
.testimonial-card > p {
  color: var(--primary);
  font-size: .88rem;
  line-height: 1.85;
  margin-bottom: 26px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}
.testimonial-author h5 {
  color: var(--primary);
  font-size: .9rem;
  font-weight: 700;
}
.testimonial-author p {
  color: var(--secondary);
  font-size: .78rem;
  margin-top: 2px;
}
.stars {
  color: var(--secondary);
  font-size: .78rem;
  margin-top: 4px;
  letter-spacing: 2px;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 44px;
}
.slider-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid var(--p12);
  color: var(--primary);
  cursor: pointer;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--p20);
  cursor: pointer;
  transition: var(--transition);
  border: 0;
}
.dot.active {
  background: var(--primary);
  width: 26px;
  border-radius: 4px;
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  background: var(--primary);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141,153,174,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.cta-section h2 span { color: var(--secondary); }
.cta-section p {
  color: rgba(237,242,244,.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact-info-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 1px solid var(--p08);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}
.contact-info-icon {
  width: 50px; height: 50px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: .84rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  letter-spacing: .01em;
}
.contact-info-item p {
  font-size: .84rem;
  color: var(--secondary);
}
.contact-social-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .84rem;
  transition: var(--transition);
  border: 1px solid var(--p08);
}
.contact-social-icon:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--primary);
}
.contact-social-icon.wa:hover { background: #25d366; border-color: #25d366; }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--p08);
}
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--p12);
  border-radius: var(--radius);
  font-size: .88rem;
  color: var(--primary);
  background: var(--light);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(43,45,66,.07);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  background: rgba(141,153,174,.12);
  border: 1px solid var(--secondary);
  color: var(--primary);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.form-success.hidden { display: none; }

/* Google Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--p08);
}

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--dark); }
.footer-top { padding: 90px 0 64px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
}
.footer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo span { color: var(--secondary); }
.footer-heading {
  font-size: .84rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  color: var(--secondary);
  font-size: .85rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-links a:hover {
  color: var(--light);
  padding-left: 6px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--secondary);
  font-size: .84rem;
  margin-bottom: 13px;
}
.footer-contact li i {
  color: var(--secondary);
  margin-top: 2px;
  width: 14px;
  flex-shrink: 0;
}
.footer-social {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(237,242,244,.06);
  border: 1px solid rgba(237,242,244,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: .8rem;
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transform: translateY(-3px);
}
.footer-social.wa:hover { background: #25d366; border-color: #25d366; }
.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(237,242,244,.07);
}

/* ===========================
   FLOATING WHATSAPP
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: waPulse 2.5s ease infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 44px rgba(37,211,102,.55);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,.6), 0 0 0 10px rgba(37,211,102,.07); }
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--primary);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ===========================
   BACK TO TOP
=========================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 100px;
  z-index: 999;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--dark); transform: translateY(-3px); }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Data AOS Scroll Animations */
[data-aos] {
  opacity: 0;
  transition: opacity .75s ease, transform .75s ease;
}
[data-aos="fade-up"]    { transform: translateY(44px); }
[data-aos="fade-right"] { transform: translateX(-44px); }
[data-aos="fade-left"]  { transform: translateX(44px); }
[data-aos="zoom-in"]    { transform: scale(.88); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ===========================
   RESPONSIVE
=========================== */
@media(max-width:1024px) {
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .about-img-grid { height: 420px; }
}

@media(max-width:768px) {
  .section-pad { padding: 76px 0; }
  .testimonial-card { flex: 0 0 100%; }
  .about-img-grid { height: 340px; }
  .about-img-main { width: 80%; height: 75%; }
  .about-img-secondary { width: 60%; height: 50%; }
  .about-exp-badge { left: 0; padding: 16px 20px; }
  .contact-info-wrap, .contact-form { padding: 28px 22px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .pricing-featured { transform: scale(1); }
  .pricing-featured:hover { transform: translateY(-10px); }
}

@media(max-width:480px) {
  .btn-primary, .btn-outline, .btn-wa { padding: 13px 22px; font-size: .85rem; width: 100%; }
  .value-card { padding: 12px; font-size: .78rem; }
  .contact-info-item { gap: 12px; }
  .footer-bottom .flex { text-align: center; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.35rem; }
  .back-to-top { right: 78px; width: 40px; height: 40px; }
  .wa-tooltip { display: none; }
}

/* ===========================
   SKIP LINK (Accessibility)
=========================== */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  z-index: 10000;
  transition: top .2s ease;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ===========================
   REDUCED MOTION
=========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  /* Reveal AOS elements immediately — no scroll animation */
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  [data-aos].aos-animate {
    opacity: 1 !important;
    transform: none !important;
  }
  /* Stop marquee */
  .marquee-track { animation: none; }
  /* Stop hero entry animations */
  .hero-badge-v2,
  .hero-headline,
  .hero-subtext,
  .hero-pills,
  .hero-cta-row,
  .hero-stat-cards,
  .hero-right-col { animation: none; opacity: 1; transform: none; }
}
