.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-d1a1418 *//* ==========================================================================
   zoundio — Site Header
   ========================================================================== */

:root {
  --zoundio-primary: #1F3A5F;
  --zoundio-primary-hover: #16294480;
  --zoundio-accent: #FF6B35;
  --zoundio-accent-hover: #E5551F;
  --zoundio-text: #10151A;
  --zoundio-muted: #52605C;
  --zoundio-background: #FFFFFFE6;
  --zoundio-surface: #FFFFFF;
  --zoundio-border: #DCE1DA;

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --header-height: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

body { margin: 0; font-family: var(--font-body); }

a { text-decoration: none; color: inherit; }

ul { list-style: none; margin: 0; padding: 0; }

/* ============================= HEADER SHELL ============================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--zoundio-background);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--zoundio-border);
}

.header-inner {
  height: var(--header-height);
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2, 1rem);
}

/* ============================= LOGO ============================= */

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--zoundio-text);
  letter-spacing: -0.02em;
  padding: 0.25em 0.1em;
  position: relative;
  transition: color 0.2s var(--ease);
}

.logo::after {
  content: '';
  position: absolute;
  left: 0.1em;
  right: 0.1em;
  bottom: 0;
  height: 2px;
  background: var(--zoundio-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.logo:hover::after,
.logo:focus-visible::after {
  transform: scaleX(1);
}

.logo:focus-visible {
  outline: 2px solid var(--zoundio-accent);
  outline-offset: 4px;
  border-radius: 3px;
}

/* ============================= DESKTOP NAV ============================= */

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.2vw, 2rem);
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--zoundio-muted);
  padding: 0.5em 0.1em;
  position: relative;
  transition: color 0.2s var(--ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0.1em;
  right: 0.1em;
  bottom: 0.15em;
  height: 2px;
  background: var(--zoundio-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-list a:hover {
  color: var(--zoundio-text);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  transform: scaleX(1);
}

.nav-list a:focus-visible {
  outline: 2px solid var(--zoundio-accent);
  outline-offset: 4px;
  border-radius: 3px;
  color: var(--zoundio-text);
}

/* ============================= CTA BUTTON ============================= */

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  background: var(--zoundio-accent);
  padding: 0.65em 1.4em;
  border-radius: 8px;
  min-height: 42px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 1px 2px rgba(16, 21, 26, 0.08);
}

.btn-cta:hover {
  background: var(--zoundio-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.28);
}

.btn-cta:focus-visible {
  outline: 3px solid var(--zoundio-primary);
  outline-offset: 3px;
}

/* ============================= MOBILE TOGGLE ============================= */

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--zoundio-border);
  border-radius: 8px;
  background: var(--zoundio-surface);
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle:focus-visible {
  outline: 3px solid var(--zoundio-accent);
  outline-offset: 2px;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--zoundio-text);
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease), background 0.2s var(--ease);
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }

.menu-open .menu-icon {
  background: transparent;
}

.menu-open .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ============================= MOBILE PANEL ============================= */

.mobile-nav {
  display: none;
}

.mobile-nav-list {
  padding: var(--space-2, 1rem) clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-list a {
  display: block;
  padding: 0.85em 0.25em;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--zoundio-text);
  border-bottom: 1px solid var(--zoundio-border);
}

.mobile-nav-list li:nth-last-child(2) a {
  border-bottom: 1px solid var(--zoundio-border);
}

.mobile-nav-list a:focus-visible {
  outline: 2px solid var(--zoundio-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn-cta-mobile {
  margin-top: 0.75rem;
  width: 100%;
  border-bottom: none !important;
  text-align: center;
}

/* ============================= RESPONSIVE ============================= */

@media (max-width: 860px) {
  .primary-nav { display: none; }

  .menu-toggle { display: inline-flex; }

  .mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    background: var(--zoundio-surface);
    transition: max-height 0.32s var(--ease), border-color 0.32s var(--ease);
  }

  .mobile-nav[data-state="open"] {
    max-height: 420px;
    border-top-color: var(--zoundio-border);
  }
}

@media (max-width: 400px) {
  .logo { font-size: 1.25rem; }
}

/* ============================= REDUCED MOTION ============================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}/* End custom CSS */