/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0A0A0A;
  --dark:       #141414;
  --dark2:      #1a1a1a;
  --anthrazit:  #2a2a2a;
  --mid:        #444;
  --muted:      #666;
  --light-muted:#888;
  --border-d:   #222;
  --border-l:   #e0e0e0;
  --off-white:  #F7F7F7;
  --white:      #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== STICKY HEADER ===== */
header { position: sticky; top: 0; z-index: 100; }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border-d);
}

.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.navbar__logo { height: 58px; width: auto; }

.navbar__center { display: flex; align-items: center; gap: 32px; }

.navbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.navbar__nav { display: flex; gap: 32px; list-style: none; align-items: center; }

.navbar__nav a {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1px;
  transition: color 0.2s;
  position: relative;
}

.navbar__nav a:hover,
.navbar__nav a.active { color: var(--white); }

.navbar__nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--white);
}

.navbar__cta {
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  display: inline-block;
}

.navbar__cta:hover { background: var(--off-white); }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.navbar__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 4px;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.mobile-menu a:hover { opacity: 1; }

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: #0e0e0e;
  border-bottom: 0.5px solid var(--border-d);
}

.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 11px; }

/* ===== PAGE HERO (COMPACT) ===== */
.page-hero {
  background: var(--anthrazit);
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.013) 0px, rgba(255,255,255,0.013) 1px, transparent 1px, transparent 9px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.013) 0px, rgba(255,255,255,0.013) 1px, transparent 1px, transparent 9px);
  border-bottom: 0.5px solid var(--border-d);
  padding: 64px 0;
}

.page-hero__inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.page-hero__label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 12px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 3px;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 16px;
}

.page-hero__text {
  color: #888;
  font-size: 15px;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 28px;
}

.page-hero__badges { display: flex; gap: 8px; flex-wrap: wrap; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 2px;
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.5px;
}

.badge i { font-size: 13px; }

/* ===== SECTION BASE ===== */
.section {
  padding: 72px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ===== WRAPPERS ===== */
.wrap-dark {
  background: #111;
  border-top: 0.5px solid var(--border-d);
  border-bottom: 0.5px solid var(--border-d);
}

.wrap-dark .section-label { color: #444; }
.wrap-dark .section-title { color: var(--white); }
.wrap-dark .section-text  { color: #888; }

.wrap-light {
  background: var(--off-white);
  border-top: 0.5px solid var(--border-l);
  border-bottom: 0.5px solid var(--border-l);
}

.wrap-light .section-label { color: #bbb; }
.wrap-light .section-title { color: var(--black); }
.wrap-light .section-text  { color: #777; }

/* ===== FEATURE CARDS ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }

.feature-card {
  border-radius: 12px;
  padding: 28px 22px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover { transform: translateY(-2px); }

.wrap-dark .feature-card {
  background: #0E0E0E;
  border: 0.5px solid #222;
}

.wrap-dark .feature-card:hover { border-color: #444; }

.wrap-light .feature-card {
  background: var(--white);
  border: 0.5px solid var(--border-l);
}

.wrap-light .feature-card:hover { border-color: #bbb; }

.feature-card__icon {
  font-size: 26px;
  display: block;
  margin-bottom: 14px;
}

.wrap-dark .feature-card__icon  { color: #555; }
.wrap-light .feature-card__icon { color: #aaa; }

.feature-card__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.wrap-dark .feature-card__title  { color: var(--white); }
.wrap-light .feature-card__title { color: var(--black); }

.feature-card__text { font-size: 12px; line-height: 1.6; }

.wrap-dark .feature-card__text  { color: #555; }
.wrap-light .feature-card__text { color: #888; }

/* ===== USE CASES GRID ===== */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.usecase-card {
  display: block;
  border-radius: 10px;
  padding: 22px 20px;
  transition: transform 0.2s;
}

.usecase-card:hover { transform: translateY(-2px); }

.wrap-dark .usecase-card {
  background: #0E0E0E;
  border: 0.5px solid #222;
}

.wrap-light .usecase-card {
  background: var(--white);
  border: 0.5px solid var(--border-l);
}

.wrap-dark .usecase-card h3  { color: var(--white); }
.wrap-light .usecase-card h3 { color: var(--black); }

.wrap-dark .usecase-card h3 i  { color: #555; }
.wrap-light .usecase-card h3 i { color: #aaa; }

.wrap-dark .usecase-card p  { color: #555; }
.wrap-light .usecase-card p { color: #888; }

.usecase-card__title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wrap-dark .usecase-card__title  { color: var(--white); }
.wrap-light .usecase-card__title { color: var(--black); }

.usecase-card__title i { font-size: 16px; }

.wrap-dark .usecase-card__title i  { color: #555; }
.wrap-light .usecase-card__title i { color: #aaa; }

.usecase-card__text { font-size: 12px; line-height: 1.6; }

.wrap-dark .usecase-card__text  { color: #555; }
.wrap-light .usecase-card__text { color: #888; }

/* ===== GALLERY SECTION LAYOUT ===== */
.gallery-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ===== PHOTO GRID (BOS galleries) ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.photo-grid__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}
.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #e8e8e8;
}
@media (max-width: 768px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .photo-grid { grid-template-columns: 1fr; } }

/* ===== PATCHES GALLERY (same as main) ===== */
.patches-gallery-wrapper { display: flex; flex-direction: column; gap: 14px; }

.patches-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border-radius: 16px;
  overflow: hidden;
  transition: opacity 0.18s ease;
}

.patches-gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.patches-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  pointer-events: none;
}

.patches-gallery__item:hover::after { background: rgba(0,0,0,0.25); }

.patches-gallery__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
  pointer-events: none;
}

.patches-gallery__zoom i {
  font-size: 28px;
  color: white;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6));
}

.patches-gallery__item:hover .patches-gallery__zoom { opacity: 1; }

.patches-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.patches-gallery__item:hover img { transform: scale(1.07); }

.gallery-dots { display: flex; justify-content: center; gap: 8px; padding: 2px 0; }

.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.gallery-dot.active { background: rgba(255,255,255,0.78); transform: scale(1.3); }
.gallery-dot:hover:not(.active) { background: rgba(255,255,255,0.42); }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.96);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open { display: flex; }

.lightbox__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
  padding: 64px 72px;
}

.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.2s;
}

.lightbox__close {
  position: fixed;
  top: 16px; right: 20px;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.12);
  color: white;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.2s;
  z-index: 502;
}

.lightbox__close:hover { background: rgba(255,255,255,0.18); }

.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.12);
  color: white;
  cursor: pointer;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background 0.2s;
  z-index: 502;
}

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.2); }

.lightbox__counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.lightbox__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.2s;
}

.lightbox__dot.active { background: rgba(255,255,255,0.85); }

/* ===== PRICE CARDS ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.price-grid--4 { grid-template-columns: repeat(4, 1fr); }

.price-card {
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
}

.wrap-dark .price-card  { background: #0E0E0E; border: 0.5px solid #222; }
.wrap-light .price-card { background: var(--white); border: 0.5px solid var(--border-l); }

.price-card__label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.wrap-dark .price-card__label  { color: #444; }
.wrap-light .price-card__label { color: #bbb; }

.price-card__amount {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.wrap-dark .price-card__amount  { color: var(--white); }
.wrap-light .price-card__amount { color: var(--black); }

.price-card__note { font-size: 11px; line-height: 1.6; }

.wrap-dark .price-card__note  { color: #555; }
.wrap-light .price-card__note { color: #888; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item { border-radius: 8px; overflow: hidden; }

.wrap-dark .faq-item  { background: #0E0E0E; border: 0.5px solid #1e1e1e; }
.wrap-light .faq-item { background: var(--white); border: 0.5px solid var(--border-l); }

.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  user-select: none;
  transition: background 0.15s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.wrap-dark .faq-item summary  { color: var(--white); }
.wrap-light .faq-item summary { color: var(--black); }

.wrap-dark .faq-item summary:hover  { background: rgba(255,255,255,0.02); }
.wrap-light .faq-item summary:hover { background: rgba(0,0,0,0.02); }

.faq-item summary i { font-size: 16px; flex-shrink: 0; transition: transform 0.25s; }

.wrap-dark .faq-item summary i  { color: #555; }
.wrap-light .faq-item summary i { color: #bbb; }

.faq-item[open] summary i { transform: rotate(45deg); }

.faq-item__answer { padding: 0 22px 18px; font-size: 13px; line-height: 1.8; }

.wrap-dark .faq-item__answer  { color: #666; }
.wrap-light .faq-item__answer { color: #777; }

/* ===== DISCLAIMER ===== */
.disclaimer {
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  line-height: 1.6;
}

.wrap-dark .disclaimer {
  background: rgba(255,255,255,0.02);
  border: 0.5px solid rgba(255,255,255,0.06);
  color: #555;
}

.disclaimer i { font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.wrap-dark .disclaimer i { color: #444; }

/* ===== CTA BANNER ===== */
.cta-banner-wrap {
  background: var(--white);
  border-top: 0.5px solid var(--border-l);
}

.cta-banner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 72px 40px;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 14px;
  color: #888;
  line-height: 1.75;
  margin-bottom: 32px;
}

.cta-banner__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover { background: var(--off-white); transform: translateY(-1px); }

.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: #ccc;
  font-size: 13px;
  padding: 14px 28px;
  border-radius: 3px;
  border: 0.5px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); }

.btn-dark {
  background: var(--dark2);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-dark:hover { background: #333; transform: translateY(-1px); }

.btn-outline {
  background: var(--white);
  color: #111;
  font-size: 13px;
  padding: 13px 28px;
  border-radius: 3px;
  border: 0.5px solid #ccc;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-outline:hover { border-color: #999; transform: translateY(-1px); }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  border-top: 0.5px solid var(--border-d);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand__logo { margin-bottom: 12px; }

.footer-brand__logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p { font-size: 13px; color: #555; line-height: 1.7; max-width: 280px; margin-bottom: 16px; }

.footer-nap {
  font-size: 12px;
  color: #444;
  line-height: 1.9;
  font-style: normal;
  max-width: 280px;
  margin-bottom: 16px;
}

.footer-nap a { color: #555; transition: color 0.2s; }
.footer-nap a:hover { color: #aaa; }

.footer-trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #555;
  transition: color 0.2s;
}

.footer-trustpilot span { color: #00b67a; font-size: 14px; letter-spacing: 1px; }
.footer-trustpilot:hover { color: #aaa; }

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a { font-size: 13px; color: #555; transition: color 0.2s; }
.footer-col ul a:hover { color: #aaa; }

.footer-bottom {
  border-top: 0.5px solid var(--border-d);
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span { font-size: 11px; color: #333; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== DROPDOWN NAV ===== */
.nav-dropdown { position: relative; }

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 18px;
}

.nav-dropdown__trigger {
  display: flex !important;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}

.nav-dropdown__arrow {
  font-size: 10px !important;
  transition: transform 0.25s;
  opacity: 0.6;
  display: inline-block;
}

.nav-dropdown:hover .nav-dropdown__arrow,
.nav-dropdown:focus-within .nav-dropdown__arrow { transform: rotate(180deg); }

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  min-width: 220px;
  padding: 6px 0;
  list-style: none;
  z-index: 300;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 9px; height: 9px;
  background: rgba(8,8,8,0.98);
  border-left: 0.5px solid rgba(255,255,255,0.1);
  border-top: 0.5px solid rgba(255,255,255,0.1);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown__menu li { list-style: none; }

.nav-dropdown__menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 12px !important;
  color: #777 !important;
  letter-spacing: 0.5px !important;
  transition: color 0.15s, background 0.15s;
}

.nav-dropdown__menu li a:hover {
  color: var(--white) !important;
  background: rgba(255,255,255,0.04);
}

.nav-dropdown__menu li a::after { display: none !important; }

.nav-dropdown__menu li a i { font-size: 14px; color: #444; flex-shrink: 0; }
.nav-dropdown__menu li a:hover i { color: #888; }

/* ===== MOBILE MENU SUBMENU ===== */
.mobile-menu__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 320px;
}

.mobile-menu__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mobile-menu__expand {
  background: none;
  border: 0.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.mobile-menu__expand:hover,
.mobile-menu__expand[aria-expanded="true"] {
  color: white;
  border-color: rgba(255,255,255,0.45);
}

.mobile-menu__expand i { transition: transform 0.25s; display: block; }
.mobile-menu__expand[aria-expanded="true"] i { transform: rotate(180deg); }

.mobile-menu__sub {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  width: 100%;
}

.mobile-menu__sub.open { display: flex; }

.mobile-menu__sub a {
  font-family: var(--font-body) !important;
  font-size: 17px !important;
  letter-spacing: 1.5px !important;
  color: rgba(255,255,255,0.55) !important;
  opacity: 1 !important;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: color 0.2s !important;
}

.mobile-menu__sub a i { font-size: 16px; }
.mobile-menu__sub a:hover { color: white !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar__nav    { display: none; }
  .navbar__cta    { display: none; }
  .navbar__center { display: none; }
  .navbar__burger { display: flex; align-items: center; }
  .navbar__inner  { padding: 0 24px; grid-template-columns: 1fr auto; }

  .breadcrumb   { padding: 10px 24px; }
  .page-hero    { padding: 44px 0; }
  .page-hero__inner { padding: 0 24px; }
  .section      { padding: 52px 24px; }

  .feature-grid       { grid-template-columns: repeat(2, 1fr); }
  .feature-grid--3    { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid       { grid-template-columns: 1fr 1fr; }
  .price-grid         { grid-template-columns: 1fr; }
  .price-grid--4      { grid-template-columns: repeat(2, 1fr); }
  .gallery-section    { grid-template-columns: 1fr; gap: 32px; }
  .footer-top         { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom      { flex-direction: column; gap: 8px; text-align: center; }
  .cta-banner         { padding: 52px 24px; }
}

@media (max-width: 540px) {
  .feature-grid     { grid-template-columns: 1fr; }
  .feature-grid--3  { grid-template-columns: 1fr; }
  .usecase-grid     { grid-template-columns: 1fr; }
  .cta-banner__btns { flex-direction: column; }
  .cta-banner__btns a { width: 100%; text-align: center; }
  .lightbox__prev   { left: 8px; width: 40px; height: 40px; font-size: 18px; }
  .lightbox__next   { right: 8px; width: 40px; height: 40px; font-size: 18px; }
  .lightbox__img-wrap { padding: 56px 52px; }
}
