:root {
  --benom-bg: #f5f7fb;
  --benom-surface: #ffffff;
  --benom-surface-soft: #eef4fb;
  --benom-text: #0f172a;
  --benom-muted: #64748b;
  --benom-border: rgba(15, 23, 42, 0.08);
  --benom-primary: #0f172a;
  --benom-primary-dark: #020617;
  --benom-secondary: rgb(4, 99, 128);
  --benom-accent: rgb(138, 207, 197);
  --benom-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
  --benom-shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --benom-radius-xl: 30px;
  --benom-radius-lg: 22px;
  --benom-radius-md: 16px;
  --benom-radius-pill: 999px;
}



html {
  scroll-behavior: smooth;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  max-width: 1280px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(22, 163, 74, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.10), transparent 26%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f8 56%, #e8edf5 100%);
  color: var(--benom-text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

body.drawer-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.015) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.6;
  z-index: 0;
}

.header-main-div,
main,
.footer-section {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(22, 163, 74, 0.18);
  color: var(--benom-text);
}

.header-main-div {
  position: relative;
  z-index: 20;
}

.site-topbar {
  background: linear-gradient(135deg, #020617 0%, #0f172a 55%, #1e293b 100%);
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.site-topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.site-topbar__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-topbar__text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.site-topbar__text i,
.site-topbar__meta i {
  color: var(--benom-secondary);
}

.site-topbar__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-topbar__meta a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
}

.site-topbar__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-topbar__social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 18px 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-brand img {
  max-height: 56px;
  width: auto;
  display: block;
}

.site-brand__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.site-brand__copy strong {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--benom-muted);
}

.site-brand__copy span {
  font-size: 14px;
  color: var(--benom-text);
  font-weight: 700;
}

.site-nav {
  justify-self: center;
}

.site-nav .top-level-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .top-level-menu > li {
  position: relative;
}

/* Pasif (durum=0) menü öğelerini gizle */
.site-nav .top-level-menu > li[data-durum="0"],
.site-nav .second-level-menu > li[data-durum="0"],
.site-nav .third-level-menu > li[data-durum="0"],
.sablon2-level-menu-left-item[data-durum="0"],
.sablon2-level-menu-left-item-s[data-durum="0"] {
  display: none !important;
}

.site-nav .top-level-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--benom-text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-nav .top-level-menu > li > a:hover,
.site-nav .top-level-menu > li > a:focus,
.site-nav .top-level-menu > li:hover > a {
  background: rgba(15, 76, 129, 0.08);
  color: var(--benom-primary);
}

.site-nav .top-level-menu > li > a i {
  font-size: 12px;
  line-height: 1;
}

.site-nav .second-level-menu,
.site-nav .third-level-menu,
.site-nav .sablon2-level-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 40;
  min-width: 260px;
  padding: 12px;
  margin: 0;
  list-style: none;
  background: var(--benom-surface);
  border: 1px solid var(--benom-border);
  border-radius: 24px;
  box-shadow: var(--benom-shadow);
}

.site-nav .dropdown-sub-have:hover > .second-level-menu,
.site-nav .dropdown-sub-have:hover > .sablon2-level-menu {
  display: block;
}

.site-nav .second-level-menu > li,
.site-nav .third-level-menu > li {
  position: relative;
  list-style: none;
}

.site-nav .second-level-menu > li > a,
.site-nav .third-level-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--benom-text);
  font-weight: 600;
}

.site-nav .second-level-menu > li > a:hover,
.site-nav .third-level-menu > li > a:hover {
  background: rgba(22, 163, 74, 0.10);
  color: var(--benom-primary);
}

.site-nav .second-level-menu .third-level-menu {
  top: 0;
  left: calc(100% + 12px);
}

.site-nav .second-level-menu li:hover > .third-level-menu {
  display: block;
}

.site-nav .sablon2-level-menu {
  width: min(960px, 92vw);
  min-width: 0;
  padding: 24px;
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
}

.site-nav .dropdown-sub-have:hover > .sablon2-level-menu {
  display: grid;
}

.site-nav .sablon2-level-menu-left {
  display: grid;
  gap: 12px;
}

.site-nav .sablon2-level-menu-left-item {
  padding: 14px;
  border-radius: 18px;
  background: var(--benom-surface-soft);
}

.site-nav .sablon2-level-menu-left-item-h {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--benom-primary);
}

.site-nav .sablon2-level-menu-left-item-s {
  display: block;
  padding: 6px 0;
  color: var(--benom-text);
  font-weight: 600;
}

.site-nav .sablon2-level-menu-right {
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(15, 76, 129, 0.06), rgba(22, 163, 74, 0.06));
}

.site-nav .sablon2-level-menu-right-product-box {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 16px;
  margin: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.site-nav .sablon2-level-menu-right-product-box img {
  max-width: 100px;
  max-height: 70px;
  object-fit: contain;
}

.dropdown-overlay-show {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(7, 17, 31, 0.20);
  backdrop-filter: blur(3px);
  pointer-events: none;
}

.site-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.site-action-pill,
.site-menu-toggle,
.theme-btn,
.button-blue,
.button-black-out {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-action-pill,
.theme-btn,
.button-blue {
  background: linear-gradient(135deg, var(--benom-primary), #113d69);
  color: #fff !important;
  box-shadow: 0 16px 28px rgba(15, 76, 129, 0.22);
}

.site-action-pill:hover,
.theme-btn:hover,
.button-blue:hover,
.button-black-out:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(15, 76, 129, 0.22);
}

.theme-btn.bg-color-2 {
  background: linear-gradient(135deg, rgb(4, 99, 128), #0f172a);
}

.theme-btn.border-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.40);
  color: #fff !important;
  box-shadow: none;
}

.site-action-link {
  color: var(--benom-text);
  font-weight: 700;
}

.site-action-link i,
.site-action-pill i,
.theme-btn i {
  font-size: 14px;
}

.site-menu-toggle {
  width: 48px;
  padding: 0;
  background: var(--benom-surface);
  border-color: var(--benom-border);
  color: var(--benom-text);
  box-shadow: var(--benom-shadow-soft);
}

.site-menu-toggle:hover {
  border-color: rgba(15, 76, 129, 0.20);
}

.site-account {
  position: relative;
}

.site-account .dropdown-toggle::after {
  display: none;
}

.site-avatar {
  width: 30px;
  height: 30px;
  display: inline-flex;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  flex: 0 0 auto;
}

.site-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-account .dropdown-menu {
  min-width: 280px;
  padding: 14px;
  border: 1px solid var(--benom-border);
  border-radius: 20px;
  box-shadow: var(--benom-shadow);
}

.site-account .dropdown-item {
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 600;
}

.site-account .dropdown-item:hover {
  background: rgba(22, 163, 74, 0.10);
  color: var(--benom-primary);
}

.site-cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(239, 68, 68, 0.25);
}

.site-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(430px, 100%);
  transform: translateX(102%);
  transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 300;
  pointer-events: none;
}

body.drawer-open .site-drawer {
  transform: translateX(0);
  pointer-events: auto;
}

.site-drawer__overlay {
  position: fixed;
  inset: 0;
  z-index: 290;
  background: rgba(7, 17, 31, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s ease;
}

body.drawer-open .site-drawer__overlay {
  opacity: 1;
  pointer-events: auto;
}

.site-drawer__panel {
  height: 100%;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 250, 252, 0.99) 100%);
  backdrop-filter: blur(18px);
  box-shadow: var(--benom-shadow);
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  padding: 24px;
}

.site-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.site-drawer__close {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--benom-border);
  background: #fff;
  color: var(--benom-text);
}

.site-drawer__close:hover {
  color: var(--benom-primary);
  border-color: rgba(15, 76, 129, 0.22);
}

.site-drawer__search {
  display: flex;
  gap: 10px;
  margin: 18px 0 20px;
}

.site-drawer__search input {
  flex: 1;
  height: 52px;
  min-width: 0;
  border: 1px solid var(--benom-border);
  border-radius: 8px;
  padding: 0 16px;
  background: var(--benom-surface-soft);
  color: var(--benom-text);
}

.site-drawer__search input::placeholder {
  color: #94a3b8;
}

.site-drawer__search button {
  width: 52px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--benom-primary), #113d69);
  color: #fff;
}

.site-drawer__contact {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.site-drawer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--benom-surface-soft);
}

.site-drawer__contact-item i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(15, 76, 129, 0.10);
  color: var(--benom-primary);
}

.site-drawer__contact-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--benom-text);
}

.site-drawer__contact-item span,
.site-drawer__contact-item a {
  color: var(--benom-muted);
  font-size: 14px;
}

.mobile-menu-categories-main {
  display: grid;
  gap: 16px;
}

/* Mobil menüde pasif öğeleri gizle */
#categories-parent-main li[data-durum="0"] {
  display: none !important;
}

#categories-parent-main > a {
  display: inline-flex;
  margin-bottom: 10px;
}

#categories-parent-main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#categories-parent-main li {
  position: relative;
}

#categories-parent-main li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--benom-text);
  font-weight: 600;
  background: rgba(15, 23, 42, 0.03);
}

#categories-parent-main li > a:hover {
  background: rgba(22, 163, 74, 0.10);
  color: var(--benom-primary);
}

#categories-parent-main li.parent > ul {
  display: none;
  margin: 8px 0 8px 12px;
  padding-left: 12px;
  border-left: 1px dashed rgba(15, 23, 42, 0.14);
}

#categories-parent-main li.parent.open > ul {
  display: block;
}

#categories-parent-main .arrow {
  margin-left: auto;
  color: var(--benom-primary);
}

.benom-hero {
  position: relative;
  padding: 56px 0 18px;
  overflow: hidden;
}

.benom-hero::before,
.benom-hero::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  pointer-events: none;
  filter: blur(4px);
}

.benom-hero::before {
  width: 320px;
  height: 320px;
  left: -160px;
  top: 20px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.16), transparent 68%);
}

.benom-hero::after {
  width: 380px;
  height: 380px;
  right: -180px;
  top: 140px;
  background: radial-gradient(circle, rgba(15, 76, 129, 0.16), transparent 68%);
}

.benom-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.benom-hero__copy {
  position: relative;
}

.benom-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(22, 163, 74, 0.12);
  color: var(--benom-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benom-hero__title {
  margin: 18px 0 18px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--benom-text);
}

.benom-hero__title span {
  color: var(--benom-primary);
}

.benom-hero__lead {
  max-width: 60ch;
  margin: 0;
  color: var(--benom-muted);
  font-size: 1.05rem;
}

.benom-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.benom-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.benom-hero__metric {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--benom-border);
  box-shadow: var(--benom-shadow-soft);
}

.benom-hero__metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--benom-primary);
  font-size: 1.3rem;
}

.benom-hero__metric span {
  color: var(--benom-muted);
  font-size: 0.92rem;
}

.benom-hero__visual {
  position: relative;
}

.benom-hero__frame {
  background: rgba(7, 17, 31, 0.96);
  border-radius: 32px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--benom-shadow);
}

.benom-hero__frame-top {
  display: flex;
  gap: 8px;
  padding: 0 6px 14px;
}

.benom-hero__frame-top span {
  width: 10px;
  height: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
}

.benom-hero .swiper,
.benom-hero__slider {
  overflow: hidden;
  border-radius: 24px;
}

.benom-hero .swiper-pagination {
  bottom: 16px !important;
}

.benom-hero .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
}

.benom-hero .swiper-pagination-bullet-active {
  background: var(--benom-secondary);
  transform: scale(1.15);
}

.benom-hero__slide {
  position: relative;
  display: block;
  min-height: 460px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.18), rgba(15, 76, 129, 0.18));
}

.benom-hero__slide img {
  width: 100%;
  height: 460px;
  display: block;
  object-fit: cover;
}

.benom-hero__slide-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.68);
  backdrop-filter: blur(14px);
  color: #fff;
}

.benom-hero__slide-caption span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255, 255, 255, 0.68);
}

.benom-hero__slide-caption strong {
  font-size: 1.15rem;
  line-height: 1.35;
}

.benom-hero__floating {
  position: absolute;
  left: -18px;
  bottom: 26px;
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 300px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--benom-border);
  box-shadow: var(--benom-shadow-soft);
}

.benom-hero__floating i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(22, 163, 74, 0.14);
  color: var(--benom-primary);
  font-size: 20px;
}

.benom-hero__floating strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--benom-text);
}

.benom-hero__floating span {
  color: var(--benom-muted);
  font-size: 13px;
  line-height: 1.45;
}

.benom-hero__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

.benom-value-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid var(--benom-border);
  box-shadow: var(--benom-shadow-soft);
}

.benom-value-card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(15, 76, 129, 0.08);
  color: var(--benom-primary);
}

.benom-value-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--benom-text);
}

.benom-value-card p {
  margin: 0;
  color: var(--benom-muted);
  font-size: 0.95rem;
}

.section-heading,
.section-kicker {
  position: relative;
  z-index: 1;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 8px;
  background: rgba(22, 163, 74, 0.10);
  color: var(--benom-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-lead {
  margin: 14px 0 0;
  color: var(--benom-muted);
  max-width: 60ch;
}

.footer-section {
  position: relative;
  margin-top: 88px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, #07111f 0%, #0b1526 100%);
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(22, 163, 74, 0.12), transparent 26%), radial-gradient(circle at top right, rgba(15, 76, 129, 0.20), transparent 28%);
  pointer-events: none;
}

.footer-widgets-wrapper {
  position: relative;
  z-index: 1;
  padding: 82px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-widget,
.footer-brand {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.footer-widget h3,
.footer-brand h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
}

.footer-brand img {
  max-width: 240px;
}

.footer-brand p,
.footer-widget p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.footer-contact i {
  margin-top: 4px;
  color: var(--benom-secondary);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-newsletter form {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-newsletter input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter button {
  width: 52px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--benom-secondary), #0f172a);
  color: #fff;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.footer-social a:hover {
  background: rgba(22, 163, 74, 0.14);
  color: #fff;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 28px;
  padding: 22px 0 34px;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-payments li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.footer-payments i {
  color: var(--benom-secondary);
}

#return-to-top {
  display: none;
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  z-index: 1000;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--benom-primary), #113d69);
  color: #fff !important;
  box-shadow: var(--benom-shadow);
}

#return-to-top i {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.modal-content {
  border-radius: 20px;
}

.cc-window {
  z-index: 9999999;
}

@media (max-width: 1199.98px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .site-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-nav {
    justify-self: start;
  }

  .benom-hero__grid {
    gap: 24px;
  }
}

@media (max-width: 991.98px) {
  .site-nav {
    display: none;
  }

  .site-actions .site-action-link,
  .site-actions .site-account {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: auto auto;
  }

  .site-actions {
    justify-content: flex-end;
  }

  .benom-hero__grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benom-hero__cards,
  .benom-hero__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benom-hero__floating {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 14px;
    max-width: none;
  }

  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .site-topbar__inner {
    gap: 10px;
  }

  .site-topbar__meta {
    gap: 10px 14px;
  }

  .site-header__inner {
    padding: 14px 0;
  }

  .site-brand img {
    max-height: 46px;
  }

  .benom-hero {
    padding-top: 34px;
  }

  .benom-hero__title {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .benom-hero__metrics,
  .benom-hero__cards {
    grid-template-columns: 1fr;
  }

  .benom-hero__slide,
  .benom-hero__slide img {
    min-height: 320px;
    height: 320px;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter button {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .site-topbar {
    display: none;
  }

  .site-drawer {
    width: 100%;
  }

  .site-header__inner {
    gap: 14px;
  }

  .site-action-pill {
    padding: 0 14px;
  }
}

/* Theme overrides */
.site-topbar {
  background: linear-gradient(135deg, #020617 0%, #0f172a 55%, #1e293b 100%);
}

.site-topbar::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.05));
}

.site-header {
  background: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.site-nav .top-level-menu > li > a:hover,
.site-nav .top-level-menu > li > a:focus,
.site-nav .top-level-menu > li:hover > a {
  background: rgba(15, 23, 42, 0.06);
  color: var(--benom-primary);
}

.site-nav .second-level-menu,
.site-nav .third-level-menu,
.site-nav .sablon2-level-menu,
.site-account .dropdown-menu,
.site-drawer__panel {
  border-color: rgba(15, 23, 42, 0.08);
}

.site-action-pill,
.theme-btn,
.button-blue,
.button-blue-out,
.btn-default {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.18);
}

.site-action-pill:hover,
.theme-btn:hover,
.button-blue:hover,
.button-blue-out:hover,
.btn-default:hover {
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.22);
}

.theme-btn.bg-color-2 {
  background: linear-gradient(135deg, rgb(4, 99, 128), #0f172a);
}

.theme-btn.border-white,
.button-black-out,
.btn-border {
  background: transparent;
  border-color: rgba(15, 23, 42, 0.14);
  color: var(--benom-primary) !important;
  box-shadow: none;
}

.button-blue-out {
  background: transparent;
  border: 1px solid rgba(22, 163, 74, 0.20);
  color: var(--benom-primary) !important;
  box-shadow: none;
}

.theme-btn.border-white:hover,
.button-black-out:hover,
.btn-border:hover,
.button-blue-out:hover {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.20);
}

.button-green,
.button-green-out {
  border-radius: 8px;
  font-weight: 700;
}

.button-green {
  background: linear-gradient(135deg, #0f172a, rgb(4, 99, 128));
  color: #fff !important;
  border: 0;
}

.button-green-out {
  background: transparent;
  border: 1px solid rgba(22, 163, 74, 0.20);
  color: var(--benom-primary) !important;
}

.button-green-out:hover {
  background: rgba(22, 163, 74, 0.08);
}

.site-menu-toggle {
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
  border-color: rgba(15, 23, 42, 0.08);
}

.site-menu-toggle:hover {
  border-color: rgba(22, 163, 74, 0.20);
}

.site-account .dropdown-item:hover {
  background: rgba(22, 163, 74, 0.08);
  color: var(--benom-primary);
}

.site-drawer__panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 250, 252, 0.99) 100%);
}

.site-drawer__search button,
.footer-newsletter button {
  background: linear-gradient(135deg, #0f172a, rgb(4, 99, 128));
}

.site-drawer__contact-item i {
  background: rgba(15, 23, 42, 0.06);
  color: var(--benom-primary);
}

.benom-hero {
  padding: 40px 0 18px;
}

.benom-hero__grid {
  padding: 34px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 36px;
  box-shadow: var(--benom-shadow);
}

.benom-hero__eyebrow,
.section-kicker {
  background: rgba(22, 163, 74, 0.10);
  color: var(--benom-primary);
}

.benom-hero__title span {
  color: var(--benom-secondary);
}

.benom-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.benom-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--benom-text);
  font-size: 13px;
  font-weight: 700;
}

.benom-hero__trust i {
  color: var(--benom-secondary);
}

.benom-hero__metric strong {
  color: var(--benom-primary);
}

.benom-hero__frame {
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  border-color: rgba(255, 255, 255, 0.06);
}

.benom-hero__slide {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.16), rgba(15, 23, 42, 0.22));
}

.benom-hero__floating {
  background: rgba(255, 255, 255, 0.96);
}

.benom-value-card,
.card-grid,
.card-grid-3,
.hizmetler-box,
.ticaret-kutu-box,
.blog-box,
.firsat-product-box,
.cat-detail-products-box,
.vitrin2-box,
.box-image-job,
.job-top-creator,
.footer-widget,
.footer-brand {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--benom-shadow-soft);
}

.benom-value-card:hover,
.card-grid:hover,
.card-grid-3:hover,
.hizmetler-box:hover,
.ticaret-kutu-box:hover,
.blog-box:hover,
.firsat-product-box:hover,
.cat-detail-products-box:hover,
.vitrin2-box:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 163, 74, 0.16);
  box-shadow: var(--benom-shadow);
}

.benom-value-card i,
.benom-hero__floating i,
.site-drawer__contact-item i,
.ticaret-kutu-box-i,
.hizmetler-box-line {
  background: rgba(22, 163, 74, 0.08);
  color: var(--benom-primary);
}

.benom-hero .swiper-pagination-bullet-active {
  background: var(--benom-secondary);
}

.footer-section {
  background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
}

.footer-section::before {
  background: radial-gradient(circle at top left, rgba(22, 163, 74, 0.16), transparent 26%), radial-gradient(circle at top right, rgba(34, 197, 94, 0.10), transparent 28%);
}

.footer-social a:hover {
  background: rgba(22, 163, 74, 0.14);
}

.footer-payments i {
  color: var(--benom-secondary);
}

.section-box {
  margin-top: 82px;
}

.modules-head-text-main {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.modules-head-text-h,
.modules-head-forbg-text,
.section-title {
  color: var(--benom-primary);
  letter-spacing: 1px;
  font-weight: 400;
}

.modules-head-text-h,
.modules-head-forbg-text {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.modules-head-text-s {
  color: var(--benom-muted);
  max-width: 60ch;
}

.modules-head-forbg-text-out {
  border-bottom: 0 !important;
}

.modules-head-forbg-text {
  background: transparent !important;
  padding: 0 !important;
}

.hizmetler-module-main-div,
.urunler-module-main-div,
.bloglar-module-main-div,
.ticaret-kutulari-main-div {
  position: relative;
  margin-top: 76px;
}

.hizmetler-module-inside-area,
.urunler-module-inside-area,
.bloglar-module-inside-area {
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  box-shadow: var(--benom-shadow-soft);
}

.hizmetler-box-main-div,
.urunler-module-inside-area .home-product-tabcontent-in,
.ticaret-kutulari-inside {
  display: grid;
  gap: 16px;
}

.hizmetler-box,
.card-grid,
.card-grid-3,
.ticaret-kutu-box,
.blog-box,
.footer-widget,
.footer-brand,
.benom-value-card,
.firsat-product-box,
.cat-detail-products-box,
.vitrin2-box {
  border-radius: 24px;
  overflow: hidden;
}

.hizmetler-box,
.card-grid,
.card-grid-3,
.ticaret-kutu-box,
.blog-box,
.firsat-product-box,
.cat-detail-products-box,
.vitrin2-box {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-grid,
.card-grid-3 {
  padding: 24px;
}

.card-grid figure,
.card-grid-3 figure,
.hizmetler-box-img,
.blog-box-img,
.firsat-product-box-img,
.cat-detail-products-box-img,
.vitrin2-box-img {
  overflow: hidden;
  border-radius: 20px;
}

.hizmetler-box-line {
  background: linear-gradient(90deg, #0f172a, rgb(4, 99, 128));
}

.hizmetler-box-h,
.hizmetler-box-s {
  color: var(--benom-text) !important;
}

.hizmetler-box-h a {
  color: var(--benom-primary) !important;
}

.box-button-shadow .btn-default,
.btn-default,
.button-blue,
.button-blue-out {
  border: 0;
  color: #fff !important;
}

.home-product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  margin-bottom: 20px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
}

.home-product-tablinks {
  padding: 12px 18px;
  border-radius: 8px;
  background: transparent;
  color: var(--benom-muted);
  font-weight: 700;
}

.home-product-tablinks p {
  margin: 0;
}

.home-product-tablinks.active {
  background: linear-gradient(135deg, #0f172a, rgb(4, 99, 128));
  color: #fff;
}

.home-product-tabcontent {
  margin-top: 18px;
}

.ticaret-kutulari-main-div {
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #f8fafc) !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.ticaret-kutulari-inside {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ticaret-kutu-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
}

.ticaret-kutu-box-i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.ticaret-kutu-box-text-h {
  margin-bottom: 4px;
  font-weight: 800;
  color: var(--benom-primary) !important;
}

.ticaret-kutu-box-text-s {
  color: var(--benom-muted) !important;
}

.content-job-inner,
.box-image-job,
.job-top-creator {
  border-radius: 28px;
}

.content-job-inner {
  padding-right: 18px;
}

.box-image-job {
  background: #fff;
  padding: 18px;
}

.job-top-creator {
  margin-top: 18px;
  padding: 22px;
  background: #fff;
}

.job-top-creator-head h5 {
  color: var(--benom-primary);
}

.list-partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
}

.list-partners li {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--benom-shadow-soft);
  filter: grayscale(100%);
  opacity: 0.92;
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.list-partners li:hover {
  transform: translateY(-4px);
  filter: none;
  opacity: 1;
  border-color: rgba(22, 163, 74, 0.16);
}

.blog-box {
  background: #fff;
}

.blog-box-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.72));
}

.blog-box-h a,
.blog-box-date,
.blog-box-s {
  color: var(--benom-primary);
}

.blog-box-button a,
.blog-box-button .btn {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.14);
  color: var(--benom-primary);
}

.blog-box-button a:hover,
.blog-box-button .btn:hover {
  background: rgba(15, 23, 42, 0.05);
}

.firsat-product-box,
.cat-detail-products-box,
.vitrin2-box {
  background: #fff;
}

.firsat-product-box:hover .firsat-product-box-img img,
.cat-detail-products-box:hover .cat-detail-products-box-img img,
.vitrin2-box:hover .vitrin2-box-img img {
  transform: scale(1.03);
}

.button-black-out {
  color: var(--benom-primary) !important;
}

@media (max-width: 991.98px) {
  .benom-hero__grid {
    padding: 24px;
  }

  .hizmetler-module-inside-area,
  .urunler-module-inside-area,
  .bloglar-module-inside-area {
    padding: 22px;
  }
}

@media (max-width: 575.98px) {
  .benom-hero__grid {
    padding: 18px;
    border-radius: 28px;
  }

  .home-product-tabs {
    padding: 8px;
  }

  .card-grid,
  .card-grid-3 {
    padding: 20px;
  }
}

/* Header redesign inspired by Birsunucum */
.header-main-div {
  position: relative;
  z-index: 20;
  background: transparent;
}

.site-promo-bar {
  background: linear-gradient(135deg, #020617 0%, #0b1220 55%, #111827 100%);
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 0;
}

.site-promo-bar__inner,
.site-utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-main-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.site-promo-bar__inner {
  flex-wrap: wrap;
}

.site-promo-bar__left,
.site-promo-bar__right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.site-promo-bar__left i {
  color: rgb(138, 207, 197);
  font-size: 12px;
}

.site-promo-bar__right {
  color: rgba(255, 255, 255, 0.84);
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
}

.site-promo-bar__right strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px dashed rgba(34, 197, 94, 0.45);
  color: #86efac;
  background: rgba(22, 101, 52, 0.16);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.site-utility-bar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.site-utility-bar__inner {
  min-height: 48px;
  flex-wrap: wrap;
}

.site-utility-bar__links,
.site-utility-bar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-utility-bar__links {
  color: var(--benom-muted);
  font-size: 13px;
  font-weight: 600;
}

.site-utility-bar__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--benom-muted);
}

.site-utility-bar__links a:hover {
  color: var(--benom-primary);
}

.site-utility-bar__links i {
  color: rgb(4, 99, 128);
}

.site-utility-bar__divider {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(100, 116, 139, 0.24);
  flex: 0 0 auto;
}

.site-utility-pill,
.site-login-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 35px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-utility-pill:hover,
.site-login-button:hover,
.site-theme-toggle:hover {
  transform: translateY(-1px);
}

.site-utility-pill--outline {
  background: #fff;
  border-color: rgba(22, 163, 74, 0.24);
  color: rgb(4, 99, 128);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.site-utility-pill--outline:hover {
     border-color: rgb(15 23 42);
    color: var(--color-brand) !important;
    background-color: #1f487230;
}

.site-utility-pill--ghost {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--benom-primary);
}

.site-utility-pill--ghost:hover {
  border-color: rgba(22, 163, 74, 0.22);
}

.site-theme-toggle {
  position: relative;
  width: 62px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #eceff4);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.site-theme-toggle__track {
  position: absolute;
  inset: 4px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.14), rgba(148, 163, 184, 0.24));
}

.site-theme-toggle__thumb {
  position: absolute;
  left: 6px;
  top: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
}

.site-theme-toggle i {
  position: absolute;
  right: 9px;
  top: 7px;
  font-size: 14px;
  color: #64748b;
}

.site-main-header {
  position: relative;
  z-index: 420;
  overflow: visible;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.25s ease;
}

.site-main-header::before,
.site-main-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.site-main-header::before {
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4, 99, 128, 0.26), rgba(32, 216, 135, 0.26), transparent);
}

.site-main-header::after {
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(4, 99, 128, 0.04), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(32, 216, 135, 0.04), transparent 28%);
}

.site-main-header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.site-main-header__inner {
  position: relative;
  z-index: 1;
  min-height: 84px;
  gap: 16px;
  padding: 10px 0;
}

.site-main-header__brand {
  display: inline-flex;
  align-items: center;
  min-width: 187px;
  flex: 0 0 auto;
  padding: 4px 0;
}

.site-main-header__brand img {
  display: block;
  max-height: 50px;
  width: auto;
}

.site-brand__fallback {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-brand__fallback strong {
  color: var(--benom-primary);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-brand__fallback span {
  color: var(--benom-muted);
  font-size: 12px;
  font-weight: 600;
}

.site-main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-self: center;
  position: relative;
  z-index: 30;
  min-width: 0;
}

.site-main-nav__fixed {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.site-main-nav__fixed-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.site-main-nav__fixed-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
  border-radius: 8px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-main-nav__fixed-link span {
  display: inline-flex;
  align-items: center;
}

.site-main-nav__fixed-link:hover,
.site-main-nav__fixed-link:focus {
  background: transparent;
  color: #000000;
}

.site-main-nav__fixed-link:hover::after,
.site-main-nav__fixed-link:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-main-nav .top-level-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: static;
}

.site-main-nav .top-level-menu > li {
  position: relative;
}

.site-main-nav .top-level-menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  background: transparent;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 0;
}

.site-main-nav .top-level-menu > li > a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
  border-radius: 8px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-main-nav .top-level-menu > li > a span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111111 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.2;
  padding: 0 !important;
  white-space: nowrap;
}

.site-main-nav .top-level-menu > li > a:hover,
.site-main-nav .top-level-menu > li:hover > a,
.site-main-nav .top-level-menu > li > a:focus {
  background: transparent;
  color: #000000;
}

.site-main-nav .top-level-menu > li > a:hover::after,
.site-main-nav .top-level-menu > li:hover > a::after,
.site-main-nav .top-level-menu > li > a:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-main-nav .top-level-menu > li > a i {
  font-size: 11px;
}

.site-main-nav .top-level-menu > li:hover > a span,
.site-main-nav .top-level-menu > li > a:hover span,
.site-main-nav .top-level-menu > li > a:focus span {
  color: #000000 !important;
}

.site-main-nav .second-level-menu,
.site-main-nav .third-level-menu,
.site-main-nav .sablon2-level-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  margin: 0;
  padding: 14px;
  list-style: none;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(16px);
  z-index: 9999;
}

.site-main-nav .second-level-menu,
.site-main-nav .third-level-menu {
  min-width: 260px;
}

.site-main-nav .third-level-menu {
  top: 0;
  left: calc(100% + 12px);
}

.site-main-nav .dropdown-sub-have:hover > .second-level-menu,
.site-main-nav .dropdown-sub-have:hover > .sablon2-level-menu {
  display: block;
}

.site-main-nav .second-level-menu li:hover > .third-level-menu {
  display: block;
}

.site-main-nav .sablon2-level-menu {
  width: min(920px, 92vw);
  min-width: 0;
  padding: 14px;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  gap: 14px;
}

.site-main-nav .site-mega-menu > li {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.site-main-nav .site-mega-menu__grid-wrap,
.site-main-nav .site-mega-menu__panel-wrap {
  display: block;
  height: 100%;
}

.site-main-nav .site-mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.site-main-nav .site-mega-menu__card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  color: #111111;
}

.site-main-nav .site-mega-menu__card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.12);
  color: #000000;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
}

.site-main-nav .site-mega-menu__card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(4, 99, 128, 0.07);
  color: #0f172a;
  font-size: 16px;
}

.site-main-nav .site-mega-menu__card-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.site-main-nav .site-mega-menu__card-copy strong {
  display: block;
  color: #111111;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-main-nav .site-mega-menu__card-copy span {
  color: var(--benom-muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.site-main-nav .site-mega-menu__panel {
  display: grid;
  gap: 14px;
  align-content: start;
  height: 100%;
  padding: 16px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--benom-text);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.site-main-nav .site-mega-menu__panel--info {
  background: #ffffff;
  color: var(--benom-text);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.site-main-nav .site-mega-menu__panel--light {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.03) 0%, rgba(4, 99, 128, 0.03) 100%);
  color: var(--benom-text);
}

.site-main-nav .site-mega-menu__panel-head {
  display: grid;
  gap: 8px;
}

.site-main-nav .site-mega-menu__eyebrow {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-main-nav .site-mega-menu__panel h3 {
  margin: 0;
  color: inherit;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.site-main-nav .site-mega-menu__panel p {
  margin: 0;
  color: inherit;
  opacity: 0.78;
  font-size: 12px;
  line-height: 1.55;
}

.site-main-nav .site-mega-menu__panel-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-main-nav .site-mega-menu__info-list {
  display: grid;
  gap: 6px;
}

.site-main-nav .site-mega-menu__info-row {
  display: grid;
  grid-template-columns: minmax(90px, 128px) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.site-main-nav .site-mega-menu__info-row:last-child {
  border-bottom: 0;
}

.site-main-nav .site-mega-menu__info-row span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-main-nav .site-mega-menu__info-row strong {
  color: #111111;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.site-main-nav .site-mega-menu__panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: inherit;
  font-size: 12px;
  line-height: 1.45;
}

.site-main-nav .site-mega-menu__panel-list i {
  margin-top: 3px;
  color: #20a56a;
}

.site-main-nav .site-mega-menu__panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  width: fit-content;
  padding: 0 14px;
  border-radius: 8px;
  background: #f8fafc;
  color: #111111;
  font-weight: 800;
  box-shadow: none;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.site-main-nav .site-mega-menu__panel-link--info {
  background: linear-gradient(135deg, #0f766e 0%, #184e7a 100%);
  color: #ffffff;
}

.site-main-nav .site-mega-menu__panel-link:hover {
  background: #eef2f7;
  color: #000000;
}

.site-main-nav .site-mega-menu__panel-link--info:hover {
  background: linear-gradient(135deg, #0b5b55 0%, #123c5e 100%);
  color: #ffffff;
}

.site-main-nav .dropdown-sub-have:hover > .sablon2-level-menu {
  display: grid;
}

.site-main-nav .dropdown-sub-have {
  position: relative;
}

.site-main-nav .second-level-menu > li,
.site-main-nav .third-level-menu > li {
  position: relative;
  list-style: none;
}

.site-main-nav .sablon2-level-menu-left {
  display: grid;
  gap: 12px;
}

.site-main-nav .sablon2-level-menu-left-item {
  padding: 14px;
  border-radius: 8px;
  background: var(--benom-surface-soft);
}

.site-main-nav .sablon2-level-menu-left-item-h {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--benom-primary);
}

.site-main-nav .sablon2-level-menu-left-item-s {
  display: block;
  padding: 6px 0;
  color: var(--benom-text);
  font-weight: 600;
}

.site-main-nav .sablon2-level-menu-right {
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(22, 163, 74, 0.06));
}

.site-main-nav .sablon2-level-menu-right-product-box {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 16px;
  margin: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.site-main-nav .sablon2-level-menu-right-product-box img {
  max-width: 100px;
  max-height: 70px;
  object-fit: contain;
}

.site-main-nav .second-level-menu > li > a,
.site-main-nav .third-level-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  color: #111111;
  font-weight: 600;
  border: 0;
}

.site-main-nav .second-level-menu > li > a p,
.site-main-nav .third-level-menu > li > a p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

.site-main-nav .second-level-menu > li > a:hover,
.site-main-nav .third-level-menu > li > a:hover {
  background: rgba(15, 23, 42, 0.04);
  color: #000000;
}

.site-main-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

.site-search-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 160px;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: width 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search-inline:focus-within {
  width: 216px;
  border-color: rgba(4, 99, 128, 0.28);
  box-shadow: 0 0 0 4px rgba(4, 99, 128, 0.08);
}

.site-search-inline__icon {
  color: rgb(4, 99, 128);
  font-size: 14px;
}

.site-search-inline input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--benom-primary);
  font-size: 14px;
  font-weight: 600;
}

.site-search-inline input::placeholder {
  color: #94a3b8;
}

.site-login-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: #0e1729;
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(4, 99, 128, 0.16);
}

.site-login-button:hover {
  background: #070d18;
}

.site-login-button.dropdown-toggle::after {
  display: none;
}

.site-account .dropdown-menu {
  min-width: 260px;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

.site-account .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 600;
}

.site-account .dropdown-item:hover {
  background: rgba(22, 163, 74, 0.08);
  color: rgb(4, 99, 128);
}

.site-account .dropdown-item i {
  color: rgb(4, 99, 128);
}

.site-menu-toggle {
  width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
  color: var(--benom-primary);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.site-menu-toggle:hover {
  border-color: rgba(22, 163, 74, 0.24);
  color: rgb(4, 99, 128);
}

.site-avatar {
  width: 28px;
  height: 28px;
  display: inline-flex;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  flex: 0 0 auto;
}

.site-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-drawer {
  z-index: 500;
}

.site-drawer__overlay {
  z-index: 490;
}

.site-drawer__panel {
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(15, 23, 42, 0.08);
}

.site-drawer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.site-drawer__actions .site-action-pill {
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.18);
}

@media (max-width: 1199.98px) {
  .site-main-nav {
    justify-self: start;
  }

  .site-search-inline {
    width: 132px;
  }

  .site-search-inline:focus-within {
    width: 186px;
  }
}

@media (max-width: 991.98px) {
  .site-utility-bar {
    display: none;
  }

  .site-main-nav {
    display: none;
  }

  .site-main-header__inner {
    grid-template-columns: auto 1fr;
  }

  .site-main-header__actions {
    justify-content: flex-end;
  }
}

@media (max-width: 767.98px) {
  .site-promo-bar {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .site-main-header__inner {
    gap: 12px;
    min-height: 74px;
  }

  .site-main-header__brand img {
    max-height: 46px;
  }

  .site-search-inline {
    display: none;
  }

  .site-login-button {
    padding: 0 14px;
  }

  .site-utility-pill {
    padding: 0 14px;
  }

  .site-drawer {
    width: 100%;
  }
}
/* =========================================
   BENOM YAZILIM - GENEL STİL DOSYASI
========================================= */

:root {
  --primary-color: #007bff;
  --secondary-color: #ff6b00;
  --text-dark: #1e1e1e;
  --text-muted: #6c757d;
  --bg-light: #f3f7fb;
  --white: #ffffff;
  --border-color: #e9ecef;
  --transition: all 0.3s ease-in-out;
}

body {
  font-family: 'Inter', sans-serif; /* Modern bir font varsayımı */
  color: var(--text-dark);
}

/* --- BUTONLAR (Theme Buttons) --- */
.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}

.theme-btn.bg-color-2 {
  background-color: var(--secondary-color);
}

.theme-btn.border-white {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: var(--white);
}

.theme-btn.border-white:hover {
  background-color: var(--white);
  color: var(--text-dark);
}

/* --- BÖLÜM BAŞLIKLARI (Section Titles) --- */
.section-title {
  margin-bottom: 40px;
}

.section-title span.style-bg,
.section-title span.style-bg-2,
.section-title span.style-border {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title span.style-bg {
  background-color: rgba(0, 123, 255, 0.1);
  color: var(--primary-color);
}

.section-title span.style-bg-2 {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section-title span.style-border {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

/* --- HİZMET KUTULARI (Hosting/Services Boxes) --- */
.hosting-box-items {
  border-radius: 16px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.hosting-box-items:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border-color: var(--primary-color);
}

.hosting-box-items .content h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.hosting-box-items:hover .content h3 a {
  color: var(--primary-color);
}

.hosting-box-items .theme-btn {
  background-color: transparent;
  color: var(--primary-color);
  padding: 0;
  border: none;
}

.hosting-box-items .theme-btn:hover {
  transform: none;
  box-shadow: none;
  color: var(--secondary-color);
}

/* --- FİYATLANDIRMA SEKMELERİ VE KARTLARI (Pricing) --- */
.pricing-tab-header {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing-tab-header .nav {
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

.pricing-tab-header .nav-link {
  color: var(--white);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  background: transparent;
}

.pricing-tab-header .nav-link.active,
.pricing-tab-header .nav-link:hover {
  background: var(--white);
  color: var(--primary-color);
}

.pricing-items {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: var(--transition);
  height: 100%;
}

.pricing-items:hover {
  transform: translateY(-10px);
}

.pricing-items .tag {
  background: var(--bg-light);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.pricing-header .price-text {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 500;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.pricing-list li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-list li i {
  color: #27ae60; /* Yeşil Tik */
  font-size: 14px;
  margin-top: 4px;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 14px 0;
  background: var(--bg-light);
  color: var(--primary-color);
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
}

.pricing-items:hover .pricing-btn {
  background: var(--primary-color);
  color: var(--white);
}

/* --- ÖNE ÇIKAN HİZMETLER VE ÖZELLİKLER (Features) --- */
.feature-list {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.feature-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list ul li {
  margin-bottom: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list ul li i {
  color: var(--primary-color);
  background: rgba(0, 123, 255, 0.1);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

/* --- İŞ ORTAKLARI (Partners) --- */
.partners-section .card {
  transition: var(--transition);
  background: var(--white);
  border-radius: 16px;
}

.partners-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

.partners-section img {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
  max-height: 80px;
  object-fit: contain;
}

.partners-section .card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- RESPONSIVE AYARLAR --- */
@media (max-width: 991px) {
  .section-title h2 {
    font-size: 28px;
  }
  .feature-list {
    flex-direction: column;
    gap: 15px;
  }
}

/* =========================================================
   BENOM HOSTING HERO
========================================================= */
.benom-hosting-hero {
  --hero-bg: #07111f;
  --hero-surface: #0c1a2c;
  --hero-surface-light: #11243a;
  --hero-border: rgba(148, 163, 184, 0.18);
  --hero-text: #f8fafc;
  --hero-muted: #a9b7c9;
  --hero-green: #2dd4a7;
  --hero-green-dark: #0f9f7d;
  --hero-cyan: #38bdf8;
  position: relative;
  isolation: isolate;
  margin-top: -25px;
  padding: 76px 0 58px;
  overflow: hidden;
  color: var(--hero-text);
  background:
    radial-gradient(circle at 11% 18%, rgba(45, 212, 167, 0.14), transparent 31%),
    radial-gradient(circle at 90% 12%, rgba(56, 189, 248, 0.12), transparent 29%),
    linear-gradient(135deg, #07111f 0%, #091829 54%, #071522 100%);
}

.benom-hosting-hero__grid-pattern {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 90%);
  pointer-events: none;
}

.benom-hosting-hero__glow {
  position: absolute;
  z-index: -2;
  width: 360px;
  height: 360px;
  border-radius: 8px;
  filter: blur(110px);
  opacity: 0.24;
  pointer-events: none;
  transform: rotate(22deg);
}

.benom-hosting-hero__glow--left {
  left: -210px;
  bottom: -190px;
  background: var(--hero-green);
}

.benom-hosting-hero__glow--right {
  top: -220px;
  right: -170px;
  background: var(--hero-cyan);
}

.benom-hosting-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(560px, 1.13fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

.benom-hosting-hero__content,
.benom-hosting-hero__showcase {
  min-width: 0;
}

.benom-hosting-hero__content {
  animation: benomHeroReveal 0.75s ease both;
}

.benom-hosting-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(45, 212, 167, 0.24);
  border-radius: 6px;
  background: rgba(45, 212, 167, 0.08);
  color: #9cf3d8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benom-hosting-hero__status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 4px;
  background: var(--hero-green);
  box-shadow: 0 0 0 4px rgba(45, 212, 167, 0.12);
}

.benom-hosting-hero__status-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(45, 212, 167, 0.46);
  border-radius: 8px;
  animation: benomHeroPulse 2s ease-out infinite;
}

.benom-hosting-hero__title {
  max-width: 760px;
  margin: 22px 0 20px;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.65rem, 4.1vw, 4.65rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.benom-hosting-hero__title span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #6ee7c7 0%, #38bdf8 75%);
  background-clip: text;
  -webkit-background-clip: text;
}

.benom-hosting-hero__description {
  max-width: 680px;
  margin: 0;
  color: var(--hero-muted);
  font-size: 16px;
  line-height: 1.8;
}

.benom-hosting-hero__services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.benom-hosting-hero__service {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: #d9e4ef;
  font-size: 13px;
  font-weight: 650;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.benom-hosting-hero__service:hover {
  border-color: rgba(45, 212, 167, 0.34);
  background: rgba(45, 212, 167, 0.07);
  transform: translateY(-2px);
}

.benom-hosting-hero__service i {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border: 1px solid rgba(45, 212, 167, 0.18);
  border-radius: 6px;
  background: rgba(45, 212, 167, 0.1);
  color: var(--hero-green);
  font-size: 13px;
}

.benom-hosting-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.benom-hosting-hero__button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.benom-hosting-hero__button:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.benom-hosting-hero__button--primary {
  color: #03130f;
  background: linear-gradient(135deg, #5ee5bf 0%, #2dd4a7 100%);
  box-shadow: 0 14px 30px rgba(45, 212, 167, 0.18);
}

.benom-hosting-hero__button--primary:hover {
  color: #03130f;
  box-shadow: 0 18px 38px rgba(45, 212, 167, 0.25);
}

.benom-hosting-hero__button--secondary {
  border-color: rgba(226, 232, 240, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #e8eef5;
}

.benom-hosting-hero__button--secondary:hover {
  border-color: rgba(226, 232, 240, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.benom-hosting-hero__button i {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.benom-hosting-hero__button:hover i {
  transform: translateX(3px);
}

.benom-hosting-hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 24px;
  color: #91a3b8;
  font-size: 12px;
  font-weight: 650;
}

.benom-hosting-hero__assurances span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.benom-hosting-hero__assurances i {
  color: var(--hero-green);
}

.benom-hosting-hero__showcase {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(17, 36, 58, 0.9), rgba(8, 22, 37, 0.92)),
    rgba(12, 26, 44, 0.9);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
  animation: benomHeroShowcase 0.9s 0.12s ease both;
}

.benom-hosting-hero__showcase::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(45, 212, 167, 0.32), transparent 38%, rgba(56, 189, 248, 0.2));
  opacity: 0.38;
}

.benom-hosting-hero__showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 4px 16px;
}

.benom-hosting-hero__showcase-head > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benom-hosting-hero__showcase-kicker {
  color: #79e7c9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.benom-hosting-hero__showcase-head strong {
  color: #f8fafc;
  font-size: 14px;
  font-weight: 750;
}

.benom-hosting-hero__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #a8b7c8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.benom-hosting-hero__live > span {
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background: var(--hero-green);
  box-shadow: 0 0 12px rgba(45, 212, 167, 0.8);
}

.benom-hosting-hero__browser {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 7px;
  background: #081522;
}

.benom-hosting-hero__browser-bar {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 20px;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: #0d1c2d;
  color: #667b91;
}

.benom-hosting-hero__browser-dots {
  display: flex;
  gap: 5px;
}

.benom-hosting-hero__browser-dots span {
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background: #38506a;
}

.benom-hosting-hero__browser-dots span:first-child {
  background: #ef6a6a;
}

.benom-hosting-hero__browser-dots span:nth-child(2) {
  background: #e9b949;
}

.benom-hosting-hero__browser-dots span:nth-child(3) {
  background: #2dd4a7;
}

.benom-hosting-hero__browser-address {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 25px;
  padding: 0 12px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.025);
  color: #71869b;
  font-size: 9px;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.benom-hosting-hero__browser-address i {
  color: var(--hero-green);
}

.benom-hosting-hero__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a1725;
}

.benom-hosting-hero__slider .swiper-wrapper {
  align-items: stretch;
}

.benom-hosting-hero__slide {
  height: auto;
  background: #0a1725;
}

.benom-hosting-hero__project {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(300px, 27vw, 380px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(45, 212, 167, 0.12), rgba(56, 189, 248, 0.08)),
    #0b1a2a;
}

.benom-hosting-hero__project picture,
.benom-hosting-hero__project img {
  display: block;
  width: 100%;
  height: 100%;
}

.benom-hosting-hero__project img {
  object-fit: cover;
  object-position: top center;
  transform: scale(1.002);
  transition: transform 1.1s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.5s ease;
}

.benom-hosting-hero__project:hover img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.benom-hosting-hero__project-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(3, 10, 18, 0.44), transparent 34%),
    linear-gradient(to right, rgba(3, 10, 18, 0.12), transparent 35%);
  pointer-events: none;
}

.benom-hosting-hero__project-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(4, 15, 25, 0.76);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.benom-hosting-hero__project:hover .benom-hosting-hero__project-badge {
  border-color: rgba(45, 212, 167, 0.52);
  background: rgba(15, 159, 125, 0.9);
}

.benom-hosting-hero__project-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  gap: 14px;
  color: #c9d6e3;
  text-align: center;
}

.benom-hosting-hero__project-fallback i {
  color: var(--hero-green);
  font-size: 46px;
}

.benom-hosting-hero__project-fallback span {
  font-size: 16px;
  font-weight: 800;
}

.benom-hosting-hero__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(4, 15, 25, 0.76);
  color: #ffffff;
  font-size: 19px;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.benom-hosting-hero__slider:hover .benom-hosting-hero__nav,
.benom-hosting-hero__nav:focus-visible {
  opacity: 1;
}

.benom-hosting-hero__nav:hover {
  border-color: var(--hero-green);
  background: var(--hero-green-dark);
}

.benom-hosting-hero__nav--prev {
  left: 14px;
  transform: translateX(-5px);
}

.benom-hosting-hero__nav--next {
  right: 14px;
  transform: translateX(5px);
}

.benom-hosting-hero__slider:hover .benom-hosting-hero__nav--prev,
.benom-hosting-hero__slider:hover .benom-hosting-hero__nav--next,
.benom-hosting-hero__nav:focus-visible {
  transform: translateX(0);
}

.benom-hosting-hero[data-slide-count="0"] .benom-hosting-hero__nav,
.benom-hosting-hero[data-slide-count="1"] .benom-hosting-hero__nav {
  display: none;
}

.benom-hosting-hero__project-info {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 16px 11px;
  background: #0d1c2d;
}

.benom-hosting-hero__project-copy {
  min-width: 0;
}

.benom-hosting-hero__project-copy > span {
  display: block;
  margin-bottom: 3px;
  color: #71869b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.benom-hosting-hero__project-copy a {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 9px;
  color: #f3f7fb;
}

.benom-hosting-hero__project-copy strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.benom-hosting-hero__project-copy a i {
  flex: 0 0 auto;
  color: var(--hero-green);
  font-size: 10px;
}

.benom-hosting-hero__project-copy a[aria-disabled="true"] i {
  display: none;
}

.benom-hosting-hero__counter {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: 5px;
  color: #667b91;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.benom-hosting-hero__counter strong {
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
}

.benom-hosting-hero__progress {
  height: 3px;
  background: rgba(148, 163, 184, 0.12);
}

.benom-hosting-hero__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--hero-green), var(--hero-cyan));
  transition: width 0.65s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.benom-hosting-hero__project-tabs {
  display: flex;
  gap: 7px;
  margin-top: 10px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-color: rgba(45, 212, 167, 0.35) transparent;
  scrollbar-width: thin;
}

.benom-hosting-hero__project-tab {
  display: inline-flex;
  min-height: 38px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  max-width: 190px;
  padding: 7px 11px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  color: #8194a9;
  font-size: 10px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  cursor: pointer;
}

.benom-hosting-hero__project-tab > span {
  color: #526a82;
  font-size: 9px;
  font-weight: 800;
}

.benom-hosting-hero__project-tab:hover,
.benom-hosting-hero__project-tab.is-active {
  border-color: rgba(45, 212, 167, 0.38);
  background: rgba(45, 212, 167, 0.09);
  color: #e7fff8;
}

.benom-hosting-hero__project-tab.is-active > span {
  color: var(--hero-green);
}

.benom-hosting-hero__infrastructure {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.benom-hosting-hero__infrastructure > div {
  display: flex;
  min-width: 0;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
}

.benom-hosting-hero__infrastructure i {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 6px;
  background: rgba(45, 212, 167, 0.1);
  color: var(--hero-green);
  font-size: 11px;
}

.benom-hosting-hero__infrastructure span {
  color: #7f93a8;
  font-size: 9px;
  line-height: 1.45;
}

.benom-hosting-hero__infrastructure strong {
  display: block;
  color: #dce7f1;
  font-size: 10px;
}

.benom-hosting-hero__project--empty {
  display: grid;
  place-items: center;
  padding: 30px;
}

.benom-hosting-hero__cloud-ui {
  display: grid;
  grid-template-columns: 62px 1fr;
  width: min(470px, 90%);
  min-height: 245px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 8px;
  background: #0f2033;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
  transform: perspective(900px) rotateX(3deg) rotateY(-5deg);
}

.benom-hosting-hero__cloud-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding-top: 24px;
  border-right: 1px solid rgba(148, 163, 184, 0.1);
  background: #0a1827;
}

.benom-hosting-hero__cloud-sidebar span {
  width: 25px;
  height: 6px;
  border-radius: 3px;
  background: #2a4158;
}

.benom-hosting-hero__cloud-sidebar span:first-child {
  height: 25px;
  border-radius: 6px;
  background: var(--hero-green);
}

.benom-hosting-hero__cloud-content {
  padding: 25px;
}

.benom-hosting-hero__cloud-title {
  width: 42%;
  height: 11px;
  border-radius: 4px;
  background: #dbe7f1;
}

.benom-hosting-hero__cloud-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.benom-hosting-hero__cloud-cards span {
  height: 62px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(45, 212, 167, 0.11), rgba(56, 189, 248, 0.04));
}

.benom-hosting-hero__cloud-chart {
  display: flex;
  height: 84px;
  align-items: flex-end;
  gap: 9px;
  margin-top: 18px;
  padding: 13px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
}

.benom-hosting-hero__cloud-chart i {
  flex: 1;
  min-width: 5px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--hero-green-dark), var(--hero-cyan));
}

.benom-hosting-hero__cloud-chart i:nth-child(1) { height: 35%; }
.benom-hosting-hero__cloud-chart i:nth-child(2) { height: 48%; }
.benom-hosting-hero__cloud-chart i:nth-child(3) { height: 42%; }
.benom-hosting-hero__cloud-chart i:nth-child(4) { height: 68%; }
.benom-hosting-hero__cloud-chart i:nth-child(5) { height: 58%; }
.benom-hosting-hero__cloud-chart i:nth-child(6) { height: 84%; }
.benom-hosting-hero__cloud-chart i:nth-child(7) { height: 74%; }

@keyframes benomHeroReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes benomHeroShowcase {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes benomHeroPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.7);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@media (max-width: 1199.98px) {
  .benom-hosting-hero {
    padding-top: 64px;
  }

  .benom-hosting-hero__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    gap: 34px;
  }

  .benom-hosting-hero__title {
    font-size: clamp(2.45rem, 4vw, 3.8rem);
  }

  .benom-hosting-hero__project {
    height: 330px;
  }
}

@media (max-width: 991.98px) {
  .benom-hosting-hero {
    padding: 56px 0 48px;
  }

  .benom-hosting-hero__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .benom-hosting-hero__content {
    max-width: 780px;
  }

  .benom-hosting-hero__title {
    max-width: 760px;
    font-size: clamp(2.7rem, 7vw, 4.3rem);
  }

  .benom-hosting-hero__description {
    font-size: 15px;
  }

  .benom-hosting-hero__project {
    height: clamp(320px, 54vw, 430px);
  }

  .benom-hosting-hero__nav {
    opacity: 1;
  }

  .benom-hosting-hero__nav--prev,
  .benom-hosting-hero__nav--next {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .benom-hosting-hero__services {
    grid-template-columns: 1fr;
  }

  .benom-hosting-hero__infrastructure {
    grid-template-columns: 1fr;
  }

  .benom-hosting-hero__infrastructure > div {
    min-height: 46px;
  }

  .benom-hosting-hero__infrastructure strong {
    display: inline;
    margin-right: 3px;
  }
}

@media (max-width: 575.98px) {
  .benom-hosting-hero {
    padding: 42px 0 38px;
  }

  .benom-hosting-hero__layout {
    gap: 34px;
  }

  .benom-hosting-hero__eyebrow {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .benom-hosting-hero__title {
    margin: 18px 0 16px;
    font-size: clamp(2.25rem, 11.5vw, 3.15rem);
    letter-spacing: -0.045em;
  }

  .benom-hosting-hero__description {
    font-size: 14px;
    line-height: 1.72;
  }

  .benom-hosting-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .benom-hosting-hero__button {
    width: 100%;
  }

  .benom-hosting-hero__assurances {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .benom-hosting-hero__showcase {
    margin-right: -6px;
    margin-left: -6px;
    padding: 9px;
  }

  .benom-hosting-hero__showcase-head {
    padding: 4px 3px 12px;
  }

  .benom-hosting-hero__showcase-head strong {
    font-size: 12px;
  }

  .benom-hosting-hero__live {
    font-size: 8px;
  }

  .benom-hosting-hero__browser-bar {
    grid-template-columns: 42px minmax(0, 1fr) 13px;
    gap: 7px;
    min-height: 37px;
    padding: 0 9px;
  }

  .benom-hosting-hero__browser-address {
    padding: 0 8px;
  }

  .benom-hosting-hero__project {
    height: 300px;
  }

  .benom-hosting-hero__project-badge {
    right: 10px;
    bottom: 10px;
    min-height: 31px;
    font-size: 8px;
  }

  .benom-hosting-hero__nav {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }

  .benom-hosting-hero__nav--prev {
    left: 9px;
  }

  .benom-hosting-hero__nav--next {
    right: 9px;
  }

  .benom-hosting-hero__project-info {
    min-height: 66px;
    padding: 11px 12px 9px;
  }

  .benom-hosting-hero__project-copy strong {
    max-width: 210px;
    font-size: 12px;
  }

  .benom-hosting-hero__counter strong {
    font-size: 16px;
  }

  .benom-hosting-hero__cloud-ui {
    grid-template-columns: 42px 1fr;
    min-height: 210px;
  }

  .benom-hosting-hero__cloud-content {
    padding: 18px;
  }

  .benom-hosting-hero__cloud-cards {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benom-hosting-hero *,
  .benom-hosting-hero *::before,
  .benom-hosting-hero *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   BENOM SITE FOOTER
========================================================= */
.benom-site-footer {
  --footer-border: rgba(160, 184, 168, 0.12);
  --footer-text: #d9e7ef;
  --footer-muted: #8da5b7;
  --footer-green: #0b1220;
  position: relative;
  isolation: isolate;

  overflow: hidden;
  border-top: 1px solid #0b1220;
  background: #0b1220;
  color: var(--footer-text);
  font-family: "Manrope", sans-serif;
}

.benom-site-footer__accent {
  display: none;
}

.benom-site-footer__main {
  display: grid;
  grid-template-columns: minmax(310px, 1.05fr) minmax(0, 2.25fr);
  gap: clamp(54px, 7vw, 108px);
  min-height: 310px;
  padding: 54px 0 0px;
}

.benom-site-footer__brand {
  min-width: 0;
  max-width: 390px;
}

.benom-site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: 225px;
  color: #ffffff;
}

.benom-site-footer__logo:hover {
  color: #ffffff;
}

.benom-site-footer__logo img {
  display: block;
  width: auto;
  max-width: 205px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.benom-site-footer__logo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(36, 214, 138, 0.32);
  border-radius: 8px;
  background: rgba(36, 214, 138, 0.1);
  color: var(--footer-green);
  font-size: 21px;
  font-weight: 800;
}

.benom-site-footer__logo-text {
  color: #ffffff;
  font-size: 21px;
  font-weight: 500;
}

.benom-site-footer__logo-text strong {
  font-weight: 800;
}

.benom-site-footer__description {
  max-width: 360px;
  margin: 20px 0 0;
  color: #b7cad6;
  font-size: 12px;
  line-height: 1.95;
}

.benom-site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.benom-site-footer__badges span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid var(--footer-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.018);
  color: #f1f6f3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.benom-site-footer__badges i {
  color: var(--footer-green);
  font-size: 13px;
}

.benom-site-footer__contacts {
  display: grid;
  gap: 0;
  max-width: 380px;
  margin-top: 24px;
  border-top: 1px solid var(--footer-border);
}

.benom-site-footer__contacts a {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 42px;
  color: #8eabc0;
  font-size: 12px;
  font-weight: 550;
}

.benom-site-footer__contacts a > i:first-child {
  color: #6288a6;
  font-size: 12px;
}

.benom-site-footer__contacts a:hover {
  color: #ffffff;
}

.benom-site-footer__navigation {
  display: grid;
  grid-template-columns: repeat(3, minmax(145px, 1fr));
  gap: 38px clamp(26px, 4vw, 64px);
  min-width: 0;
}

.benom-site-footer__column {
  min-width: 0;
}

.benom-site-footer__column h2 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 13px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.benom-site-footer__column h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--footer-green), rgba(36, 214, 138, 0.12));
}

.benom-site-footer__column ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benom-site-footer__column li {
  margin: 0;
  padding: 0;
}

.benom-site-footer__column a,
.benom-site-footer__column li > span {
  display: inline-flex;
  padding: 6px 0;
  color: #91aec3;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.benom-site-footer__column a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.benom-site-footer__socials {
  display: flex;
  grid-column: 2;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.benom-site-footer__socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--footer-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.018);
  color: #7594aa;
  font-size: 13px;
}

.benom-site-footer__socials svg {
  display: block;
  width: 16px;
  height: 16px;
  overflow: visible;
  fill: currentColor;
  pointer-events: none;
}

.benom-site-footer__socials a:hover {
  border-color: rgba(36, 214, 138, 0.42);
  background: rgba(36, 214, 138, 0.08);
  color: var(--footer-green);
  transform: translateY(-2px);
}

.benom-site-footer__payments {
  display: flex;
  grid-column: 3;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-width: 210px;
  padding-left: 28px;
}

.benom-site-footer__payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  color: rgba(148, 163, 155, 0.22);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.benom-site-footer__payment--mastercard {
  position: relative;
  width: 38px;
}

.benom-site-footer__payment--mastercard i {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 8px;
  background: rgba(148, 163, 155, 0.2);
}

.benom-site-footer__payment--mastercard i:first-child {
  left: 5px;
}

.benom-site-footer__payment--mastercard i:last-child {
  right: 5px;
}

.benom-site-footer__payment--troy {
  font-size: 18px;
  font-style: italic;
}

.benom-site-footer__bottom {
  display: grid;
  grid-template-columns: minmax(270px, 1fr) auto minmax(220px, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 92px;
  padding: 18px 0 20px;
  border-top: 1px solid var(--footer-border);
  color: #5d7b91;
}

.benom-site-footer__copyright {
  display: grid;
  gap: 5px;
}

.benom-site-footer__copyright p {
  margin: 0;
  font-size: 10px;
}

.benom-site-footer__copyright > div {
  color: var(--footer-green);
  font-size: 9px;
  font-weight: 650;
}

@media (max-width: 991.98px) {
  .benom-site-footer {
    margin-top: 68px;
  }

  .benom-site-footer__main {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: 0;
    padding-top: 56px;
  }

  .benom-site-footer__brand {
    max-width: 620px;
  }

  .benom-site-footer__bottom {
    grid-template-columns: minmax(240px, 1fr) auto auto;
  }
}

@media (max-width: 767.98px) {
  .benom-site-footer__navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benom-site-footer__bottom {
    grid-template-columns: 1fr auto;
  }

  .benom-site-footer__payments {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding: 14px 0 0;
    border-top: 1px solid var(--footer-border);
    border-left: 0;
  }
}

@media (max-width: 575.98px) {
  .benom-site-footer {
    margin-top: 52px;
  }

  .benom-site-footer__main {
    gap: 42px;
    padding: 46px 0 38px;
  }

  .benom-site-footer__logo img {
    max-width: 205px;
    max-height: 58px;
  }

  .benom-site-footer__description {
    font-size: 12px;
  }

  .benom-site-footer__navigation {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .benom-site-footer__column h2 {
    margin-bottom: 15px;
  }

  .benom-site-footer__column ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .benom-site-footer__socials {
    justify-content: flex-start;
  }

  .benom-site-footer__payments {
    grid-column: 1 / -1;
    flex-wrap: wrap;
  }

  .benom-site-footer__socials {
    grid-column: auto;
  }

  .benom-site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 22px;
  }

}

@media (max-width: 390px) {
  .benom-site-footer__column ul {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benom-site-footer *,
  .benom-site-footer *::before,
  .benom-site-footer *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
