/*
Theme Name: EcomzyCL
Author: Sunshine Group
Author URI: https://wordpress.org
*/
:root {
  --teal: #14B8A6;
  --teal-light: #5eead4;
  --teal-rgb: 20, 184, 166;
  --ease-smooth: cubic-bezier(.22, 1, .36, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --glass-bg: rgba(10, 15, 22, .95);
  --glass-border: rgba(255, 255, 255, .08);
  --text-primary: rgba(255, 255, 255, .95);
  --text-secondary: rgba(255, 255, 255, .55);
  --text-muted: rgba(255, 255, 255, .35);
}

:root {
  --teal-frost: #F0FDFA;
  --teal-mist: #CCFBF1;
  --teal-light: #99F6E4;
  --teal: #0F766E;
  --teal-bright: #14B8A6;
  --teal-deep: #115E59;
  --teal-pale: #CCFBF1;
  --amber: #0F766E;
  --amber-bright: #14B8A6;
  --amber-pale: #F0FDFA;
  --amber-deep: #0D6B64;
  --midnight: #1A1A1A;
  --charcoal: #2D2D2D;
  --stone: #6B7280;
  --stone-light: #9CA3AF;
  --warm-white: #FAFFFE;
  --coral: #F97066;
  --green: #22C55E;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-soft: 0 1px 3px rgba(15, 118, 110, .04), 0 8px 24px rgba(15, 118, 110, .03);
  --shadow-medium: 0 4px 12px rgba(15, 118, 110, .05), 0 16px 40px rgba(15, 118, 110, .04);
  --shadow-glow: 0 0 0 1px rgba(15, 118, 110, .12), 0 8px 30px rgba(15, 118, 110, .08);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  font-family: var(--font-body);
  color: var(--midnight);
  background: #111114;
  line-height: 1.6;
  overflow-x: clip;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-section {
  background: #fff;
  padding: 100px 0 80px;
  min-height: 60vh;
}

.page-section h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 24px;
}

.page-section .page-content {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.7);
}

.page-section .page-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--midnight);
  margin: 40px 0 16px;
}

.page-section .page-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--midnight);
  margin: 32px 0 12px;
}

.page-section .page-content a {
  color: var(--teal-bright);
}

.page-section .page-content ul, .page-section .page-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.page-section .page-content li {
  margin-bottom: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.rd1 {
  transition-delay: 0.1s;
}

.rd2 {
  transition-delay: 0.2s;
}

.rd3 {
  transition-delay: 0.3s;
}

.rd4 {
  transition-delay: 0.4s;
}

.rd5 {
  transition-delay: 0.5s;
}

#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 20, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s, background 0.3s;
}
#navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 95%);
  pointer-events: none;
}
#navbar.scrolled {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
  background: rgba(17, 17, 20, 0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--teal-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links > li > a:not(.nav-cta):not(.nav-trigger) {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links > li > a:not(.nav-cta):not(.nav-trigger):hover {
  color: #fff;
}

.slider-btn, .sp-arrow {
  display: none !important;
}

.liquid-btn, .btn-primary, .btn-ghost, .nav-cta, .nav-mobile-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.liquid-btn::before, .btn-primary::before, .btn-ghost::before, .nav-cta::before, .nav-mobile-toggle::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: none;
}

.liquid-btn:hover, .btn-primary:hover, .btn-ghost:hover, .nav-cta:hover, .nav-mobile-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
}

.liquid-btn:active, .btn-primary:active, .btn-ghost:active, .nav-cta:active, .nav-mobile-toggle:active {
  transform: translateY(0);
}

.nav-cta, .btn-primary, .btn-ghost {
  color: #fff;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  position: relative;
}

.nav-cta svg {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 2;
}

.nav-cta:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.btn-ghost {
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-mobile-toggle:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.btn-primary, .nav-cta {
  border-color: rgba(38, 187, 171, 0.6);
  background: #22a99b;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 4px 16px rgba(20, 184, 166, 0.25);
}

.btn-primary:hover, .nav-cta:hover {
  background: #35c8bb;
  border-color: rgba(76, 212, 196, 0.7);
}

.nav-cta:hover {
  transform: translateY(0);
}

.btn-primary {
  font-family: var(--font-body);
}

.btn-primary svg {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 2;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.nav-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-item-dropdown {
  position: relative;
  z-index: 1;
}

.nav-item-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 22px;
  pointer-events: none;
  z-index: 50;
}

.nav-item-dropdown.dd-open {
  z-index: 120;
}

.nav-item-dropdown.dd-open::after {
  pointer-events: auto;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-item-dropdown.dd-open .nav-trigger {
  color: #fff;
}

.nav-trigger > svg {
  width: 9px;
  height: 9px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-item-dropdown.dd-open .nav-trigger > svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: fixed;
  top: 72px;
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.97);
  transform-origin: top center;
  opacity: 0;
  pointer-events: none;
  border-radius: 20px;
  padding: 16px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 22, 30, 0.88);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  backdrop-filter: blur(50px) saturate(150%);
  -webkit-backdrop-filter: blur(50px) saturate(150%);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0.55s;
  visibility: hidden;
  z-index: 101;
}

.nav-item-dropdown.dd-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
}

.nav-dropdown.mega {
  width: min(720px, 100vw - 32px);
  padding: 16px 0 0;
  overflow: hidden;
}

.nav-dropdown .nav-dd-inner {
  padding: 18px 20px 0;
}

.nav-dd-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}

.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-dd-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-dd-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-dd-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-dd-icon svg[fill=currentColor] {
  fill: #fff;
  stroke: none;
}

.nav-dd-icon svg.svg-fill {
  fill: #fff;
  stroke: none;
  stroke-width: 0;
}

.nav-dd-g1 {
  background: linear-gradient(145deg, #2dd4bf, #0d9488);
}

.nav-dd-g2 {
  background: linear-gradient(145deg, #14b8a6, #115e59);
}

.nav-dd-g3 {
  background: linear-gradient(145deg, #8b5cf6, #14b8a6);
}

.nav-dd-g4 {
  background: linear-gradient(145deg, #a78bfa, #6366f1);
}

.nav-dd-g5 {
  background: linear-gradient(145deg, #34d399, #0d9488);
}

.nav-dd-g6 {
  background: linear-gradient(145deg, #22d3ee, #0891b2);
}

.nav-dd-g7 {
  background: linear-gradient(145deg, #5eead4, #0f766e);
}

.nav-dd-g8 {
  background: linear-gradient(145deg, #fb7185, var(--coral));
}

.nav-dd-text {
  min-width: 0;
}

.nav-dd-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.nav-dd-desc {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
  font-weight: 500;
}

.nav-dd-item:hover .nav-dd-desc {
  color: rgba(255, 255, 255, 0.58);
}

.nav-dd-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 16px 20px 0;
}

.nav-dd-section {
  padding: 16px 20px 18px;
}

.nav-dd-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin: 0 0 10px;
  padding: 0 12px;
}

.nav-dd-section .nav-dd-cols {
  gap: 8px 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 700px) {
  .nav-dd-section .nav-dd-cols {
    grid-template-columns: 1fr;
  }
}
.nav-dd-item.nav-dd-item-accent .nav-dd-title {
  color: #fda4af;
}

.nav-dd-item.nav-dd-item-accent:hover .nav-dd-title {
  color: #fecdd3;
}

.nav-dd-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 20px 20px;
}

.nav-dd-footer-note {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.nav-dd-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-bright);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, gap 0.2s;
}

.nav-dd-footer-link:hover {
  color: #5eead4;
  gap: 10px;
}

.nav-dropdown.list {
  position: fixed;
  top: 72px;
  width: min(340px, 100vw - 32px);
  padding: 16px 0 0;
  overflow: hidden;
  transform: translateX(-50%) translateY(10px) scale(0.97);
  transform-origin: top center;
}

.nav-item-dropdown.dd-open .nav-dropdown.list {
  transform: translateX(-50%) translateY(0) scale(1);
}

.nav-dropdown.list .nav-dd-inner {
  padding: 14px 16px 0;
}

.nav-dropdown.list .nav-dd-cols {
  grid-template-columns: 1fr;
  gap: 2px;
}

.nav-dropdown.list .nav-dd-footer {
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 640px) {
  .nav-dd-cols {
    grid-template-columns: 1fr;
  }
  .nav-dropdown.list .nav-dd-cols {
    grid-template-columns: 1fr;
  }
}
.mega-footer {
  background: #0A0A0D;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mega-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-cta {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-cta-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 48px;
  background: #2a2d34;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 40px 100px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.footer-cta-box .section-title {
  color: #fff;
  position: relative;
  z-index: 2;
}
.footer-cta-box .section-sub {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}
.footer-cta-box .btn-primary {
  position: relative;
  z-index: 2;
  font-size: 18px;
  padding: 18px 40px;
}

.footer-cta-shimmer {
  display: none;
}

.footer-cta-frost {
  display: none;
}

.footer-cta-note {
  position: relative;
  z-index: 2;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 16px;
}

.lp-cta-note, .footer-cta-note, .cta-note, .hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.lp-cta-note svg, .footer-cta-note svg, .cta-note svg, .hero-note svg {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .lp-cta-note, .footer-cta-note, .cta-note, .hero-note {
    display: block;
    text-align: center;
    font-size: 11px;
  }
  .lp-cta-note svg, .footer-cta-note svg, .cta-note svg, .hero-note svg {
    display: inline-block;
    vertical-align: -2px;
    margin-right: 4px;
  }
}
.footer-body {
  padding: 60px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.2);
  color: var(--teal-bright);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-corp {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.footer-col-links + h4 {
  margin-top: 24px;
}

.footer-col-arrow {
  display: none;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--teal-bright);
}

.footer-locked {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
  padding: 5px 0;
  cursor: default;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
}

.footer-bottom-left {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-badge {
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.footer-badge svg {
  flex-shrink: 0;
  vertical-align: middle;
}

.footer-gradient-line {
  height: 2px;
  background: linear-gradient(90deg, #0F766E, #14B8A6, #8B5CF6, #3B82F6, #14B8A6, #0F766E);
  background-size: 300% 100%;
  animation: footerGradient 8s ease infinite;
}

@media (max-width: 768px) {
  .footer-cta-box {
    padding: 48px 24px;
    border-radius: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-bottom-badges {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 20, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 24px 32px;
    gap: 0;
    z-index: 100000;
    overflow-y: auto;
    text-align: left;
  }
  .nav-links.mob-open {
    display: flex;
  }
  .nav-links.mob-open > li {
    width: 100%;
  }
  .nav-links.mob-open > li {
    opacity: 0;
    animation: fadeUp 0.4s var(--ease-smooth) forwards;
  }
  .nav-links.mob-open > li:nth-child(1) {
    animation-delay: 0.05s;
  }
  .nav-links.mob-open > li:nth-child(2) {
    animation-delay: 0.1s;
  }
  .nav-links.mob-open > li:nth-child(3) {
    animation-delay: 0.15s;
  }
  .nav-links.mob-open > li:nth-child(4) {
    animation-delay: 0.2s;
  }
  .nav-links.mob-open > li:nth-child(5) {
    animation-delay: 0.25s;
  }
  .nav-links.mob-open li {
    list-style: none;
  }
  .nav-links.mob-open > li > a:not(.nav-cta) {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    text-align: left;
  }
  .nav-links.mob-open .nav-trigger {
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    cursor: pointer;
  }
  .nav-links.mob-open .nav-trigger > svg {
    transition: transform 0.3s;
    width: 12px;
    height: 12px;
  }
  .nav-links.mob-open .nav-item-dropdown.dd-open .nav-trigger > svg {
    transform: rotate(180deg);
  }
  .nav-links.mob-open .nav-dropdown, .nav-links.mob-open .nav-dropdown.list {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none !important;
    left: auto;
    pointer-events: none;
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    transition: opacity 0.3s, max-height 0.4s ease, visibility 0s 0.3s;
  }
  .nav-links.mob-open .nav-item-dropdown.dd-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 800px;
    pointer-events: auto;
    padding: 8px 0 16px;
    transition: opacity 0.3s, max-height 0.4s ease, visibility 0s;
  }
  .nav-links.mob-open .nav-dd-inner {
    padding: 0 0 0 8px;
  }
  .nav-links.mob-open .nav-dd-cols {
    grid-template-columns: 1fr;
    gap: 0;
    display: flex;
    flex-direction: column;
  }
  .nav-links.mob-open .nav-dd-item {
    padding: 12px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: none !important;
    color: rgba(255, 255, 255, 0.85);
  }
  .nav-links.mob-open .nav-dd-item:last-child {
    border-bottom: none;
  }
  .nav-links.mob-open .nav-dd-item:hover {
    background: none !important;
  }
  .nav-links.mob-open .nav-dd-text {
    visibility: visible !important;
  }
  .nav-links.mob-open .nav-dd-icon {
    display: none;
  }
  .nav-links.mob-open .nav-dd-desc {
    display: none;
  }
  .nav-links.mob-open .nav-dd-title {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
  }
  .nav-links.mob-open .nav-dd-footer {
    display: none;
  }
  .nav-links.mob-open .nav-dd-divider {
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 4px 0;
  }
  .nav-links.mob-open .nav-dd-section-label {
    display: none;
  }
  .nav-links.mob-open > li:nth-last-child(-n+3) > a:not(.nav-cta):not(.mob-login) {
    border-bottom: none;
    padding-bottom: 24px;
  }
  .nav-links.mob-open > li:has(.mob-login) {
    order: 98;
    margin-top: 20px;
  }
  .nav-links.mob-open > li:has(.nav-cta) {
    order: 99;
    margin-top: 10px;
  }
  .nav-links.mob-open .nav-cta {
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    border-bottom: none !important;
  }
  .nav-links.mob-open .mob-login {
    display: flex !important;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    text-decoration: none !important;
  }
  .nav-links.mob-open .mob-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25) !important;
    color: #fff !important;
  }
  .nav-mobile-toggle {
    display: flex;
    position: relative;
    z-index: 100001;
  }
  .nav-mobile-toggle.mob-active {
    gap: 0;
  }
  .nav-mobile-toggle.mob-active span {
    position: absolute;
  }
  .nav-mobile-toggle.mob-active span:nth-child(1) {
    transform: rotate(45deg);
  }
  .nav-mobile-toggle.mob-active span:nth-child(2) {
    opacity: 0;
  }
  .nav-mobile-toggle.mob-active span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .footer-cta-box {
    padding: 48px 24px;
    border-radius: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-bottom-badges {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-col h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  .footer-col-arrow {
    display: block;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  .footer-col.fc-open > h4 .footer-col-arrow,
  .footer-col > h4.fc-open .footer-col-arrow {
    transform: rotate(180deg);
  }
  .footer-col-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .footer-col.fc-open > .footer-col-links,
  h4.fc-open + .footer-col-links {
    max-height: 500px;
  }
  .footer-col-links a {
    padding: 8px 0;
  }
  .footer-col-links a:first-child {
    padding-top: 12px;
  }
  .footer-col-links a:last-child {
    padding-bottom: 16px;
  }
  .footer-col-links + h4 {
    margin-top: 0;
  }
  .footer-brand {
    margin-bottom: 24px;
  }
  .footer-bottom-bar {
    border-top: none;
  }
}
body.admin-bar #navbar {
  top: 32px;
}

body.admin-bar .nav-dropdown {
  top: 104px;
}

@media (max-width: 782px) {
  body.admin-bar #navbar {
    top: 46px;
  }
  body.admin-bar .nav-dropdown {
    top: 118px;
  }
}
@media (max-width: 600px) {
  body.admin-bar #navbar {
    top: 0;
  }
  body.admin-bar .nav-dropdown {
    top: 72px;
  }
}
body.mob-menu-open {
  overflow: hidden;
}

body.mob-menu-open #wpadminbar {
  display: none !important;
}

body.mob-menu-open #navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 9999px #1c1c1f inset !important;
  box-shadow: 0 0 0 9999px #1c1c1f inset !important;
  -webkit-text-fill-color: #fff !important;
  border-color: #2d2d30 !important;
  caret-color: #fff;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
  filter: grayscale(100%) !important;
}

.page-section {
  padding: 120px 0 80px;
  background: #F8FFFE;
  font-family: var(--font-body);
}
.page-section h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 12px;
}

.page-content {
  color: #374151;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #0f172a;
  margin: 48px 0 16px;
  line-height: 1.25;
}
.page-content h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #0f172a;
  margin: 36px 0 12px;
  line-height: 1.3;
}
.page-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 28px 0 10px;
}
.page-content h5, .page-content h6 {
  font-size: 16px;
  font-weight: 700;
  color: #334155;
  margin: 24px 0 8px;
}
.page-content p {
  margin-bottom: 16px;
}
.page-content a {
  color: var(--teal-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-content a:hover {
  color: var(--teal-light);
}
.page-content strong {
  color: #0f172a;
}
.page-content em {
  font-style: italic;
}
.page-content ul, .page-content ol {
  margin: 16px 0;
  padding-left: 24px;
}
.page-content ul {
  list-style: disc;
}
.page-content ol {
  list-style: decimal;
}
.page-content li {
  margin-bottom: 8px;
}
.page-content li::marker {
  color: var(--teal);
}
.page-content li ul, .page-content li ol {
  margin: 8px 0 0;
}
.page-content blockquote {
  border-left: 3px solid var(--teal);
  padding: 12px 20px;
  margin: 24px 0;
  background: rgba(15, 118, 110, 0.04);
  border-radius: 0 8px 8px 0;
  color: #374151;
}
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.page-content table th, .page-content table td {
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  text-align: left;
}
.page-content table th {
  background: #f3f4f6;
  color: #0f172a;
  font-weight: 600;
}
.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}
.page-content hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 40px 0;
}
.page-content code {
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--teal-deep);
}
.page-content pre {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px;
  margin: 24px 0;
  overflow-x: auto;
}
.page-content pre code {
  background: none;
  padding: 0;
  font-size: 14px;
}
.page-content .aligncenter {
  text-align: center;
}
.page-content .alignleft {
  float: left;
  margin-right: 24px;
}
.page-content .alignright {
  float: right;
  margin-left: 24px;
}
.page-content > *:first-child {
  margin-top: 0;
}
.page-content > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .page-section {
    padding: 100px 0 60px;
  }
  .page-content {
    font-size: 15px;
    line-height: 1.75;
  }
}
@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
  z-index: 1003;
}

.popup-overlay.active {
  pointer-events: none;
  background-color: #000;
  opacity: 0.2;
}

.popup-container {
  position: fixed;
  z-index: 1004;
}

@media (max-width: 768px) {
  .popup-container {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.popup-container .popup {
  position: relative;
  pointer-events: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 300px;
  overflow: hidden;
  animation: slideIn 0.3s ease;
}

.popup-container .popup.error {
  border-left: 4px solid #f44336;
}

.popup-container .popup.success {
  border-left: 4px solid #4caf50;
}

.popup-container .popup .popup-title {
  font-weight: 600;
  font-size: 14px;
}

.popup-container .popup.error .popup-title {
  color: #f44336;
}

.popup-container .popup.success .popup-title {
  color: #4caf50;
}

.popup-container .popup .popup-close {
  font-size: 28px;
  cursor: pointer;
  color: #6c757d;
  transition: color 0.2s;
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: lighter;
  background: none;
  border: none;
}

.popup-container .popup .popup-close:hover {
  color: #343a40;
}

.popup-container .popup .popup-content {
  padding: 16px;
  font-size: 14px;
  color: #495057;
}
