/* ============================================================
   BookMyCharging WordPress Theme â€“ style.css
   Theme Name: BookMyCharging
   Theme URI: https://bookmycharging.com
   Description: BookMyCharging official WordPress theme
   Version: 1.0
   Author: Vemsoft Kft.
   Text Domain: bmc
   ============================================================ */

:root {
  --cyan:    #00e0ff;
  --blue:    #007bff;
  --purple:  #c084fc;
  --green:   #4ade80;
  --orange:  #fb923c;
  --bg:      #050b1a;
  --bg2:     #0b1e3a;
  --glass:   rgba(255,255,255,0.05);
  --border:  rgba(255,255,255,0.10);
  --muted:   #7a92c4;
  --text:    #e8f0ff;
  --subtext: #b8c8ff;
  --radius:  16px;
  --shadow:  0 20px 60px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Titillium Web', system-ui, sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; }

.bmc-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.bmc-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bmc-bg__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(0,150,255,0.18) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(0,224,255,0.10) 0%, transparent 50%),
    linear-gradient(160deg, #040814 0%, #0b1e3a 40%, #050b1a 100%);
}

.bmc-bg__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,150,255,0.35) 0%, transparent 70%);
  filter: blur(120px);
  animation: bmcGlowFloat 12s ease-in-out infinite alternate;
}

.bmc-bg__glow--1 { top: -150px; left: -150px; }
.bmc-bg__glow--2 { bottom: -150px; right: -150px; animation-delay: 4s; }

@keyframes bmcGlowFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px,60px) scale(1.05); }
}

.bmc-bg__particles::before,
.bmc-bg__particles::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 180px 180px;
  opacity: 0.06;
  animation: bmcParticles 60s linear infinite;
}
.bmc-bg__particles::after { animation-direction: reverse; opacity: 0.03; }

@keyframes bmcParticles {
  from { transform: translateY(0); }
  to   { transform: translateY(-800px); }
}

h1, h2, h3, h4 { color: var(--text); font-weight: 700; line-height: 1.2; }

.bmc-gradient-text {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bmc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  opacity: 0.85;
}

.bmc-eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: bmcDotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.bmc-eyebrow__dot--blue   { background: var(--blue);   box-shadow: 0 0 8px var(--blue); }
.bmc-eyebrow__dot--purple { background: var(--purple); box-shadow: 0 0 8px var(--purple); }
.bmc-eyebrow__dot--green  { background: var(--green);  box-shadow: 0 0 8px var(--green); }

@keyframes bmcDotPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.4; transform:scale(1.5); }
}

.bmc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  cursor: pointer;
  border: none;
}

.bmc-btn--primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  box-shadow: 0 0 28px rgba(0,224,255,0.35);
}
.bmc-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 44px rgba(0,224,255,0.55);
}

.bmc-btn--glass {
 color: white;
        background: linear-gradient(135deg, rgb(0, 224, 255), rgb(0, 123, 255));}

.bmc-btn--glass:hover {
   box-shadow: rgba(0, 255, 255, 0.4) 0px 0px 30px;
}

.bmc-store-badge {
      display: inline-flex;
width: 150px;
}
.bmc-store-badge i { font-size: 1.4rem; color: var(--cyan); }
.bmc-store-badge__sub  { display: block; font-size: 10px; color: var(--muted); }
.bmc-store-badge__name { display: block; font-size: 0.9rem; font-weight: 700; }
.bmc-store-badge--sm { padding: 8px 14px; }
.bmc-store-badge--sm i { font-size: 1rem; }
.bmc-store-badge--sm span { font-size: 0.8rem; font-weight: 600; }

/* ============================================================
   HEADER
   ============================================================ */

.bmc-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5,11,26,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.bmc-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.bmc-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.bmc-brand__logo { height: 40px; width: auto; }
.bmc-brand__name {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.02em;
}
.bmc-brand__name span { color: var(--cyan); }
.bmc-brand__sub { font-size: 10px; color: var(--muted); letter-spacing: 0.5px; }
.bmc-brand__text { display: flex; flex-direction: column; gap: 1px; }

.bmc-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.bmc-nav__link {
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  border: 1px solid transparent;
}
.bmc-nav__link:hover,
.bmc-nav__link.bmc-nav__link--active {
  color: var(--cyan);
  background: rgba(0,224,255,0.07);
  border-color: rgba(0,224,255,0.15);
}

.bmc-lang {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px;
  flex-shrink: 0;
}
.bmc-lang__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.bmc-lang__btn--active {
  background: rgba(0,224,255,0.15);
  color: var(--cyan);
  border-color: rgba(0,224,255,0.3);
}

.bmc-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.bmc-hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.bmc-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bmc-hamburger.is-open span:nth-child(2) { opacity: 0; }
.bmc-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.bmc-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
}
.bmc-drawer-backdrop.is-open { display: block; opacity: 1; }

.bmc-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  z-index: 9999;
  background: rgba(5,11,26,0.98);
  backdrop-filter: blur(24px);
  border-left: 1px solid rgba(0,224,255,0.15);
  box-shadow: -8px 0 40px rgba(0,0,0,0.6);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.bmc-drawer.is-open { transform: translateX(0); }

.bmc-drawer__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}
.bmc-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.bmc-drawer__close {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text);
  font-size: 1rem;
  transition: background 0.2s;
}
.bmc-drawer__close:hover { background: rgba(255,255,255,0.12); }

.bmc-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.bmc-drawer__link {
  display: block;
  padding: 12px 16px;
  color: var(--subtext);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
}
.bmc-drawer__link:hover {
  color: var(--cyan);
  background: rgba(0,224,255,0.06);
  border-color: rgba(0,224,255,0.15);
}

.bmc-drawer__lang {
  display: flex;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}
.bmc-drawer__lang .bmc-lang__btn {
  flex: 1;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
}

/* ============================================================
   HERO
   ============================================================ */

.bmc-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
}

.bmc-hero__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.bmc-hero__text { flex: 1; min-width: 300px; }

.bmc-hero__title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, var(--cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bmc-hero__subtitle {
  font-size: 1.05rem;
  color: var(--subtext);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 540px;
}

.bmc-hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.bmc-hero__cta {
  margin-bottom: 40px;
}

.bmc-hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  width: fit-content;
}
.bmc-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.bmc-stat__num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
  font-family: 'Exo 2', sans-serif;
  line-height: 1;
}
.bmc-stat__label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.bmc-stat__divider { width: 1px; height: 36px; background: var(--border); }

.bmc-hero__image { flex: 1; display: flex; justify-content: center; }

.bmc-hero__phone-wrap {
  position: relative;
  display: inline-block;
}

.bmc-hero__phone {
  border-radius: 28px;
  filter: drop-shadow(0 20px 60px rgba(0,150,255,0.3));
}

@keyframes bmcFloatPhone {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}

.bmc-hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(5,11,26,0.9);
  border: 1px solid rgba(0,224,255,0.25);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  animation: bmcFloatBadge 4s ease-in-out infinite alternate;
}
.bmc-hero__float i { color: var(--cyan); }
.bmc-hero__float--1 { top: 15%; left: -30px; animation-delay: 0s; }
.bmc-hero__float--2 { bottom: 20%; right: -30px; animation-delay: 1.5s; }

@keyframes bmcFloatBadge {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

.bmc-scroll-hint {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}
.bmc-scroll-hint__mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(0,224,255,0.3);
  border-radius: 12px;
  position: relative;
}
.bmc-scroll-hint__mouse::after {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  animation: bmcScrollMouse 1.6s ease-in-out infinite;
}
@keyframes bmcScrollMouse {
  0%,100% { opacity:1; transform:translateX(-50%) translateY(0); }
  50%     { opacity:0; transform:translateX(-50%) translateY(10px); }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */

.bmc-section { padding: 120px 0; }

.bmc-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.bmc-section__title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fff 30%, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bmc-section__subtitle {
  font-size: 1rem;
  color: var(--subtext);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

.bmc-section__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */

.bmc-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bmc-feat-grid--sm { grid-template-columns: repeat(2, 1fr); }

.bmc-feat-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.bmc-feat-card:hover { transform: translateY(-6px); }

.bmc-feat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  pointer-events: none;
}
.bmc-feat-card--cyan:hover   { border-color: rgba(0,224,255,.35);   box-shadow: 0 16px 48px rgba(0,224,255,.07); }
.bmc-feat-card--blue:hover   { border-color: rgba(0,123,255,.35);   box-shadow: 0 16px 48px rgba(0,123,255,.07); }
.bmc-feat-card--purple:hover { border-color: rgba(192,132,252,.35); box-shadow: 0 16px 48px rgba(192,132,252,.07); }
.bmc-feat-card--green:hover  { border-color: rgba(74,222,128,.35);  box-shadow: 0 16px 48px rgba(74,222,128,.07); }
.bmc-feat-card--orange:hover { border-color: rgba(251,146,60,.35);  box-shadow: 0 16px 48px rgba(251,146,60,.07); }

.bmc-feat-card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.bmc-feat-card__icon--cyan   { background: rgba(0,224,255,.1);   border: 1px solid rgba(0,224,255,.25);   color: var(--cyan); }
.bmc-feat-card__icon--blue   { background: rgba(0,123,255,.1);   border: 1px solid rgba(0,123,255,.25);   color: var(--blue); }
.bmc-feat-card__icon--purple { background: rgba(192,132,252,.1); border: 1px solid rgba(192,132,252,.25); color: var(--purple); }
.bmc-feat-card__icon--green  { background: rgba(74,222,128,.1);  border: 1px solid rgba(74,222,128,.25);  color: var(--green); }
.bmc-feat-card__icon--orange { background: rgba(251,146,60,.1);  border: 1px solid rgba(251,146,60,.25);  color: var(--orange); }

.bmc-feat-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.bmc-feat-card__desc {
  font-size: 0.85rem;
  color: var(--subtext);
  line-height: 1.65;
}

.bmc-providers__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.bmc-highlight-card {
  background: linear-gradient(135deg, rgba(0,224,255,0.07), rgba(0,123,255,0.07));
  border: 1px solid rgba(0,224,255,0.2);
  border-radius: 20px;
  padding: 36px;
  position: sticky;
  top: 100px;
}
.bmc-highlight-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(0,224,255,0.12);
  border: 1px solid rgba(0,224,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 20px;
}
.bmc-highlight-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text);
}
.bmc-highlight-card p {
  font-size: 0.875rem;
  color: var(--subtext);
  line-height: 1.7;
  margin-bottom: 20px;
}
.bmc-highlight-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.bmc-highlight-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--subtext);
}
.bmc-highlight-card__list li i { color: var(--green); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.bmc-how { background: transparent; }

.bmc-steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.bmc-step {
  display: flex;
  align-items: center;
  gap: 60px;
}
.bmc-step--reverse { flex-direction: row-reverse; }

.bmc-step__content { flex: 1; }

.bmc-step__card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(20px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.bmc-step__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,224,255,0.08);
  border-color: rgba(0,224,255,0.2);
}

.bmc-step__num {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Exo 2', sans-serif;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.bmc-step__title { font-size: 1.2rem; margin-bottom: 10px; color: var(--text); }
.bmc-step__desc  { font-size: 0.9rem; color: var(--subtext); line-height: 1.7; }

.bmc-step__image {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
}

.bmc-phone-wrap { animation: bmcFloatPhone 6s ease-in-out infinite; }

.bmc-phone {
  width: 400px;
  border-radius: 24px;
  filter: drop-shadow(0 20px 50px rgba(0,150,255,0.25));
}

.bmc-phone-placeholder {
  width: 200px; height: 360px;
  border-radius: 28px;
  background: var(--glass);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.bmc-phone-placeholder__screen {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Exo 2', sans-serif;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   FOOTER
   ============================================================ */

.bmc-footer {
  margin-top: 120px;
  padding: 60px 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
}

.bmc-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.bmc-footer__brand {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: block;
}

.bmc-footer__desc {
  font-size: 0.875rem;
  color: var(--subtext);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bmc-footer__stores { display: flex; gap: 10px; flex-wrap: wrap; }

.bmc-footer__heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 16px;
}

.bmc-footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bmc-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--subtext);
}
.bmc-footer__contact li i { color: var(--cyan); margin-top: 2px; flex-shrink: 0; }
.bmc-footer__contact a { color: var(--subtext); text-decoration: none; transition: color 0.2s; }
.bmc-footer__contact a:hover { color: var(--cyan); }

.bmc-footer__legal {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.8;
}
.bmc-footer__legal a { color: var(--cyan); }

.bmc-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.bmc-footer__social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--glass);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--subtext);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.bmc-footer__social a:hover {
  background: rgba(0,224,255,0.1);
  border-color: rgba(0,224,255,0.3);
  color: var(--cyan);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.bmc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.bmc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--cyan), var(--blue));
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(0,224,255,0.6);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .bmc-providers__layout { grid-template-columns: 1fr; }
  .bmc-highlight-card { position: static; }
}

@media (max-width: 900px) {
  .bmc-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .bmc-feat-grid--sm { grid-template-columns: repeat(2, 1fr); }
  .bmc-hero__inner { flex-direction: column; text-align: center; }
  .bmc-hero__subtitle { margin: 0 auto 32px; }
  .bmc-hero__stats { margin: 0 auto; }
  .bmc-hero__cta { justify-content: center; }
  .bmc-hero__badges { justify-content: center; }
  .bmc-step { flex-direction: column !important; gap: 40px; }
  .bmc-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .bmc-nav, .bmc-lang { display: none; }
  .bmc-hamburger { display: flex; }
  .bmc-hero { padding: 100px 0 60px; }
  .bmc-section { padding: 80px 0; }
}

@media (max-width: 520px) {
  .bmc-feat-grid,
  .bmc-feat-grid--sm { grid-template-columns: 1fr; }
  .bmc-hero__stats { flex-direction: column; gap: 16px; width: 100%; }
  .bmc-stat__divider { width: 80px; height: 1px; }
  .bmc-hero__float { display: none; }
}

/* ============================================================
   VEMSOFT – Language switcher
   ============================================================ */

.vs-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 3px;
}

.vs-lang-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 4px 12px !important;
  border-radius: 16px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
  color: rgba(255,255,255,.45) !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  transition: color .2s ease, background .2s ease !important;
  line-height: 1 !important;
}

.vs-lang-btn:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,.08) !important;
}

.vs-lang-btn.vs-lang-active {
  background: rgba(0,224,255,.15) !important;
  color: #00e0ff !important;
  border-color: rgba(0,224,255,.3) !important;
}

.is-style-default {
margin-left:0px !important;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.bmc-faq { background: transparent; }

.bmc-faq__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}

.bmc-faq__tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 100px;
}

.bmc-faq__tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Titillium Web', sans-serif;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  width: 100%;
}
.bmc-faq__tab i { font-size: 1rem; flex-shrink: 0; }
.bmc-faq__tab:hover {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}
.bmc-faq__tab.is-active {
  color: var(--cyan);
  background: rgba(0,224,255,0.08);
  border-color: rgba(0,224,255,0.25);
  box-shadow: 0 0 16px rgba(0,224,255,0.06);
}

.bmc-faq__panel { display: none; flex-direction: column; gap: 8px; }
.bmc-faq__panel.is-active { display: flex; }

.bmc-faq__item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bmc-faq__item.is-open {
  border-color: rgba(0,224,255,0.25);
  box-shadow: 0 8px 32px rgba(0,224,255,0.05);
}

.bmc-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.bmc-faq__question:hover { color: var(--cyan); }
.bmc-faq__item.is-open .bmc-faq__question { color: var(--cyan); }

.bmc-faq__chevron {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--muted);
  transition: transform 0.3s ease, color 0.2s ease;
}
.bmc-faq__item.is-open .bmc-faq__chevron {
  transform: rotate(45deg);
  color: var(--cyan);
}

.bmc-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}
.bmc-faq__item.is-open .bmc-faq__answer {
  max-height: 400px;
  padding: 0 22px 18px;
}
.bmc-faq__answer p {
  font-size: 0.875rem;
  color: var(--subtext);
  line-height: 1.75;
  padding-top: 14px;
}

@media (max-width: 860px) {
  .bmc-faq__layout { grid-template-columns: 1fr; }
  .bmc-faq__tabs { position: static; flex-direction: row; flex-wrap: wrap; }
  .bmc-faq__tab { width: auto; flex: 1; justify-content: center; font-size: 0.8rem; padding: 10px 12px; }
  .bmc-faq__tab span { display: none; }
  .bmc-faq__tab i { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .bmc-faq__question { font-size: 0.875rem; padding: 14px 16px; }
  .bmc-faq__item.is-open .bmc-faq__answer { padding: 0 16px 14px; }
}

/* ============================================================
   PAGE TEMPLATE
   ============================================================ */

.page-content {
  padding: 140px 0 100px;
  min-height: 70vh;
}

.page-article {
     max-width: 860px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px;}

.page-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #fff 30%, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.page-body {
  color: var(--subtext);
  line-height: 1.85;
  font-size: 0.95rem;
}

.page-body h2, .page-body h3, .page-body h4 {
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 14px;
  -webkit-text-fill-color: var(--text);
}

.page-body p { margin-bottom: 16px; }

.page-body a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-body ul, .page-body ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.page-body li {
  margin-bottom: 8px;
  color: var(--subtext);
}

.page-body strong { color: var(--text); font-weight: 700; }

@media (max-width: 1000px) {
    .bmc-phone-wrap img {
        width: 220px;
    }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.bmc-cookie {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 860px;
  background: rgba(5, 11, 26, 0.92);
  border: 1px solid rgba(0, 224, 255, 0.2);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  padding: 16px 20px;
  z-index: 9999;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.bmc-cookie--hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

.bmc-cookie__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bmc-cookie__text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 200px;
  font-size: 0.83rem;
  color: var(--subtext);
  line-height: 1.5;
}

.bmc-cookie__icon { font-size: 1.1rem; flex-shrink: 0; }

.bmc-cookie__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.bmc-cookie__btn {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  font-family: 'Titillium Web', sans-serif;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.bmc-cookie__btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.bmc-cookie__link {
  font-size: 0.78rem;
  color: rgba(0,224,255,0.6);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.bmc-cookie__link:hover { color: var(--cyan); }

@media (max-width: 540px) {
  .bmc-cookie__inner { flex-direction: column; align-items: flex-start; }
  .bmc-cookie { bottom: 12px; }
}

@media (max-width: 768px) {
  .bmc-brand__text {
    display: none;
  }
}