/*
 Theme Name:   AXIV Theme
 Theme URI:    https://axiv.ro
 Description:  AXIV Theme is the Blocksy child theme for axiv.ro, built for AXIV's premium technology services, content, conversion flows, and controlled digital operations.
 Author:       AXIV
 Author URI:   https://axiv.ro
 Template:     blocksy
 Version:      1.0.0
 Requires at least: 6.0
 Tested up to: 6.8
 Requires PHP: 8.1
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  axivtheme
 Tags:         custom-logo, custom-menu, blocksy-child, business, technology, services
*/

@import url("../blocksy/style.css");

/* === AXIV Brand Customizations === */

:root {
  --axiv-blue: #0072FF;
  --axiv-dark: #1A1A1A;
  --axiv-gray: #A7A9AC;
  --axiv-green: #00B67A;
}

body {
  font-family: "Exo 2", "Roboto", sans-serif;
  background-color: #fff;
  color: var(--axiv-dark);
}

a {
  color: var(--axiv-blue);
  transition: 0.3s;
}

a:hover {
  color: var(--axiv-green);
}

.ct-button {
  background-color: var(--axiv-blue);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
}

.ct-button:hover {
  background-color: var(--axiv-green);
}

﻿
/* =========================
   AXIV Theme Header Module
   Branch: header
   ========================= */
:root {
  --axiv-header-height: 100px;
  --axiv-orchid-blue: #0072ff;
  --axiv-orchid-cyan: #9eefff;
  --axiv-orchid-violet: #7257ff;
  --axiv-orchid-pink: #ff4fd8;
  --axiv-ink: #1a1a1a;
  --axiv-ink-soft: #3c434a;
  --axiv-shape-radius: 5px 0 5px 0;
}

body.admin-bar .axiv-theme-header {
  top: 32px;
}

.axiv-theme-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 9999;
  min-height: var(--axiv-header-height);
  background: linear-gradient(90deg, rgba(255,255,255,0.78), rgba(248,252,255,0.80) 48%, rgba(255,255,255,0.76));
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 16px 42px rgba(26, 26, 26, 0.045);
  isolation: isolate;
  transform: translateY(0);
  transition: transform 320ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.axiv-site-header.axiv-theme-header.is-scroll-hidden {
  transform: translateY(-112%);
}

.axiv-theme-header__inner {
  width: min(1220px, calc(100% - 48px));
  min-height: var(--axiv-header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) auto max-content;
  align-items: stretch;
  gap: 24px;
}

.axiv-theme-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: var(--axiv-header-height);
  text-decoration: none !important;
}

.axiv-theme-brand__logo {
  display: block;
  width: 88px;
  height: auto;
}

.axiv-theme-brand__text {
  display: grid;
  gap: 0;
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  line-height: 1.08;
  font-weight: 600;
  color: var(--axiv-ink);
}

.axiv-theme-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-height: var(--axiv-header-height);
}

.axiv-theme-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--axiv-header-height);
  padding: 0 18px;
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none !important;
  letter-spacing: 0;
  color: var(--axiv-ink);
  background: transparent;
  transition: background 220ms ease, color 220ms ease;
}

.axiv-theme-nav__link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.72) 0%, rgba(233,250,255,0.9) 48%, rgba(246,231,255,0.82) 100%);
  transition: opacity 220ms ease;
}

.axiv-theme-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--axiv-orchid-blue), var(--axiv-orchid-violet), var(--axiv-orchid-pink), var(--axiv-orchid-cyan));
  transition: transform 220ms ease;
}

.axiv-theme-nav__link:hover,
.axiv-theme-nav__link:focus-visible,
.axiv-theme-nav__link.is-active {
  color: transparent;
  background-image: repeating-linear-gradient(90deg, #1a1a1a 0 28%, #3c434a 34% 48%, #1a1a1a 56% 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.axiv-theme-nav__link:hover::before,
.axiv-theme-nav__link:focus-visible::before,
.axiv-theme-nav__link.is-active::before {
  opacity: 1;
}

.axiv-theme-nav__link:hover::after,
.axiv-theme-nav__link:focus-visible::after,
.axiv-theme-nav__link.is-active::after {
  transform: scaleX(1);
}

.axiv-theme-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-height: var(--axiv-header-height);
  gap: 4px;
}

.axiv-theme-icon-button,
.axiv-theme-social,
.axiv-theme-menu-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  border: 0;
  border-radius: var(--axiv-shape-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #ffffff;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.axiv-theme-icon-button:hover,
.axiv-theme-social:hover,
.axiv-theme-menu-toggle:hover,
.axiv-theme-icon-button:focus-visible,
.axiv-theme-social:focus-visible,
.axiv-theme-menu-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(26, 26, 26, 0.16);
  filter: saturate(1.08) contrast(1.05);
}

.axiv-theme-icon-button {
  background: linear-gradient(135deg, #1a1a1a 0%, #3c434a 48%, #0d0f12 100%);
}

.axiv-theme-search-icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.axiv-theme-search-icon::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.axiv-theme-social span {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.axiv-theme-social--facebook {
  background: linear-gradient(135deg, #0877f2 0%, #0059c9 55%, #49c2ff 100%);
}

.axiv-theme-social--linkedin {
  background: linear-gradient(135deg, #0a66c2 0%, #004182 58%, #5ab7ff 100%);
}

.axiv-theme-social--google {
  background: linear-gradient(135deg, #34a853 0%, #4285f4 44%, #fbbc05 72%, #ea4335 100%);
}

.axiv-theme-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(135deg, #1a1a1a 0%, #3c434a 50%, #111 100%);
}

.axiv-theme-menu-toggle span {
  width: 15px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.axiv-theme-mobile-panel,
.axiv-theme-search-panel {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto 14px;
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: var(--axiv-shape-radius);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 42px rgba(26,26,26,0.10);
}

.axiv-theme-mobile-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.axiv-theme-mobile-nav a {
  padding: 16px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none !important;
  color: var(--axiv-ink);
  border-bottom: 1px solid rgba(26,26,26,0.08);
}

.axiv-theme-search-form {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 10px;
  padding: 14px;
}

.axiv-theme-search-form input,
.axiv-theme-search-form button {
  min-height: 44px;
  border: 0;
  border-radius: var(--axiv-shape-radius);
  font-family: 'Exo 2', sans-serif;
}

.axiv-theme-search-form input {
  padding: 0 14px;
  background: #f4f7fa;
  color: var(--axiv-ink);
}

.axiv-theme-search-form button {
  color: #1a1a1a;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #eefaff 52%, #f8efff 100%);
  cursor: pointer;
}

@media (max-width: 999px) {
  body.admin-bar .axiv-theme-header {
    top: 46px;
  }

  .axiv-theme-header__inner {
    width: min(100% - 32px, 1220px);
    grid-template-columns: 1fr max-content;
    gap: 12px;
  }

  .axiv-theme-nav {
    display: none;
  }

  .axiv-theme-brand__logo {
    width: 82px;
  }

  .axiv-theme-social {
    display: none;
  }

  .axiv-theme-menu-toggle {
    display: inline-flex;
  }

  .axiv-theme-mobile-panel,
  .axiv-theme-search-panel {
    width: min(100% - 32px, 1220px);
  }
}

@media (max-width: 600px) {
  body.admin-bar .axiv-theme-header {
    top: 0;
  }

  .axiv-theme-brand__text {
    font-size: 10px;
  }

  .axiv-theme-mobile-nav,
  .axiv-theme-search-form {
    grid-template-columns: 1fr;
  }
}

/* =========================
   AXIV Header Parity Pass
   Recreates the earlier Blocksy-child header as an AXIVTheme-owned module.
   ========================= */
.axiv-site-header.axiv-theme-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10000;
  min-height: var(--axiv-header-height, 100px);
  background: linear-gradient(90deg, rgba(255,255,255,0.78), rgba(248,252,255,0.80) 48%, rgba(255,255,255,0.76));
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  box-shadow: 0 16px 42px rgba(26, 26, 26, 0.045);
  isolation: isolate;
  transform: translateY(0);
  transition: transform 320ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

body.admin-bar .axiv-site-header.axiv-theme-header {
  top: 32px;
}

.axiv-header-row.axiv-theme-header__inner {
  display: flex;
  width: min(1220px, calc(100% - 48px));
  min-height: var(--axiv-header-height, 100px);
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto;
}

.axiv-header-start,
.axiv-header-end {
  display: flex;
  min-height: var(--axiv-header-height, 100px);
  align-items: stretch;
}

.axiv-header-start {
  flex: 0 0 auto;
}

.axiv-header-end {
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 0;
}

.axiv-brand-lockup.axiv-theme-brand {
  display: inline-flex;
  min-height: var(--axiv-header-height, 100px);
  align-items: center;
  gap: 8px;
  color: var(--axiv-ink, #1a1a1a);
  text-decoration: none !important;
}

.axiv-brand-logo.axiv-theme-brand__logo {
  display: block;
  width: auto;
  height: 32px;
  max-width: none;
}

.axiv-logo-text.axiv-theme-brand__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--axiv-ink, #1a1a1a);
  font-family: "Exo 2", "Roboto", Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.axiv-logo-line {
  display: block;
  white-space: nowrap;
}

.axiv-logo-line.line-2 {
  margin-left: -10px;
}

.axiv-logo-line.line-3 {
  margin-left: -20px;
}

.axiv-primary-nav.axiv-theme-nav {
  display: flex;
  min-height: var(--axiv-header-height, 100px);
  align-items: stretch;
  justify-content: flex-end;
}

.axiv-menu {
  display: flex;
  min-height: var(--axiv-header-height, 100px);
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.axiv-menu > li {
  display: flex;
  min-height: var(--axiv-header-height, 100px);
  margin: 0;
  padding: 0;
}

.axiv-menu > li > a {
  position: relative;
  display: inline-flex;
  min-height: var(--axiv-header-height, 100px);
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--axiv-ink, #1a1a1a);
  font-family: "Exo 2", "Roboto", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none !important;
  text-transform: uppercase;
}

.axiv-menu > li > a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.72) 0%, rgba(233,250,255,0.92) 48%, rgba(246,231,255,0.86) 100%);
  transition: opacity 220ms ease;
}

.axiv-menu > li > a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--axiv-orchid-blue, #0072ff), var(--axiv-orchid-violet, #7257ff), var(--axiv-orchid-pink, #ff4fd8), var(--axiv-orchid-cyan, #9eefff));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.axiv-menu > li > a:hover,
.axiv-menu > li > a:focus-visible,
.axiv-menu > li.current-menu-item > a {
  color: transparent;
  background-image: repeating-linear-gradient(90deg, #1a1a1a 0 28%, #3c434a 34% 48%, #1a1a1a 56% 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.axiv-menu > li > a:hover::before,
.axiv-menu > li > a:focus-visible::before,
.axiv-menu > li.current-menu-item > a::before {
  opacity: 1;
}

.axiv-menu > li > a:hover::after,
.axiv-menu > li > a:focus-visible::after,
.axiv-menu > li.current-menu-item > a::after {
  transform: scaleX(1);
}

.axiv-header-search.axiv-theme-icon-button,
.axiv-socials .axiv-theme-social,
.axiv-menu-toggle.axiv-theme-menu-toggle {
  display: inline-flex;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: var(--axiv-shape-radius, 5px 0 5px 0);
  color: #fff;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.axiv-header-search.axiv-theme-icon-button {
  background: linear-gradient(135deg, #1a1a1a 0%, #3c434a 48%, #0d0f12 100%);
}

.axiv-header-search svg,
.axiv-socials svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.axiv-socials {
  display: inline-flex;
  min-height: var(--axiv-header-height, 100px);
  align-items: center;
  gap: 4px;
  margin-left: 10px;
}

.axiv-header-search {
  align-self: center;
  margin-left: 10px;
}

.axiv-socials .axiv-theme-social--facebook {
  background: linear-gradient(135deg, #0877f2 0%, #0059c9 55%, #49c2ff 100%);
}

.axiv-socials .axiv-theme-social--linkedin {
  background: linear-gradient(135deg, #0a66c2 0%, #004182 58%, #5ab7ff 100%);
}

.axiv-socials .axiv-theme-social--google {
  background: linear-gradient(135deg, #34a853 0%, #4285f4 44%, #fbbc05 72%, #ea4335 100%);
}

.axiv-header-search:hover,
.axiv-header-search:focus-visible,
.axiv-socials .axiv-theme-social:hover,
.axiv-socials .axiv-theme-social:focus-visible,
.axiv-menu-toggle:hover,
.axiv-menu-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(26, 26, 26, 0.16);
  filter: saturate(1.08) contrast(1.05);
}

.axiv-search-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: start center;
  padding: 120px 24px 24px;
  background: rgba(26, 26, 26, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.axiv-search-modal[hidden] {
  display: grid;
}

.axiv-search-open .axiv-search-modal {
  opacity: 1;
  pointer-events: auto;
}

.axiv-search-panel {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(28px, 4vw, 48px);
  background: #fff;
  border-radius: var(--axiv-shape-radius, 5px 0 5px 0);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(-12px);
  transition: transform 180ms ease;
}

.axiv-search-open .axiv-search-panel {
  transform: none;
}

.axiv-search-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--axiv-ink, #1a1a1a);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.axiv-search-form label {
  display: block;
  margin-bottom: 16px;
  color: transparent;
  background-image: repeating-linear-gradient(90deg, #1a1a1a 0 28%, #3c434a 34% 48%, #1a1a1a 56% 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: "Exo 2", "Roboto", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
}

.axiv-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.axiv-search-row input {
  min-height: 48px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: var(--axiv-shape-radius, 5px 0 5px 0);
  padding: 0 14px;
  background: #f7f9fb;
  color: var(--axiv-ink, #1a1a1a);
  font: inherit;
}

.axiv-search-row button {
  min-width: 150px;
  min-height: 48px;
  border: 0;
  border-radius: var(--axiv-shape-radius, 5px 0 5px 0);
  padding: 0 24px;
  background: linear-gradient(135deg, #ffffff 0%, #eefaff 52%, #f8efff 100%);
  color: transparent;
  background-clip: padding-box, text;
  -webkit-background-clip: padding-box, text;
  font-family: "Exo 2", "Roboto", Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 999px) {
  body.admin-bar .axiv-site-header.axiv-theme-header {
    top: 46px;
  }

  .axiv-header-row.axiv-theme-header__inner {
    width: min(100% - 32px, 1220px);
    gap: 14px;
  }

  .axiv-primary-nav.axiv-theme-nav,
  .axiv-socials {
    display: none;
  }

  .axiv-brand-logo.axiv-theme-brand__logo {
    height: 30px;
  }

  .axiv-menu-toggle.axiv-theme-menu-toggle {
    display: inline-flex;
    align-self: center;
    flex-direction: column;
    gap: 4px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3c434a 50%, #111 100%);
  }

  .axiv-menu-open .axiv-theme-mobile-panel {
    display: block;
  }
}

@media (max-width: 600px) {
  body.admin-bar .axiv-site-header.axiv-theme-header {
    top: 0;
  }

  .axiv-logo-text.axiv-theme-brand__text {
    font-size: 10px;
  }

  .axiv-search-row {
    grid-template-columns: 1fr;
  }
}

/* Header parity fix: hamburger-ul este doar pentru mobil. */
.axiv-site-header .axiv-menu-toggle.axiv-theme-menu-toggle {
  display: none !important;
}

@media (max-width: 999px) {
  .axiv-site-header .axiv-menu-toggle.axiv-theme-menu-toggle {
    display: inline-flex !important;
  }
}

/* AXIV Social parity + top alignment correction. */
html {
  margin-top: 0 !important;
}

body {
  margin: 0 !important;
}

body.admin-bar .axiv-site-header.axiv-theme-header,
.axiv-site-header.axiv-theme-header {
  top: 0 !important;
}

#main-container,
#main,
.site-main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.home #main,
.home .site-main,
.home article,
.home .entry-content,
.home .elementor,
.home .elementor-section-wrap,
.home .elementor > .elementor-element:first-child,
.home .entry-content > :first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.axiv-socials .axiv-theme-social.axiv-social-platform-mark {
  position: relative;
  display: inline-flex;
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 5px 0 5px 0;
  color: #fff;
  font-family: "Exo 2", "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.axiv-socials .axiv-theme-social.axiv-social-platform-mark.is-facebook_company {
  background: linear-gradient(135deg, #1877f2 0%, #0d55b5 100%);
}

.axiv-socials .axiv-theme-social.axiv-social-platform-mark.is-linkedin_company {
  background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
}

.axiv-socials .axiv-theme-social.axiv-social-platform-mark.is-google_business {
  background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
}

.axiv-socials .axiv-theme-social.axiv-social-platform-mark::before,
.axiv-socials .axiv-theme-social.axiv-social-platform-mark::after {
  content: none !important;
}

.axiv-socials .axiv-theme-social.axiv-social-platform-mark:hover,
.axiv-socials .axiv-theme-social.axiv-social-platform-mark:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(18, 25, 34, 0.18);
  filter: saturate(1.05) contrast(1.03);
}

/* Elimina linia anonima creata de noduri invizibile injectate in body. */
body {
  line-height: 0 !important;
}

#main-container {
  font-size: 16px;
  line-height: var(--theme-line-height, 1.65) !important;
}

/* Header tuning: nav Roboto + search icon aligned with AXIV Social marks. */
.axiv-menu > li > a {
  font-family: "Roboto", Arial, sans-serif;
}

.axiv-header-search.axiv-theme-icon-button {
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.axiv-header-search svg {
  width: 15px;
  height: 15px;
}

/* Tablet/mobile burger menu aligned with AXIV header design. */
.axiv-theme-mobile-panel {
  position: absolute;
  top: calc(var(--axiv-header-height, 100px) + 1px);
  right: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(240,250,255,0.96) 52%, rgba(249,241,255,0.96) 100%);
  box-shadow: 0 24px 54px rgba(18, 25, 34, 0.15);
}

.axiv-theme-mobile-panel[hidden] {
  display: none !important;
}

.axiv-theme-mobile-nav {
  display: grid;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 16px 0 0;
}

.axiv-theme-mobile-nav a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  color: transparent;
  background-image: repeating-linear-gradient(90deg, #1a1a1a 0 28%, #3c434a 34% 48%, #1a1a1a 56% 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  text-transform: uppercase;
}

.axiv-theme-mobile-actions {
  display: flex;
  width: min(1220px, calc(100% - 40px));
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  padding: 16px 0 18px;
}

.axiv-theme-mobile-actions .axiv-header-search.axiv-theme-icon-button {
  width: auto;
  min-width: 112px;
  height: 34px;
  min-height: 34px;
  gap: 8px;
  padding: 0 12px;
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.axiv-theme-mobile-actions .axiv-header-search svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.axiv-theme-mobile-actions .axiv-theme-mobile-socials {
  display: inline-flex;
  min-height: auto;
  align-items: center;
  gap: 7px;
  margin-left: 0;
}

@media (max-width: 999px) {
  .axiv-header-end.axiv-theme-actions {
    display: none;
  }

  .axiv-header-row.axiv-theme-header__inner {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .axiv-theme-mobile-nav,
  .axiv-theme-mobile-actions {
    width: min(100% - 28px, 1220px);
  }

  .axiv-theme-mobile-nav {
    grid-template-columns: 1fr;
  }

  .axiv-theme-mobile-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* Mobile dropdown polish after browser QA. */
@media (max-width: 999px) {
  .axiv-theme-mobile-panel {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(239,250,255,0.98) 52%, rgba(248,240,255,0.98) 100%);
  }
}

@media (max-width: 640px) {
  .axiv-theme-mobile-actions {
    justify-content: center;
  }
}

/* Mobile menu motion: burger -> X and dropdown flow. */
.axiv-menu-toggle.axiv-theme-menu-toggle {
  position: relative;
  overflow: hidden;
}

.axiv-menu-toggle.axiv-theme-menu-toggle span {
  display: block;
  transform-origin: center;
  transition:
    transform 260ms cubic-bezier(.2,.8,.2,1),
    opacity 180ms ease,
    background 180ms ease;
}

.axiv-theme-header.is-mobile-open .axiv-menu-toggle.axiv-theme-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.axiv-theme-header.is-mobile-open .axiv-menu-toggle.axiv-theme-menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: rotate(180deg) scaleX(0.25);
}

.axiv-theme-header.is-mobile-open .axiv-menu-toggle.axiv-theme-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.axiv-theme-mobile-panel {
  display: block;
  opacity: 0;
  transform: translateY(-16px) scaleY(0.96);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 280ms cubic-bezier(.2,.8,.2,1);
}

.axiv-theme-mobile-panel.is-open {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  pointer-events: auto;
}

.axiv-theme-mobile-panel.is-closing {
  opacity: 0;
  transform: translateY(-10px) scaleY(0.98);
  pointer-events: none;
}

.axiv-theme-mobile-panel[hidden]:not(.is-closing) {
  display: none !important;
}

.axiv-theme-mobile-actions .axiv-header-search.axiv-theme-icon-button {
  width: 26px;
  min-width: 26px;
  height: 26px;
  min-height: 26px;
  gap: 0;
  padding: 0;
}

.axiv-theme-mobile-actions .axiv-header-search.axiv-theme-icon-button span {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .axiv-menu-toggle.axiv-theme-menu-toggle span,
  .axiv-theme-mobile-panel {
    transition: none;
  }
}

/* Mobile dropdown height tune: keep actions clear of hero pricing. */
@media (max-width: 640px) {
  .axiv-theme-mobile-nav {
    padding-top: 10px;
  }

  .axiv-theme-mobile-nav a {
    min-height: 44px;
  }

  .axiv-theme-mobile-actions {
    padding: 12px 0 14px;
  }
}

/* Mobile dropdown underline and glow: expands on open and retracts on close. */
@media (max-width: 999px) {
  .axiv-site-header.axiv-theme-header::before,
  .axiv-site-header.axiv-theme-header::after {
    position: absolute;
    right: 0;
    left: 0;
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 320ms cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
  }

  .axiv-site-header.axiv-theme-header::after {
    bottom: -1px;
    z-index: 4;
    height: 2px;
    background: linear-gradient(90deg, var(--axiv-orchid-blue, #0072ff), var(--axiv-orchid-violet, #7257ff), var(--axiv-orchid-pink, #ff4fd8), var(--axiv-orchid-cyan, #9eefff));
  }

  .axiv-site-header.axiv-theme-header::before {
    bottom: -20px;
    z-index: 3;
    height: 20px;
    background: linear-gradient(90deg, var(--axiv-orchid-blue, #0072ff), var(--axiv-orchid-violet, #7257ff), var(--axiv-orchid-pink, #ff4fd8), var(--axiv-orchid-cyan, #9eefff));
    filter: blur(10px);
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.58), rgba(0,0,0,0));
    opacity: 0.5;
  }

  .axiv-site-header.axiv-theme-header.is-mobile-open::before,
  .axiv-site-header.axiv-theme-header.is-mobile-open::after {
    transform: scaleX(1);
  }

  .axiv-theme-mobile-nav {
    width: 100%;
    padding: 28px 2em 0 2em;
    justify-items: center;
    box-sizing: border-box;
  }

  .axiv-theme-mobile-nav a {
    justify-content: center;
    padding: 0;
    border-bottom: 0 !important;
    text-align: center;
  }

  .axiv-theme-mobile-actions {
    width: 100%;
    justify-content: center !important;
    padding: 20px 2em 24px;
    box-sizing: border-box;
  }
}

@media (prefers-reduced-motion: reduce) {
  .axiv-site-header.axiv-theme-header,
  .axiv-site-header.axiv-theme-header::before,
  .axiv-site-header.axiv-theme-header::after {
    transition: none;
  }
}

/* =========================
   AXIV Theme Footer Module
   Branch: footer
   ========================= */
.axiv-theme-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Roboto", Arial, sans-serif;
  position: relative;
  z-index: 1;
}

.axiv-theme-footer a {
  color: #ffffff;
  text-decoration: none;
}

.axiv-theme-footer a:hover,
.axiv-theme-footer a:focus-visible {
  color: var(--axiv-orchid-cyan);
}

.axiv-theme-footer__main {
  padding: 62px 0 48px;
}

.axiv-theme-footer .ct-container {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

.axiv-theme-footer__grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.78fr) minmax(120px, 0.78fr) minmax(240px, 1.1fr) minmax(320px, 1.45fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
}

.axiv-theme-footer .ct-widget {
  margin: 0 0 18px;
}

.axiv-theme-footer__brand-column img {
  display: block;
  width: 160px;
  max-width: 100%;
  height: auto;
}

.axiv-theme-footer .footer-menu-inline .menu,
.axiv-theme-footer .menu {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.axiv-theme-footer .ct-menu-link {
  display: inline-flex;
  color: #ffffff;
  font-family: "Exo 2", "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.axiv-theme-footer__contact-column {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.axiv-theme-footer__contact-column p {
  margin: 0 0 18px;
}

.axiv-theme-footer .axiv-anpc-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.axiv-theme-footer .axiv-anpc-item {
  display: inline-flex;
  width: fit-content;
  padding: 6px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--axiv-shape-radius);
}

.axiv-theme-footer .axiv-anpc-item img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
}

.axiv-theme-footer .footer-newsletter h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: "Exo 2", "Roboto", sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.22;
}

.axiv-theme-footer .fnl-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.axiv-theme-footer .fnl-row > p,
.axiv-theme-footer .fnl-col > p,
.axiv-theme-footer .fnl-gdpr p,
.axiv-theme-footer .fnl-actions p {
  margin: 0;
}

.axiv-theme-footer .wpcf7-form-control-wrap {
  display: block;
}

.axiv-theme-footer input[type="text"],
.axiv-theme-footer input[type="email"] {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: var(--axiv-shape-radius);
}

.axiv-theme-footer .fnl-gdpr {
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.55;
}

.axiv-theme-footer .wpcf7-list-item {
  margin: 0;
}

.axiv-theme-footer .fnl-actions input[type="submit"] {
  min-width: 170px;
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--axiv-shape-radius);
  background: linear-gradient(135deg, #ffffff 0%, #f2f7fb 48%, #efe5ff 100%);
  color: #1a1a1a;
  font-family: "Exo 2", "Roboto", sans-serif;
  font-weight: 800;
}

.axiv-theme-footer .fnl-actions input[type="submit"]:not(:disabled) {
  cursor: pointer;
}

.axiv-theme-footer .fnl-actions input[type="submit"]:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(158,239,255,0.95) 0%, rgba(230,246,255,0.98) 50%, rgba(246,231,255,0.96) 100%);
}

.axiv-theme-footer .wpcf7-spinner,
.axiv-theme-footer .wpcf7-response-output,
.axiv-theme-footer .screen-reader-response,
.axiv-theme-footer .wpcf7-turnstile {
  margin-top: 10px;
}

.axiv-theme-footer__bottom {
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.axiv-theme-footer .ct-footer-copyright {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.5;
}

.axiv-theme-footer .ct-footer-copyright p {
  margin: 0;
}

@media (max-width: 999px) {
  .axiv-theme-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .axiv-theme-footer__newsletter-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .axiv-theme-footer__main {
    padding: 46px 0 34px;
  }

  .axiv-theme-footer .ct-container {
    width: min(100% - 32px, 1220px);
  }

  .axiv-theme-footer__grid,
  .axiv-theme-footer .fnl-row {
    grid-template-columns: 1fr;
  }

  .axiv-theme-footer .ct-footer-copyright {
    display: grid;
    justify-content: start;
  }
}
/* Footer parity reset: keep AXIV-owned markup visually aligned with the current Blocksy footer. */
.axiv-theme-footer.axiv-theme-footer .axiv-theme-footer__main {
  padding: 0;
}

.axiv-theme-footer.axiv-theme-footer .axiv-theme-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.axiv-theme-footer.axiv-theme-footer .axiv-theme-footer__grid > [data-column] {
  min-height: 410px;
}

.axiv-theme-footer.axiv-theme-footer .footer-newsletter h2 {
  margin-top: 3em;
  font-size: 22px;
}

.axiv-theme-footer.axiv-theme-footer input[type="text"],
.axiv-theme-footer.axiv-theme-footer input[type="email"] {
  min-height: 36px;
  padding: 7px 10px;
}

.axiv-theme-footer.axiv-theme-footer .fnl-gdpr {
  margin: 8px 0;
  font-size: 12px;
  line-height: 1.45;
}

.axiv-theme-footer.axiv-theme-footer .fnl-actions input[type="submit"] {
  min-height: 36px;
}

@media (max-width: 999px) {
  .axiv-theme-footer.axiv-theme-footer .axiv-theme-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .axiv-theme-footer.axiv-theme-footer .axiv-theme-footer__grid > [data-column] {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .axiv-theme-footer.axiv-theme-footer .axiv-theme-footer__grid {
    grid-template-columns: 1fr;
  }
}
/* Footer newsletter parity with the current live Blocksy layout. */
.axiv-theme-footer.axiv-theme-footer .fnl-row {
  display: flex;
  gap: 10px;
  padding: 5px 0;
}

.axiv-theme-footer.axiv-theme-footer .fnl-row > p {
  width: 100%;
}

.axiv-theme-footer.axiv-theme-footer .fnl-col {
  flex: 1 1 0;
}

.axiv-theme-footer.axiv-theme-footer .fnl-gdpr {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.axiv-theme-footer.axiv-theme-footer input[type="text"],
.axiv-theme-footer.axiv-theme-footer input[type="email"] {
  min-height: 40px;
  padding: 0 15px;
}

.axiv-theme-footer.axiv-theme-footer .fnl-actions input[type="submit"] {
  min-width: 133px;
  min-height: 40px;
  padding: 5px 20px;
}

.axiv-theme-footer.axiv-theme-footer .wpcf7-turnstile {
  margin-top: 0;
}
.axiv-theme-footer.axiv-theme-footer .fnl-gdpr br {
  display: none;
}
/* Footer bottom/action final parity. */
.axiv-theme-footer.axiv-theme-footer .axiv-theme-footer__bottom {
  padding: 0;
}

.axiv-theme-footer.axiv-theme-footer .fnl-actions {
  min-height: 64px;
  max-height: 64px;
}
/* Footer parity correction after full script/style audit. */
.axiv-theme-footer.axiv-theme-footer .ct-footer-copyright {
  display: block;
}

.axiv-theme-footer.axiv-theme-footer .ct-footer-copyright p + p {
  margin-top: 8px;
}

.axiv-theme-footer.axiv-theme-footer .axiv-anpc-stack {
  margin-top: 0;
  gap: 8px;
}

.axiv-theme-footer.axiv-theme-footer .axiv-anpc-item {
  background: #1a1a1a;
  padding: 0;
}

.axiv-theme-footer.axiv-theme-footer #footer-menu .menu {
  gap: 12px;
}

.axiv-theme-footer.axiv-theme-footer #footer-menu .ct-menu-link,
.axiv-theme-footer.axiv-theme-footer #footer-menu a {
  min-height: 0 !important;
  height: auto !important;
  padding: 0 12.5px !important;
  line-height: 16px !important;
}

.axiv-theme-footer.axiv-theme-footer .axiv-theme-footer__contact-column .ct-widget {
  margin-bottom: 8px;
}

.axiv-theme-footer.axiv-theme-footer .axiv-theme-footer__contact-column #block-54 {
  margin-top: 0;
}
/* Independent AXIV diagonal separator above the footer. */
.axiv-theme-footer.axiv-theme-footer {
  margin-top: 3em;
}

.axiv-theme-footer.axiv-theme-footer::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: calc(100% - 1px);
  left: 0;
  height: 3em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%231a1a1a'/%3E%3Cstop offset='.68' stop-color='%231a1a1a'/%3E%3Cstop offset='.88' stop-color='%23221925'/%3E%3Cstop offset='1' stop-color='%2340183d'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon points='0,100 100,0 100,100' fill='url(%23g)' fill-opacity='.24'/%3E%3Cpolygon points='0,100 100,20 100,100' fill='url(%23g)' fill-opacity='.28'/%3E%3Cpolygon points='0,100 100,40 100,100' fill='url(%23g)' fill-opacity='.34'/%3E%3Cpolygon points='0,100 100,60 100,100' fill='url(%23g)' fill-opacity='.42'/%3E%3Cpolygon points='0,100 100,80 100,100' fill='url(%23g)' fill-opacity='.52'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
}