:root {
  --ci-yellow: #f9d619;
  --ci-yellow-2: #edc800;
  --ci-black: #000000;
  --ci-ink: #111315;
  --ci-muted: #667175;
  --ci-line: #dce3e5;
  --ci-white: #ffffff;
  --ci-radius: 8px;
  --ci-max: 1360px;
  --ci-shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
}

.ci-header *,
.ci-footer *,
.ci-wa-float,
.ci-wa-float * {
  box-sizing: border-box;
}

.ci-header a,
.ci-footer a,
.ci-wa-float {
  color: inherit;
  text-decoration: none;
}

.ci-header img,
.ci-footer img,
.ci-wa-float img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ci-shell {
  width: min(var(--ci-max), calc(100% - 48px));
  margin: 0 auto;
}

.ci-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

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

.ci-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 214, 25, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ci-header:hover {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.ci-header:hover::after {
  opacity: 1;
}

.ci-header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.ci-logo {
  flex: 0 0 auto;
}

.ci-logo img {
  width: 246px;
  height: auto;
}

.ci-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  color: var(--ci-black);
  font-family: Heebo, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1;
}

.ci-nav a {
  position: relative;
  padding: 12px 0;
}

.ci-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--ci-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.ci-nav a:hover::after {
  transform: scaleX(1);
}

.ci-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ci-header-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--ci-yellow);
  color: var(--ci-black) !important;
  box-shadow: 0 18px 42px rgba(249, 214, 25, 0.24);
  font-family: Heebo, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.ci-header .ci-header-cta,
.ci-header .ci-header-cta:visited,
.ci-header .ci-header-cta:hover,
.ci-header .ci-header-cta:focus,
.ci-header .ci-header-cta span,
.ci-header .ci-header-cta svg {
  color: #000000 !important;
}

.ci-header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.68) 42%, transparent 64%);
  transform: translateX(-140%);
  transition: transform 0.7s ease;
}

.ci-header-cta:hover {
  transform: translateY(-2px);
  background: #ffdf23;
  box-shadow: 0 22px 48px rgba(249, 214, 25, 0.34);
}

.ci-header-cta:hover::before {
  transform: translateX(140%);
}

.ci-header-cta span,
.ci-header-cta svg {
  position: relative;
  z-index: 1;
}

.ci-social {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ci-black);
  transition: color 0.2s ease, transform 0.2s ease;
}

.ci-social img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  border-radius: 6px;
}

.ci-social:hover {
  color: var(--ci-yellow-2);
  transform: translateY(-2px);
}

.ci-header a:focus-visible,
.ci-header button:focus-visible,
.ci-footer a:focus-visible,
.ci-wa-float:focus-visible {
  outline: 3px solid rgba(237, 200, 0, 0.72);
  outline-offset: 4px;
}

.ci-menu {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ci-black);
}

.ci-menu span {
  display: none;
}

.ci-menu::before {
  content: "";
  display: block;
  width: 31px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 9px 0 currentColor, 0 18px 0 currentColor;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ci-menu::after {
  content: "";
  position: absolute;
  width: 31px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: rotate(-45deg);
  transition: opacity 0.2s ease;
}

.ci-menu[aria-expanded="true"]::before {
  box-shadow: none;
  transform: rotate(45deg);
}

.ci-menu[aria-expanded="true"]::after {
  opacity: 1;
}

.ci-footer {
  padding: 54px 0 34px;
  background: #000;
  color: #fff;
  font-family: Heebo, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ci-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}

.ci-footer-logo {
  width: 230px;
}

.ci-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 800;
}

.ci-footer-nav a:hover {
  color: var(--ci-yellow);
}

.ci-partner {
  justify-self: end;
  width: 104px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.ci-copy {
  margin: 36px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
}

.ci-wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #25e265, #0aa84a);
  color: #fff;
  box-shadow: 0 18px 38px rgba(16, 174, 78, 0.34);
}

.ci-wa-float img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .ci-shell {
    width: min(100% - 34px, var(--ci-max));
  }

  .ci-header-inner {
    min-height: 82px;
    position: relative;
    flex-wrap: wrap;
    gap: 14px 20px;
    padding: 12px 0;
  }

  .ci-nav,
  .ci-header-actions {
    display: none;
  }

  .ci-logo {
    order: 1;
  }

  .ci-logo img {
    width: 218px;
  }

  .ci-menu {
    display: inline-flex;
    flex: 0 0 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 2;
    margin-left: auto;
  }

  .ci-header.is-open .ci-nav {
    width: 100%;
    flex: 0 0 100%;
    order: 3;
    display: grid;
    gap: 0;
    margin-left: 0;
    padding: 10px 0 2px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .ci-header.is-open .ci-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }

  .ci-header.is-open .ci-nav a::after {
    display: none;
  }

  .ci-header.is-open .ci-header-actions {
    width: 100%;
    flex: 0 0 100%;
    order: 4;
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
  }

  .ci-header.is-open .ci-header-cta {
    flex: 1;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 8px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .ci-header {
    top: 46px;
  }
}

@media (max-width: 680px) {
  .ci-shell {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .ci-logo img {
    width: 204px;
  }

  .ci-footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .ci-partner {
    justify-self: center;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .ci-header *,
  .ci-footer *,
  .ci-wa-float {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
