/*
Theme Name:  basement solutions Child
Description: Child Theme für basement-solutions.de | Elementor Pro
Template:    hello-elementor
Version:     1.0.0
Author:      basement solutions – Dominik
Author URI:  https://basement-solutions.de
Text Domain: basement-child
*/

/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --gold:         #F5A800;
  --gold-2:       #FFB800;
  --gold-light:   rgba(245,168,0,0.1);
  --gold-border:  rgba(245,168,0,0.28);
  --gold-glow:    rgba(245,168,0,0.35);
  --dark:         #0E0C0A;
  --dark-2:       #141210;
  --dark-card:    #1E1A16;
  --dark-border:  rgba(255,255,255,0.1);
  --light:        #161210;
  --light-2:      #1A1614;
  --text:         #EDE9E3;
  --text-muted:   rgba(255,255,255,0.48);
  --text-dim:     rgba(255,255,255,0.27);
  --border:       rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.16);
  --green:        #4ade80;
  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;
  --shadow:       0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.55);
  --transition:   0.25s cubic-bezier(0.4,0,0.2,1);
  --font:         'Inter', system-ui, sans-serif;
  --font-display: 'Bricolage Grotesque','Inter',sans-serif;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════════
   ELEMENTOR OVERRIDES
═══════════════════════════════════════ */
.elementor-section { padding: 0 !important; margin: 0 !important; }
.elementor-widget-html .elementor-widget-container { padding: 0 !important; }
.elementor-section.elementor-section-boxed > .elementor-container { max-width: 100% !important; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  border: none; transition: var(--transition); white-space: nowrap;
  font-family: var(--font); text-decoration: none;
}
.btn--primary { background: var(--gold); color: var(--dark); box-shadow: 0 4px 20px var(--gold-glow); }
.btn--primary:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 8px 32px var(--gold-glow); }
.btn--dark { background: var(--dark); color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.btn--dark:hover { background: var(--dark-card); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--text); border: 1.5px solid var(--border-hover); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn--outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════ */
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-light); border: 1px solid var(--gold-border);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.9rem,3.5vw,2.65rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 1rem;
}
.section-title--light { color: #fff; }
.section-title span.gold { color: var(--gold); -webkit-text-fill-color: var(--gold); }
.section-sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; max-width: 580px; }
.section-sub--light { color: rgba(255,255,255,0.65); }
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* ═══════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   NAV (Elementor Header Template)
═══════════════════════════════════════ */
.bs-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; transition: background var(--transition), box-shadow var(--transition); }
.bs-nav.scrolled { background: rgba(14,12,10,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.07); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.bs-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 2rem; }
.bs-nav__logo img { height: 44px; width: auto; display: block; }
.bs-nav__links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.bs-nav__links a:not(.btn) { padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.bs-nav__links a:not(.btn):hover { color: #fff; background: rgba(255,255,255,0.08); }
.bs-nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.bs-nav__burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.bs-hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; background: var(--dark); position: relative; overflow: hidden; }
.bs-hero::before { content:''; position:absolute; inset:0; background-image: linear-gradient(rgba(245,168,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(245,168,0,0.04) 1px, transparent 1px); background-size: 72px 72px; pointer-events:none; }
.bs-hero__blob { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.bs-hero__blob--1 { width: 600px; height: 600px; background: rgba(245,168,0,0.18); top: -200px; right: -100px; }
.bs-hero__blob--2 { width: 500px; height: 500px; background: rgba(245,168,0,0.10); bottom: -100px; left: -150px; }
.bs-hero__inner { position: relative; text-align: center; max-width: 860px; margin: 0 auto; }
.bs-hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(22,163,74,0.12); border: 1px solid rgba(22,163,74,0.3); color: #4ade80; font-size: 0.8rem; font-weight: 600; padding: 6px 16px; border-radius: 20px; margin-bottom: 2rem; letter-spacing: 0.03em; }
.badge__dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.75)} }
.bs-hero__title { font-family: var(--font-display); font-size: clamp(3rem,7vw,5.8rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 0.5rem; color: #fff; }
.bs-hero__title-sub { font-family: var(--font-display); font-size: clamp(2rem,5vw,4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.75rem; color: var(--gold); }
.bs-hero__sub { font-size: clamp(1rem,2vw,1.15rem); color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.8; }
.bs-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.bs-hero__pills { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 3rem; }
.location-pill { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 4px 12px; border-radius: 20px; }
.bs-hero__stats { display: flex; align-items: center; justify-content: center; gap: 2rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.5rem 2.5rem; backdrop-filter: blur(10px); }
.stat { text-align: center; }
.stat__num { display: block; font-size: clamp(1rem,2vw,1.5rem); font-weight: 800; font-family: var(--font-display); color: #fff; line-height: 1; }
.stat__label { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 4px; }
.stat__divider { width: 1px; height: 38px; background: rgba(255,255,255,0.1); }

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.bs-marquee { padding: 1.25rem 0; background: rgba(255,255,255,0.03); border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); overflow: hidden; }
.bs-marquee__label { text-align: center; font-size: 0.68rem; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; margin-bottom: 1rem; }
.bs-marquee__track { overflow: hidden; mask-image: linear-gradient(90deg,transparent,black 8%,black 92%,transparent); }
.bs-marquee__slide { display: flex; align-items: center; gap: 1.5rem; width: max-content; animation: marquee 28s linear infinite; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.bs-marquee__item { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.5); white-space: nowrap; padding: 7px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 10px; }
.bs-marquee__item img { width: 22px; height: 22px; border-radius: 5px; object-fit: contain; background: rgba(255,255,255,0.08); }
.bs-marquee__sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.15); }

/* ═══════════════════════════════════════
   LEISTUNGEN
═══════════════════════════════════════ */
.bs-services { padding: 6rem 0; background: var(--light); }
.bs-services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card { background: var(--dark-card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::after { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--gold); transform:scaleX(0); transition:transform var(--transition); transform-origin:left; }
.service-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-card--featured { border-color: var(--gold-border); }
.service-card--featured::after { transform: scaleX(1); }
.service-card__badge { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); background: var(--gold); padding: 3px 10px; border-radius: 20px; margin-bottom: 1rem; }
.service-card__icon { width: 48px; height: 48px; background: var(--gold-light); border: 1px solid var(--gold-border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 1.25rem; }
.service-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.service-list { list-style: none; margin-bottom: 1.5rem; }
.service-list li { font-size: 0.84rem; color: var(--text-muted); padding: 4px 0 4px 16px; position: relative; }
.service-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; }
.service-card__link { font-size: 0.875rem; font-weight: 700; color: var(--gold); }

/* ═══════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════ */
.bs-projects { padding: 6rem 0; background: var(--light-2); }
.bs-projects__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 2rem; }
.project-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); display: block; text-decoration: none; color: inherit; }
.project-card:hover { border-color: var(--gold-border); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-card__thumb { height: 210px; position: relative; overflow: hidden; background: var(--dark-2); }
.project-card__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.5s ease; }
.project-card:hover .project-card__thumb img { transform: scale(1.04); }
.project-card__tag { position: absolute; top: 12px; left: 12px; font-size: 0.68rem; font-weight: 700; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); color: rgba(255,255,255,0.9); padding: 4px 10px; border-radius: 20px; z-index: 2; }
.project-card__live { position: absolute; top: 12px; right: 12px; font-size: 0.68rem; font-weight: 700; background: rgba(22,163,74,0.9); color: #fff; padding: 4px 10px; border-radius: 20px; z-index: 2; display: flex; align-items: center; gap: 5px; }
.project-card__live::before { content:''; width:5px; height:5px; background:#fff; border-radius:50%; }
.project-card__body { padding: 1.4rem 1.5rem 1.5rem; }
.project-card__body h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 800; margin-bottom: 0.35rem; }
.project-card__body p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.project-card__visit { font-size: 0.8rem; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 5px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: .25rem; }
.p-tag { font-size: 0.7rem; font-weight: 600; color: var(--text-dim); background: rgba(255,255,255,0.05); border: 1px solid var(--border); padding: 3px 9px; border-radius: 20px; }

/* ═══════════════════════════════════════
   ABLAUF
═══════════════════════════════════════ */
.bs-process { padding: 6rem 0; background: var(--light); }
.bs-process__steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; margin-bottom: 2.5rem; }
.bs-process__steps::before { content:''; position:absolute; top:30px; left:calc(12.5% + 10px); right:calc(12.5% + 10px); height:2px; background: linear-gradient(90deg,var(--gold),rgba(245,168,0,0.3)); z-index:0; opacity:.4; }
.process-step { position:relative; z-index:1; background:var(--dark-card); border:1.5px solid var(--border); border-radius:var(--radius); padding:2rem 1.5rem; text-align:center; transition:var(--transition); }
.process-step:hover { border-color:var(--gold-border); box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.process-step__num { width:60px; height:60px; background:var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1rem; font-weight:800; color:var(--dark); margin:0 auto 1.5rem; font-family:var(--font-display); box-shadow:0 4px 16px var(--gold-glow); }
.process-step__tag { font-size:0.68rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-dim); margin-bottom:0.5rem; }
.process-step h3 { font-family:var(--font-display); font-size:1.05rem; font-weight:800; color:var(--text); margin-bottom:0.7rem; }
.process-step p { font-size:0.875rem; color:var(--text-muted); line-height:1.65; }
.bs-process__note { display:flex; align-items:center; justify-content:center; gap:12px; font-size:0.9rem; color:var(--text-muted); background:var(--dark-card); border:1px solid var(--border); border-radius:var(--radius); padding:1.25rem 2rem; max-width:640px; margin:0 auto; }
.bs-process__note-icon { width:38px; height:38px; background:rgba(22,163,74,0.1); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--green); }

/* ═══════════════════════════════════════
   ÜBER MICH
═══════════════════════════════════════ */
.bs-about { padding: 6rem 0; background: var(--dark); }
.bs-about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.bs-about__visual { position: relative; }
.bs-about__photo-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--dark-card); border: 1px solid var(--dark-border); }
.bs-about__photo-wrap img { width:100%; height:100%; object-fit:cover; }
.bs-about__card { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--gold); border-radius: var(--radius); padding: 1.25rem 1.5rem; max-width: 220px; }
.bs-about__card-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--dark); line-height: 1; }
.bs-about__card-label { font-size: 0.8rem; font-weight: 700; color: var(--dark); opacity: 0.75; margin-top: 2px; }
.bs-about__features { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.bs-about__feature { display: flex; align-items: flex-start; gap: 12px; }
.bs-about__feature-check { width: 22px; height: 22px; background: rgba(245,168,0,0.15); border: 1px solid rgba(245,168,0,0.3); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; color: var(--gold); font-size: 0.7rem; font-weight: 800; }
.bs-about__feature p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.6; }
.bs-about__feature strong { color: rgba(255,255,255,0.9); }

/* ═══════════════════════════════════════
   REGION
═══════════════════════════════════════ */
.bs-region { padding: 6rem 0; background: var(--light-2); }
.bs-region__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.bs-region__map-wrap { background: var(--dark-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-lg); position: relative; }
.map-line { stroke-dasharray: 200; stroke-dashoffset: 200; animation: draw-line 1.2s cubic-bezier(0.4,0,0.2,1) forwards; }
.map-line--1{animation-delay:.3s}.map-line--2{animation-delay:.55s}.map-line--3{animation-delay:.75s}.map-line--4{animation-delay:.95s}.map-line--5{animation-delay:1.15s}
@keyframes draw-line { to{stroke-dashoffset:0} }
.map-dot { opacity:0; animation:pop-dot .4s cubic-bezier(0.34,1.56,0.64,1) forwards; transform-box:fill-box; transform-origin:center; }
.map-dot--0{animation-delay:.1s}.map-dot--1{animation-delay:.4s}.map-dot--2{animation-delay:.6s}.map-dot--3{animation-delay:.8s}.map-dot--4{animation-delay:1s}.map-dot--5{animation-delay:1.2s}
@keyframes pop-dot { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }
.map-label { opacity:0; animation:fade-label .5s ease forwards; }
.map-label--0{animation-delay:.2s}.map-label--1{animation-delay:.5s}.map-label--2{animation-delay:.7s}.map-label--3{animation-delay:.9s}.map-label--4{animation-delay:1.1s}.map-label--5{animation-delay:1.3s}
@keyframes fade-label { to{opacity:1} }
.map-pulse { transform-box:fill-box; transform-origin:center; animation:map-pulse-anim 2.5s 1.8s infinite ease-out; opacity:0; }
@keyframes map-pulse-anim { 0%{opacity:.5;transform:scale(1)} 100%{opacity:0;transform:scale(3.5)} }
.map-stat { position:absolute; background:var(--dark-2); border:1px solid var(--border); border-radius:var(--radius); padding:10px 14px; box-shadow:var(--shadow); display:flex; align-items:center; gap:10px; }
.map-stat--top { top:1.5rem; right:-1.5rem; }
.map-stat--bot { bottom:2rem; right:-1rem; }
.map-stat__icon { width:34px; height:34px; background:var(--gold-light); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:1rem; }
.map-stat__num { font-size:1.1rem; font-weight:800; font-family:var(--font-display); color:var(--text); line-height:1; }
.map-stat__label { font-size:0.7rem; color:var(--text-muted); margin-top:2px; }
.city-pill { font-size:.8rem; font-weight:600; color:var(--text-muted); background:rgba(255,255,255,0.04); border:1px solid var(--border); padding:5px 14px; border-radius:20px; transition:var(--transition); text-decoration:none; display:inline-block; }
.city-pill:hover { color:var(--gold); border-color:var(--gold-border); background:var(--gold-light); }

/* ═══════════════════════════════════════
   HOSTING
═══════════════════════════════════════ */
.bs-hosting { padding: 6rem 0; background: var(--dark); }
.bs-hosting__intro { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.bs-hosting__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto 2rem; }
.hosting-card { background: var(--dark-card); border: 1.5px solid var(--dark-border); border-radius: var(--radius-lg); padding: 2.5rem; position: relative; overflow: hidden; transition: var(--transition); }
.hosting-card:hover { border-color: rgba(245,168,0,0.35); box-shadow: 0 12px 48px rgba(0,0,0,0.3); transform: translateY(-4px); }
.hosting-card--featured { border-color: rgba(245,168,0,0.35); }
.hosting-card--featured::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--gold); }
.hosting-card__badge { display:inline-block; font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--dark); background:var(--gold); padding:3px 10px; border-radius:20px; margin-bottom:1rem; }
.hosting-card h3 { font-family:var(--font-display); font-size:1.4rem; font-weight:800; color:#fff; margin-bottom:.4rem; }
.hosting-card__desc { font-size:.875rem; color:rgba(255,255,255,.5); line-height:1.6; margin-bottom:1.5rem; }
.hosting-card__price { display:flex; align-items:baseline; gap:4px; padding-bottom:1.5rem; border-bottom:1px solid var(--dark-border); margin-bottom:1.5rem; }
.h-price-num { font-size:2.8rem; font-weight:900; font-family:var(--font-display); color:#fff; line-height:1; letter-spacing:-0.03em; }
.hosting-card--featured .h-price-num { color:var(--gold); }
.h-price-cur { font-size:1.2rem; font-weight:700; color:rgba(255,255,255,.4); }
.h-price-per { font-size:.8rem; color:rgba(255,255,255,.4); margin-left:4px; }
.hosting-features { list-style:none; margin-bottom:2rem; }
.hosting-features li { display:flex; align-items:flex-start; gap:10px; font-size:.875rem; color:rgba(255,255,255,.55); padding:.5rem 0; border-bottom:1px solid rgba(255,255,255,.05); }
.hosting-features li:last-child { border-bottom:none; }
.h-check { width:18px; height:18px; background:rgba(245,168,0,.12); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; color:var(--gold); font-size:.65rem; font-weight:800; }
.bs-hosting__website { background:var(--dark-card); border:1px solid var(--dark-border); border-radius:var(--radius-lg); padding:2rem 2.5rem; max-width:900px; margin:0 auto; display:grid; grid-template-columns:1fr auto; align-items:center; gap:2rem; }
.bs-hosting__website h3 { font-family:var(--font-display); font-size:1.15rem; font-weight:800; color:#fff; margin-bottom:.4rem; }
.bs-hosting__website p { font-size:.875rem; color:rgba(255,255,255,.5); line-height:1.65; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.bs-faq { padding: 6rem 0; background: var(--light); }
.bs-faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--dark-card); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--gold-border); }
.faq-item__q { width:100%; background:none; border:none; padding:1.4rem 1.5rem; text-align:left; font-family:var(--font); font-size:.95rem; font-weight:700; color:var(--text); cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.faq-item__q svg { flex-shrink:0; color:var(--gold); transition:transform var(--transition); }
.faq-item.open .faq-item__q svg { transform:rotate(45deg); }
.faq-item__a { display:none; padding:0 1.5rem 1.4rem; font-size:.9rem; color:var(--text-muted); line-height:1.8; }
.faq-item.open .faq-item__a { display:block; }

/* ═══════════════════════════════════════
   KONTAKT
═══════════════════════════════════════ */
.bs-contact { padding: 6rem 0; background: var(--light-2); }
.bs-contact__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.bs-contact__channels { display:flex; flex-direction:column; gap:1rem; margin-bottom:2rem; }
.bs-contact__channel { display:flex; align-items:center; gap:12px; padding:1rem 1.25rem; background:var(--dark-card); border:1px solid var(--border); border-radius:var(--radius); text-decoration:none; transition:var(--transition); }
.bs-contact__channel:hover { border-color:var(--gold-border); box-shadow:var(--shadow); }
.bs-contact__channel-icon { width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.bs-contact__channel-icon--wa { background:rgba(37,211,102,.1); color:#25D366; }
.bs-contact__channel-icon--mail { background:var(--gold-light); color:var(--gold); }
.bs-contact__channel strong { display:block; font-size:.9rem; font-weight:700; color:var(--text); }
.bs-contact__channel span { font-size:.82rem; color:var(--text-muted); }
.bs-contact__form-wrap { background:var(--dark-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2.5rem; box-shadow:var(--shadow); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { margin-bottom:1.15rem; }
.form-group label { display:block; font-size:.78rem; font-weight:700; color:var(--text-muted); text-transform:uppercase; letter-spacing:.08em; margin-bottom:5px; }
.form-group input,.form-group select,.form-group textarea { width:100%; background:var(--light); border:1.5px solid var(--border); border-radius:var(--radius-sm); padding:11px 14px; font-size:.9rem; color:var(--text); font-family:var(--font); transition:var(--transition); outline:none; appearance:none; }
.form-group select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23EDE9E3' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; }
.form-group select option { background:var(--dark-card); color:var(--text); }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--gold); background:var(--dark-2); box-shadow:0 0 0 3px var(--gold-light); }
.form-group textarea { resize:vertical; min-height:110px; }
.form-group--check { display:flex; align-items:flex-start; gap:10px; margin-bottom:1.5rem; }
.form-group--check input { width:auto; margin-top:3px; flex-shrink:0; accent-color:var(--gold); }
.form-group--check label { font-size:.83rem; text-transform:none; letter-spacing:0; font-weight:400; color:var(--text-muted); }
.form-group--check label a { color:var(--gold); }
.form-success { display:none; align-items:center; gap:10px; background:rgba(22,163,74,.08); border:1px solid rgba(22,163,74,.25); color:var(--green); padding:12px 18px; border-radius:var(--radius-sm); font-size:.88rem; font-weight:600; margin-top:1rem; }
.form-success.show { display:flex; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.bs-footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding-top: 4rem; }
.bs-footer__inner { display:grid; grid-template-columns:1.4fr 2fr; gap:4rem; margin-bottom:3rem; }
.bs-footer__brand img { height:40px; margin-bottom:1.25rem; }
.bs-footer__brand p { font-size:.84rem; color:rgba(255,255,255,.3); line-height:1.7; max-width:280px; }
.bs-footer__links { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.bs-footer__col h4 { font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:rgba(255,255,255,.35); margin-bottom:1rem; }
.bs-footer__col ul { list-style:none; display:flex; flex-direction:column; gap:.5rem; }
.bs-footer__col a { font-size:.84rem; color:rgba(255,255,255,.3); transition:var(--transition); }
.bs-footer__col a:hover { color:var(--gold); }
.bs-footer__bottom { border-top:1px solid rgba(255,255,255,.06); padding:1.5rem 0; }
.bs-footer__bottom .container { display:flex; align-items:center; justify-content:space-between; }
.bs-footer__bottom p { font-size:.78rem; color:rgba(255,255,255,.25); }
.bs-footer__legal { display:flex; gap:1.5rem; }
.bs-footer__legal a { font-size:.78rem; color:rgba(255,255,255,.25); transition:var(--transition); }
.bs-footer__legal a:hover { color:var(--gold); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width:1024px) {
  .bs-services__grid { grid-template-columns:repeat(2,1fr); }
  .bs-about__inner,.bs-region__inner,.bs-contact__inner { grid-template-columns:1fr; gap:3rem; }
  .bs-about__visual { max-width:480px; margin:0 auto; }
  .bs-hosting__website { grid-template-columns:1fr; }
  .bs-process__steps { grid-template-columns:repeat(2,1fr); }
  .bs-process__steps::before { display:none; }
}
@media (max-width:768px) {
  .bs-nav__links { display:none; }
  .bs-nav__burger { display:flex; }
  .bs-services__grid,.bs-projects__grid,.bs-hosting__grid { grid-template-columns:1fr; }
  .bs-footer__inner { grid-template-columns:1fr; gap:2.5rem; }
  .bs-footer__links { grid-template-columns:repeat(2,1fr); }
  .bs-hero__stats { flex-direction:column; gap:1.25rem; padding:1.25rem; }
  .stat__divider { width:60px; height:1px; }
  .form-row { grid-template-columns:1fr; }
  .bs-hero__actions { flex-direction:column; align-items:center; }
  .map-stat { display:none; }
  .bs-process__steps { grid-template-columns:1fr; }
}
@media (max-width:480px) {
  .bs-footer__links { grid-template-columns:1fr; }
  .bs-footer__bottom .container { flex-direction:column; gap:1rem; text-align:center; }
}
