*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #0B1A2F;
  background: #E9ECF1;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #0B1A2F;
  color: #fff;
}

::-moz-selection {
  background: #0B1A2F;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.glass {
  background: rgba(11, 26, 47, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
}

[x-cloak] {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:active {
  transform: scale(0.96);
}
.btn--primary {
  background: linear-gradient(135deg, #2F80FF, #5899ff);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(47, 128, 255, 0.35), 0 4px 16px rgba(47, 128, 255, 0.2);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(47, 128, 255, 0.5), 0 8px 28px rgba(47, 128, 255, 0.3);
}
.btn--primary:active {
  box-shadow: 0 0 12px rgba(47, 128, 255, 0.3);
}
.btn--outline {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn--gold {
  background: #F59E0B;
  color: #0B1A2F;
}
.btn--gold:hover {
  background: #f6a823;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}
.btn--lg {
  padding: 12px 32px;
  font-size: 16px;
  border-radius: 12px;
}
.btn__arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn__wa {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}
.btn:hover .btn__wa {
  transform: scale(1.1);
}
.btn--outline-dark {
  background: transparent;
  color: #0B1A2F;
  border: 1px solid rgba(11, 26, 47, 0.2);
  box-shadow: none;
}
.btn--outline-dark:hover {
  background: rgba(11, 26, 47, 0.04);
  border-color: rgba(11, 26, 47, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.header {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 40px);
  max-width: 1480px;
  background: rgba(8, 17, 30, 0.55);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  transition: all 0.25s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__actions .btn {
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .header__actions .btn {
    display: none;
  }
}
@media (max-width: 1024px) {
  .header__actions {
    margin-left: auto;
    margin-right: 12px;
  }
  .header__actions .btn {
    display: none;
  }
}
@media (max-width: 1440px) {
  .header__inner {
    padding: 0 20px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__img {
  height: 36px;
  width: auto;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo__name {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}
.logo__sub {
  font-size: 10px;
  font-weight: 500;
  color: #C5D1E3;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 1440px) {
  .nav {
    gap: 18px;
  }
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: #E8EDF5;
  transition: color 0.25s ease;
  position: relative;
  padding: 4px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2F80FF;
  border-radius: 1px;
  transition: width 0.25s ease;
}
.nav__link:hover {
  color: #FFFFFF;
}
.nav__link:hover::after {
  width: 100%;
}
.nav__link--active {
  color: #FFFFFF;
}
.nav__link--active::after {
  width: 100%;
}
.nav__link--cta {
  color: #2F80FF;
  font-weight: 600;
  padding: 0;
}
.nav__link--cta::after {
  display: none;
}
.nav__link--cta:hover {
  color: #629fff;
}
@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 76px;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    width: calc(100vw - 40px);
    max-width: 1480px;
    background: #08111E;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 32px;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav__link {
    font-size: 16px;
    color: #FFFFFF;
  }
}

.nav__actions {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 1024px) {
  .nav__actions {
    display: flex;
    justify-content: center;
  }
}

.lang-switch {
  position: relative;
}
.lang-switch__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.lang-switch__btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.lang-switch__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #0B1A2F;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
  min-width: 80px;
}
.lang-switch__dropdown button {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}
.lang-switch__dropdown button:hover {
  background: rgba(255, 255, 255, 0.05);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.25s ease;
}
@media (max-width: 1024px) {
  .burger {
    display: flex;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
  margin: 0;
  padding-top: 96px;
  padding-bottom: 0;
  min-height: 680px;
  height: clamp(720px, 80vh, 920px);
}
@media (max-width: 1024px) {
  .hero {
    padding-top: 72px;
    height: clamp(440px, 48vh, 540px);
    min-height: 380px;
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .hero {
    margin: 0;
    padding-top: 106px;
    padding-bottom: 32px;
    height: auto;
    min-height: 580px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 24px;
    min-height: 520px;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #08111E;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.35) 90%, transparent 100%), linear-gradient(to right, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.18) 75%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .hero__bg::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.65) 55%, rgba(0, 0, 0, 0.22) 80%, transparent 100%);
  }
}
@media (max-width: 768px) {
  .hero__bg::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.7) 55%, rgba(0, 0, 0, 0.3) 85%, rgba(0, 0, 0, 0.12) 100%);
  }
}
.hero__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(24px, 4vw, 48px);
}
@media (max-width: 768px) {
  .hero__inner {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .hero__inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .hero__inner {
    padding-top: 20px;
    padding-bottom: 36px;
  }
}
@media (max-width: 480px) {
  .hero__inner {
    padding-bottom: 28px;
  }
}
.hero__content {
  max-width: clamp(520px, 48vw, 860px);
}
@media (max-width: 1024px) {
  .hero__content {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .hero__content {
    max-width: 100%;
  }
}
.hero__eyebrow {
  font-size: clamp(10px, 0.7vw, 12px);
  text-transform: uppercase;
  letter-spacing: clamp(2px, 0.25vw, 3px);
  color: #C5D1E3;
  margin-bottom: clamp(8px, 1.2vw, 14px);
}
@media (max-width: 1024px) {
  .hero__eyebrow {
    font-size: 11px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .hero__eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
}
.hero__title {
  font-size: clamp(24px, 3.2vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  color: #FFFFFF;
  margin-bottom: clamp(10px, 1.3vw, 18px);
  word-break: keep-all;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: clamp(26px, 3.5vw, 44px);
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 12px;
    line-height: 1.1;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(22px, 8vw, 30px);
    line-height: 1.12;
  }
}
.hero__title .text-accent {
  color: #2F80FF;
}
.hero__subtitle {
  font-size: clamp(12px, 0.85vw, 16px);
  color: #C5D1E3;
  margin-bottom: clamp(6px, 0.6vw, 10px);
  max-width: clamp(400px, 32vw, 560px);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .hero__subtitle {
    font-size: clamp(13px, 1.2vw, 16px);
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 8px;
    line-height: 1.5;
  }
}
.hero__cta-text {
  font-size: clamp(11px, 0.7vw, 14px);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: clamp(18px, 2.5vw, 32px);
  max-width: clamp(380px, 30vw, 520px);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .hero__cta-text {
    font-size: clamp(12px, 1vw, 14px);
    max-width: 85%;
    margin-bottom: 22px;
  }
}
@media (max-width: 768px) {
  .hero__cta-text {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 28px;
    line-height: 1.5;
  }
}
@media (max-width: 1440px) {
  .hero__title {
    font-size: clamp(32px, 3.8vw, 50px);
  }
  .hero__subtitle {
    font-size: clamp(14px, 1.05vw, 16px);
    max-width: clamp(460px, 38vw, 560px);
  }
  .hero__cta-text {
    font-size: clamp(13px, 0.85vw, 14px);
    max-width: clamp(420px, 35vw, 520px);
  }
  .hero__eyebrow {
    font-size: clamp(11px, 0.8vw, 12px);
  }
}
.hero__buttons {
  display: flex;
  gap: clamp(10px, 1vw, 16px);
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .hero__buttons {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .hero__buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
  }
}
@media (min-width: 1920px) {
  .hero__title {
    font-size: clamp(50px, 3.2vw, 72px);
  }
  .hero__subtitle {
    font-size: clamp(16px, 1vw, 22px);
  }
  .hero__cta-text {
    font-size: clamp(14px, 0.8vw, 18px);
  }
  .hero__eyebrow {
    font-size: clamp(12px, 0.7vw, 15px);
  }
}

.section-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: clamp(12px, 2vw, 20px);
  color: #0B1A2F;
}
.section-title__label {
  display: block;
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2F80FF;
  margin-bottom: 6px;
  font-weight: 600;
}

.section-desc {
  font-size: clamp(14px, 1.2vw, 18px);
  color: rgba(11, 26, 47, 0.6);
  margin-bottom: clamp(16px, 2vw, 28px);
  max-width: clamp(420px, 38vw, 580px);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .section-desc {
    max-width: 100%;
  }
}

.categories {
  padding: 80px 0;
  background: #F0F2F8;
}
@media (max-width: 1024px) {
  .categories {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .categories {
    padding: 48px 0;
  }
}
.categories__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .categories__inner {
    padding: 0 20px;
  }
}
.categories__header {
  margin-bottom: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 1024px) {
  .categories__header {
    margin-bottom: 36px;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .categories__header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
  }
}
.categories__header-left {
  flex: 1;
  max-width: 720px;
}
@media (max-width: 768px) {
  .categories__header-left {
    max-width: auto;
  }
}
.categories__grid-wrap {
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
}
.categories__grid-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 56px;
  top: 0;
  height: 48px;
  pointer-events: none;
  background: linear-gradient(to bottom, #F0F2F8, transparent);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.categories__grid-wrap--start::before {
  opacity: 1 !important;
}
.categories__grid-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 56px;
  bottom: 0;
  height: 48px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, #F0F2F8);
  z-index: 2;
  transition: opacity 0.3s ease;
}
.categories__grid-wrap--end::after {
  opacity: 0 !important;
}
@media (max-width: 1024px) {
  .categories__grid-wrap {
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  .categories__grid-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    height: auto;
    right: auto;
    pointer-events: none;
    background: linear-gradient(to right, #F0F2F8, transparent);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .categories__grid-wrap::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: auto;
    width: 48px;
    height: auto;
    pointer-events: none;
    background: linear-gradient(to right, transparent, #F0F2F8);
    z-index: 2;
    transition: opacity 0.3s ease;
  }
}
@media (max-width: 480px) {
  .categories__grid-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  .categories__grid-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 32px;
    height: auto;
    right: auto;
    pointer-events: none;
    background: linear-gradient(to right, #F0F2F8, transparent);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .categories__grid-wrap::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: auto;
    width: 32px;
    height: auto;
    pointer-events: none;
    background: linear-gradient(to right, transparent, #F0F2F8);
    z-index: 2;
    transition: opacity 0.3s ease;
  }
}
.categories__grid-viewport {
  flex: 1;
  overflow-y: auto;
  scroll-behavior: smooth;
  min-width: 0;
  height: 780px;
  padding-right: 4px;
  scrollbar-width: none;
}
.categories__grid-viewport::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1024px) {
  .categories__grid-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    height: auto;
    padding-right: 0;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .categories__grid-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    height: auto;
    padding-right: 0;
    width: 100%;
  }
}
.categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}
@media (max-width: 1024px) {
  .categories__grid {
    display: flex;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .categories__grid {
    gap: 14px;
  }
}
.categories__scroll-arrows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .categories__scroll-arrows {
    display: none;
  }
}

.scroll-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(11, 26, 47, 0.12);
  background: #FFFFFF;
  color: #0B1A2F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.scroll-arrow:hover {
  background: #0B1A2F;
  color: #FFFFFF;
  border-color: #0B1A2F;
}

.cat-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px 24px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.09);
  border-color: rgba(0, 0, 0, 0.12);
  z-index: 2;
}
@media (max-width: 1024px) {
  .cat-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    width: 260px;
  }
}
@media (max-width: 768px) {
  .cat-card {
    padding: 24px 18px 22px;
  }
  .cat-card:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  }
}
@media (max-width: 480px) {
  .cat-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    padding: 20px 16px 18px;
    width: 260px;
  }
}
.cat-card__img-wrap {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  margin-bottom: 18px;
  min-height: 140px;
}
@media (max-width: 768px) {
  .cat-card__img-wrap {
    min-height: 110px;
    margin-bottom: 14px;
  }
}
@media (max-width: 480px) {
  .cat-card__img-wrap {
    min-height: 100px;
  }
}
.cat-card__img {
  max-width: auto;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .cat-card__img {
    max-height: 120px;
  }
}
.cat-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #0B1A2F;
  line-height: 1.3;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .cat-card__title {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
@media (max-width: 480px) {
  .cat-card__title {
    font-size: 13px;
  }
}
.cat-card__desc {
  font-size: 12px;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
  min-height: 0;
}
@media (max-width: 768px) {
  .cat-card__desc {
    font-size: 11px;
    margin-bottom: 14px;
    line-height: 1.5;
  }
}
.cat-card__btn {
  margin-top: auto;
}

.cat-card__btn {
  font-size: 13px;
  padding: 7px 18px;
}
@media (max-width: 768px) {
  .cat-card__btn {
    font-size: 12px;
    padding: 7px 14px;
    width: auto;
  }
}

.categories__view-all {
  display: none;
  justify-content: center;
  margin-top: 28px;
  width: auto;
}
@media (max-width: 1024px) {
  .categories__view-all {
    display: none;
  }
}
@media (max-width: 480px) {
  .categories__view-all {
    display: none;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  z-index: 90;
  transition: all 0.25s ease;
  color: #FFFFFF;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.services {
  position: relative;
  padding: 100px 0;
  background-color: #08111E;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .services {
    padding: 70px 0;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 56px 0;
  }
}
.services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transform: scale(1.1);
}
.services__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(8, 17, 30, 0.85) 0%, rgba(8, 17, 30, 0.93) 40%, rgba(8, 17, 30, 0.98) 100%);
  pointer-events: none;
}
.services__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .services__inner {
    padding: 0 20px;
  }
}
.services__header {
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 1024px) {
  .services__header {
    margin-bottom: 44px;
  }
}
@media (max-width: 768px) {
  .services__header {
    margin-bottom: 36px;
  }
}
.services__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .services__title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 12px;
  }
}
.services__label {
  display: block;
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2F80FF;
  margin-bottom: 8px;
  font-weight: 600;
}
.services__desc {
  font-size: clamp(14px, 1.1vw, 17px);
  color: rgba(255, 255, 255, 0.6);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .services__desc {
    font-size: 13px;
    max-width: 100%;
  }
}
.services__grid-wrap {
  position: relative;
}
.services__grid-wrap::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(47, 128, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 40%;
  background: linear-gradient(to bottom, #2F80FF, #4D94FF);
  border-radius: 0 2px 2px 0;
  opacity: 0.5;
  transition: height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.service-card:hover::before {
  height: 80%;
  opacity: 1;
}
@media (max-width: 768px) {
  .service-card {
    padding: 22px 20px;
    gap: 10px;
  }
  .service-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: none;
  }
  .service-card:hover::before {
    height: 40%;
    opacity: 0.5;
  }
}
.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(47, 128, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2px;
}
.service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: #2F80FF;
  stroke-width: 1.8;
}
.service-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .service-card__title {
    font-size: 15px;
  }
}
.service-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .service-card__desc {
    font-size: 12px;
  }
}

.how-we-work {
  position: relative;
  padding: 100px 0;
  background-color: #F0F2F8;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .how-we-work {
    padding: 70px 0;
  }
}
@media (max-width: 768px) {
  .how-we-work {
    padding: 56px 0;
  }
}
.how-we-work__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .how-we-work__bg {
    background-repeat: repeat;
  }
}
.how-we-work__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .how-we-work__inner {
    padding: 0 20px;
  }
}
.how-we-work__header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .how-we-work__header {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .how-we-work__header {
    margin-bottom: 48px;
  }
}
.how-we-work__label {
  display: block;
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2F80FF;
  margin-bottom: 8px;
  font-weight: 600;
}
.how-we-work__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #0B1A2F;
  line-height: 1.15;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .how-we-work__title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 12px;
  }
}
.how-we-work__desc {
  font-size: clamp(14px, 1.1vw, 17px);
  color: rgba(11, 26, 47, 0.55);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .how-we-work__desc {
    font-size: 13px;
    max-width: 100%;
  }
}
.how-we-work__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  padding-top: 0;
}
.how-we-work__steps::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 18%;
  right: 18%;
  height: 0;
  border-top: 2px dashed rgba(47, 128, 255, 0.25);
  z-index: 0;
}
@media (max-width: 1024px) {
  .how-we-work__steps::before {
    display: none;
  }
}
@media (max-width: 1024px) {
  .how-we-work__steps {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .how-we-work__steps {
    max-width: 100%;
    gap: 32px;
  }
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.step__circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .step__circle {
    width: 96px;
    height: 96px;
    margin-bottom: 24px;
  }
}
.step__circle::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-right-color: #2F80FF;
  border-bottom-color: #2F80FF;
  transform: rotate(-45deg);
  pointer-events: none;
}
.step__icon {
  color: #2F80FF;
  width: 42px;
  height: 42px;
}
@media (max-width: 768px) {
  .step__icon {
    width: 36px;
    height: 36px;
  }
}
.step__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.6;
}
.step__num {
  position: absolute;
  top: -8px;
  right: -6px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #2F80FF;
  z-index: 2;
}
@media (max-width: 768px) {
  .step__num {
    width: 30px;
    height: 30px;
    font-size: 13px;
    top: -6px;
    right: -4px;
  }
}
.step__title {
  font-size: 15px;
  font-weight: 700;
  color: #0B1A2F;
  margin-bottom: 10px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .step__title {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.step__divider {
  width: 36px;
  height: 2px;
  background: #2F80FF;
  border-radius: 1px;
  margin: 0 auto 10px;
}
.step__desc {
  font-size: 13px;
  color: rgba(11, 26, 47, 0.5);
  line-height: 1.6;
  max-width: 200px;
}
@media (max-width: 1024px) {
  .step__desc {
    max-width: 280px;
  }
}
@media (max-width: 768px) {
  .step__desc {
    font-size: 12px;
    max-width: 260px;
  }
}
@media (max-width: 1024px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 0;
    height: 40px;
    border-left: 2px dashed rgba(47, 128, 255, 0.25);
  }
}

.about {
  position: relative;
  padding: 100px 0;
  background: #0B1A2F;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .about {
    padding: 70px 0;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 56px 0;
  }
}
.about__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .about__inner {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .about__inner {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .about__text {
    order: 2;
  }
}
.about__label {
  display: block;
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2F80FF;
  margin-bottom: 8px;
  font-weight: 600;
}
.about__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #2F80FF;
  border-radius: 1px;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .about__title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 16px;
  }
}
.about__item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.about__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .about__item {
    gap: 12px;
    margin-bottom: 14px;
  }
}
.about__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(47, 128, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about__item-icon svg {
  width: 20px;
  height: 20px;
  stroke: #2F80FF;
  stroke-width: 1.8;
}
.about__desc {
  font-size: clamp(13px, 0.95vw, 15px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  flex: 1;
}
@media (max-width: 768px) {
  .about__desc {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .about__image-col {
    order: 1;
  }
}
.about__image {
  position: relative;
}
.about__image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}
.about__why-us {
  position: relative;
  z-index: 2;
  margin-top: -24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  background: rgba(11, 26, 47, 0.35);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 8px 40px rgba(47, 128, 255, 0.08);
  overflow: hidden;
}
@media (max-width: 768px) {
  .about__why-us {
    margin-top: -16px;
    margin-left: 12px;
    margin-right: 12px;
    max-width: none;
  }
}
.about__why-accent {
  height: 2px;
  background: linear-gradient(90deg, transparent, #2F80FF, transparent);
}
.about__why-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 12px 16px 0;
}
@media (max-width: 768px) {
  .about__why-label {
    font-size: 9px;
    padding: 10px 12px 0;
  }
}
.about__why-body {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .about__why-body {
    padding: 8px 10px;
    gap: 8px;
  }
}
.about__why-item {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.about__why-item i, .about__why-item svg {
  width: 14px;
  height: 14px;
  stroke: #2F80FF;
  stroke-width: 2;
  flex-shrink: 0;
}
.about__why-item span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .about__why-item {
    gap: 4px;
  }
  .about__why-item i, .about__why-item svg {
    width: 12px;
    height: 12px;
  }
  .about__why-item span {
    font-size: 10px;
    white-space: normal;
  }
}
.about__why-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  align-self: center;
}
@media (max-width: 768px) {
  .about__why-divider {
    height: 16px;
  }
}

.contact {
  padding: 100px 0;
  background: #F0F2F8;
}
@media (max-width: 1024px) {
  .contact {
    padding: 70px 0;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 56px 0;
  }
}
.contact__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .contact__inner {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .contact__inner {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .contact__info {
    text-align: center;
  }
}
.contact__label {
  display: block;
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2F80FF;
  margin-bottom: 8px;
  font-weight: 600;
}
.contact__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #0B1A2F;
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #2F80FF;
  border-radius: 2px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .contact__title::after {
    margin: 16px auto 0;
  }
}
@media (max-width: 768px) {
  .contact__title {
    font-size: clamp(24px, 7vw, 32px);
  }
}
.contact__desc {
  font-size: clamp(14px, 1.1vw, 17px);
  color: rgba(11, 26, 47, 0.55);
  line-height: 1.7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .contact__desc {
    font-size: 13px;
  }
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .contact__list {
    gap: 20px;
  }
}
.contact__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__row-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(47, 128, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content-width: 100%;
  justify-content-padding: 10px 20px;
  justify-content-font-size: 14px;
  flex-shrink: 0;
}
.contact__row-icon svg {
  width: 20px;
  height: 20px;
  stroke: #2F80FF;
  stroke-width: 1.8;
}
.contact__row-text {
  font-size: 15px;
  color: #0B1A2F;
  line-height: 1.5;
  padding-top: 2px;
}
.contact__row-text strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(11, 26, 47, 0.4);
  margin-bottom: 2px;
  font-weight: 500;
}
.contact__row-text a {
  color: #0B1A2F;
}
.contact__row-text a:hover {
  color: #2F80FF;
}
.contact__buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .contact__buttons {
    flex-direction: column;
    align-items: stretch;
    margin-top: 28px;
  }
  .contact__buttons .btn {
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
  }
}

.footer {
  background: #08111E;
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 0;
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .footer {
    padding: 52px 0 0;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 44px 0 0;
  }
}
.footer__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 0 20px;
  }
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 1024px) {
  .footer__col--wide {
    grid-column: 1/-1;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo img {
  height: 32px;
  width: auto;
  opacity: 0.85;
}
.footer__company {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}
.footer__about {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 380px;
  margin-bottom: 20px;
}
.footer__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #2F80FF;
  margin-bottom: 16px;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer__links li a:hover {
  color: #FFFFFF;
}
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
}
.footer__contact li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.4);
  stroke: currentColor;
}
.footer__contact li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__contact li a:hover {
  color: #FFFFFF;
}
.footer__bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

.quote-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.quote-overlay.open {
  display: flex;
}
@media (max-width: 768px) {
  .quote-overlay {
    padding: 12px;
    align-items: flex-start;
    overflow-y: auto;
  }
}

.quote-modal {
  background: rgba(11, 26, 47, 0.85);
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
  padding: 40px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(47, 128, 255, 0.08);
  position: relative;
}
.quote-modal::-webkit-scrollbar {
  width: 5px;
}
.quote-modal::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.quote-modal::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}
.quote-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}
@media (max-width: 768px) {
  .quote-modal {
    padding: 28px 20px;
    border-radius: 16px;
    max-height: 85vh;
  }
}
.quote-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.quote-modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.quote-modal__title {
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
@media (max-width: 768px) {
  .quote-modal__title {
    font-size: 20px;
  }
}
.quote-modal__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
  line-height: 1.5;
}
.quote-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .quote-modal__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.quote-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quote-modal__field label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.45);
}
.quote-modal__field label .required {
  color: #FF4D6A;
}
.quote-modal__field input, .quote-modal__field textarea, .quote-modal__field select {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
  outline: none;
}
.quote-modal__field input::placeholder, .quote-modal__field textarea::placeholder, .quote-modal__field select::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.quote-modal__field input:focus, .quote-modal__field textarea:focus, .quote-modal__field select:focus {
  border-color: #2F80FF;
  background: rgba(47, 128, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(47, 128, 255, 0.1);
}
.quote-modal__field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.quote-modal__field select option {
  background: #0B1A2F;
  color: #fff;
}
.quote-modal__field textarea {
  resize: vertical;
  min-height: 80px;
}
.quote-modal__file {
  position: relative;
}
.quote-modal__file input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.quote-modal__file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 2px dashed rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  justify-content: center;
}
.quote-modal__file-label:hover {
  border-color: #2F80FF;
  background: rgba(47, 128, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
}
.quote-modal__file-label svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
}
.quote-modal__file-name {
  font-size: 12px;
  color: rgba(47, 128, 255, 0.8);
  margin-top: 4px;
  display: none;
}
.quote-modal__submit {
  margin-top: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #2F80FF, #4D94FF);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
  box-shadow: 0 4px 20px rgba(47, 128, 255, 0.3);
}
.quote-modal__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(47, 128, 255, 0.45);
}
.quote-modal__submit:active {
  transform: translateY(0);
}
.quote-modal__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.quote-modal__success {
  text-align: center;
  padding: 20px 0;
}
.quote-modal__success svg {
  width: 48px;
  height: 48px;
  stroke: #00A849;
  margin-bottom: 16px;
}
.quote-modal__success h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}
.quote-modal__success p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
}
.quote-modal__error-msg {
  font-size: 12px;
  color: #FF4D6A;
  margin-top: 4px;
  display: none;
}

:root {
  --bg: #F5F7FA;
  --card: #FFFFFF;
  --text: #333;
  --text2: #555;
  --border: #ddd;
  --sidebar-bg: #0B1A2F;
  --sidebar-text: #C5D1E3;
  --heading: #0B1A2F;
  --accent: #2F80FF;
  --th-bg: #f9fafb;
  --danger: #e53;
}

.dark {
  --bg: #111827;
  --card: #1a2332;
  --text: #E5E7EB;
  --text2: #9CA3AF;
  --border: #2d3748;
  --sidebar-bg: #0a0f1a;
  --sidebar-text: #8899aa;
  --heading: #E5E7EB;
  --th-bg: #1a2332;
}

body.admin-body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.admin-sidebar {
  width: 220px;
  background: var(--sidebar-bg);
  color: #fff;
  padding: 24px 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 10;
}
.admin-sidebar h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #fff;
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin: 1px 12px;
  color: var(--sidebar-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.admin-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateX(2px);
}
.admin-nav a.active {
  background: rgba(47, 128, 255, 0.2);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(47, 128, 255, 0.15);
}

.admin-nav-icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  flex-shrink: 0;
}
a.active .admin-nav-icon {
  opacity: 1;
}

.admin-theme {
  margin-top: auto;
  padding: 12px 16px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-theme__switch {
  position: relative;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 11px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin-theme__switch:hover {
  opacity: 0.85;
  transform: scale(1.05);
}
.admin-theme__switch.on {
  background: #2F80FF;
}
.admin-theme__switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin-theme__switch.on::after {
  transform: translateX(16px);
}
.admin-theme__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.admin-theme__switch.on ~ .admin-theme__label {
  color: rgba(255, 255, 255, 0.7);
}

.admin-logout {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  margin: 0 16px 8px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.admin-logout:hover {
  background: rgba(229, 62, 62, 0.12);
  border-color: rgba(229, 62, 62, 0.25);
  color: rgba(229, 62, 62, 0.7);
}

.admin-main {
  margin-left: 220px;
  padding: 32px;
  flex: 1;
  min-width: 0;
}
.admin-main h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--heading);
  margin-bottom: 24px;
}

.admin-form, .admin-add-form {
  max-width: none;
}
.admin-form label, .admin-add-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 16px 0 6px;
  color: var(--text);
}
.admin-form label small, .admin-add-form label small {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.admin-form input, .admin-form textarea, .admin-form select, .admin-add-form input, .admin-add-form textarea, .admin-add-form select {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--card);
  color: var(--text);
  transition: all 0.2s ease;
}
.admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus, .admin-add-form input:focus, .admin-add-form textarea:focus, .admin-add-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 128, 255, 0.12);
  outline: none;
}
.admin-form textarea, .admin-add-form textarea {
  resize: vertical;
  min-height: 58px;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
}
.admin-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(47, 128, 255, 0.3);
}
.admin-btn:active {
  transform: translateY(0);
}
.admin-btn--sm {
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 6px;
}
.admin-btn--danger {
  background: var(--danger);
}
.admin-btn--danger:hover {
  box-shadow: 0 4px 16px rgba(229, 62, 62, 0.25);
}
.admin-btn--ghost {
  background: #888;
}
.admin-btn--export {
  padding: 9px 18px;
  background: linear-gradient(135deg, #2F80FF, #4D94FF);
  font-size: 13px;
  margin-bottom: 16px;
}

.admin-table {
  width: 100%;
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-collapse: collapse;
  margin-bottom: 24px;
}
.admin-table th, .admin-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.admin-table th {
  background: var(--th-bg);
  font-weight: 600;
  color: var(--text2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.admin-table tbody tr {
  transition: background 0.15s ease;
}
.admin-table tbody tr:hover {
  background: rgba(47, 128, 255, 0.03);
}
.dark .admin-table tbody tr:hover {
  background: rgba(47, 128, 255, 0.06);
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.admin-card {
  background: var(--card);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}
.admin-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(47, 128, 255, 0.12);
}
.dark .admin-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(47, 128, 255, 0.15);
}
.admin-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
}
.admin-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading);
}
.admin-card p {
  color: var(--text2);
  font-size: 13px;
  margin-top: 4px;
}
.admin-card__icon {
  font-size: 26px;
  margin-bottom: 6px;
  opacity: 0.85;
}

.admin-card--blue::before {
  background: linear-gradient(180deg, #2F80FF, #4D94FF);
}

.admin-card--green::before {
  background: linear-gradient(180deg, #00A849, #00C853);
}

.admin-card--purple::before {
  background: linear-gradient(180deg, #7C3AED, #A78BFA);
}

.admin-card--amber::before {
  background: linear-gradient(180deg, #F59E0B, #FBBF24);
}

.admin-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.admin-badge--new {
  background: rgba(47, 128, 255, 0.08);
  color: #2F80FF;
  border: 1px solid rgba(47, 128, 255, 0.12);
}
.admin-badge--done {
  background: rgba(0, 168, 73, 0.06);
  color: #00A849;
  border: 1px solid rgba(0, 168, 73, 0.1);
}
.dark .admin-badge--new {
  background: rgba(47, 128, 255, 0.12);
}
.dark .admin-badge--done {
  background: rgba(0, 168, 73, 0.08);
}

.admin-success {
  background: #e6f7e6;
  color: #2a7d2a;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(0, 168, 73, 0.12);
}
.dark .admin-success {
  background: rgba(0, 168, 73, 0.1);
  color: #4ade80;
}

.admin-section {
  margin: 36px 0 0;
}
.admin-section:first-of-type {
  margin-top: 0;
}
.admin-section__title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text2);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 20px;
}

.admin-media-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.admin-media-item {
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.admin-media-item.selected {
  border-color: var(--accent);
}
.admin-media-item img {
  width: 100%;
  height: 58px;
  object-fit: cover;
  display: block;
}

.admin-media-empty {
  grid-column: 1/-1;
  color: var(--text2);
  font-size: 13px;
  padding: 12px;
  text-align: center;
}

.admin-img-thumb {
  height: 48px;
  width: auto;
  max-width: 80px;
  border-radius: 6px;
  object-fit: cover;
  background: #eee;
}
.dark .admin-img-thumb {
  background: #2d3748;
}

.admin-preview {
  margin-top: 8px;
  border-radius: 8px;
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.admin-add-form {
  background: var(--card);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 100%;
}
.admin-add-form h3 {
  grid-column: 1/-1;
  margin-bottom: 8px;
  color: var(--heading);
  font-size: 24px;
  font-weight: 700;
}

.admin-top-bar {
  position: fixed;
  top: 20px;
  right: 32px;
  z-index: 110;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
}
@media (max-width: 768px) {
  .admin-top-bar {
    top: 12px;
    right: 12px;
  }
}

.admin-leads-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .admin-leads-top {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg);
    padding: 12px 0;
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .admin-btn--export {
    position: fixed;
    right: 16px;
    bottom: 20px;
    z-index: 90;
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 13px;
    box-shadow: 0 4px 20px rgba(47, 128, 255, 0.35);
    background: var(--accent);
    color: #fff;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
}

.admin-save-fixed {
  box-shadow: 0 4px 20px rgba(47, 128, 255, 0.4);
}
@media (max-width: 768px) {
  .admin-save-fixed {
    font-size: 13px;
    padding: 10px 18px;
  }
}

body.admin-login {
  --bg: #080E18;
  --card: rgba(15, 23, 42, 0.9);
  --heading: #FFFFFF;
  --text: rgba(255,255,255,0.8);
  --text2: rgba(255,255,255,0.45);
  --border: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--bg);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.admin-login-box {
  background: var(--card);
  border-radius: 20px;
  padding: 50px 40px;
  width: 400px;
  max-width: 90vw;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.admin-login-box h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}
.admin-login-box .admin-login-sub {
  color: var(--text2);
  font-size: 14px;
  margin-bottom: 28px;
}
.admin-login-box .admin-login-field {
  margin-bottom: 18px;
}
.admin-login-box .admin-login-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text2);
  margin-bottom: 6px;
}
.admin-login-box .admin-login-field input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  transition: all 0.2s;
}
.admin-login-box .admin-login-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 128, 255, 0.12);
}
.admin-login-box button {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #2F80FF, #4D94FF);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}
.admin-login-box button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(47, 128, 255, 0.35);
}

.admin-login-error {
  color: #e53;
  font-size: 13px;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: rgba(229, 62, 62, 0.08);
  border-radius: 8px;
}

.admin-menu-overlay {
  display: none;
}

@media (max-width: 768px) {
  .admin-menu-open .admin-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99;
  }
}
.admin-menu-btn {
  display: none;
}

@media (max-width: 1024px) {
  .admin-sidebar {
    width: 200px;
  }
  .admin-main {
    margin-left: 200px;
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 120;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: 258px;
  }
  .admin-menu-open .admin-sidebar {
    transform: translateX(0);
  }
  .admin-main {
    margin-left: 0;
    padding: 20px;
    padding-top: 80px;
  }
  .admin-menu-btn {
    display: flex;
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 99;
    width: 58px;
    height: 58px;
    padding: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
  }
  .admin-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-table {
    font-size: 12px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .admin-table th, .admin-table td {
    padding: 8px 10px;
    white-space: nowrap;
  }
  .admin-table td {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .admin-add-form {
    grid-template-columns: 1fr;
  }
  .admin-media-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .admin-cards {
    grid-template-columns: 1fr;
  }
  .admin-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .admin-table th, .admin-table td {
    white-space: nowrap;
    font-size: 11px;
    padding: 6px 8px;
  }
  .admin-add-form {
    padding: 16px;
  }
  .admin-add-form h3 {
    font-size: 15px;
  }
  .admin-section__title {
    font-size: 12px;
  }
}
.admin-upload-zone {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-bottom: 24px;
  transition: all 0.2s;
  background: var(--card);
  cursor: pointer;
}
.admin-upload-zone:hover, .admin-upload-zone.drag-over {
  border-color: var(--accent);
  background: rgba(47, 128, 255, 0.04);
}
.admin-upload-zone p {
  color: var(--text2);
  font-size: 14px;
}
.admin-upload-zone .icon {
  font-size: 36px;
  margin-bottom: 8px;
  opacity: 0.5;
}

.admin-media-card {
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.admin-media-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.admin-media-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}
.admin-media-card__info {
  padding: 10px 12px;
  font-size: 12px;
}
.admin-media-card__info p {
  color: var(--text);
  font-weight: 500;
  word-break: break-all;
}
.admin-media-card__info small {
  color: var(--text2);
}

.admin-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.admin-modal-overlay.open {
  display: flex;
}
@media (max-width: 768px) {
  .admin-modal-overlay {
    padding: 16px;
  }
}

.admin-modal {
  background: var(--card);
  border-radius: 16px;
  width: 100%;
  max-width: 720px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 128, 255, 0.3) transparent;
}
.admin-modal::-webkit-scrollbar {
  width: 6px;
}
.admin-modal::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}
.admin-modal::-webkit-scrollbar-thumb {
  background: rgba(47, 128, 255, 0.3);
  border-radius: 3px;
}
.admin-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(47, 128, 255, 0.5);
}
.admin-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--card);
  z-index: 1;
}
.admin-modal__header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading);
}
.admin-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: none;
  color: var(--text2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}
.admin-modal__close:hover {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}
.admin-modal .admin-media-grid {
  padding: 20px 24px 24px;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.admin-modal .admin-media-grid .admin-media-item img {
  height: 158px;
  object-fit: cover;
  background: var(--bg);
}
@media (max-width: 768px) {
  .admin-modal .admin-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-modal .admin-media-grid .admin-media-item img {
    height: 100px;
  }
}

.admin-lang-tabs {
  display: flex;
  gap: 4px;
  margin: 0;
  background: var(--bg);
  padding: 4px;
  border-radius: 10px;
}

.admin-lang-tab {
  flex: 1;
  text-align: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  .admin-lang-tab {
    padding: 6px 10px;
    font-size: 12px;
  }
}
.admin-lang-tab:hover {
  color: var(--text);
}
.admin-lang-tab.active {
  background: var(--accent);
  color: #fff;
}

.admin-lang-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

.admin-settings-card {
  background: var(--card);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 0 0 1px var(--border);
}
.admin-settings-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 4px;
}

.admin-settings-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(47, 128, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.admin-settings-card__sub {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 28px;
}

.admin-settings-msg {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.admin-settings-msg--error {
  background: rgba(229, 62, 62, 0.08);
  color: #e53e3e;
  border: 1px solid rgba(229, 62, 62, 0.15);
}
.admin-settings-msg--ok {
  background: rgba(0, 168, 73, 0.08);
  color: #00a849;
  border: 1px solid rgba(0, 168, 73, 0.15);
}

.admin-settings-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.admin-settings-field {
  margin-bottom: 20px;
}
.admin-settings-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text2);
  margin-bottom: 8px;
}
.admin-settings-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  font-family: inherit;
}
.admin-settings-field input::placeholder {
  color: var(--text2);
  opacity: 0.6;
}
.admin-settings-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 128, 255, 0.1);
}

.admin-settings-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  margin-top: 4px;
}
.admin-settings-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(47, 128, 255, 0.3);
}
.admin-settings-btn:active {
  transform: translateY(0);
}

.admin-preview-bg {
  margin-top: 8px;
  border-radius: 8px;
  max-width: 420px;
  max-height: 258px;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--border);
  display: block;
}
@media (max-width: 768px) {
  .admin-preview-bg {
    max-width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
